/* =========================================================
   HUKZY EXPRESS
   DEFAULT MASTER STYLESHEET
   Nigerian Modest Fashion
========================================================= */


/* =========================================================
   RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background: #ffffff;
    color: #111111;
    line-height: 1.6;
}

body.no-scroll {
    overflow: hidden;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

img {
    display: block;
    width: 100%;
}

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


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid #eeeeee;
}

.header-inner {
    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* LOGO */

.logo {
    display: flex;
    flex-direction: column;

    font-size: 24px;
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 0.95;
}

.logo span {
    font-size: 9px;
    letter-spacing: 4px;
    margin-top: 5px;
    font-weight: 600;
}


/* NAVIGATION */

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

.desktop-nav a {
    position: relative;

    font-size: 13px;
    font-weight: 600;
    color: #333333;

    transition:
        color 0.25s ease;
}

.desktop-nav a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: #111111;

    transition:
        width 0.25s ease;
}

.desktop-nav a:hover {
    color: #000000;
}

.desktop-nav a:hover::after {
    width: 100%;
}


/* HEADER ACTIONS */

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

.cart-button {
    border: 1px solid #111111;
    background: #111111;
    color: #ffffff;

    padding: 10px 16px;

    font-size: 12px;
    font-weight: 700;

    display: flex;
    align-items: center;
    gap: 9px;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.cart-button:hover {
    background: #ffffff;
    color: #111111;
}

.cart-button span {
    min-width: 19px;
    height: 19px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;
    color: #111111;

    font-size: 10px;
}


/* MOBILE MENU BUTTON */

.menu-toggle {
    width: 42px;
    height: 42px;

    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;

    border: 1px solid #dddddd;
    background: #ffffff;
}

.menu-toggle span {
    width: 18px;
    height: 1px;
    background: #111111;

    transition:
        transform 0.25s ease;
}


/* MOBILE MENU */

.mobile-menu {
    display: none;

    border-top: 1px solid #eeeeee;
    background: #ffffff;

    padding: 15px 20px;
}

.mobile-menu.open {
    display: flex;
    flex-direction: column;
}

.mobile-menu a {
    padding: 14px 0;

    border-bottom: 1px solid #eeeeee;

    font-size: 14px;
    font-weight: 600;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 650px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #fafafa 60%,
            #f3f3f1 100%
        );

    border-bottom: 1px solid #eeeeee;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 70px;
}

.eyebrow {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    color: #777777;
    margin-bottom: 14px;
}

.hero h1 {
    font-size: clamp(50px, 7vw, 88px);
    line-height: 0.95;
    letter-spacing: -4px;
    font-weight: 900;
}

.hero h1 span {
    color: #555555;
}

.hero-description {
    max-width: 500px;

    margin-top: 27px;

    color: #666666;
    font-size: 16px;
    line-height: 1.8;
}

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

    margin-top: 32px;
}


/* HERO CARD */

.hero-card {
    min-height: 450px;

    background: #111111;

    display: flex;
    align-items: flex-end;

    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: "";

    position: absolute;
    width: 350px;
    height: 350px;

    border: 1px solid rgba(255, 255, 255, 0.18);

    border-radius: 50%;

    right: -130px;
    top: -100px;
}

.hero-card::after {
    content: "";

    position: absolute;
    width: 240px;
    height: 240px;

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 50%;

    left: -80px;
    bottom: -100px;
}

.hero-card-inner {
    position: relative;
    z-index: 2;

    padding: 45px;
    color: #ffffff;
}

.hero-card-inner p {
    font-size: 10px;
    letter-spacing: 4px;
    color: #bbbbbb;
    margin-bottom: 18px;
}

.hero-card-inner h2 {
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1;
    letter-spacing: -2px;
}

.hero-card-inner a {
    display: inline-block;

    margin-top: 30px;

    border-bottom: 1px solid #ffffff;

    padding-bottom: 4px;

    font-size: 12px;
    font-weight: 700;
}


/* =========================================================
   BUTTONS
========================================================= */

.primary-button,
.secondary-button,
.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 0 22px;

    font-size: 12px;
    font-weight: 800;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.primary-button {
    background: #111111;
    color: #ffffff;
    border: 1px solid #111111;
}

.primary-button:hover {
    background: #ffffff;
    color: #111111;
}

.secondary-button {
    background: #ffffff;
    color: #111111;
    border: 1px solid #cccccc;
}

.secondary-button:hover {
    border-color: #111111;
}

.whatsapp-button {
    background: #ffffff;
    color: #111111;
    border: 1px solid #ffffff;
}

.whatsapp-button:hover {
    background: transparent;
    color: #ffffff;
}

.primary-button:hover,
.secondary-button:hover,
.whatsapp-button:hover {
    transform: translateY(-2px);
}


/* =========================================================
   PRODUCTS
========================================================= */

.products-section {
    padding: 110px 0;
}

.section-heading,
.category-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;

    margin-bottom: 45px;
}

.section-heading h2,
.category-heading h2 {
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1;
    letter-spacing: -2px;
}

.section-heading > p,
.category-heading > p {
    max-width: 330px;

    color: #777777;
    font-size: 14px;
}


/* FILTERS */

.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    margin-bottom: 25px;
}

.filter-button {
    border: 1px solid #dddddd;
    background: #ffffff;
    color: #444444;

    padding: 11px 17px;

    font-size: 11px;
    font-weight: 700;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.filter-button:hover,
.filter-button.active {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
}


/* SEARCH */

.search-wrapper {
    margin-bottom: 35px;
}

.search-wrapper input {
    width: 100%;
    height: 50px;

    padding: 0 17px;

    border: 1px solid #dddddd;
    background: #ffffff;

    outline: none;

    font-size: 13px;

    transition:
        border-color 0.2s ease;
}

.search-wrapper input:focus {
    border-color: #111111;
}


/* PRODUCT GRID */

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


/* PRODUCT CARD */

.product-card {
    position: relative;

    background: #ffffff;

    border: 1px solid #eeeeee;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);

    border-color: #dddddd;

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.08);
}


/* PRODUCT IMAGE */

.product-image {
    position: relative;

    aspect-ratio: 0.82;

    overflow: hidden;

    background: #f3f3f3;
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.04);
}


/* PLACEHOLDER */

.product-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eeeeec;
}

.placeholder-logo {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 3px;
}


/* BADGE */

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;

    background: #111111;
    color: #ffffff;

    padding: 7px 9px;

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
}


/* QUICK ADD */

.quick-add {
    position: absolute;

    left: 12px;
    right: 12px;
    bottom: 12px;

    width: calc(100% - 24px);

    min-height: 42px;

    border: none;

    background: #ffffff;
    color: #111111;

    font-size: 11px;
    font-weight: 800;

    opacity: 0;
    transform: translateY(8px);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.product-card:hover .quick-add {
    opacity: 1;
    transform: translateY(0);
}

.quick-add:hover {
    background: #111111;
    color: #ffffff;
}


/* PRODUCT INFO */

.product-info {
    padding: 19px;
}

.product-category {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    color: #999999;

    margin-bottom: 7px;
}

.product-info h3 {
    font-size: 16px;
    line-height: 1.25;

    margin-bottom: 8px;
}

.product-description {
    color: #777777;

    font-size: 12px;
    line-height: 1.6;

    min-height: 38px;

    margin-bottom: 14px;
}

.product-price {
    font-size: 15px;
    font-weight: 900;
}

.add-cart-btn {
    width: 100%;

    min-height: 42px;

    margin-top: 14px;

    border: 1px solid #111111;

    background: #111111;
    color: #ffffff;

    font-size: 11px;
    font-weight: 800;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.add-cart-btn:hover {
    background: #ffffff;
    color: #111111;
}


/* EMPTY PRODUCTS */

.empty-products {
    grid-column: 1 / -1;

    padding: 60px 20px;

    text-align: center;

    color: #777777;

    border: 1px dashed #dddddd;
}


/* =========================================================
   CATEGORY SECTIONS
========================================================= */

.category-section {
    padding: 100px 0;
    background: #fafafa;
}

.category-section.alternate {
    background: #ffffff;
}

.category-heading {
    margin-bottom: 40px;
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    padding: 120px 0;

    background: #111111;
    color: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.about-label h2 {
    font-size: clamp(42px, 5vw, 65px);
    line-height: 1;
    letter-spacing: -3px;
}

.about-label h2 span {
    color: #999999;
}

.about-text {
    max-width: 520px;
}

.about-text p {
    color: #bbbbbb;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-text .primary-button {
    margin-top: 15px;

    background: #ffffff;
    color: #111111;
    border-color: #ffffff;
}

.about-text .primary-button:hover {
    background: transparent;
    color: #ffffff;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    padding: 100px 0;
    background: #f3f3f1;
}

.contact-box {
    background: #111111;
    color: #ffffff;

    padding: 60px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;
}

.contact-box h2 {
    font-size: clamp(35px, 5vw, 55px);
    line-height: 1;
    letter-spacing: -2px;

    margin-bottom: 20px;
}

.contact-box p:not(.eyebrow) {
    max-width: 560px;

    color: #bbbbbb;
    font-size: 14px;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background: #ffffff;
    border-top: 1px solid #eeeeee;

    padding: 50px 0 25px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.footer-logo {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 2px;
}

.footer-inner p {
    color: #888888;
    font-size: 12px;
    margin-top: 7px;
}

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

.footer-links a {
    font-size: 12px;
    font-weight: 700;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;

    border-top: 1px solid #eeeeee;
}

.footer-bottom p {
    color: #999999;
    font-size: 11px;
}


/* =========================================================
   PRODUCT MODAL
========================================================= */

.modal {
    position: fixed;
    inset: 0;

    z-index: 2000;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 20px;
}

.modal.open {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.65);
}

.product-modal {
    position: relative;
    z-index: 2;

    width: min(900px, 100%);

    max-height: 90vh;
    overflow: auto;

    background: #ffffff;

    display: grid;
    grid-template-columns: 1fr 1fr;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;

    top: 12px;
    right: 12px;

    z-index: 5;

    width: 38px;
    height: 38px;

    border: none;

    background: #ffffff;
    color: #111111;

    border-radius: 50%;

    font-size: 24px;
    line-height: 1;
}

.modal-product-image {
    min-height: 550px;
    background: #eeeeee;
}

.modal-product-image img {
    width: 100%;
    height: 100%;

    min-height: 550px;

    object-fit: cover;
}

.modal-product-content {
    padding: 55px 40px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-category {
    color: #888888;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;

    margin-bottom: 10px;
}

.modal-product-content h2 {
    font-size: 34px;
    line-height: 1.05;

    margin-bottom: 15px;
}

.modal-price {
    font-size: 20px;
    font-weight: 900;

    margin-bottom: 20px;
}

.modal-description {
    color: #777777;

    font-size: 13px;
    line-height: 1.8;

    margin-bottom: 25px;
}


/* SIZE */

.modal-size-area {
    margin-bottom: 25px;
}

.modal-size-area label {
    display: block;

    font-size: 11px;
    font-weight: 800;

    margin-bottom: 8px;
}

.modal-size-area select {
    width: 100%;
    height: 44px;

    border: 1px solid #dddddd;

    padding: 0 12px;

    background: #ffffff;

    outline: none;
}


/* QUANTITY */

.quantity-area {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 25px;

    font-size: 12px;
    font-weight: 800;
}

.quantity-control {
    display: flex;
    align-items: center;

    border: 1px solid #dddddd;
}

.quantity-control button {
    width: 40px;
    height: 40px;

    border: none;
    background: #ffffff;

    font-size: 18px;
}

.quantity-control span {
    width: 40px;

    text-align: center;

    font-size: 13px;
}


/* MODAL CART BUTTON */

.modal-add-cart {
    width: 100%;

    min-height: 50px;

    border: 1px solid #111111;

    background: #111111;
    color: #ffffff;

    font-size: 12px;
    font-weight: 800;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.modal-add-cart:hover {
    background: #ffffff;
    color: #111111;
}


/* =========================================================
   CART DRAWER
========================================================= */

.cart-overlay {
    position: fixed;
    inset: 0;

    z-index: 2500;

    background: rgba(0, 0, 0, 0.55);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;

    z-index: 2600;

    top: 0;
    right: 0;

    width: min(450px, 100%);

    height: 100vh;

    background: #ffffff;

    transform: translateX(100%);

    transition:
        transform 0.35s ease;

    display: flex;
    flex-direction: column;
}

.cart-drawer.open {
    transform: translateX(0);
}


/* CART HEADER */

.cart-header {
    padding: 25px;

    border-bottom: 1px solid #eeeeee;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.cart-header h2 {
    font-size: 25px;
    line-height: 1;
}

.cart-close {
    width: 38px;
    height: 38px;

    border: 1px solid #dddddd;
    background: #ffffff;

    border-radius: 50%;

    font-size: 23px;
}


/* CART ITEMS */

.cart-items {
    flex: 1;

    overflow-y: auto;

    padding: 20px 25px;
}

.cart-item {
    display: grid;
    grid-template-columns: 75px 1fr auto;

    gap: 14px;

    padding: 15px 0;

    border-bottom: 1px solid #eeeeee;
}

.cart-item-image {
    width: 75px;
    height: 90px;

    object-fit: cover;

    background: #eeeeee;
}

.cart-item-details h4 {
    font-size: 13px;
    line-height: 1.3;

    margin-bottom: 5px;
}

.cart-item-price {
    font-size: 12px;
    font-weight: 800;

    margin-bottom: 5px;
}

.cart-size {
    color: #888888;

    font-size: 10px;
}

.cart-item > .quantity-control {
    align-self: center;
    grid-column: 2;
    grid-row: 2;

    width: fit-content;
}

.cart-item > .quantity-control button {
    width: 30px;
    height: 30px;
}

.cart-item > .quantity-control span {
    width: 30px;
}

.remove-item {
    align-self: start;

    border: none;
    background: transparent;

    color: #999999;

    font-size: 11px;
}

.remove-item:hover {
    color: #111111;
}


/* EMPTY CART */

.empty-cart {
    min-height: 350px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    color: #777777;
}

.empty-cart-icon {
    width: 60px;
    height: 60px;

    border: 1px solid #dddddd;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 15px;

    font-size: 22px;
}

.empty-cart p {
    font-size: 13px;
}

.continue-shopping {
    margin-top: 15px;

    border: none;
    background: transparent;

    text-decoration: underline;

    font-size: 11px;
    font-weight: 700;
}


/* CART FOOTER */

.cart-footer {
    padding: 20px 25px;

    border-top: 1px solid #eeeeee;
}

.cart-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 20px;
}

.cart-total-row span {
    font-size: 13px;
}

.cart-total-row strong {
    font-size: 19px;
}


/* CUSTOMER FORM */

.customer-form {
    margin-bottom: 15px;
}

.customer-form h3 {
    font-size: 12px;
    margin-bottom: 10px;
}

.customer-form input,
.customer-form textarea {
    width: 100%;

    border: 1px solid #dddddd;

    background: #ffffff;

    outline: none;

    padding: 11px 12px;

    font-size: 12px;

    margin-bottom: 8px;

    resize: vertical;
}

.customer-form input:focus,
.customer-form textarea:focus {
    border-color: #111111;
}


/* CHECKOUT */

.checkout-button {
    width: 100%;

    min-height: 48px;

    border: 1px solid #111111;

    background: #111111;
    color: #ffffff;

    font-size: 12px;
    font-weight: 800;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.checkout-button:hover {
    background: #ffffff;
    color: #111111;
}

.checkout-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}


/* =========================================================
   NOTIFICATION
========================================================= */

.hukzy-notification {
    position: fixed;

    z-index: 4000;

    left: 50%;
    bottom: 25px;

    transform: translate(-50%, 100px);

    min-width: 260px;

    padding: 14px 20px;

    background: #111111;
    color: #ffffff;

    text-align: center;

    font-size: 12px;
    font-weight: 700;

    opacity: 0;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;

    pointer-events: none;
}

.hukzy-notification.show {
    transform: translate(-50%, 0);
    opacity: 1;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .desktop-nav {
        gap: 17px;
    }

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

    .hero-content {
        gap: 40px;
    }

    .about-grid {
        gap: 50px;
    }
}


@media (max-width: 800px) {

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

    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;

        padding: 80px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-card {
        min-height: 380px;
    }

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

    .section-heading,
    .category-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-box {
        align-items: flex-start;
        flex-direction: column;

        padding: 40px 30px;
    }

    .footer-inner {
        flex-direction: column;
    }

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

    .modal-product-image {
        min-height: 320px;
        max-height: 400px;
    }

    .modal-product-image img {
        min-height: 320px;
        max-height: 400px;
    }

    .modal-product-content {
        padding: 35px 25px;
    }
}


@media (max-width: 520px) {

    .container {
        width: calc(100% - 24px);
    }

    .header-inner {
        min-height: 68px;
    }

    .logo {
        font-size: 20px;
    }

    .cart-button {
        padding: 9px 12px;
    }

    .hero {
        padding: 65px 0;
    }

    .hero h1 {
        font-size: 54px;
        letter-spacing: -3px;
    }

    .hero-card {
        min-height: 320px;
    }

    .hero-card-inner {
        padding: 30px;
    }

    .products-section,
    .category-section {
        padding: 75px 0;
    }

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

    .product-info {
        padding: 13px;
    }

    .product-info h3 {
        font-size: 14px;
    }

    .product-description {
        font-size: 11px;
    }

    .quick-add {
        display: none;
    }

    .add-cart-btn {
        font-size: 10px;
    }

    .section-heading h2,
    .category-heading h2 {
        font-size: 42px;
    }

    .about-section {
        padding: 80px 0;
    }

    .contact-section {
        padding: 70px 0;
    }

    .contact-box {
        padding: 30px 22px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 15px;
    }

    .product-modal {
        max-height: 95vh;
    }

    .modal-product-content {
        padding: 30px 20px;
    }

    .modal-product-content h2 {
        font-size: 28px;
    }

    .cart-drawer {
        width: 100%;
    }
}

/* =========================================================
   LIVE PAGE OVERRIDES
   These selectors match the current HTML and JavaScript API.
========================================================= */

:root {
    --ink: #171614;
    --muted: #766f67;
    --line: #e8e1d9;
    --paper: #fbfaf7;
    --cream: #f2ede5;
    --accent: #a85d3d;
    --accent-dark: #7f402a;
}

body {
    font-family: Georgia, "Times New Roman", serif;
    background: var(--paper);
    color: var(--ink);
}

.site-header {
    background: rgba(251, 250, 247, 0.94);
    border-bottom-color: var(--line);
    backdrop-filter: blur(14px);
}

.header-inner {
    min-height: 82px;
}

.logo {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    letter-spacing: 2.5px;
}

.logo-mark {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ink);
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px !important;
    letter-spacing: 0 !important;
    margin: 0 !important;
}

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

.nav-link {
    position: relative;
    color: var(--muted);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -9px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--ink);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.icon-button {
    position: relative;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    background: transparent;
    font-size: 17px;
}

.icon-button:hover {
    border-color: var(--ink);
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    border-top-color: var(--line);
    background: var(--paper);
}

.cart-count {
    position: absolute;
    top: -7px;
    right: -7px;
    min-width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font: 700 10px Arial, Helvetica, sans-serif;
}

.hero {
    min-height: 610px;
    background:
        radial-gradient(circle at 85% 25%, rgba(168, 93, 61, 0.12), transparent 25%),
        linear-gradient(120deg, #f7f2eb 0%, var(--paper) 62%, #eee5da 100%);
    border-bottom-color: var(--line);
}

.hero-content {
    display: block;
    max-width: 760px;
    padding: 70px 0;
}

.hero-eyebrow,
.section-eyebrow,
.product-category,
.footer-title,
.checkout-details h3,
.modal-option label {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.hero-eyebrow,
.section-eyebrow {
    display: block;
    color: var(--accent);
    margin-bottom: 18px;
}

.hero h1 {
    max-width: 700px;
    color: var(--ink);
    font-size: clamp(58px, 9vw, 112px);
    line-height: 0.9;
    letter-spacing: -5px;
}

.hero p {
    max-width: 470px;
    margin-top: 28px;
    color: var(--muted);
    font: 16px/1.8 Arial, Helvetica, sans-serif;
}

.hero-buttons {
    margin-top: 34px;
}

.primary-button,
.secondary-button,
.add-cart-btn,
.modal-add-cart-button,
.checkout-button {
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 0.8px;
}

.primary-button,
.add-cart-btn,
.modal-add-cart-button,
.checkout-button {
    background: var(--ink);
    border-color: var(--ink);
}

.primary-button:hover,
.add-cart-btn:hover,
.modal-add-cart-button:hover,
.checkout-button:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.secondary-button {
    background: transparent;
    border-color: var(--ink);
}

.secondary-button:hover {
    background: var(--ink);
    color: #fff;
}

.section {
    padding: 105px 0;
    border-bottom: 1px solid var(--line);
}

.section:nth-of-type(odd) {
    background: #f5f0e9;
}

.section-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 38px;
}

.section-title {
    font-size: clamp(38px, 5vw, 64px);
    line-height: 0.95;
    letter-spacing: -2.5px;
}

.section-description {
    max-width: 340px;
    color: var(--muted);
    font: 14px/1.7 Arial, Helvetica, sans-serif;
}

.search-wrapper input,
.checkout-details input,
.checkout-details textarea,
.modal-size-select {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.68);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
}

.search-wrapper input:focus,
.checkout-details input:focus,
.checkout-details textarea:focus,
.modal-size-select:focus {
    border-color: var(--accent);
}

.filter-button {
    border-color: var(--line);
    background: transparent;
    color: var(--muted);
    font-family: Arial, Helvetica, sans-serif;
}

.filter-button:hover,
.filter-button.active {
    background: var(--ink);
    border-color: var(--ink);
}

.product-card {
    border-color: var(--line);
    background: #fff;
}

.product-image {
    background: var(--cream);
}

.product-badge {
    background: var(--accent);
    font-family: Arial, Helvetica, sans-serif;
}

.product-info h3,
.product-price {
    color: var(--ink);
}

.product-category {
    color: var(--accent);
    letter-spacing: 1.5px;
}

.product-description {
    color: var(--muted);
    font-family: Arial, Helvetica, sans-serif;
}

.site-footer {
    padding: 70px 0 25px;
    background: var(--ink);
    border-top: 0;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
}

.footer-brand p {
    max-width: 280px;
    margin-top: 18px;
    color: #bcb3a9;
    font: 13px/1.7 Arial, Helvetica, sans-serif;
}

.site-footer .logo-mark {
    background: #fff;
    color: var(--ink);
}

.footer-title {
    margin-bottom: 18px;
    color: #bcb3a9;
}

.site-footer .footer-links {
    display: grid;
    gap: 11px;
}

.site-footer .footer-links a {
    color: #fff;
    font: 13px Arial, Helvetica, sans-serif;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 60px;
    border-top-color: #3a3733;
    color: #978f87;
    font: 11px Arial, Helvetica, sans-serif;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
}

.cart-drawer.open,
.cart-drawer.active {
    transform: translateX(0);
}

.cart-header,
.cart-footer {
    border-color: var(--line);
}

.cart-items {
    min-height: 0;
}

.cart-footer {
    flex-shrink: 0;
    max-height: 52vh;
    overflow-y: auto;
}

.cart-header h2 {
    font-family: Georgia, "Times New Roman", serif;
}

.checkout-details h3 {
    margin-bottom: 8px;
}

.checkout-details p {
    margin-bottom: 14px;
    color: var(--muted);
    font-size: 12px;
}

.checkout-details input,
.checkout-details textarea {
    width: 100%;
    padding: 11px 12px;
    margin-bottom: 8px;
    border: 1px solid var(--line);
    outline: none;
    resize: vertical;
    font-size: 12px;
}

.product-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-modal.active {
    display: flex;
}

.product-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(23, 22, 20, 0.72);
}

.product-modal-box {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: min(900px, 100%);
    max-height: 90vh;
    overflow: auto;
    background: var(--paper);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.product-modal-details {
    padding: 55px 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border: 0;
    background: #fff;
    font-size: 24px;
}

.modal-product-title {
    margin: 8px 0 14px;
    font-size: 38px;
    line-height: 1;
}

.modal-product-description {
    margin-bottom: 25px;
    color: var(--muted);
    font: 13px/1.8 Arial, Helvetica, sans-serif;
}

.modal-option {
    margin-bottom: 22px;
}

.modal-option label {
    display: block;
    margin-bottom: 8px;
}

.modal-size-select {
    width: 100%;
    height: 44px;
    padding: 0 12px;
    border: 1px solid var(--line);
    outline: none;
}

.modal-quantity-control {
    width: fit-content;
    display: flex;
    align-items: center;
    border: 1px solid var(--line);
}

.modal-quantity-control button {
    width: 38px;
    height: 38px;
    border: 0;
    background: transparent;
}

.modal-quantity-control span {
    width: 38px;
    text-align: center;
    font: 13px Arial, Helvetica, sans-serif;
}

.modal-add-cart-button {
    min-height: 50px;
    color: #fff;
    border: 1px solid var(--ink);
    font-size: 11px;
    font-weight: 800;
}

.hukzy-notification {
    background: var(--accent);
    font-family: Arial, Helvetica, sans-serif;
}

@media (max-width: 800px) {
    .main-nav { display: none; }
    .menu-toggle { display: flex; }
    .hero-content { padding: 55px 0; }
    .section-header { align-items: flex-start; flex-direction: column; gap: 16px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
    .footer-brand { grid-column: 1 / -1; }
    .product-modal-box { grid-template-columns: 1fr; }
    .product-modal-image { min-height: 300px; max-height: 370px; }
    .product-modal-details { padding: 35px 25px; }
}

@media (max-width: 520px) {
    .container { width: calc(100% - 28px); }
    .header-inner { min-height: 70px; }
    .logo { font-size: 13px; }
    .hero h1 { font-size: 57px; letter-spacing: -3px; }
    .section { padding: 75px 0; }
    .products-grid { gap: 10px; }
    .product-info { padding: 14px 12px; }
    .product-description { min-height: 0; }
    .add-cart-btn { min-height: 38px; padding: 0 5px; font-size: 9px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: auto; }
    .footer-bottom { flex-direction: column; margin-top: 40px; }
}