:root {
    --navy: #07172f;
    --navy-2: #0b2242;
    --navy-3: #102d52;
    --orange: #ff7a00;
    --orange-dark: #e86700;
    --white: #ffffff;
    --light: #f5f7fb;
    --light-2: #eef2f7;
    --text: #172033;
    --muted: #697386;
    --border: #e4e9f0;
    --shadow: 0 15px 40px rgba(5, 23, 47, .10);
    --radius: 18px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

/* TOP BAR */

.topbar {
    background: #041126;
    color: #d9e2ef;
    font-size: 13px;
}

.topbar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topbar p,
.top-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.topbar i {
    color: var(--orange);
}

.top-links a {
    transition: .2s;
}

.top-links a:hover {
    color: var(--orange);
}

/* HEADER */

.header {
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,.03);
}

.header-inner {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 11px;
}

.logo-icon {
    width: 43px;
    height: 43px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    background: var(--orange);
    color: white;
    font-size: 21px;
    box-shadow: 0 8px 20px rgba(255,122,0,.25);
}

.logo-main {
    display: block;
    color: var(--navy);
    font-weight: 800;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: -.6px;
}

.logo-main span {
    color: var(--orange);
}

.logo small {
    display: block;
    color: #7c8797;
    font-size: 8px;
    letter-spacing: 4px;
    margin-top: 4px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav a {
    font-size: 14px;
    font-weight: 600;
    color: #344054;
    position: relative;
    transition: .25s;
}

.nav a:hover,
.nav a.active {
    color: var(--orange);
}

.nav a.active::after {
    content: "";
    position: absolute;
    height: 2px;
    background: var(--orange);
    left: 0;
    right: 0;
    bottom: -27px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.icon-btn,
.menu-btn {
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    color: var(--navy);
    font-size: 17px;
    position: relative;
    transition: .2s;
}

.icon-btn:hover,
.menu-btn:hover {
    background: var(--light);
    color: var(--orange);
}

.cart-btn span {
    position: absolute;
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    background: var(--orange);
    color: white;
    border-radius: 50%;
    top: 1px;
    right: 0;
    font-size: 9px;
    font-weight: 700;
}

.menu-btn {
    display: none;
}

/* HERO */

.hero {
    position: relative;
    overflow: hidden;
    min-height: 610px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 82% 50%, rgba(255,122,0,.10), transparent 27%),
        linear-gradient(115deg, #f8fafc 0%, #fff 53%, #f5f7fa 100%);
}

.hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(7,23,47,.05);
    right: -160px;
    top: -180px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #fff3e7;
    color: var(--orange-dark);
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 22px;
}

.hero-content h1 {
    font-size: clamp(46px, 5vw, 68px);
    line-height: 1.05;
    letter-spacing: -3px;
    color: var(--navy);
    max-width: 650px;
}

.hero-content h1 span {
    color: var(--orange);
    display: block;
}

.hero-content > p {
    max-width: 580px;
    font-size: 17px;
    color: var(--muted);
    margin: 23px 0 30px;
}

.hero-buttons {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
}

.btn {
    min-height: 50px;
    padding: 0 24px;
    border-radius: 9px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    transition: .25s;
}

.btn-primary {
    background: var(--orange);
    color: white;
    box-shadow: 0 10px 25px rgba(255,122,0,.25);
}

.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid #ccd3dc;
    color: var(--navy);
    background: white;
}

.btn-outline:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.hero-features {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    font-size: 12px;
    font-weight: 600;
    color: #526071;
}

.hero-features div {
    display: flex;
    align-items: center;
    gap: 7px;
}

.hero-features i {
    color: var(--orange);
}

/* HERO VISUAL */

.hero-visual {
    min-height: 440px;
    position: relative;
    display: grid;
    place-items: center;
}

.tech-circle {
    position: absolute;
    border-radius: 50%;
}

.circle-one {
    width: 390px;
    height: 390px;
    background: var(--navy);
    box-shadow: 0 30px 80px rgba(7,23,47,.22);
}

.circle-two {
    width: 330px;
    height: 330px;
    border: 1px dashed rgba(255,255,255,.15);
    z-index: 1;
}

.device {
    z-index: 3;
    position: relative;
}

.laptop {
    width: 370px;
}

.laptop-screen {
    height: 230px;
    border: 11px solid #172333;
    border-radius: 14px 14px 6px 6px;
    background:
        radial-gradient(circle at 50% 50%, #173760, #07172f 70%);
    display: grid;
    place-items: center;
    box-shadow: 0 25px 50px rgba(0,0,0,.35);
}

.screen-logo {
    text-align: center;
    color: white;
}

.screen-logo i {
    color: var(--orange);
    font-size: 42px;
    display: block;
    margin-bottom: 12px;
}

.screen-logo > span {
    font-weight: 800;
    font-size: 25px;
    letter-spacing: -1px;
}

.screen-logo span span {
    color: var(--orange);
}

.laptop-base {
    width: 420px;
    height: 18px;
    position: relative;
    left: -25px;
    background: linear-gradient(#d8dce1, #8c939b);
    border-radius: 3px 3px 15px 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,.25);
}

.floating-card {
    position: absolute;
    z-index: 6;
    background: white;
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 15px 35px rgba(7,23,47,.16);
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 145px;
}

.card-security {
    top: 55px;
    right: -10px;
}

.card-support {
    bottom: 35px;
    left: 0;
}

.float-icon {
    width: 37px;
    height: 37px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: #fff0e2;
    color: var(--orange);
}

.floating-card strong,
.floating-card small {
    display: block;
}

.floating-card strong {
    color: var(--navy);
    font-size: 13px;
}

.floating-card small {
    color: var(--muted);
    font-size: 10px;
}

/* COMMON */

.section {
    padding: 90px 0;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 36px;
    gap: 30px;
}

.section-heading h2,
.center-heading h2,
.why-content h2 {
    color: var(--navy);
    font-size: 34px;
    letter-spacing: -1.3px;
    line-height: 1.2;
}

.section-heading p,
.center-heading p {
    color: var(--muted);
    font-size: 14px;
    margin-top: 9px;
}

.eyebrow {
    color: var(--orange);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
    display: block;
    margin-bottom: 8px;
}

.view-all {
    font-size: 13px;
    color: var(--orange);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* CATEGORIES */

.categories {
    background: white;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.category-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 22px;
    min-height: 220px;
    transition: .25s;
}

.category-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.category-icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #fff2e6;
    color: var(--orange);
    font-size: 25px;
    margin-bottom: 25px;
}

.category-card h3 {
    font-size: 17px;
    color: var(--navy);
}

.category-card p {
    font-size: 12px;
    color: var(--muted);
    margin: 5px 0 18px;
}

.category-card span {
    color: var(--orange);
    font-size: 11px;
    font-weight: 700;
}

/* PRODUCTS */

.products-section {
    background: var(--light);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.product-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid #e9edf2;
    transition: .25s;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.product-image {
    height: 220px;
    background: linear-gradient(145deg, #edf1f5, #fafbfc);
    position: relative;
    display: grid;
    place-items: center;
}

.product-placeholder {
    font-size: 92px;
    color: #26384d;
    filter: drop-shadow(0 15px 15px rgba(0,0,0,.12));
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 9px;
    border-radius: 5px;
    background: var(--orange);
    color: white;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .5px;
}

.product-info {
    padding: 20px;
}

.product-category {
    color: var(--orange);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.product-info h3 {
    color: var(--navy);
    font-size: 16px;
    margin: 5px 0;
}

.product-info p {
    color: var(--muted);
    font-size: 11px;
    min-height: 36px;
}

.product-bottom {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-bottom strong {
    color: var(--navy);
    font-size: 16px;
}

.add-cart {
    border: 0;
    background: var(--navy);
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 9px;
    cursor: pointer;
    transition: .2s;
}

.add-cart:hover {
    background: var(--orange);
}

/* SERVICES */

.services {
    background: white;
}

.center-heading {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 45px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.service-card {
    padding: 32px 27px;
    border-radius: var(--radius);
    background: white;
    border: 1px solid var(--border);
    transition: .25s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.service-icon {
    width: 55px;
    height: 55px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    background: var(--navy);
    color: var(--orange);
    font-size: 21px;
    margin-bottom: 23px;
}

.service-card h3 {
    color: var(--navy);
    font-size: 17px;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--muted);
    font-size: 12px;
    min-height: 77px;
}

.service-card a {
    color: var(--orange);
    font-size: 11px;
    font-weight: 700;
}

/* WHY US */

.why-us {
    background: var(--light);
}

.why-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 90px;
    align-items: center;
}

.why-content > p {
    color: var(--muted);
    font-size: 14px;
    margin: 20px 0 28px;
    max-width: 600px;
}

.why-list {
    display: grid;
    gap: 18px;
}

.why-list > div {
    display: flex;
    gap: 13px;
    align-items: flex-start;
}

.why-list i {
    background: var(--orange);
    color: white;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    font-size: 10px;
    flex: 0 0 25px;
}

.why-list span {
    color: var(--muted);
    font-size: 12px;
}

.why-list strong {
    display: block;
    color: var(--navy);
    font-size: 14px;
}

.stats-card {
    background: var(--navy);
    padding: 30px;
    border-radius: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(7,23,47,.20);
}

.stats-card > div {
    padding: 38px 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,.07);
}

.stats-card strong {
    display: block;
    color: var(--orange);
    font-size: 27px;
}

.stats-card span {
    color: #c7d0dc;
    font-size: 11px;
}

/* CTA */

.cta {
    background: var(--orange);
    color: white;
    padding: 58px 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta span {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.cta h2 {
    font-size: 30px;
    max-width: 650px;
    line-height: 1.2;
    margin: 6px 0 9px;
}

.cta p {
    font-size: 13px;
    opacity: .9;
}

.btn-white {
    background: white;
    color: var(--navy);
    min-width: 150px;
}

.btn-white:hover {
    transform: translateY(-2px);
}

/* FOOTER */

.footer {
    background: #041126;
    color: #9eacbd;
    padding-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 60px;
    padding-bottom: 55px;
}

.footer-logo .logo-main {
    color: white;
}

.footer-brand > p {
    max-width: 310px;
    margin: 22px 0;
    font-size: 12px;
}

.socials {
    display: flex;
    gap: 9px;
}

.socials a {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(255,255,255,.07);
    color: white;
    transition: .2s;
}

.socials a:hover {
    background: var(--orange);
}

.footer h4 {
    color: white;
    font-size: 13px;
    margin-bottom: 20px;
}

.footer-grid > div:not(:first-child) > a,
.footer-grid > div:not(:first-child) > p {
    display: block;
    font-size: 11px;
    margin-bottom: 12px;
    transition: .2s;
}

.footer-grid > div:not(:first-child) > a:hover {
    color: var(--orange);
}

.footer-grid p i {
    color: var(--orange);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 10px;
}

.footer-bottom div {
    display: flex;
    gap: 25px;
}

/* RESPONSIVE */

@media (max-width: 1000px) {

    .nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 76px;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 25px 30px;
        gap: 22px;
        box-shadow: 0 20px 30px rgba(0,0,0,.08);
        display: none;
    }

    .nav.open {
        display: flex;
    }

    .nav a.active::after {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons,
    .hero-features {
        justify-content: center;
    }

    .hero-visual {
        min-height: 420px;
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        gap: 45px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {

    .container {
        width: min(100% - 30px, 1180px);
    }

    .topbar-inner {
        justify-content: center;
    }

    .top-links {
        display: none;
    }

    .account-btn {
        display: none;
    }

    .header-inner {
        height: 68px;
    }

    .nav {
        top: 68px;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .hero-content h1 {
        font-size: 44px;
        letter-spacing: -2px;
    }

    .hero-content > p {
        font-size: 15px;
    }

    .hero-visual {
        min-height: 340px;
    }

    .circle-one {
        width: 290px;
        height: 290px;
    }

    .circle-two {
        width: 245px;
        height: 245px;
    }

    .laptop {
        width: 270px;
    }

    .laptop-screen {
        height: 170px;
    }

    .laptop-base {
        width: 300px;
        left: -15px;
    }

    .floating-card {
        transform: scale(.85);
    }

    .card-security {
        right: -10px;
        top: 30px;
    }

    .card-support {
        left: -10px;
        bottom: 30px;
    }

    .section {
        padding: 65px 0;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .section-heading h2,
    .center-heading h2,
    .why-content h2 {
        font-size: 29px;
    }

    .category-grid,
    .product-grid,
    .services-grid,
    .why-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-card {
        min-height: 190px;
        padding: 22px 18px;
    }

    .why-grid {
        gap: 45px;
    }

    .cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .cta h2 {
        font-size: 26px;
    }

    .footer-grid {
        gap: 35px;
    }

    .footer-bottom {
        padding: 22px 0;
        gap: 15px;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 430px) {

    .logo-main {
        font-size: 17px;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
    }

    .icon-btn,
    .menu-btn {
        width: 36px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-features {
        gap: 12px;
    }

    .category-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .category-card {
        padding: 18px 14px;
    }

    .category-icon {
        width: 50px;
        height: 50px;
    }

    .stats-card {
        padding: 15px;
    }

    .stats-card > div {
        padding: 27px 10px;
    }
}


/* ==========================================================
   HARRYTECH CONTACT SECTION
   ========================================================== */

.ht-contact-section {
    padding: 90px 20px;
    background:
        radial-gradient(circle at 85% 20%, rgba(255, 112, 0, .08), transparent 28%),
        #f8fafc;
}

.ht-contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ht-contact-heading {
    max-width: 700px;
    margin-bottom: 45px;
}

.ht-contact-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 30px;
    background: #fff0e3;
    color: #ff7000;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 18px;
}

.ht-contact-heading h2 {
    margin: 0 0 15px;
    font-size: clamp(36px, 5vw, 54px);
    line-height: 1.05;
    color: #061a38;
}

.ht-contact-heading h2 span {
    color: #ff7000;
}

.ht-contact-heading p {
    margin: 0;
    color: #64748b;
    font-size: 18px;
    line-height: 1.7;
}

.ht-contact-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 30px;
}

.ht-contact-info,
.ht-services-box {
    background: #ffffff;
    border: 1px solid #e7edf5;
    border-radius: 24px;
    padding: 38px;
    box-shadow: 0 15px 45px rgba(6, 26, 56, .07);
}

.ht-contact-info h3,
.ht-services-box h3 {
    color: #061a38;
    font-size: 24px;
    margin: 0 0 16px;
}

.ht-company-description {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 30px;
}

.ht-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #edf1f6;
}

.ht-info-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff0e3;
    color: #ff7000;
    font-size: 19px;
}

.ht-info-item small {
    display: block;
    color: #8994a6;
    font-size: 12px;
    margin-bottom: 4px;
}

.ht-info-item a,
.ht-info-item strong {
    color: #061a38;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
}

.ht-info-item a:hover {
    color: #ff7000;
}

.ht-contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.ht-call-btn,
.ht-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease;
}

.ht-call-btn {
    background: #061a38;
    color: #ffffff;
}

.ht-whatsapp-btn {
    background: #25D366;
    color: #ffffff;
}

.ht-call-btn:hover,
.ht-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(6, 26, 56, .15);
}

.ht-service-list {
    display: grid;
    gap: 4px;
}

.ht-service-row {
    display: flex;
    gap: 16px;
    padding: 19px 0;
    border-bottom: 1px solid #edf1f6;
}

.ht-service-row:last-child {
    border-bottom: 0;
}

.ht-service-row > i {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    border-radius: 12px;
    background: #061a38;
    color: #ff7000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.ht-service-row strong {
    color: #061a38;
    font-size: 16px;
}

.ht-service-row p {
    color: #64748b;
    margin: 5px 0 0;
    line-height: 1.55;
    font-size: 14px;
}

@media (max-width: 850px) {
    .ht-contact-grid {
        grid-template-columns: 1fr;
    }

    .ht-contact-section {
        padding: 65px 16px;
    }

    .ht-contact-info,
    .ht-services-box {
        padding: 25px 20px;
    }
}

@media (max-width: 520px) {
    .ht-contact-buttons {
        flex-direction: column;
    }

    .ht-call-btn,
    .ht-whatsapp-btn {
        width: 100%;
    }
}


/* ==================================================
   HARYTEK MODERN ECOMMERCE PRODUCT CARDS
================================================== */

.ht-shop-grid {
    align-items: stretch;
}

.ht-product-card {
    border-radius: 20px;
    border: 1px solid #e5eaf0;
    box-shadow: 0 5px 25px rgba(6,26,56,.05);
    display: flex;
    flex-direction: column;
    background: #fff;
}

.ht-product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 50px rgba(6,26,56,.13);
}

.ht-product-image {
    height: 245px;
    background:
        radial-gradient(circle at 50% 35%,
        #ffffff 0%,
        #f3f6f9 55%,
        #edf1f5 100%);
    overflow: hidden;
}

.ht-product-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
}

.ht-product-placeholder i {
    font-size: 95px;
    color: #26384d;
    filter: drop-shadow(0 18px 16px rgba(0,0,0,.14));
    transition: transform .3s ease;
}

.ht-product-card:hover .ht-product-placeholder i {
    transform: scale(1.06);
}

.ht-stock {
    position: absolute;
    right: 14px;
    bottom: 14px;
    background: rgba(255,255,255,.96);
    color: #15803d;
    border: 1px solid #dcfce7;
    padding: 7px 10px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 800;
    box-shadow: 0 5px 18px rgba(0,0,0,.07);
}

.ht-stock i {
    margin-right: 4px;
}

.ht-product-card .product-info {
    padding: 23px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ht-product-card .product-category {
    font-size: 10px;
}

.ht-product-card .product-info h3 {
    font-size: 19px;
    margin: 8px 0;
}

.ht-product-card .product-info p {
    font-size: 13px;
    line-height: 1.65;
    min-height: 64px;
}

.ht-price-row {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid #edf0f3;
}

.ht-price-row small {
    display: block;
    color: #7b8797;
    font-size: 10px;
    margin-bottom: 2px;
}

.ht-price-row strong {
    display: block;
    color: #061a38;
    font-size: 21px;
    font-weight: 900;
}

.ht-product-actions {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 9px;
    margin-top: 17px;
}

.ht-view-product,
.ht-add-cart {
    min-height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
    transition: .2s ease;
}

.ht-view-product {
    border: 1px solid #dfe4ea;
    color: #061a38;
    background: #fff;
}

.ht-view-product:hover {
    border-color: #061a38;
    background: #f8fafc;
}

.ht-add-cart {
    width: auto;
    height: auto;
    border: none;
    background: #061a38;
    color: #fff;
    cursor: pointer;
    padding: 0 12px;
}

.ht-add-cart i {
    margin-right: 7px;
}

.ht-add-cart:hover {
    background: #ff7000;
}

.ht-add-cart:disabled {
    opacity: .65;
    cursor: wait;
}


/* Tablet */

@media (max-width: 1100px) {

    .ht-shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* Mobile */

@media (max-width: 620px) {

    .ht-shop-grid {
        grid-template-columns: 1fr;
    }

    .ht-product-image {
        height: 260px;
    }

    .ht-product-actions {
        grid-template-columns: 1fr;
    }

    .ht-view-product,
    .ht-add-cart {
        min-height: 48px;
    }

}



/* HaryTek real product photographs */

.ht-product-photo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    background: #fff;
}

.ht-product-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform .35s ease;
}

.ht-product-card:hover .ht-product-photo img {
    transform: scale(1.05);
}


/* =========================================
   HARYTEK PRODUCT CARD DISPLAY FIX
   ========================================= */

.ht-product-card {
    overflow: hidden;
}

/* Product image area */
.ht-product-photo {
    width: 100%;
    height: 280px;
    padding: 24px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ht-product-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    object-position: center;
    display: block;
}

/* Keep product information clean */
.ht-product-body {
    padding: 24px 26px 26px;
}

/* Fix product action area */
.ht-product-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* View details */
.ht-product-actions a {
    text-decoration: none;
}

/* Proper Add to Cart button */
.ht-product-actions button,
.ht-add-cart {
    width: auto !important;
    min-width: 145px;
    height: 46px;
    padding: 0 20px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    border-radius: 10px;
    overflow: visible !important;
}

/* Tablet/mobile */
@media (max-width: 768px) {
    .ht-product-photo {
        height: 240px;
        padding: 20px;
    }

    .ht-product-actions {
        align-items: stretch;
    }

    .ht-product-actions button,
    .ht-add-cart {
        min-width: 140px;
    }
}


/* HARYTEK FINAL PRODUCT IMAGE FIT */
.ht-product-photo {
    height: 260px !important;
    padding: 20px !important;
    background: #fff !important;
    overflow: hidden !important;
}

.ht-product-photo img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    display: block !important;
    margin: auto !important;
    transform: none !important;
}

/* Prevent hover from enlarging/cropping image */
.ht-product-card:hover .ht-product-photo img {
    transform: none !important;
}

@media (max-width: 768px) {
    .ht-product-photo {
        height: 230px !important;
        padding: 15px !important;
    }
}

/* HARYTEK FINAL PRODUCT IMAGE FIT */
.ht-product-photo {
    height: 260px !important;
    padding: 20px !important;
    background: #fff !important;
    overflow: hidden !important;
}

.ht-product-photo img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    display: block !important;
    margin: auto !important;
    transform: none !important;
}

/* Prevent hover from enlarging/cropping image */
.ht-product-card:hover .ht-product-photo img {
    transform: none !important;
}

@media (max-width: 768px) {
    .ht-product-photo {
        height: 230px !important;
        padding: 15px !important;
    }
}
