    /* ========================
    RESET & BASE STYLES
    ======================== */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html, body {
        height: 100%;
        font-family: 'Merriweather', Georgia, serif;
        scroll-behavior: smooth;
        color: #3e2c1c;
        background: #6d6c6c;
    }

    h1, h2, h3, h4 {
        font-family: 'Merriweather', Georgia, serif;
        font-weight: 700;
        color: #5a3e2b;
    }

    a, button {
        font-family: 'Merriweather', Georgia, serif;
        font-weight: bold;
        color: #3e2c1c;
        text-decoration: none;
    }

    /* ========================
    HEADER / NAVBAR
    ======================== */
    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 40px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: transparent;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255,255,255,0.2);
        box-shadow: 0 8px 32px rgba(0,0,0,0.1);
        transition: 0.3s;
        color: white;
        transition: transform 0.3s ease, background 0.3s;
    }

    header img {
        width: 55px;        /* adjust size here */
        height: 55px;       /* keeps it square */
        object-fit: cover;  /* prevents stretching */
        border-radius: 50%; /* optional: makes it circular */
    }

    header.hide {
        transform: translateY(-100%);
    }

    header.scrolled {
        background: rgba(45, 42, 38, 0.6);
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }

    nav a {
        margin-left: 20px;
        font-weight: 500;
        color: white;
        transition: 0.3s;
    }

    nav a:hover {
        text-decoration: underline;
    }

    header .logo a {
        color: inherit;
        text-decoration: none;
    }

    /* ========================
    SECTIONS
    ======================== */
    section {
        padding: 60px 40px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .hero {
        position: relative;
        height: 100vh;
        overflow: hidden;
    }

    /* Slides container */
    .hero-slides {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }

    /* Each slide */
    .slide {
        position: absolute;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        opacity: 0;
        transition: opacity 1s ease-in-out;
        z-index: 0;
        filter: brightness(1.05) contrast(1.05);

    }

    /* Active slide */
    .slide.active {
        opacity: 1;
        z-index: 1;
    }

    /* Overlay (clicks pass through) */
    .hero::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        top: 0;
        left: 0;
        z-index: 1;
        pointer-events: none;
        background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.35),
        rgba(0,0,0,0.55)
    );
    }

    /* ========================
    HERO CONTENT (READABLE)
    ======================== */
    .hero-container {
        position: relative;
        z-index: 2;
        max-width: 800px;
        margin: auto;
        top: 50%;
        transform: translateY(-50%);
        padding: 40px;
        text-align: center;
        color: #fff;
        border-radius: 15px;
        line-height: 1.8;
        background: rgba(0, 0, 0, 0.25); /* was 0.4 */
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        border: 1px solid rgba(255,255,255,0.12);
    }

    .hero-container h1 {
        font-size: 3rem;
        margin-bottom: 20px;
        line-height: 1.2;
        color: #f7e6d0;
            text-shadow: 0 2px 10px rgba(0,0,0,0.6);

    }

    .hero-container p {
        font-size: 1.1rem;
        margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.6);

    }

    .hero-quote {
        font-style: italic;
        font-weight: bold;
        margin: 20px 0;
        color: #ffe8b0;
    }

    .arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-size: 2rem;
        background: rgba(0,0,0,0.4);
        color: white;
        border: none;
        padding: 12px 18px;
        cursor: pointer;
        z-index: 3;
        border-radius: 50%;
        transition: background 0.3s;
    }

    .arrow.left { left: 20px; }
    .arrow.right { right: 20px; }
    .arrow:hover { background: rgba(0,0,0,0.7); }

    /* ========================
    SEARCH FORM
    ======================== */
    .search-form {
        margin: 20px auto;
        display: flex;
        justify-content: center;
        max-width: 400px;
    }

    .search-form input[type="text"] {
        flex: 1;
        padding: 10px 15px;
        border: 2px solid #8b5e3c;
        border-right: none;
        border-radius: 25px 0 0 25px;
        font-size: 16px;
        outline: none;
        transition: border 0.3s;
    }

    .search-form input[type="text"]:focus {
        border-color: #a6784b;
    }

    .search-form button {
        padding: 10px 20px;
        border: 2px solid #8b5e3c;
        border-left: none;
        background: #8b5e3c;
        color: white;
        font-weight: bold;
        border-radius: 0 25px 25px 0;
        cursor: pointer;
        transition: background 0.3s;
    }

    .search-form button:hover { background: #a6784b; }

    /* ========================
    PRODUCTS GRID
    ======================== */
    #products {
        background: #f0e6d2;
        text-align: center;
        padding: 60px 40px 80px;
    }

    .grid {
        margin-top: 30px;
        display: grid;
        gap: 25px;
        width: 100%;
        max-width: 1200px;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    @media (min-width: 1200px) {
        .grid { grid-template-columns: repeat(4, 1fr); }
    }

    .card {
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        transition: transform 0.3s;
        cursor: pointer;
    }

    .card:hover { transform: scale(1.05); }

    .card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

    .card-content { padding: 15px; text-align: center; }

    .price { color: #8b5e3c; font-weight: bold; }

    /* ========================
    MODAL
    ======================== */
    .modal {
        display: none;
        position: fixed;
        z-index: 1000;
        padding-top: 60px;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.8);
    }

    .modal-content {
        background: white;
        margin: auto;
        padding: 20px;
        width: 80%;
        max-width: 600px;
        border-radius: 10px;
        text-align: center;
        animation: zoomIn 0.3s;
    }

    .modal-content img {
        width: 100%;
        max-height: 300px;
        object-fit: cover;
    }

    .close {
        float: right;
        font-size: 28px;
        cursor: pointer;
    }

    @keyframes zoomIn {
        from { transform: scale(0.7); }
        to { transform: scale(1); }
    }

    /* ========================
    ABOUT SECTION
    ======================== */
    #about {
        background: #e0d3b8;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 60px 40px;
        text-align: left;
    }

/* ========================
   CONTACT SECTION (PROFESSIONAL UPGRADE)
   ======================== */
#contact {
    background: linear-gradient(135deg, #d2b48c, #e6d2b5);
    color: #2d2a26;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
}

/* CONTAINER */
.contact-container {
    max-width: 1100px;
    width: 100%;
}

/* HEADER */
.contact-header h2 {
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-header p {
    font-size: 16px;
    margin-bottom: 50px;
    color: #3b342c;
}

/* GRID */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

/* CARD */
.contact-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 35px 25px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: 0.3s ease;
    backdrop-filter: blur(6px);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* ICON */
.contact-icon {
    font-size: 28px;
    margin-bottom: 12px;
    color: #2d2a26;
}

/* FACEBOOK COLOR */
.fa-facebook {
    color: #1877F2;
}

/* TEXT */
.contact-card h3 {
    margin-bottom: 8px;
    font-size: 18px;
}

.contact-card p {
    font-size: 14px;
}

/* LINKS */
.contact-card a {
    color: #1f4ed8;
    font-weight: 600;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* FOOTER */
.contact-footer {
    margin-top: 40px;
    font-size: 14px;
    color: #3b342c;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .contact-header h2 {
        font-size: 32px;
    }
}
/* ========================
   CONTACT SECTION MODERN
   ======================== */
#contact {
    background: linear-gradient(135deg, #d2b48c, #e6d2b5);
    padding: 80px 20px;
    text-align: center;
}

/* CONTAINER */
.contact-container {
    max-width: 1100px;
    margin: auto;
}

/* LOGO SECTION */
.contact-logo {
    margin-bottom: 40px;
}

.contact-logo img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.contact-logo h2 {
    font-size: 40px;
    margin: 10px 0;
    color: #2d2a26;
}

.contact-logo p {
    color: #3b342c;
}

/* GRID */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

/* CARD */
.contact-card {
    background: rgba(255,255,255,0.9);
    padding: 30px 20px;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-card:hover {
    transform: translateY(-8px);
}

/* ICON */
.contact-icon {
    font-size: 28px;
    margin-bottom: 10px;
}

/* FACEBOOK COLOR */
.fa-facebook {
    color: #1877F2;
}

/* TEXT */
.contact-card h3 {
    margin: 5px 0;
}

.contact-card p {
    font-size: 14px;
    color: #444;
}

/* FOOTER */
.contact-footer {
    margin-top: 40px;
    font-size: 14px;
    color: #3b342c;
}
    /* ========================
    FOOTER
    ======================== */
    footer {
        background: #1f1c18;
        color: white;
        text-align: center;
        padding: 20px;
    }

    /* ========================
    PRODUCT DETAIL (product.php)
    ======================== */
/* ================================
   Product Detail Page Layout
================================ */

body.product-detail-page {
    --product-header-height: 76px;

    background-color: #2a2622;
    min-height: 100%;
}

/* Navigation links */
body.product-detail-page header nav a {
    color: #ffffff;
}

/* ================================
   Main Layout (Full-bleed)
================================ */

body.product-detail-page .product-detail-main {
    width: 100%;
    max-width: none;
    margin: 0;

    padding-top: 0; /* removed header offset */

    display: flex;
    flex-direction: column;

    min-height: 100vh;
    min-height: 100dvh;
}

/* ================================
   Top Bar
================================ */

body.product-detail-page .product-detail-topbar {
    flex-shrink: 0;
    width: 100%;

    padding: 12px clamp(20px, 4vw, 48px);

    background-color: rgba(20, 18, 16, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

    .breadcrumb {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.85);
        margin-bottom: 0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 8px;
    }

    .breadcrumb a {
        color: #f7e6d0;
        font-weight: 600;
        text-decoration: none;
        border-bottom: 1px solid transparent;
        transition: border-color 0.2s, color 0.2s;
    }

    .breadcrumb a:hover {
        border-bottom-color: rgba(247, 230, 208, 0.6);
    }

    .breadcrumb__sep {
        opacity: 0.5;
        user-select: none;
    }

    .breadcrumb__current {
        color: rgba(255, 255, 255, 0.95);
        font-weight: 700;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    body.product-detail-page .product-detail {
        flex: 1;
        min-height: 0;
        display: grid;
        grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
        grid-template-rows: minmax(0, 1fr);
        gap: 0;
        align-items: stretch;
        background: #f7f1e5;
        border-radius: 0;
        box-shadow: none;
        overflow: hidden;
        border: none;
    }

    .product-detail--empty {
        grid-template-columns: 1fr;
        flex: 1;
        min-height: min(70vh, 560px);
        padding: clamp(32px, 6vw, 72px) clamp(20px, 4vw, 48px);
        text-align: center;
        align-content: center;
        justify-items: center;
    }

    body.product-detail-page .product-detail__media {
        margin: 0;
        background: #1c1917;
        display: flex;
        flex-direction: column;
        justify-content: stretch;
        align-items: stretch;
        min-height: 0;
        height: 100%;
    }

    .product-detail__image-frame {
        aspect-ratio: 1 / 1;
        max-height: min(70vh, 640px);
    }

    .product-detail__image-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    body.product-detail-page .product-detail__placeholder {
        flex: 1;
        width: 100%;
        min-height: 240px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.45);
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        font-size: 0.85rem;
        background: #1c1917;
    }

    /* Product image gallery (product.php — primary + image2) */
    body.product-detail-page .product-gallery {
        position: relative;
        flex: 1;
        width: 100%;
        height: 100%;
        max-width: none;
        margin: 0;
        background: #1c1917;
        outline: none;
        box-shadow: none;
    }

    .product-gallery {
        position: relative;
        width: min(100%, min(70vh, 640px));
        max-width: 100%;
        margin: 0 auto;
        background: #efe8de;
        outline: none;
        box-shadow: inset 0 0 0 1px rgba(90, 62, 43, 0.08);
    }

    .product-gallery:focus-visible {
        box-shadow: 0 0 0 3px rgba(247, 230, 208, 0.65), inset 0 0 0 1px rgba(90, 62, 43, 0.08);
    }

    body.product-detail-page .product-gallery:focus-visible {
        box-shadow: 0 0 0 3px rgba(247, 230, 208, 0.55);
    }

    .product-gallery__viewport {
        overflow: hidden;
        width: 100%;
        aspect-ratio: 1 / 1;
        touch-action: pan-x pinch-zoom;
        background: #efe8de;
    }

    body.product-detail-page .product-gallery__viewport {
        flex: 1;
        height: 100%;
        min-height: 0;
        aspect-ratio: unset;
        max-height: none;
        background: #1c1917;
    }

    .product-gallery__track {
        display: flex;
        align-items: stretch;
        height: 100%;
        min-height: 0;
        transition: transform 0.38s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .product-gallery__slide {
        flex: 0 0 100%;
        height: 100%;
        min-height: 0;
        min-width: 0;
        background: #efe8de;
    }

    body.product-detail-page .product-gallery__slide {
        background: #1c1917;
    }

    .product-gallery__slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        user-select: none;
    }

    .product-gallery__nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
        width: 44px;
        height: 44px;
        border: none;
        border-radius: 50%;
        cursor: pointer;
        font-size: 1.5rem;
        line-height: 1;
        color: #fff;
        background: rgba(0, 0, 0, 0.45);
        backdrop-filter: blur(6px);
        transition: background 0.2s, transform 0.15s;
    }

    .product-gallery__nav:hover {
        background: rgba(139, 94, 60, 0.85);
    }

    .product-gallery__nav:active {
        transform: translateY(-50%) scale(0.94);
    }

    .product-gallery__nav--prev {
        left: 12px;
    }

    .product-gallery__nav--next {
        right: 12px;
    }

    .product-gallery__counter {
        position: absolute;
        top: 14px;
        right: 14px;
        z-index: 3;
        padding: 6px 12px;
        border-radius: 999px;
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 0.04em;
        color: #f7e6d0;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(6px);
        pointer-events: none;
        user-select: none;
    }

    .product-gallery__counter-sep {
        opacity: 0.55;
        margin: 0 2px;
    }

    .product-gallery__dots {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 14px;
        z-index: 2;
        display: flex;
        justify-content: center;
        gap: 8px;
        pointer-events: auto;
    }

    .product-gallery__dot {
        width: 9px;
        height: 9px;
        padding: 0;
        border: none;
        border-radius: 50%;
        cursor: pointer;
        background: rgba(255, 255, 255, 0.35);
        transition: transform 0.2s, background 0.2s;
    }

    .product-gallery__dot.is-active {
        background: #f7e6d0;
        transform: scale(1.2);
    }

    @media (prefers-reduced-motion: reduce) {
        .product-gallery__track {
            transition: none;
        }
    }

    body.product-detail-page .product-detail__content {
        min-height: 0;
        height: 100%;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: clamp(28px, 4vw, 56px) clamp(22px, 4vw, 48px) 40px;
        text-align: left;
        border-left: 1px solid rgba(90, 62, 43, 0.12);
        background: #f7f1e5;
    }

    .product-detail__content {
        padding: 40px 40px 44px;
        text-align: left;
    }

    .product-detail__content--full {
        max-width: 520px;
        margin: 0 auto;
    }

    .product-detail__eyebrow {
        font-size: 0.75rem;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: #8b5e3c;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .product-detail__title {
        font-size: clamp(1.75rem, 3vw, 2.25rem);
        line-height: 1.2;
        margin-bottom: 24px;
        color: #3e2c1c;
    }

    body.product-detail-page .product-detail__title {
        font-size: clamp(2rem, 3.5vw, 2.85rem);
        line-height: 1.15;
    }

    .product-detail__lead {
        font-size: 1.05rem;
        line-height: 1.7;
        color: #5a3e2b;
        margin-bottom: 12px;
    }

    .product-detail__meta {
        margin: 0 0 28px;
        padding: 0;
    }

    .product-detail__meta-row {
        display: grid;
        grid-template-columns: 120px 1fr;
        gap: 12px 20px;
        padding: 14px 0;
        border-bottom: 1px solid rgba(90, 62, 43, 0.12);
        align-items: start;
    }

    .product-detail__meta-row--block {
        grid-template-columns: 1fr;
    }

    .product-detail__meta-row--block dt {
        margin-bottom: 6px;
    }

    .product-detail__meta dt {
        margin: 0;
        font-weight: 700;
        color: #5a3e2b;
        font-size: 0.85rem;
    }

    .product-detail__meta dd {
        margin: 0;
        color: #3e2c1c;
        line-height: 1.65;
    }

    .product-detail__price-block {
        background: rgba(139, 94, 60, 0.1);
        border: 1px solid rgba(139, 94, 60, 0.25);
        border-radius: 12px;
        padding: 18px 20px;
        margin-bottom: 28px;
    }

    .product-detail__price-label {
        display: block;
        font-size: 0.75rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: #8b5e3c;
        font-weight: 700;
        margin-bottom: 6px;
    }

    .product-detail__price {
        margin: 0;
        font-size: 1.75rem;
        font-weight: 800;
        color: #5a3e2b;
    }

    .product-detail__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 24px;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 14px 22px;
        border-radius: 10px;
        font-size: 1rem;
        font-weight: 700;
        cursor: pointer;
        transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
        border: 2px solid transparent;
        text-decoration: none;
    }

    .btn--primary {
        background: #5a3e2b;
        color: #fff !important;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    }

    .btn--primary:hover {
        transform: translateY(-1px);
        background: #6d4c36;
    }

    .btn--ghost {
        background: transparent;
        color: #5a3e2b !important;
        border-color: rgba(90, 62, 43, 0.35);
    }

    .btn--ghost:hover {
        background: rgba(90, 62, 43, 0.06);
    }

    .product-detail__note {
        font-size: 0.95rem;
        line-height: 1.65;
        color: #5a3e2b;
        padding: 16px 18px;
        background: rgba(255, 255, 255, 0.55);
        border-radius: 10px;
        border-left: 4px solid #8b5e3c;
    }

    .product-cta-strip {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 900;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        padding: 16px 20px;
        background: linear-gradient(90deg, #2d2a26 0%, #3e342c 50%, #2d2a26 100%);
        color: #f7e6d0;
        text-decoration: none;
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.25);
        transition: background 0.2s ease, transform 0.15s ease;
    }

    .product-cta-strip:hover {
        background: linear-gradient(90deg, #352f2a 0%, #4a4038 50%, #352f2a 100%);
    }

    .product-cta-strip__text {
        font-size: 0.8rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        opacity: 0.9;
    }

    .product-cta-strip__action {
        font-size: 1.05rem;
        font-weight: 800;
    }

    body.product-detail-page .product-gallery {
        width: 100%;
        aspect-ratio: 1 / 1;
        height: auto;
    }

    body.product-detail-page .product-gallery__viewport {
        width: 100%;
        height: 100%;
        aspect-ratio: 1 / 1;   /* ✅ force square here too */
    }

    body.product-detail-page .product-gallery__track,
    body.product-detail-page .product-gallery__slide {
        height: 100%;
    }

    body.product-detail-page .product-gallery__slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .contact-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.contact-modal__box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    width: min(400px, 90%);
    text-align: center;
    position: relative;
}

.contact-modal__close {
    position: absolute;
    right: 12px;
    top: 8px;
    font-size: 24px;
    cursor: pointer;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.contact-links a {
    padding: 10px;
    background: #5a3e2b;
    color: white;
    border-radius: 8px;
    text-decoration: none;
}

.contact-links a:hover {
    background: #6d4c36;
}

    /* ========================
ABOUT PAGE (PROFESSIONAL LAYOUT UPGRADE)
======================== */

.about-section {
    background: #e0d3b8;
    min-height: 100vh;
    padding: 80px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-section .container {
    max-width: 1200px;
    width: 100%;
}

/* Page Title */
.about-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 40px;
    color: #5a3e2b;
}

/* Intro Paragraph */
.about-section .intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 850px;
    margin: 0 auto 60px;
    line-height: 1.8;
    color: #3e2c1c;
}

/* Grid Layout */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 70px;
}

/* Cards */
.about-block {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(90, 62, 43, 0.15);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.about-block h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
    color: #5a3e2b;
}

.about-block p,
.about-block ul {
    font-size: 1rem;
    line-height: 1.7;
    color: #3e2c1c;
}

.about-block ul {
    padding-left: 18px;
}

.about-block ul li {
    margin-bottom: 8px;
}

/* ========================
OWNER SECTION
======================== */

.owner-section {
    margin: 60px 0;
}

.owner-section h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 25px;
    color: #5a3e2b;
}

.owner-card {
    display: flex;
    align-items: center;
    gap: 25px;
    background: rgba(255,255,255,0.7);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(90, 62, 43, 0.15);
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.owner-card img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #8b5e3c;
}

.owner-card h4 {
    margin-bottom: 8px;
    font-size: 1.3rem;
}

/* ========================
ARTISANS SECTION
======================== */

.artisans-section {
    margin-top: 70px;
    text-align: center;
}

.artisans-section h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.artisans-section p {
    max-width: 750px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

/* Artisan Grid */
.artisans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

/* Artisan Cards */
.artisan-card {
    background: rgba(255,255,255,0.7);
    border-radius: 14px;
    padding: 20px;
    border: 1px solid rgba(90, 62, 43, 0.15);
    transition: transform 0.3s ease;
}

.artisan-card:hover {
    transform: translateY(-6px);
}

.artisan-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 12px;
}

.artisan-card h4 {
    margin-bottom: 6px;
}

/* ========================
CLOSING SECTION
======================== */

.closing {
    margin-top: 60px;
    text-align: center;
    padding: 40px;
    background: rgba(139, 94, 60, 0.12);
    border-left: 5px solid #8b5e3c;
    border-radius: 12px;
    font-size: 1.2rem;
    line-height: 1.8;
}
/* =========================
   MOBILE RESPONSIVE FIX
   ========================= */

@media (max-width: 768px) {

    /* Make layout stack instead of side-by-side */
    body.product-detail-page .product-detail {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    /* Reduce padding */
    body.product-detail-page .product-detail__content {
        padding: 20px 16px 40px;
        border-left: none;
        border-top: 1px solid rgba(90, 62, 43, 0.12);
    }

    /* Make gallery height more natural on mobile */
    .product-gallery__viewport {
        aspect-ratio: 1 / 1;
        height: auto;
    }

    /* Title sizing */
    body.product-detail-page .product-detail__title {
        font-size: 1.8rem;
    }

    /* Meta layout becomes single column */
    .product-detail__meta-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    /* Buttons stack nicely */
    .product-detail__actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    /* Breadcrumb text smaller */
    .breadcrumb {
        font-size: 0.75rem;
    }

    /* Price block tighter */
    .product-detail__price {
        font-size: 1.4rem;
    }

    /* Modal box spacing */
    .contact-modal__box {
        padding: 20px;
    }
}
/* =========================
   GLOBAL MOBILE IMPROVEMENTS
   ========================= */
@media (max-width: 768px) {

    /* Prevent horizontal scroll issues */
    html, body {
        overflow-x: hidden;
    }

    /* ================= HEADER ================= */
    header {
        padding: 12px 16px;
        flex-wrap: wrap;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-top: 8px;
    }

    nav a {
        margin-left: 0;
        font-size: 0.85rem;
    }

    .logo {
        font-size: 1rem;
    }

    /* ================= HERO ================= */
    .hero-container {
        padding: 20px 16px;
        width: 92%;
    }

    .hero-container h1 {
        font-size: 1.8rem;
    }

    .hero-container p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .arrow {
        font-size: 1.3rem;
        padding: 8px 12px;
    }

    /* ================= SECTIONS ================= */
    section {
        padding: 40px 16px;
    }

    /* ================= PRODUCTS ================= */
    .grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 15px;
    }

    .card img {
        height: 160px;
    }

    /* ================= ABOUT ================= */
    .about-section {
        padding: 50px 16px;
    }

    .about-section h2 {
        font-size: 2rem;
    }

    .about-section .intro {
        font-size: 1rem;
    }

    .owner-card {
        flex-direction: column;
        text-align: center;
    }

    .owner-card img {
        width: 110px;
        height: 110px;
    }

    /* ================= ARTISANS ================= */
    .artisans-grid {
        grid-template-columns: 1fr;
    }

    /* ================= CONTACT ================= */
    #contact {
        padding: 50px 16px;
    }

    #contact ul {
        padding-left: 0;
    }

    /* ================= FOOTER ================= */
    footer {
        font-size: 0.85rem;
    }
}

/* =========================
   SMALL PHONES (extra polish)
   ========================= */
@media (max-width: 480px) {

    .hero-container h1 {
        font-size: 1.5rem;
    }

    .hero-container {
        top: 55%;
    }

    .grid {
        grid-template-columns: 1fr 1fr;
    }

    .search-form {
        flex-direction: column;
    }

    .search-form input,
    .search-form button {
        width: 100%;
        border-radius: 8px;
    }

    .search-form button {
        border-left: 2px solid #8b5e3c;
        margin-top: 8px;
    }
}
/* =========================
   HAMBURGER MENU BASE
   ========================= */

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2000;
}

/* Desktop nav */
nav {
    display: flex;
    gap: 20px;
}

@media (max-width: 768px) {

    header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 12px 16px;
    }

    .hamburger {
        display: block; /* ✅ SHOW IT */
        width: 30px;
        height: 22px;
        position: relative;
    }

    /* Hamburger lines */
    .hamburger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 3px;
        background: white;
        border-radius: 2px;
        transition: 0.3s;
    }

    .hamburger span:nth-child(1) { top: 0; }
    .hamburger span:nth-child(2) { top: 9px; }
    .hamburger span:nth-child(3) { bottom: 0; }

    nav {
        position: absolute;
        top: 70px; /* below header */
        right: 16px;
        width: 200px;

        background: rgba(30, 27, 24, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 10px;
        padding: 15px;

        display: flex;
        flex-direction: column;
        gap: 12px;

        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        transition: 0.25s ease;
    }

    nav.open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    nav a {
        text-align: left;
        font-size: 0.95rem;
    }
}