/* =============================================================
   ZYLTOO — MASTER STYLESHEET
   Covers: Global, Home, About, Contact, Shop, Cart, Why Choose
   ============================================================= */

/* ---------------------------------------------------------------
   1. RESET & ROOT VARIABLES
--------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --brown-dark: #8B4513;
    --brown-mid: #A0522D;
    --brown-light: #CD853F;
    --brown-pale: #DEB887;
    --cream-dark: #F5F5DC;
    --cream-light: #FFF8DC;
    --text-main: #333;
    --text-muted: #666;
    --text-light: #7f8c8d;
    --white: #fff;
    --danger: #e74c3c;
    --success: #27ae60;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 15px 35px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 25px 50px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --theme-gradient: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-light) 50%, var(--brown-pale) 100%);
    --brown-gradient: linear-gradient(135deg, var(--brown-dark), var(--brown-light));
}

body {
    padding-top: 70px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    overflow-x: hidden;
}

.custom-mobile-menu {
    background: var(--cream-dark) !important;
    color: var(--brown-dark);
    width: 75% !important;
    max-width: 320px;
}

/* Remove dark background */
.offcanvas {
    background: var(--cream-dark) !important;
}

/* Links */
.custom-mobile-menu .nav-link {
    color: var(--brown-dark) !important;
    font-weight: 600;
    padding: 14px 0;
    border-bottom: 1px solid rgba(139, 69, 19, 0.15);
    letter-spacing: 0.5px;
}

/* Hover Effect */
.custom-mobile-menu .nav-link:hover {
    padding-left: 8px;
    background: rgba(139, 69, 19, 0.05);
    color: var(--brown-dark) !important;
}

/* Dropdown arrow + toggle */
.custom-mobile-menu .dropdown-toggle::after {
    border-top-color: var(--brown-dark);
}

/* Dropdown menu inside sidebar
.custom-mobile-menu .dropdown-menu {
    background: rgba(139, 69, 19, 0.03);
    border: none;
    padding-left: 10px;
} */

/* Dropdown items */
.custom-mobile-menu .dropdown-menu {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;

    position: static !important;
}

/* Indent dropdown items */
.custom-mobile-menu .dropdown-item {
    color: var(--brown-dark);
    font-size: 14px;
    padding: 8px 0 8px 15px !important;
    background: transparent !important;
}

/* Hover effect */
.custom-mobile-menu .dropdown-item:hover {
    background: transparent !important;
    color: var(--brown-mid);
}

/* Social Icons */
.mobile-social {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(139, 69, 19, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brown-dark);
    transition: 0.3s ease;
}

.custom-mobile-menu .dropdown-menu {
    position: static;
    float: none;
}

.mobile-social:hover {
    background: var(--brown-dark);
    color: white;
    transform: translateY(-3px);
}

/* ===== Navbar Toggle Color ===== */
.navbar-light .navbar-toggler {
    border-color: rgba(139, 69, 19, 0.4);
}

.navbar-light .navbar-toggler-icon {
    background-image: none;
}

.navbar-light .navbar-toggler::before {
    content: "\2630";
    /* hamburger icon */
    font-size: 22px;
    color: var(--brown-dark);
}

.custom-toggler {
    border: none;
    background: transparent;
    padding: 0;
}

/* Remove default icon image */
.custom-toggler .navbar-toggler-icon {
    background-image: none !important;
}

/* Create custom 3 lines */
.custom-toggler span,
.custom-toggler span::before,
.custom-toggler span::after {
    display: block;
    width: 26px;
    height: 2px;
    background-color: var(--brown-dark);
    position: relative;
    transition: all 0.3s ease;
}

.custom-toggler span::before,
.custom-toggler span::after {
    content: '';
    position: absolute;
    left: 0;
}

.custom-toggler span::before {
    top: -8px;
}

.custom-toggler span::after {
    top: 8px;
}

/* ---------------------------------------------------------------
   2. ANIMATIONS
--------------------------------------------------------------- */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateX(0) translateY(0);
    }

    100% {
        transform: translateX(-100px) translateY(-100px);
    }
}

@keyframes sparkle {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }

    100% {
        transform: translateX(-50px) translateY(-50px) rotate(360deg);
    }
}

@keyframes patternMove {
    0% {
        transform: translateX(0) translateY(0);
    }

    100% {
        transform: translateX(-80px) translateY(-80px);
    }
}

/* ---------------------------------------------------------------
   3. UTILITY / LAYOUT
--------------------------------------------------------------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.section {
    padding: 25px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* ---------------------------------------------------------------
   4. TYPOGRAPHY — SECTION TITLES & SUBTITLES
--------------------------------------------------------------- */
.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--brown-dark);
    position: relative;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--brown-light), var(--brown-pale));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 60px;
    font-style: italic;
}

.dropdown-item:active,
.dropdown-item.active {
    background-color: var(--brown-mid) !important;
    /* color: #fff !important; */
}

/* ---------------------------------------------------------------
   5. BUTTONS
--------------------------------------------------------------- */
.btn-primary {
    background: var(--brown-gradient);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-outline-primary {
    color: var(--brown-dark);
    border-color: var(--brown-dark);
}

.btn-outline-primary:hover {
    background: var(--brown-gradient);
    color: var(--white);
}

.btn-theme {
    background: var(--theme-gradient);
    color: var(--white) !important;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 0.35rem;
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.btn-theme:hover {
    opacity: 0.9;
}

.btn-theme-dark:disabled,
.btn-theme-dark[disabled] {
    background-color: #c4a882 !important;
    color: rgba(255, 255, 255, 0.6) !important;
    border-color: transparent !important;
    cursor: not-allowed !important;
    opacity: 0.65;
    transform: none !important;
    box-shadow: none !important;
    pointer-events: none;
}

/* ---------------------------------------------------------------
   6. SCROLL PROGRESS INDICATOR
--------------------------------------------------------------- */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(139, 69, 19, 0.1);
    z-index: 1000;
}

.scroll-progress {
    height: 100%;
    background: var(--brown-gradient);
    width: 0%;
    transition: width 0.1s ease;
}

/* ---------------------------------------------------------------
   7. HERO SECTION (shared across pages)
--------------------------------------------------------------- */
.hero-section {
    background: var(--theme-gradient);
    color: var(--white);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><defs><pattern id="traditional" width="80" height="80" patternUnits="userSpaceOnUse"><path d="M40 20 L60 40 L40 60 L20 40 Z" fill="rgba(255,255,255,0.05)" stroke="rgba(255,255,255,0.1)" stroke-width="1"/><circle cx="40" cy="40" r="3" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23traditional)"/></svg>');
    opacity: 0.7;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.2s forwards;
    font-style: italic;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.4s forwards;
}

/* ---------------------------------------------------------------
   8. HOME BANNER SLIDER
--------------------------------------------------------------- */
.homeBannerSection {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.homeBannerSlider .owl-stage,
.homeBannerSlider .owl-item {
    height: 100%;
}

.homeBannerSlider .banner-item {
    height: 500px;
}

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

.banner-item {
    position: relative;
}

.banner-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    /* lighter */
}

.banner-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    z-index: 2;
    padding: 20px;
}

.banner-overlay h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.banner-overlay h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .homeBannerSlider img {
        max-height: 300px;
    }

    .banner-overlay h1 {
        font-size: 1.5rem;
    }

    .banner-overlay h2 {
        font-size: 1rem;
    }

    .homeBannerSlider .banner-item {
        height: 300px;
    }
}

.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
}

.owl-nav button {
    position: absolute;
    background: rgba(0, 0, 0, 0.5) !important;
    color: #fff !important;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 24px !important;
    border: none;
}

.owl-nav .owl-prev {
    left: 20px;
}

.owl-nav .owl-next {
    right: 20px;
}

.owl-nav button:hover {
    background: #000 !important;
}

/* ---------------------------------------------------------------
   9. PRODUCT CARDS (shared: home, shop, category pages)
--------------------------------------------------------------- */
.product-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    height: 100%;
}

.product-card {
    display: flex;
    flex-direction: column;
}

.product-info {
    padding: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.spdsp {
    margin-top: 10rem;
}

.product-actions {
    margin-top: auto;
    gap: 8px;
}

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

/* Home page image style (background-image based) */
.product-img {
    display: block;
    width: 100%;
    padding-top: 120%;
    background-size: cover;
}

/* cart page product  image  */
.cart-product-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

/* Category / Shop page image style (img tag based) */
.product-image {
    position: relative;
    height: 80%;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--danger);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
}

.product-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.product-wishlist:hover {
    color: var(--danger);
}

.product-category {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.product-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #5C4033;
    /* min-height: 40px; */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-title a {
    text-decoration: none;
    color: #333;
}

.product-description {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    display: flex;
    justify-content: center;
    align-items: center;
    /* gap: 8px; */
    font-size: 1rem;
    /* margin-bottom: 8px; */
}

.product-price .new-price {
    font-weight: bold;
    color: var(--success);
    margin-right: 10px;
}

.product-price .old-price,
.old-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-left: 5px;
}

.price {
    font-weight: 700;
    font-size: 16px;
    color: #2c3e50;
}

/* Add to Cart / Buy Now button */
.buyNowBtn,
.addToCartBtn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 0;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* === Buy Now === */
.buyNowBtn {
    background-color: var(--brown-dark);
    color: #fff;
}

.buyNowBtn:hover {
    background-color: var(--brown-light);
    transform: translateY(-2px);
}

/* === Add To Cart === */
.addToCartBtn {
    background-color: transparent;
    color: var(--brown-dark);
    border: 1px solid var(--brown-dark);
    text-decoration: none;
}

.addToCartBtn:hover {
    background-color: var(--brown-dark);
    color: #fff;
    /* transform: translateY(-2px); */
}

/* === Button Wrapper === */
.product-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

/* === Mobile Responsive === */
@media (max-width: 576px) {
    .product-actions {
        flex-direction: column;
    }
}

/* ---------------------------------------------------------------
   10. HOME — SECTION BACKGROUNDS
--------------------------------------------------------------- */
.product-section,
.zyltoo100-section,
.shopByCategoryWrapper,
.best-seller-section {
    background: linear-gradient(135deg, var(--cream-light) 0%, var(--cream-dark) 100%);
    padding: 10px 0;
}

.product-section {
    padding: 5px 0;
}

.product-Featured-section {
    padding: 5px 0;
    margin-bottom: 20px;
}

.best-seller-section .section-title {
    font-size: 28px;
    font-weight: bold;
}

/* ---------------------------------------------------------------
   11. HOME — ZYLTOO 100% GIF SLIDER
--------------------------------------------------------------- */
.zyltoo100-section {
    padding: 0;
    margin: 0;
    background: transparent;
    margin-top: 10px;
}

.zyltoo100-section .container {
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.zyltooSlider {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.hundreadPercentGifSlider {
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.hundreadPercentGifSlider .img-container {
    width: 100%;
    max-width: 100%;
}

.hundreadPercentGifSlider img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* ---------------------------------------------------------------
   12. HOME — CRAFTSMANSHIP SECTION
--------------------------------------------------------------- */
.craftsmanship-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-mid) 100%);
    color: var(--white);
    text-align: center;
}

/* ---------------------------------------------------------------
   13. HOME — TESTIMONIALS
--------------------------------------------------------------- */
.testimonial-section {
    padding: 80px 0;
    background: var(--white);
}

.testimonial-card {
    background: linear-gradient(135deg, var(--cream-light) 0%, var(--cream-dark) 100%);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--brown-light);
}

/* ---------------------------------------------------------------
   14. HOME — NEWSLETTER
--------------------------------------------------------------- */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--brown-light) 0%, var(--brown-dark) 100%);
    color: var(--white);
}

.newsletter-input {
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
}

/* ---------------------------------------------------------------
   15. HOME — SHOP BY CATEGORY
--------------------------------------------------------------- */
.shopByCategoryWrapper .heading h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brown-dark);
}

.shopByCategoryWrapper .heading p {
    font-size: 1.1rem;
    color: #5C4033;
}

.categoryBoxOuter {
    margin-bottom: 30px;
}

.categoryBox {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    background: var(--white);
}

.categoryBox:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.centerImgText {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    background: var(--theme-gradient);
    padding: 8px 16px;
    border-radius: 6px;
}

.knowMore {
    bottom: -100%;
    left: 0;
    transition: all 0.4s ease-in-out;
    background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-light) 100%);
    padding: 12px 0;
}

.categoryBox:hover .knowMore {
    bottom: 0;
}

.knowMore a {
    color: var(--cream-light);
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.knowMore a:hover {
    color: var(--brown-pale);
}

/* ---------------------------------------------------------------
   16. CTA SECTION (shared)
--------------------------------------------------------------- */
.cta-section {
    background: linear-gradient(135deg, var(--brown-light) 0%, var(--brown-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="3" fill="rgba(255,255,255,0.1)"/><path d="M40 30 L60 40 L40 50 L20 40 Z" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    animation: sparkle 20s infinite linear;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: var(--white);
    color: var(--brown-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary:hover {
    background: var(--white);
    color: var(--brown-dark);
}

/* ---------------------------------------------------------------
   17. ABOUT PAGE
--------------------------------------------------------------- */
.about-page {
    color: var(--text-main);
    overflow-x: hidden;
}

/* Story Section */
.story-section {
    background: linear-gradient(135deg, var(--cream-light) 0%, var(--cream-dark) 100%);
    position: relative;
    overflow: hidden;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.about-grid .story-text {
    min-width: 0;
}

.about-grid .about-image {
    min-width: 0;
}

.about-grid .about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}


.story-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
}

.story-text p {
    margin-bottom: 20px;
}

.story-highlight,
.highlight {
    color: var(--brown-dark);
    font-weight: 700;
    font-size: 1.1em;
}

.about-image {
    background: linear-gradient(135deg, var(--brown-light), var(--brown-pale));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image img {
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

/* Visual cards grid (story section) */
.story-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    height: 400px;
}

.visual-card {
    background: linear-gradient(135deg, var(--brown-light), var(--brown-pale));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--white);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.visual-card:nth-child(1) {
    background: linear-gradient(135deg, #8B4513, #A0522D);
}

.visual-card:nth-child(2) {
    background: linear-gradient(135deg, #CD853F, #D2691E);
}

.visual-card:nth-child(3) {
    background: linear-gradient(135deg, #DEB887, #F4A460);
}

.visual-card:nth-child(4) {
    background: linear-gradient(135deg, #DAA520, #B8860B);
}

.visual-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
}

.visual-card:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.3);
}

/* Features Grid (About + Why Choose) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: white;
    padding: 10px 12px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 34px;
    color: #8B4513;
    margin-bottom: 4px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 2px;
    color: #8B4513;
    letter-spacing: 1px;
}

.feature-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.7;
    font-weight: 300;
}

/* Values Section */
.values-section {
    background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-mid) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 10 L90 50 L50 90 L10 50 Z" fill="rgba(255,255,255,0.03)" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>') repeat;
    animation: float 30s infinite linear;
}

.values-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap;
    margin-top: 60px;
}

.value-card {
    flex: 1;
    min-width: 200px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    color: var(--white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.value-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.value-description {
    opacity: 0.9;
    line-height: 1.7;
}

/* Founder Section */
.founder-section {
    background: linear-gradient(135deg, var(--cream-light) 0%, var(--cream-dark) 100%);
    padding: 80px 0;
}

.founders-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    max-width: 320px;
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.15);
    text-align: center;
}

.founder-image {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    background: var(--brown-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(139, 69, 19, 0.3);
}

.founder-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
}

.founder-name {
    font-size: 1.5rem;
    color: var(--brown-dark);
    font-weight: 700;
    margin-bottom: 5px;
}

.founder-quote {
    font-size: 0.95rem;
    font-style: italic;
    color: #777;
    margin-bottom: 10px;
}

.founder-role {
    color: var(--brown-light);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.founder-message {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    font-style: italic;
}

/* ---------------------------------------------------------------
   18. CONTACT PAGE
--------------------------------------------------------------- */
.contact-page {
    color: var(--text-main);
    overflow-x: hidden;
    background: #fafafa;
}

.contact-section {
    padding: 80px 0;
    background: var(--white);
}

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

.contact-info {
    padding: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, var(--cream-light) 0%, var(--cream-dark) 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--brown-light);
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    /* background: var(--brown-gradient); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 20px;
    color: var(--white);
    flex-shrink: 0;
}

.contact-details h3 {
    color: var(--brown-dark);
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-details p {
    color: var(--text-muted);
    font-size: 1rem;
}

.contact-details a {
    color: var(--brown-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--brown-dark);
}

.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, var(--brown-dark), var(--brown-light), var(--brown-pale));
}

.form-group {
    margin-bottom: 25px;
    position: relative;
    transition: transform 0.3s ease;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--brown-dark);
    font-weight: 600;
    font-size: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--brown-light);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(205, 133, 63, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

.submit-btn {
    background: var(--brown-gradient);
    color: var(--white);
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.3);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: none;
    border-left: 4px solid #28a745;
}

/* Social Links */
.social-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--brown-light) 0%, var(--brown-dark) 100%);
    color: var(--white);
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-link {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: var(--white);
    color: var(--brown-dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Hours Section */
.hours-section {
    padding: 80px 0;
    background: var(--white);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.hours-card {
    background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-mid) 100%);
    color: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hours-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: sparkle 20s infinite linear;
}

.hours-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.hours-card p {
    position: relative;
    z-index: 1;
    opacity: 0.9;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--cream-light) 0%, var(--cream-dark) 100%);
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: var(--brown-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
}

/* ---------------------------------------------------------------
   19. SHOP / CATALOG PAGE
--------------------------------------------------------------- */
.catalog-header,
.category-header {
    background: var(--theme-gradient);
    color: var(--white);
    padding: 40px 0;
    margin-bottom: 30px;
    text-align: center;
}

.catalog-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.search-bar {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
}

.search-bar input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 30px 0 0 30px;
    font-size: 16px;
    outline: none;
}

.search-bar button {
    background-color: var(--brown-light);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition);
}

.search-bar button:hover {
    background-color: var(--brown-pale);
}

.filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    margin-right: 20px;
    margin-bottom: 10px;
}

.filter-group label {
    margin-right: 10px;
    font-weight: 500;
}

.filter-group select {
    padding: 8px 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    background-color: var(--white);
    cursor: pointer;
}

.view-options button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    margin-left: 10px;
    color: var(--text-light);
    transition: var(--transition);
}

.view-options button.active {
    color: var(--brown-light);
}

/* Products grid */
.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* List view override */
.products.list-view {
    grid-template-columns: 1fr;
}

.products.list-view .product-card {
    display: flex;
    max-height: 200px;
}

.products.list-view .product-image {
    width: 200px;
    height: auto;
}

.products.list-view .product-info {
    flex: 1;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.pagination button,
.pagination a {
    background-color: var(--white);
    border: 1px solid #ddd;
    color: var(--text-main);
    padding: 8px 15px;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 5px;
    text-decoration: none;
}

.pagination button:hover,
.pagination a:hover {
    background-color: #3498db;
    color: var(--white);
    border-color: #3498db;
}

.pagination .active a {
    background-color: #3498db;
    color: var(--white);
    border-color: #3498db;
}

/* ---------------------------------------------------------------
   20. CART PAGE
--------------------------------------------------------------- */
.cart-header {
    font-weight: 700;
    color: var(--brown-dark);
    border-bottom: 2px solid #eaecf4;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.cart-card {
    background: var(--white);
    border-radius: 0.75rem;
    box-shadow: 0 0.15rem 1.75rem rgba(58, 59, 69, 0.15);
}

/* 🔥 Reduce cart item space */
.cart-item {
    border-bottom: 1px solid #e3e6f0;
    padding: 0.75rem 1rem;
    /* was 1.5rem */
    transition: background 0.3s ease;
}

.cart-item:hover {
    background: #fdfdfd;
}

/* Slightly smaller title */
.product-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: #3a3b45;
    margin-bottom: 0.3rem;
}

.product-price {
    font-size: 0.85rem;
}

/* More compact quantity section */
.quantity-control {
    display: flex;
    align-items: center;
}

.quantity-btn {
    width: 28px;
    /* was 32px */
    height: 28px;
    border-radius: 50%;
    background: #f8f9fc;
    border: 1px solid #ddd;
    font-weight: bold;
    font-size: 0.85rem;
    transition: all 0.2s;
    cursor: pointer;
}

.quantity-btn:hover {
    background: var(--theme-gradient);
    color: var(--white);
}

.quantity-input {
    width: 45px;
    /* was 50px */
    text-align: center;
    border: 1px solid #d1d3e2;
    border-radius: 0.35rem;
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0 0.4rem;
}

/* Smaller remove icon */
.remove-btn {
    background: transparent;
    border: none;
    color: #858796;
    font-size: 1rem;
    transition: 0.2s;
    cursor: pointer;
}

.remove-btn:hover {
    color: var(--danger);
}

.cart-summary {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.summary-total {
    border-top: 1px solid #ddd;
    padding-top: 10px;
    font-size: 16px;
    color: var(--brown-dark);
    font-weight: 800;
}

.empty-cart {
    text-align: center;
    padding: 3rem;
}

.empty-cart i {
    font-size: 5rem;
    color: #dddfeb;
    margin-bottom: 1.5rem;
}

/* Mobile cart spacing helper */
.mobile-spacing {
    /* used for flex column on small screens */
}

/* ---------------------------------------------------------------
   21. WHY CHOOSE PAGE
--------------------------------------------------------------- */
.why-choose-page {
    color: var(--text-main);
}

/* inherits .hero-section, .features-grid, .feature-card,
   .feature-icon, .feature-title, .feature-description,
   .cta-section, .cta-button from shared rules above */

/* ---------------------------------------------------------------
   22. RESPONSIVE
--------------------------------------------------------------- */

/* Tablet */
@media (max-width: 992px) {
    /* .homeBannerSlider img {
        height: 60vh;
    } */

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

/* Small tablet */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .banner-overlay h1 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .banner-overlay h2 {
        font-size: 1.2rem;
    }

    .cta-button {
        padding: 8px 20px;
        font-size: 14px;
    }

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

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

    .visual-card {
        font-size: 3rem;
    }

    .about-image {
        height: auto;
    }

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

    .contact-form {
        padding: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

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

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

    .products.list-view .product-card {
        flex-direction: column;
        max-height: none;
    }

    .products.list-view .product-image {
        width: 100%;
        height: 200px;
    }

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

    .filter-group {
        margin-bottom: 15px;
    }

    .founder-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .founder-image {
        margin: 0 auto;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .centerImgText {
        font-size: 1rem;
        padding: 6px 12px;
    }

    .shopByCategoryWrapper .heading h2 {
        font-size: 1.5rem;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .search-bar {
        flex-direction: column;
    }

    .search-bar input {
        border-radius: 30px;
        margin-bottom: 10px;
    }

    .search-bar button {
        border-radius: 30px;
        width: 100%;
    }

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

}

/* ================= CHECKOUT MODAL ================= */

.checkout-modal {
    border-radius: 16px;
    padding: 15px 18px;
    background: var(--cream-light);
}

/* ================= STEPS ================= */

.checkout-steps span {
    font-size: 13px;
    margin: 0 8px;
    color: var(--text-muted);
    position: relative;
}

.checkout-steps .active-step {
    font-weight: 600;
    color: var(--brown-dark);
}

.checkout-steps .active-step::after {
    content: "";
    display: block;
    height: 2px;
    width: 100%;
    background: var(--brown-gradient);
    margin-top: 4px;
    border-radius: 3px;
}

/* ================= SUMMARY CARD ================= */

.checkout-summary-card {
    background: var(--white);
    padding: 16px;
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
}

.checkout-summary-toggle {
    font-weight: 600;
    color: var(--text-main);
}

.checkout-summary-total {
    font-weight: 700;
    color: var(--brown-dark);
}

.checkout-dropdown-icon {
    cursor: pointer;
    transition: var(--transition);
    color: var(--brown-mid);
}

/* Rotate icon when open */
.checkout-summary-toggle[aria-expanded="true"] .checkout-dropdown-icon {
    transform: rotate(180deg);
}

/* Summary rows */

.checkout-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--text-main);
}

.checkout-summary-row span:first-child {
    color: var(--text-muted);
}

/* Divider */
.checkout-summary-card hr {
    margin: 10px 0;
    border-color: var(--cream-dark);
}

/* ================= ADDRESS CARD ================= */
.checkout-add-address-btn {
    white-space: nowrap;
    /* 🔥 prevents line break */
    cursor: pointer;
    color: var(--brown-light);
    font-weight: 600;
    text-decoration: none;
}

.checkout-add-address-btn:hover {
    color: var(--brown-dark);
}

.checkout-address-card {
    border: 1px solid var(--cream-dark);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 12px;
    background: var(--white);
    transition: var(--transition);
}

.checkout-address-card:hover {
    border-color: var(--brown-light);
    background: var(--cream-light);
    box-shadow: var(--shadow-sm);
}

.checkout-address-label {
    display: flex;
    gap: 10px;
    cursor: pointer;
}

.checkout-address-radio {
    accent-color: var(--brown-dark);
    margin-top: 4px;
}

.checkout-address-card:has(.checkout-address-radio:checked) {
    border-color: var(--brown-light);
    background: var(--cream-light);
    box-shadow: var(--shadow-sm);
}

.checkout-address-content strong {
    color: var(--brown-dark);
}

.checkout-address-content {
    font-size: 13px;
    color: var(--text-main);
}

.checkout-address-scroll-area {
    max-height: 220px;
    /* 🔥 control height */
    overflow-y: auto;
    padding-right: 4px;
    /* small spacing for scrollbar */
}

/* Custom scrollbar (optional but premium) */

.checkout-address-scroll-area::-webkit-scrollbar {
    width: 6px;
}

.checkout-address-scroll-area::-webkit-scrollbar-thumb {
    background: var(--brown-light);
    border-radius: 10px;
}

.checkout-address-scroll-area::-webkit-scrollbar-track {
    background: var(--cream-light);
}

/* ================= CONTINUE BUTTON ================= */

.checkout-continue-btn {
    background: var(--brown-gradient);
    border: none;
    padding: 13px;
    border-radius: 12px;
    font-weight: 600;
    color: var(--white);
    transition: var(--transition);
}

.checkout-continue-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.view-all {
    margin-top: 30px;
    margin-bottom: 15px;
}

/* Button them common  */
.btn-theme-dark {
    background-color: var(--brown-dark);
    color: #fff;
    border: none;
    padding: 10px 18px;
    /* balanced padding */
    border-radius: 8px;
    /* soft rounded look */
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
    transition: var(--transition);
    text-decoration: none;
}

.btn-theme-dark:hover {
    background-color: var(--brown-mid);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-theme-dark:active {
    transform: translateY(0);
    box-shadow: none;
}

.btn-theme-dark:focus {
    outline: none;
    box-shadow: none;
}

.custom-add-btn {
    background-color: var(--brown-mid);
    color: var(--white);
    border: none;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.custom-add-btn:hover {
    background-color: var(--brown-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.custom-add-btn:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

/* ==== Edit Button Custom ==== */
.address-edit-btn {
    background-color: var(--brown-mid);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: inline-block;
}

.address-edit-btn:hover {
    background-color: var(--brown-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.custom-add-btn {
    background: var(--brown-mid);
    color: #fff;
    padding: 8px 18px;
    border-radius: 6px;
    border: none;
    transition: 0.3s;
}

.custom-add-btn:hover {
    background: var(--brown-dark);
}

.custom-edit-btn {
    background: var(--brown-light);
    color: #fff;
    border: none;
    padding: 5px 12px;
    border-radius: 5px;
    cursor: pointer;
}

.custom-delete-btn {
    background: #e74c3c;
    color: #fff;
    border: none;
    padding: 5px 12px;
    border-radius: 5px;
}

/* ---------------------------------------------------------------
   USER ACCOUNT / PROFILE PAGES
--------------------------------------------------------------- */
.profile-container {
    padding: 1rem 0;
}

.sidebar {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.sidebar .list-group-item {
    border: none;
    padding: 0.8rem 1rem;
    font-weight: 500;
    color: #5a4a42;
    transition: all 0.3s ease;
    background: transparent;
    font-size: 0.95rem;
}

.sidebar .list-group-item:hover {
    background: rgba(139, 69, 19, 0.1);
    color: #8B4513;
}

.sidebar .list-group-item.active {
    background: linear-gradient(135deg, #8B4513 0%, #CD853F 100%);
    color: white;
    border: none;
}

/* ⚠️ NO overflow:hidden here — it breaks modals */
.main-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.main-card .card-header {
    background: linear-gradient(135deg, #8B4513 0%, #CD853F 100%);
    border-bottom: none;
    border-radius: 15px 15px 0 0;
    padding: 1rem 1.2rem;
    color: #fff;
}

.main-card .card-body {
    padding: 1rem;
    margin: 5px;
}

.profile-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}


@media (max-width: 768px) {
    .sidebar .list-group-item {
        padding: 0.7rem;
        font-size: 0.85rem;
    }

    .profile-img {
        width: 70px;
        height: 70px;
    }
}


/* ===== ZYLTO ORDER TRACKER ===== */

.zylto-tracker-wrapper {
    margin-top: 20px;
    padding: 20px 0;
}

.zylto-tracker {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.zylto-tracker::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 0;
    right: 0;
    height: 4px;
    background: #e0e0e0;
    z-index: 0;
}

.zylto-step {
    position: relative;
    text-align: center;
    flex: 1;
    z-index: 1;
}

.zylto-circle {
    width: 35px;
    height: 35px;
    margin: 0 auto;
    border-radius: 50%;
    background: #ddd;
    border: 4px solid white;
    transition: all 0.4s ease;
}

.zylto-label {
    margin-top: 8px;
    font-weight: 600;
    font-size: 14px;
}

.zylto-date {
    font-size: 12px;
    color: #777;
    margin-top: 4px;
}

/* Completed Step */
.zylto-step.completed .zylto-circle {
    background: #28a745;
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.6);
    animation: pulse 1.4s infinite;
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

/* Mobile Responsive */
@media(max-width:768px) {
    .zylto-label {
        font-size: 12px;
    }

    .zylto-date {
        font-size: 11px;
    }
}

/* Scroll only products section */
.zylto-products-scroll {
    max-height: 300px;
    /* adjust height as needed */
    overflow-y: auto;
    padding-right: 8px;
}

/* Smooth thin scrollbar */
.zylto-products-scroll::-webkit-scrollbar {
    width: 6px;
}

.zylto-products-scroll::-webkit-scrollbar-thumb {
    background-color: #c4a484;
    border-radius: 10px;
}

.zylto-products-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.faq-hero {
    background: linear-gradient(135deg, #8B4513 0%, #CD853F 50%, #DEB887 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
}

.faq-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.faq-section {
    padding: 60px 0;
    background: #fff;
}

.accordion-item {
    border-bottom: 1px solid #E5E7EB;
}

.accordion-title {
    padding: 15px;
    font-size: 1.2rem;
    cursor: pointer;
    color: #1F2937;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Custom arrow design */
.accordion-arrow {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 2px solid #8B4513;
    border-bottom: 2px solid #8B4513;
    transform: rotate(45deg);
    /* right arrow */
    transition: transform 0.3s ease;
    margin-left: 8px;
}

.accordion-arrow.rotate {
    transform: rotate(135deg);
    /* down arrow */
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 15px;
}

.accordion-content p {
    padding: 10px 0;
    color: #4B5563;
}

.policy-hero {
    background: linear-gradient(135deg, #8B4513 0%, #CD853F 50%, #DEB887 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.policy-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.policy-section {
    padding: 60px 0;
    background: #fff;
}

.policy-card {
    background: linear-gradient(135deg, #FFF8DC 0%, #F5F5DC 100%);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.policy-card:hover {
    transform: translateY(-5px);
}

.policy-card h2 {
    font-size: 1.6rem;
    color: #8B4513;
    margin-bottom: 15px;
    font-weight: 600;
}

.policy-card ul {
    margin-left: 20px;
    list-style: disc;
}

@media(max-width:768px) {
    .policy-hero h1 {
        font-size: 2.2rem;
    }
}

.tos-hero {
    background: linear-gradient(135deg, #8B4513 0%, #CD853F 50%, #DEB887 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tos-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tos-section {
    padding: 60px 0;
    background: #fff;
}

.tos-card {
    background: linear-gradient(135deg, #FFF8DC 0%, #F5F5DC 100%);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.tos-card:hover {
    transform: translateY(-5px);
}

.tos-card h2 {
    font-size: 1.6rem;
    color: #8B4513;
    margin-bottom: 15px;
    font-weight: 600;
}

.tos-card ul {
    margin-left: 20px;
    list-style: disc;
}

@media(max-width:768px) {
    .tos-hero h1 {
        font-size: 2.2rem;
    }
}

.review-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.review-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.review-card iframe {
    width: 100%;
    height: 250px;
    border-radius: 10px;
}

.swiper {
    padding-bottom: 40px;
}

.order-success-card {
    max-width: 700px;
    margin: auto;
    padding: 45px 35px;
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.order-success-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Success Icon */

.success-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    background: var(--cream-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon i {
    font-size: 50px;
    color: var(--success);
}

/* Heading */

.order-success-card h2 {
    color: var(--brown-dark);
    font-weight: 700;
}

/* Order Number Box */

.order-number-box {
    background: var(--cream-dark);
    padding: 12px;
    border-radius: 8px;
    color: var(--brown-dark);
    font-weight: 600;
    border: 1px dashed var(--brown-light);
}

/* Address + Payment Info */

.order-success-card h6 {
    color: var(--brown-mid);
    font-weight: 600;
}

.order-success-card p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Order Summary */

.order-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
}

.order-summary-row.total {
    font-weight: 700;
    color: var(--brown-dark);
    font-size: 16px;
}

/* Buttons */

.success-actions .btn {
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary-theme {
    background: var(--brown-gradient);
    color: var(--white);
    border: none;
}

.btn-primary-theme:hover {
    background: var(--brown-dark);
}

.btn-outline-theme {
    border: 1px solid var(--brown-light);
    color: var(--brown-dark);
    background: transparent;
}

.btn-outline-theme:hover {
    background: var(--cream-light);
}


/* ================= HOME BEST SELLERS — MOBILE 2 COLUMN ================= */

@media (max-width: 767px) {

    /* ── 2 columns on mobile for best sellers ── */
    .product-section .row {
        margin-left: -6px;
        margin-right: -6px;
    }

    .product-section .row>[class*="col-"] {
        padding-left: 6px;
        padding-right: 6px;
        margin-bottom: 12px;
    }

    /* ── Tighter card on mobile ── */
    .product-section .product-card {
        border-radius: 10px;
    }

    .product-section .product-image {
        height: 180px;
    }

    .product-section .product-info {
        padding: 8px;
    }

    .product-section .product-title {
        font-size: 12px;
        margin-bottom: 4px;
    }

    .product-section .product-price {
        font-size: 13px;
    }

    .product-section .product-price .new-price {
        font-size: 13px;
    }

    .product-section .product-price .old-price {
        font-size: 11px;
    }

    /* ── Hide color swatches on mobile to save space ── */
    .product-section .product-color {
        display: none;
    }

    /* ── Stack buttons vertically on mobile ── */
    .product-section .product-actions {
        flex-direction: column;
        gap: 5px;
        margin-top: 8px;
    }

    .product-section .product-actions .buyNowBtn,
    .product-section .product-actions .addToCartBtn {
        padding: 7px 0;
        font-size: 12px;
        border-radius: 5px;
    }
}

/* ===============================================================
   SHOP / CATEGORY PAGE — MOBILE 2 COLUMN GRID
=============================================================== */

@media (max-width: 767px) {

    /* ── 2 columns on mobile ── */
    .products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    /* ── Tighter card ── */
    .products .product-card {
        border-radius: 10px;
    }

    /* ── Fixed image height on mobile ── */
    .products .product-image {
        height: 170px;
    }

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

    /* ── Compact info section ── */
    .products .product-info {
        padding: 7px;
    }

    .products .product-title {
        font-size: 12px;
        margin-bottom: 4px;
    }

    /* ── Compact price ── */
    .products .product-price {
        font-size: 12px;
        flex-wrap: wrap;
        gap: 2px;
    }

    .products .product-price .new-price {
        font-size: 13px;
        margin-right: 4px;
    }

    .products .product-price .old-price {
        font-size: 11px;
        margin-left: 0;
    }

    /* ── Hide color swatches — too cramped on mobile ── */
    .products .product-color {
        display: none;
    }

    /* ── Stack action buttons vertically ── */
    .products .product-actions {
        flex-direction: column;
        gap: 5px;
        margin-top: 6px;
    }

    .products .product-actions .buyNowBtn,
    .products .product-actions .addToCartBtn,
    .products .product-actions .btn-secondary {
        padding: 7px 0;
        font-size: 11px;
        border-radius: 5px;
        width: 100%;
    }

    /* ── List view overrides on mobile — force grid ── */
    .products.list-view {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .products.list-view .product-card {
        flex-direction: column !important;
        max-height: none !important;
    }

    .products.list-view .product-image {
        width: 100% !important;
        height: 170px !important;
    }

    /* ── Catalog header tighter on mobile ── */
    .catalog-header {
        padding: 24px 0 !important;
    }

    .catalog-title {
        font-size: 1.3rem !important;
        line-height: 1.4;
    }

    /* ── Category header tighter ── */
    .category-header {
        padding: 24px 0 !important;
    }

    .category-header h1 {
        font-size: 1.4rem;
    }

    /* ── Filters bar compact ── */
    .filters {
        margin-bottom: 16px;
    }

    /* ── Pagination tighter ── */
    .pagination button,
    .pagination a {
        padding: 6px 10px;
        font-size: 13px;
        margin: 0 2px;
    }
}

.coupon-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    backdrop-filter: blur(3px);
}

/* ── Box ── */
.coupon-box {
    background: #fdf8f2;
    border-radius: 18px;
    padding: 28px 24px 22px;
    width: 320px;
    text-align: center;
    border: 1px solid #e8d9c4;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalPop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalPop {
    from {
        opacity: 0;
        transform: scale(0.85) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.coupon-icon {
    font-size: 30px;
    margin-bottom: 6px;
}

.coupon-title {
    font-size: 20px;
    font-weight: 700;
    color: #3d1f00;
    margin: 0 0 4px;
}

.coupon-sub {
    font-size: 13px;
    color: #8a6a4a;
    margin: 0 0 16px;
}

/* ── Scratch Area ── */
.scratch-container {
    position: relative;
    width: 100%;
    height: 130px;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 0 14px;
    background: linear-gradient(135deg, #7c3a00 0%, #b05b1a 50%, #7c3a00 100%);
}

.coupon-prize {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    z-index: 1;
}

.prize-label {
    font-size: 11px;
    color: #f5ddb0;
    letter-spacing: 3px;
    font-weight: 600;
}

.prize-code {
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 4px;
}

.prize-note {
    font-size: 11px;
    color: #f5ddb0;
}

#scratchCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    cursor: crosshair;
    touch-action: none;
    transition: opacity 0.5s ease;
}

/* ── Hint & Reveal ── */
.scratch-hint {
    font-size: 12px;
    color: #a07850;
    margin: 0 0 10px;
    transition: opacity 0.4s;
}

.reveal-msg {
    font-size: 13px;
    color: #2e7d32;
    font-weight: 600;
    margin: 0 0 12px;
    opacity: 0;
    transition: opacity 0.5s;
}

/* ── Buttons ── */
.coupon-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.copy-code-btn {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
    border-radius: 8px;
    padding: 9px 18px;
    font-size: 13px;
    cursor: pointer;
    display: none;
    transition: background 0.2s;
}

.copy-code-btn:hover {
    background: #c8e6c9;
}

.close-btn {
    background: #7c3a00;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 9px 20px;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s;
}

.close-btn:hover {
    background: #9e4d10;
}