/* ======================= */
/* GLOBAL STYLES       */
/* ======================= */
:root {
    /* Theme Colors: Black, Gold, Brown */
    --primary-dark: #1a1a1a;    /* Soft Black */
    --primary-gold: #b38b59;   /* Rich Gold/Leather Brown */
    --primary-gold-dark: #9c7a4d; /* Darker Gold for hover */
    --off-white: #FBFBF8;
    --cream-bg: #F4F0EB;
    --light-gray: #f0f0f0;
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    --content-width: 1280px;
    
    /* Global Spacing */
    --mobile-padding: 16px;
    --button-padding: 12px 24px;
    --input-height: 48px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-dark); 
    color: var(--text-dark);
    margin: 0;
    overflow-x: hidden; /* Prevent horizontal scroll */
    font-size: 16px;
    line-height: 1.6;
}

/* Typography Hierarchy */
h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1rem 0;
}

h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 0.875rem 0;
}

h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 0.75rem 0;
}

h4 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.5;
    margin: 0 0 0.625rem 0;
}

p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

/* Mobile Typography */
@media (max-width: 768px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.875rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.125rem; }
}

.page-wrapper {
    background-color: var(--off-white);
    max-width: 1440px; 
    margin: 0 auto;
    overflow-x: hidden; /* Prevent horizontal scroll */
    width: 100%;
}

.container {
    width: 100%;
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

/* Mobile Container Padding */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--mobile-padding);
    }
}

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

/* Section Titles */
.section-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 400;
    margin: 0;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-gold);
    border-radius: 2px;
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

/* ======================= */
/* BUTTON STYLES       */
/* ======================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--button-padding);
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
    font-family: var(--font-body);
    text-decoration: none;
    min-height: 48px;
}

.btn-primary {
    background-color: var(--primary-dark);
    color: #FFFFFF;
    cursor: pointer;
}
.btn-primary:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    gap: 10px;
    cursor: pointer;
}
.btn-secondary:hover {
    color: var(--primary-gold);
    transform: translateY(-1px);
}

.btn-secondary .play-icon {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #DDD;
    font-size: 0.7rem;
    padding-left: 3px;
}

.btn-outline {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-dark);
    border: 1px solid #D0D0D0;
    padding: var(--button-padding);
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    cursor: pointer;
    text-decoration: none;
}
.btn-outline:hover {
    background-color: var(--text-dark);
    color: #FFFFFF;
    border-color: var(--text-dark);
    transform: translateY(-2px);
}

/* Shop Now Button - Product Cards */
.shop-now-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 32px);
    padding: 15px 30px;
    margin: 0 16px 16px 16px;
    background-color: var(--primary-dark);
    color: #FFFFFF;
    border: 1px solid transparent;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.shop-now-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 26, 26, 0.3);
}

.shop-now-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(26, 26, 26, 0.2);
}

.shop-now-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Mobile Button Optimization */
@media (max-width: 768px) {
    .btn {
        min-height: 48px;
        padding: 14px 20px;
        font-size: 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    .btn-outline {
        padding: 14px 20px;
    }
    
    .shop-now-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        margin: 0 16px 16px 16px;
    }
}

/* ======================= */
/* HEADER SECTION      */
/* ======================= */
.main-header {
    background: var(--off-white);
    border-bottom: 1px solid #eee;
}

.brand-bar {
    padding: 25px 0;
    text-align: center;
}

/* Mobile override for brand-bar - works for both header structures */
@media (max-width: 992px) {
    /* Universal logo positioning - always left aligned in mobile */
    .brand-bar {
        padding: 15px 40px !important;
        text-align: left !important;
    }
    
    .brand-bar .logo {
        font-size: 2.5rem;
    }
    
    /* For main page where brand-bar is inside navbar */
    .navbar .brand-bar {
        padding: 0 !important;
        flex: 1;
        order: 1;
    }
    
    /* Ensure navbar has proper flex layout */
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 30px;
    }
    
    /* Hide desktop nav-icons */
    .nav-icons {
        display: none;
    }
    
    /* Hide nav-links by default in mobile */
    .nav-links {
        display: none;
    }
}
.brand-bar .logo {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    display: inline-block;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    border-top: 1px solid #eee;
}

.nav-links, .nav-icons {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-dark);
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-link.active, .nav-link:hover {
    font-weight: 500;
    border-bottom: 2px solid var(--text-dark);
}

.nav-icons .icon-link {
    color: var(--text-dark);
}
.nav-icons .icon-link svg {
    transition: stroke 0.3s ease;
}
.nav-icons .icon-link:hover svg {
    stroke: var(--primary-gold);
}

.burger-menu {
    display: none; 
    cursor: pointer;
}

/* ======================= */
/* HERO SECTION       */
/* ======================= */
.hero-section {
    padding: 60px 0;
}

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

.hero-content {
    flex: 1;
    max-width: 500px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 25px 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-content h1 .highlight {
    display: block;
    position: relative;
    display: inline-block;
}

.hero-content h1 .highlight::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%) rotate(-5deg);
    width: 380px; 
    height: 90px;
    background-color: #f7f0e8;
    border: 2px solid #e7d8c7;
    border-radius: 50%;
    z-index: -1;
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 30px;
}

.hero-images {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 500px;
}

.image-large-wrapper {
    width: 380px;
    height: 480px;
    border-radius: 190px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    background-color: var(--cream-bg);
    padding: 20px;
    box-sizing: border-box;
}
.image-large-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 170px;
}

.image-large-wrapper img,
.image-small-wrapper img,
.hero-images img {
    object-fit: cover;
}

.image-small-wrapper {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 220px;
    height: 280px;
    background-color: var(--cream-bg);
    padding: 15px;
    border-radius: 110px;
    overflow: hidden;
    z-index: 3;
    transform: translateX(30%);
    box-shadow: -10px 10px 20px rgba(0,0,0,0.05);
    border: 1px solid #fff;
}
.image-small-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 95px;
}

/* ======================= */
/* NEW ARRIVAL SECTION  */
/* ======================= */
.new-arrival-section {
    background-color: var(--primary-dark);
    padding: 80px 0;
    color: var(--text-light);
}

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

.section-header .title-content .section-title {
    color: var(--text-light);
}

.section-header .title-content p {
    font-size: 1rem;
    color: #aaa;
    max-width: 400px;
    margin-top: 20px;
    line-height: 1.6;
}

.section-header .navigation-arrows {
    display: flex;
    gap: 20px;
}

.section-header .navigation-arrows span {
    font-size: 2rem;
    cursor: pointer;
    color: #aaa;
    transition: color 0.3s ease;
}
.section-header .navigation-arrows span:hover {
    color: #FFFFFF;
}

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

.product-card {
    background: var(--off-white);
    color: var(--text-dark);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Skeleton Loader */
.product-card.skeleton {
    min-height: 300px;
    background: var(--light-gray);
    animation: pulse 1.5s infinite ease-in-out;
}
@keyframes pulse {
    0% { background-color: #ddd; }
    50% { background-color: #eee; }
    100% { background-color: #ddd; }
}

.product-image-wrapper {
    background: var(--light-gray);
    padding: 20px;
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.product-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.wishlist-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: #ffffff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.product-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.product-details {
    flex: 1;
    min-width: 0; /* Prevents flex item from overflowing */
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 5px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-info .price,
.product-details .price {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: #555;
    margin: 0;
    display: block;
}

.product-info .price del {
    color: #999;
    font-weight: 400;
    margin-right: 5px;
}
.product-info .add-to-cart {
    width: 35px;
    height: 35px;
    border: 1px solid #D0D0D0;
    border-radius: 5px;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
}
.product-info .add-to-cart:hover {
    background: var(--primary-dark);
    color: #FFFFFF;
    border-color: var(--primary-dark);
}

/* =========================== */
/* DISCOVER SECTION        */
/* =========================== */
.discover-section {
    padding: 100px 0;
    background-color: var(--off-white);
}

.discover-section .section-title {
    color: var(--text-dark);
}

.discover-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-end;
}

.discover-box h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.discover-box .image-wrapper-rect {
    background-color: var(--cream-bg);
    border-radius: 8px;
    padding: 20px;
}
.discover-box .image-wrapper-arch {
    background-color: var(--cream-bg);
    border-radius: 180px 180px 8px 8px; 
    padding: 20px 20px 0 20px;
    overflow: hidden;
}

.discover-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* =========================== */
/* TRADITION SECTION */
/* =========================== */
.tradition-section {
    padding: 60px 0;
}

.tradition-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.tradition-images {
    flex: 1;
    position: relative;
    height: 500px;
}
.tradition-image-large {
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--cream-bg);
    padding: 20px;
    box-sizing: border-box;
}
.tradition-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.tradition-image-small {
    position: absolute;
    bottom: 50px;
    right: 50px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--off-white);
    padding: 15px;
    box-sizing: border-box;
    border: 1px solid #eee;
    z-index: 2;
}
.tradition-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.tradition-content {
    flex: 1;
    max-width: 500px;
}
.tradition-content .section-title {
    text-align: left;
}
.tradition-content .section-title::after {
    left: 40px; 
}
.tradition-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin: 30px 0;
}

/* =========================== */
/* TESTIMONIAL SECTION */
/* =========================== */
.testimonial-section {
    padding: 80px 0;
}
.testimonial-section .section-title {
    color: var(--text-dark);
}
.testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}
.testimonial-slider {
    position: relative;
    max-width: 800px;
    width: 100%;
    min-height: 300px;
}
.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    text-align: center;
}
.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}
.quote-icon {
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 700;
    color: var(--cream-bg);
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    line-height: 1;
}
.testimonial-slide p {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.4;
    margin: 0 0 30px 0;
}
.testimonial-slide h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin: 0 0 5px 0;
}
.testimonial-slide .location {
    font-size: 1rem;
    color: #777;
    font-weight: 500;
}
.testimonial-nav {
    display: flex;
    gap: 15px;
    justify-content: center;
}
.testimonial-nav span {
    font-size: 1.5rem;
    cursor: pointer;
    color: #aaa;
    transition: color 0.3s ease;
}
.testimonial-nav span:hover {
    color: var(--text-dark);
}

/* =========================== */
/* INSTAGRAM SECTION  */
/* =========================== */
.instagram-section {
    padding: 60px 0 0 0;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.insta-post {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}
.insta-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.insta-join-box {
    background-color: var(--primary-gold);
    color: var(--off-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    aspect-ratio: 1 / 1;
    text-align: center;
}
.insta-join-box .insta-icon {
    border: 2px solid var(--off-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
}
.insta-join-box h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 10px 0;
}
.insta-join-box a {
    font-size: 2rem;
    color: var(--off-white);
    font-weight: 300;
    transition: transform 0.3s ease;
}
.insta-join-box a:hover {
    transform: translateX(5px);
}

/* =========================== */
/* FOOTER           */
/* =========================== */
.main-footer {
    background-color: var(--primary-dark);
    color: #aaa;
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}
.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0 0 20px 0;
}
.footer-col a, .footer-col p {
    display: block;
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}
.footer-col a:hover {
    color: #FFFFFF;
}

#footer-brand .footer-logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
}
#footer-brand p {
    line-height: 1.6;
    max-width: 280px;
}
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.social-icons a {
    width: 20px;
    height: 20px;
}
.social-icons a svg {
    fill: #aaa;
    transition: fill 0.3s ease;
}
.social-icons a:hover svg {
    fill: #FFFFFF;
}

#footer-subscribe p {
    margin-bottom: 20px;
}
.subscribe-form {
    display: flex;
    border: 1px solid #555;
    border-radius: 4px;
    overflow: hidden;
}
.subscribe-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 15px;
    color: #FFFFFF;
    font-family: var(--font-body);
    font-size: 0.9rem;
}
.subscribe-form input::placeholder {
    color: #aaa;
}
.subscribe-form button {
    background-color: var(--primary-gold);
    border: none;
    color: #FFFFFF;
    padding: 0 20px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
}
.subscribe-form button:hover {
    background-color: var(--primary-gold-dark);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 25px 0;
}
.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom-container p {
    margin: 0;
    font-size: 0.9rem;
    color: #888;
}

/* =========================== */
/* POP-UP MODAL     */
/* =========================== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-modal {
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    max-width: 600px;
    display: flex;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.popup-overlay.show .popup-modal {
    transform: scale(1);
}

.popup-image-slider {
    width: 250px;
    position: relative;
    overflow: hidden;
}

.popup-image {
    width: 250px;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.popup-image.active {
    opacity: 1;
}

.popup-content {
    padding: 30px;
    text-align: center;
    position: relative;
    flex: 1;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}
.popup-close:hover {
    color: #333;
}

.popup-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 10px 0 15px 0;
}

.popup-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.popup-content .btn {
    width: 100%;
}

/* =========================== */
/* CONTACT PAGE STYLES */
/* =========================== */
.contact-section {
    padding: 80px 0;
    background-color: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; 
    gap: 40px;
    align-items: start;
}

.contact-info-box {
    background-color: var(--primary-gold);
    color: #FFFFFF;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-info-box h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin: 0 0 15px 0;
}

.contact-info-box p {
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item .icon {
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item .details h4 {
    margin: 0 0 5px 0;
    font-size: 1rem;
    font-weight: 600;
}

.info-item .details p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

.contact-form-box {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.contact-form-box .form-group {
    margin-bottom: 20px;
}

.contact-form-box label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 8px;
}

.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    font-family: var(--font-body);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

/* ======================= */
/* RESPONSIVE */
/* ======================= */
/* ... (Keep all your existing GLOBAL STYLES, BUTTON STYLES, HEADER SECTION, HERO SECTION, etc.) ... */

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

/* -- 1. Large Laptops (1200px) -- */
/* ===== HEADER BASE ===== */
.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-icons {
    display: flex;
    gap: 1.2rem;
}

.mobile-controls,
.burger-menu-wrapper {
    display: none;
}

/* ======================= */
/* SMOOTH SCROLL BEHAVIOR */
/* ======================= */
html {
    scroll-behavior: smooth;
}


/* -- Tablets & Mobile (992px) -- */
@media (max-width: 992px) {
    :root { --content-width: 100%; }
    .container { padding: 0 30px; }
    
    /* Consistent section spacing on mobile */
    .hero-section { padding: 40px 0; }
    .new-arrival-section { padding: 60px 0; }
    .discover-section { padding: 60px 0; }
    .tradition-section { padding: 60px 0; }
    .testimonial-section { padding: 60px 0; }
    .instagram-section { padding: 40px 0 0 0; }
    
    /* Universal Header Layout */
    .main-header {
        position: relative;
    }
    
    /* Universal navbar styling */
    .navbar { 
        padding: 15px 30px; 
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    /* Logo positioning - works for both inside and outside navbar */
    .brand-bar {
        order: 1;
        text-align: left;
        flex: 1;
    }
    .brand-bar .logo { 
        font-size: 2.5rem; 
    }
    
    /* Mobile Controls positioned on the right (for main page) */
    .mobile-controls {
        display: flex;
        align-items: center;
        gap: 15px;
        order: 2;
    }
    
    /* Hide standard Desktop Elements */
    .nav-icons.desktop-only,
    .nav-icons {
        display: none;
    }
    
    /* Hide nav-links by default */
    .nav-links {
        display: none;
    }
    
    /* Mobile Profile Button Style */
    .mobile-profile-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-dark);
    }

    /* --- CUSTOM BURGER MENU STYLES (Integrated) --- */
    .burger-menu-wrapper {
        display: block;
        position: relative;
        z-index: 1001; /* Ensure it's above the dropdown */
    }
    
    /* Hide the checkbox */
    .burger-menu-wrapper input[type="checkbox"] {
        display: none;
    }
    
    /* The clickable area/button container */
    .burger-menu-wrapper .button {
        position: relative;
        display: grid;
        place-items: center;
        width: 32px;  /* Scaled down slightly for header */
        height: 32px;
        cursor: pointer;
        background: transparent; /* Changed from dark blue to transparent */
        z-index: 1;
    }
    
    /* The bars */
    .burger-menu-wrapper .button .bar {
        width: 24px;
        height: 3px;
        background-color: var(--text-dark); /* Use your theme color */
        border-radius: 2px;
        transition: all 0.3s ease-in-out;
        position: absolute;
    }
    
    /* Initial Bar Positions */
    .burger-menu-wrapper .button .bar1 { top: 8px; }
    .burger-menu-wrapper .button .bar2 { top: 50%; transform: translateY(-50%); }
    .burger-menu-wrapper .button .bar3 { bottom: 8px; }

    /* CHECKED STATE (Animation) */
    .burger-menu-wrapper input:checked + label > .button > .bar1 {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }
    .burger-menu-wrapper input:checked + label > .button > .bar2 {
        opacity: 0;
    }
    .burger-menu-wrapper input:checked + label > .button > .bar3 {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
    }
    


    /* Mobile Dropdown Menu */
    .nav-links {
        display: none; /* Hidden by default */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        z-index: 1000;
        padding: 0;
        order: 3; /* Ensure it drops down */
        max-height: calc(100vh - 100px);
        overflow-y: auto;
    }

    /* Active Class to Show Menu */
    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 18px 20px;
        border-bottom: 1px solid #f0f0f0;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
        font-size: 1rem;
        transition: background-color 0.2s ease;
    }
    
    .nav-links a:hover {
        background-color: #f8f9fa;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    /* Prevent background scroll when mobile menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    /* Other Responsive Styles (Grids, etc.) */
    .hero-container.container { 
        flex-direction: column; 
        text-align: center; 
        gap: 30px;
    }
    .hero-content { 
        order: 2; 
        max-width: 100%;
    }
    .hero-images { 
        order: 1; 
        height: 400px; 
        width: 100%; 
        justify-content: center;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Fix hero image positioning in mobile */
    .hero-images .image-large-wrapper {
        position: relative;
        z-index: 1;
        width: 280px;
        height: 350px;
    }
    
    .hero-images .image-small-wrapper {
        position: absolute;
        right: -20px;
        bottom: -20px;
        z-index: 2;
        width: 180px;
        height: 230px;
        transform: none;
    }
    
    .hero-buttons { justify-content: center; }
    .section-header.container { 
        flex-direction: column; 
        align-items: center; 
        text-align: center; 
        margin-bottom: 30px;
    }
    .section-header .navigation-arrows { display: none; }
    .product-grid.container { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 20px; 
        padding: 0 20px;
    }
    
    /* Center single product card on mobile */
    .product-card {
        margin: 0 auto;
        max-width: 100%;
    }
    .discover-grid { 
        grid-template-columns: 1fr; 
        gap: 40px; 
    }
    .tradition-container { 
        flex-direction: column; 
        text-align: center; 
        gap: 40px;
    }
    
    /* Fix tradition images positioning in mobile */
    .tradition-images {
        position: relative;
        height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .tradition-image-large {
        position: relative;
        z-index: 1;
        width: 300px;
        height: 300px;
    }
    
    .tradition-image-small {
        position: absolute;
        bottom: -30px;
        right: -30px;
        z-index: 2;
        width: 200px;
        height: 200px;
    }
    .tradition-content .section-title::after { 
        left: 50%; 
        transform: translateX(-50%); 
    }
    .testimonial-content { 
        gap: 20px;
    }
    .testimonial-slider {
        max-width: 100%;
        min-height: 350px;
    }
    .testimonial-slide p {
        font-size: 1.5rem;
    }
    .quote-icon {
        font-size: 5rem;
        top: -30px;
    }
    .footer-container { 
        display: grid;
        grid-template-columns: 1fr; 
        text-align: center; 
        gap: 30px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    /* Fix footer layout in mobile - stack all columns vertically */
    .footer-col {
        margin-bottom: 25px;
    }
    
    .footer-col h4 {
        margin-bottom: 15px;
        font-size: 1.2rem;
    }
    
    .footer-col a, .footer-col p {
        margin-bottom: 10px;
        font-size: 0.9rem;
    }
    
    /* All footer columns stack vertically - no grid positioning needed */
    #footer-brand {
        order: 1;
        text-align: center;
    }
    
    #footer-brand p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-col:nth-of-type(2) {
        order: 2;
    }
    
    .footer-col:nth-of-type(3) {
        order: 3;
    }
    
    #footer-subscribe {
        order: 4;
    }
    
    .subscribe-form {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .social-icons { 
        justify-content: center; 
        margin-top: 15px;
    }
    .subscribe-form { 
        max-width: 400px; 
        margin: 0 auto; 
    }
    .popup-modal { 
        flex-direction: column; 
        max-width: 350px; 
        margin: 20px;
        max-height: 90vh;
        overflow-y: auto;
    }
    .popup-image { 
        width: 100%; 
        height: 180px; 
        flex-shrink: 0;
    }
    .popup-content {
        padding: 25px 20px;
    }
    .contact-grid { grid-template-columns: 1fr; gap: 30px; }
    .info-grid { grid-template-columns: 1fr; }
    .info-sidebar { position: static; margin-bottom: 30px; }
    .info-nav { flex-direction: row; flex-wrap: wrap; }
    .info-nav a { flex: 1 1 auto; justify-content: center; text-align: center; border: 1px solid #eee; }
    
    /* Instagram grid - single column for mobile (one below another) */
    .instagram-grid { 
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .insta-post {
        aspect-ratio: 1 / 1;
    }
    
    .insta-join-box {
        aspect-ratio: 1 / 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .container { padding: 0 20px; }
    .navbar { padding: 15px 20px; }
    .section-title { font-size: 2.5rem; }
    
    /* Better hero section mobile spacing */
    .hero-section { padding: 30px 0; }
    .hero-content { padding: 0 10px; }
    
    .hero-content h1 { 
        font-size: 3.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.1;
    }
    .hero-content h1 .highlight::before { 
        width: 250px; 
        height: 60px; 
    }
    
    .hero-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Better hero images for small screens */
    .hero-images { 
        height: 300px; 
        padding: 0 20px;
    }
    .hero-images .image-large-wrapper { 
        width: 240px; 
        height: 300px; 
    }
    .hero-images .image-small-wrapper { 
        width: 150px; 
        height: 190px; 
        right: -10px;
        bottom: -10px;
    }
    
    /* Better tradition images for small screens */
    .tradition-images { 
        height: 320px; 
        padding: 0 20px;
    }
    .tradition-image-large { 
        width: 250px; 
        height: 250px; 
    }
    .tradition-image-small { 
        width: 160px; 
        height: 160px; 
        bottom: -20px;
        right: -20px;
    }
    
    /* Single column product grid - centered */
    .product-grid.container { 
        grid-template-columns: 1fr; 
        gap: 20px;
        padding: 0 20px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* Product cards mobile optimization */
    .product-card {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .product-card .product-image-wrapper {
        height: auto;
        min-height: 200px;
    }
    
    /* Ensure pricing is visible on mobile */
    .product-info {
        padding: 15px;
        align-items: flex-start;
        gap: 10px;
    }
    
    .product-details {
        flex: 1;
        min-width: 0;
    }
    
    .product-info h3 {
        font-size: 1.1rem;
        line-height: 1.3;
        margin-bottom: 8px;
    }
    
    .product-info .price,
    .product-details .price {
        font-size: 1rem;
        font-weight: 600;
        color: var(--primary-gold);
        display: block;
        margin: 0;
    }
    
    .product-info .add-to-cart {
        width: 32px;
        height: 32px;
        font-size: 1.3rem;
        flex-shrink: 0;
    }
    
    /* Modal improvements for mobile - REMOVED Quick View */
    
    .modal-body {
        flex-direction: column;
        padding: 20px;
    }
    
    .modal-image {
        width: 100%;
        height: 200px;
        margin-bottom: 20px;
    }
    
    /* Checkout popup mobile optimization */
    .checkout-popup {
        margin: 20px;
        max-width: calc(100% - 40px);
        max-height: calc(100vh - 40px);
        overflow-y: auto;
        padding: 20px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Mobile navigation improvements */
    .nav-links a {
        padding: 18px 20px;
        font-size: 1rem;
    }
    
    /* Ensure buttons are easily tappable */
    .icon-link {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn {
        min-height: 44px;
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .shop-now-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    /* Instagram grid - single column for mobile (one below another) */
    .instagram-grid { 
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .insta-post {
        aspect-ratio: 1 / 1;
    }
    
    .insta-join-box {
        aspect-ratio: 1 / 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 30px 20px;
    }
    
    /* Smaller subscribe form */
    .subscribe-form {
        max-width: 280px;
    }
    
    /* Better footer spacing - keep symmetrical layout */
    .footer-container {
        gap: 20px;
        max-width: 500px;
    }
    
    .footer-col {
        margin-bottom: 15px;
    }
    
    .subscribe-form {
        max-width: 220px;
    }
}

@media (min-width: 993px) {
    .mobile-controls {
        display: none; 
    }
    
    .mobile-only {
        display: none !important;
    }
}

/* =========================== */
/* INFO PAGES LAYOUT (NEW) */
/* =========================== */
.info-page-section {
    padding: 60px 0;
    background-color: var(--off-white);
    min-height: 60vh;
}

.info-grid {
    display: grid;
    grid-template-columns: 280px 1fr; /* Sidebar | Content */
    gap: 50px;
    align-items: start;
}

/* Sidebar Styling */
.info-sidebar {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 100px; /* Sticks when scrolling */
}

.info-sidebar h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
}

.info-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-nav a {
    padding: 12px 15px;
    color: #555;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-nav a:hover {
    background-color: #f9f9f9;
    color: var(--primary-gold);
    padding-left: 20px; /* Slide effect */
}

.info-nav a.active {
    background-color: var(--primary-gold);
    color: #FFFFFF;
}

.info-nav a.active:hover {
    padding-left: 15px; /* Reset slide for active */
}

/* Content Styling */
.info-content {
    background: #FFFFFF;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    line-height: 1.8;
    color: #444;
}

.info-content h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.info-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-gold);
}

.info-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.info-content h3 {
    font-size: 1.2rem;
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primary-gold-dark);
}

.info-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.info-content li {
    margin-bottom: 10px;
}

/* Accordion Styles (for FAQ) */
.accordion-item {
    border-bottom: 1px solid #eee;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 20px 0;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.accordion-header:hover {
    color: var(--primary-gold);
}

.accordion-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
    transform: rotate(45deg); /* Rotate + to x */
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-right: 20px;
}

.accordion-body p {
    margin-bottom: 20px;
    color: #666;
}

/* Responsive Info Pages */
@media (max-width: 992px) {
    .info-grid {
        grid-template-columns: 1fr; /* Stack sidebar on top */
    }
    .info-sidebar {
        position: static; /* Unstick on mobile */
        margin-bottom: 30px;
    }
    .info-nav {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .info-nav a {
        flex: 1 1 auto;
        justify-content: center;
        text-align: center;
        border: 1px solid #eee;
    }
    .info-nav a:hover {
        padding-left: 15px;
    }
}

/* =========================== */
/* WISHLIST PAGE STYLES */
/* =========================== */
.wishlist-section {
    padding: 60px 0;
    background-color: var(--off-white);
    min-height: 70vh;
}

.wishlist-header {
    text-align: center;
    margin-bottom: 50px;
}

.wishlist-header h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.wishlist-item {
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.wishlist-item:hover {
    transform: translateY(-5px);
}

.wishlist-item-image {
    width: 100%;
    height: 250px;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.wishlist-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.remove-wishlist {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: #e74c3c;
    transition: all 0.3s ease;
}

.remove-wishlist:hover {
    background: #e74c3c;
    color: white;
}

.wishlist-item-info {
    padding: 20px;
}

.wishlist-item-info h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin: 0 0 10px 0;
    color: var(--text-dark);
}

.wishlist-item-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.wishlist-actions {
    display: flex;
    gap: 10px;
}

.btn-add-cart {
    flex: 1;
    background: var(--primary-dark);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-add-cart:hover {
    background: #333;
}

.btn-view-details {
    background: transparent;
    color: var(--primary-gold);
    border: 1px solid var(--primary-gold);
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-view-details:hover {
    background: var(--primary-gold);
    color: white;
}

.empty-wishlist {
    text-align: center;
    padding: 60px 20px;
}

.empty-wishlist h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #666;
    margin-bottom: 15px;
}

.empty-wishlist p {
    color: #888;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .wishlist-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .wishlist-actions {
        flex-direction: column;
    }
}
/* =========================== */
/* CART PAGE STYLES - HOMEPAGE ALIGNED */
/* =========================== */
.cart-section {
    padding: 60px 0;
    background-color: var(--off-white);
    min-height: 70vh;
}

.cart-header {
    text-align: center;
    margin-bottom: 50px;
}

.cart-header h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 400;
    margin: 0;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    color: var(--text-dark);
}

.cart-header h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-gold);
    border-radius: 2px;
}

.cart-header p {
    font-size: 1.1rem;
    color: #555;
    margin-top: 20px;
}

.cart-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.cart-items {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto auto;
    gap: 20px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--cream-bg);
    padding: 10px;
    box-sizing: border-box;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.cart-item-details h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin: 0 0 8px 0;
    color: var(--text-dark);
    line-height: 1.3;
}

.cart-item-price {
    font-size: 1rem;
    font-weight: 500;
    color: #666;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    background: white;
}

.quantity-btn {
    background: white;
    border: none;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.2s ease;
}

.quantity-btn:hover {
    background: var(--cream-bg);
}

.quantity-btn:active {
    background: var(--primary-gold);
    color: white;
}

.quantity-input {
    width: 50px;
    height: 36px;
    text-align: center;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    font-size: 1rem;
    font-weight: 500;
    background: #fafafa;
}

.item-total {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-gold);
    text-align: right;
}

.remove-item {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-item:hover {
    background: #fee2e2;
    transform: scale(1.1);
}

.cart-summary {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.cart-summary h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 0 0 25px 0;
    color: var(--text-dark);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    font-size: 1rem;
}

.summary-row:not(.total) {
    border-bottom: 1px solid #f0f0f0;
}

.summary-row.total {
    border-top: 2px solid var(--primary-gold);
    padding-top: 20px;
    margin-top: 20px;
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--text-dark);
}

.checkout-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
    background-color: var(--primary-dark);
    color: #FFFFFF;
    font-family: var(--font-body);
    margin-top: 20px;
}

.checkout-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 26, 26, 0.4);
}

.continue-shopping {
    display: block;
    text-align: center;
    color: var(--primary-gold);
    text-decoration: none;
    margin-top: 15px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.continue-shopping:hover {
    color: var(--primary-gold-dark);
    text-decoration: underline;
}

.empty-cart {
    text-align: center;
    padding: 80px 20px;
    grid-column: 1 / -1;
}

.empty-cart-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-cart h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.empty-cart p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .cart-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cart-summary {
        position: static;
        order: -1;
    }
}

@media (max-width: 768px) {
    .cart-header h1 {
        font-size: 2.5rem;
    }
    
    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 15px;
        padding: 15px 0;
    }
    
    .cart-item-image {
        width: 80px;
        height: 80px;
    }
    
    /* Hide desktop controls on mobile */
    .cart-item > .quantity-controls,
    .cart-item > .item-total,
    .cart-item > .remove-item {
        display: none;
    }
    
    /* Show mobile controls */
    .cart-item-controls {
        grid-column: 1 / -1;
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        margin-top: 15px;
        gap: 15px;
    }
    
    .cart-item-controls .quantity-controls {
        flex-shrink: 0;
    }
    
    .cart-item-controls .item-total {
        font-size: 1.1rem;
        text-align: left;
    }
    
    /* Profile page mobile improvements */
    .profile-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .profile-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .profile-avatar {
        margin: 0 auto;
    }
    
    .profile-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .profile-actions .btn {
        width: 100%;
    }
    
    .orders-card {
        padding: 20px;
    }
    
    /* Checkout page mobile improvements */
    .checkout-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .checkout-form {
        order: 1;
    }
    
    .order-summary {
        order: 2;
        position: static;
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px 15px;
    }
    
    .place-order-btn {
        width: 100%;
        padding: 15px;
        font-size: 1rem;
    }
    
    /* Better button spacing on mobile */
    .btn {
        min-height: 48px;
        padding: 12px 20px;
    }
    
    /* Ensure all clickable elements are properly sized for touch */
    .quantity-btn {
        min-width: 40px;
        min-height: 40px;
    }
    
    .remove-item {
        min-width: 44px;
        min-height: 44px;
    }
    
    /* Mobile-specific improvements for overlapping elements */
    
    .checkout-popup-overlay {
        z-index: 10000;
    }
    
    .nav-links.active {
        z-index: 9999;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding-top: 80px;
    }
    
    /* Prevent horizontal scroll on mobile */
    body {
        overflow-x: hidden;
    }
    
    .page-wrapper {
        overflow-x: hidden;
    }
    
    /* Better spacing for mobile forms */
    .form-section {
        margin-bottom: 25px;
    }
    
    .form-section h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    /* Mobile-optimized hero buttons */
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}
    
    .cart-item-controls .remove-item {
        order: 1;
    }
    
    .cart-items {
        padding: 20px;
    }
    
    .cart-summary {
        padding: 20px;
    }


@media (min-width: 769px) {
    /* Hide mobile controls on desktop */
    .cart-item-controls {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .cart-section {
        padding: 40px 0;
    }
    
    .cart-header {
        margin-bottom: 30px;
    }
    
    .cart-header h1 {
        font-size: 2rem;
    }
    
    .quantity-btn {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .quantity-input {
        width: 40px;
        height: 32px;
    }
}
/* =========================== */
/* CHECKOUT PAGE STYLES */
/* =========================== */
.checkout-section {
    padding: 60px 0;
    background-color: var(--off-white);
    min-height: 80vh;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.checkout-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.checkout-header {
    text-align: center;
    margin-bottom: 50px;
}

.checkout-header h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.checkout-progress {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: #f8f8f8;
    border-radius: 25px;
    margin: 0 10px;
    font-weight: 500;
    color: #666;
}

.progress-step.active {
    background: var(--primary-gold);
    color: white;
}

.progress-step.completed {
    background: #27ae60;
    color: white;
}

.checkout-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

.checkout-form {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-section {
    margin-bottom: 40px;
}

.form-section h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-gray);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    min-height: var(--input-height);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

/* Mobile Form Optimization */
@media (max-width: 768px) {
    .form-group {
        margin-bottom: 16px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 14px 15px;
        min-height: 48px;
    }
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.payment-method {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.payment-method:hover {
    border-color: var(--primary-gold);
}

.payment-method.selected {
    border-color: var(--primary-gold);
    background: #fef9f3;
}

.payment-method input[type="radio"] {
    display: none;
}

.payment-method-icon {
    font-size: 1.5rem;
    margin-right: 8px;
}

/* New Payment Method Styles */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.payment-option {
    position: relative;
}

.payment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.payment-label {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.payment-label:hover {
    border-color: var(--primary-gold);
    background: #fef9f3;
}

.payment-option input[type="radio"]:checked + .payment-label {
    border-color: var(--primary-gold);
    background: #fef9f3;
    box-shadow: 0 2px 8px rgba(179, 139, 89, 0.2);
}

.payment-icon {
    font-size: 1.5rem;
    margin-right: 12px;
}

.payment-text {
    font-weight: 500;
    color: var(--text-dark);
}

/* QR Code Payment Section */
.qr-payment-section {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.qr-code-container {
    text-align: center;
}

.qr-code-container h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.qr-code {
    display: inline-block;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

/* QR Code Payment Section */
.qr-code img {
    /* increase the image width, maintain aspect ratio */
    width: 300px;
    height: auto;
    max-width: 100%;
    display: block;
}


.payment-reference {
    margin-bottom: 20px;
}

.payment-reference p {
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.reference-id {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-dark);
    color: white;
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 6px;
    letter-spacing: 1px;
}

.payment-instructions {
    text-align: left;
    background: white;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid var(--primary-gold);
}

.payment-instructions p {
    margin-bottom: 8px;
    line-height: 1.5;
}

.payment-instructions p:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

.payment-instructions p:last-child {
    margin-bottom: 0;
    color: #666;
}

.card-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 15px;
}

.order-summary {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.order-summary h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 0 0 20px 0;
    color: var(--text-dark);
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.order-item:last-child {
    border-bottom: none;
}

.item-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.item-image {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    overflow: hidden;
    background: var(--light-gray);
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-details h4 {
    font-size: 0.9rem;
    margin: 0 0 5px 0;
    color: var(--text-dark);
}

.item-details span {
    font-size: 0.8rem;
    color: #666;
}

.item-price {
    font-weight: 600;
    color: var(--text-dark);
}

.summary-totals {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--light-gray);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.summary-row.total {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--text-dark);
    border-top: 1px solid #ddd;
    padding-top: 10px;
    margin-top: 10px;
}

.summary-row.discount-row {
    color: #28a745;
    font-weight: 500;
}

.place-order-btn {
    width: 100%;
    background: var(--primary-dark);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.place-order-btn:hover {
    background: #333;
}

.place-order-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.security-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
    font-size: 0.9rem;
    color: #666;
}

.security-icon {
    color: #27ae60;
}

@media (max-width: 992px) {
    .checkout-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .order-summary {
        position: static;
        order: -1;
    }
    
    .checkout-form {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .checkout-section {
        padding: 40px 0;
    }
    
    .checkout-header h1 {
        font-size: 2rem;
    }
    
    .checkout-content {
        gap: 20px;
    }
    
    .checkout-form {
        padding: 20px 15px;
        margin: 0 -5px; /* Prevent horizontal overflow */
    }
    
    .order-summary {
        padding: 20px 15px;
        margin: 0 -5px; /* Prevent horizontal overflow */
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .card-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
    
    .checkout-progress {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .progress-step {
        margin: 0;
    }
    
    /* Fix QR code section on mobile */
    .qr-payment-section {
        padding: 15px;
        margin-left: -5px;
        margin-right: -5px;
    }
    
    .qr-code {
        padding: 15px;
    }
    
    .qr-code img {
        width: 100%;
        max-width: 250px;
    }
    
    /* Fix coupon section on mobile */
    .coupon-section {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .coupon-section input {
        border-radius: 4px !important;
        width: 100% !important;
    }
    
    .coupon-section button {
        border-radius: 4px !important;
        border: 1px solid #ddd !important;
        width: 100% !important;
    }
    
    /* Fix order items on mobile */
    .order-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .item-info {
        width: 100%;
    }
    
    .item-total {
        align-self: flex-end;
        font-size: 1.1rem;
    }
}

/* Extra small devices (OnePlus, iPhone, etc.) */
@media (max-width: 480px) {
    .checkout-section {
        padding: 30px 0;
    }
    
    .checkout-header h1 {
        font-size: 1.75rem;
    }
    
    .checkout-form,
    .order-summary {
        padding: 15px 10px;
        border-radius: 6px;
    }
    
    .form-section h3 {
        font-size: 1.25rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        padding: 12px;
    }
    
    .payment-label {
        padding: 12px 15px;
    }
    
    .qr-code img {
        max-width: 200px;
    }
    
    .reference-id {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
    
    .place-order-btn {
        padding: 14px;
        font-size: 1rem;
    }
}
/* =========================== */
/* ORDER SUCCESS PAGE STYLES */
/* =========================== */
.success-section {
    padding: 80px 0;
    background-color: var(--off-white);
    min-height: 70vh;
    text-align: center;
}

.success-content {
    max-width: 600px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 8px;
    padding: 60px 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    color: white;
}

.success-content h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.success-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.order-details {
    background: var(--light-gray);
    border-radius: 8px;
    padding: 30px;
    margin: 30px 0;
    text-align: left;
}

.order-details h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.detail-row:last-child {
    border-bottom: none;
    font-weight: 600;
    color: var(--text-dark);
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.btn-track {
    background: var(--primary-gold);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
}

.btn-track:hover {
    background: var(--primary-gold-dark);
}

.btn-continue {
    background: transparent;
    color: var(--primary-dark);
    padding: 15px 30px;
    border: 2px solid var(--primary-dark);
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-continue:hover {
    background: var(--primary-dark);
    color: white;
}

.next-steps {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.next-steps h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.next-steps ul {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.next-steps li {
    margin-bottom: 10px;
    color: #666;
}

@media (max-width: 768px) {
    .success-content {
        padding: 40px 20px;
        margin: 0 20px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-track,
    .btn-continue {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}
/* =========================== */
/* COUPON INPUT GROUP STYLES */
/* =========================== */
.coupon-input-group {
    display: flex;
    gap: 0;
    margin-bottom: 15px;
}

.coupon-input-group input {
    flex: 1;
    border-radius: 4px 0 0 4px !important;
    border-right: none !important;
}

.coupon-input-group .apply-coupon-btn {
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-left: none;
    border-radius: 0 4px 4px 0;
    background: var(--primary-gold);
    color: white;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.coupon-input-group .apply-coupon-btn:hover {
    background: var(--primary-gold-dark);
}

.coupon-message {
    font-size: 0.85rem;
    margin-top: 5px;
    padding: 8px 12px;
    border-radius: 4px;
    display: none;
}

.coupon-message.success {
    background: #d1fae5;
    color: #065f46;
    display: block;
}

.coupon-message.error {
    background: #fee2e2;
    color: #b91c1c;
    display: block;
}

/* =========================== */
/* MOBILE RESPONSIVE FIXES */
/* =========================== */
@media (max-width: 768px) {
    /* Fix mobile navigation z-index issues */
    .nav-links.active {
        z-index: 9999;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding-top: 80px;
    }
    
    /* Popup modal mobile responsive */
    .popup-modal {
        flex-direction: column;
        max-width: 90%;
        margin: 20px;
    }
    
    .popup-image-slider {
        width: 100%;
        height: 200px;
    }
    
    .popup-image {
        width: 100%;
        height: 200px;
    }
    
    .popup-content {
        padding: 20px;
    }
    
    .popup-content h2 {
        font-size: 1.5rem;
    }
    
    .popup-content p {
        font-size: 0.9rem;
    }
    
    /* Ensure mobile menu doesn't interfere with other elements */
    .checkout-popup-overlay {
        z-index: 10000;
    }
    
    /* Fix coupon input on mobile */
    .coupon-input-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .coupon-input-group input {
        border-radius: 4px !important;
        border-right: 1px solid #ddd !important;
    }
    
    .coupon-input-group .apply-coupon-btn {
        border-radius: 4px;
        border: 1px solid #ddd;
        width: 100%;
    }
    
    /* Ensure all form inputs prevent iOS zoom */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    select,
    textarea {
        font-size: 16px !important;
    }
    
    /* Fix button touch targets */
    .btn,
    .quantity-btn,
    .remove-item,
    .icon-link {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Fix checkout popup mobile layout */
    .checkout-popup {
        margin: 20px;
        max-width: calc(100% - 40px);
        max-height: calc(100vh - 40px);
        overflow-y: auto;
        padding: 20px;
    }
    
    /* Better mobile cart layout */
    .cart-item-controls {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        margin-top: 15px;
        gap: 15px;
        grid-column: 1 / -1;
    }
    
    .cart-item-controls .quantity-controls {
        flex-shrink: 0;
    }
    
    .cart-item-controls .item-total {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--primary-gold);
    }
    
    .cart-item-controls .remove-item {
        order: 1;
        background: #fee2e2;
        color: #e74c3c;
        border-radius: 4px;
        padding: 8px;
    }
}

/* =========================== */
/* CONTACT PAGE STYLES */
/* =========================== */
#msg-feedback {
    display: none;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 0.95rem;
}

#msg-feedback.success { 
    display: block; 
    background-color: #d1fae5; 
    color: #065f46; 
}

#msg-feedback.error { 
    display: block; 
    background-color: #fee2e2; 
    color: #b91c1c; 
}