/* --- THEME VARIABLES --- */
:root {
    --peach: #FFDAB9;
    --pink: #FFC0CB;
    --cream: #FFFDF5;
    --gold: #D4AF37;
    --dark: #4A4A4A;
    --white: #FFFFFF;
}

/* --- RESET & BASE STYLES --- */
* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

body { 
    font-family: 'Poppins', sans-serif; 
    background: var(--cream); 
    color: var(--dark); 
    overflow-x: hidden; 
    scroll-behavior: smooth; 
}

/* --- LUXURY FLOATING NAVBAR --- */
.navbar { 
    display: flex; 
    justify-content: space-between; 
    padding: 25px 5%; 
    background: transparent; 
    position: absolute; 
    width: 100%; 
    top: 0; 
    z-index: 1000; 
    align-items: center; 
    transition: 0.4s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    padding: 15px 5%;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.navbar.scrolled .logo, .navbar.scrolled .nav-links a {
    color: var(--gold);
}

.logo { 
    font-family: 'Playfair Display', serif; 
    font-size: 1.8rem; 
    font-weight: 700;
    color: var(--white); 
    text-shadow: 1px 1px 10px rgba(0,0,0,0.2);
}

.nav-links { 
    display: flex; 
    list-style: none; 
    gap: 30px; 
}

.nav-links a { 
    text-decoration: none; 
    color: var(--white); 
    font-weight: 400;
    transition: 0.3s;
}

.nav-links a:hover { color: var(--gold); }

/* --- HAMBURGER MENU ICON (hidden on desktop by default) --- */
.menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--white);
    z-index: 1100;
    transition: transform 0.3s ease, color 0.3s ease;
    position: relative;
}

.navbar.scrolled .menu-icon {
    color: var(--gold);
}

/* Menu icon rotates and turns gold when open */
.menu-icon.open {
    transform: rotate(90deg);
    color: var(--gold) !important;
}

.section-title {
    font-size: 2.5rem;               /* Increased Font Size */
    color: #D4AF37;                 /* Gold Color */
    text-align: center;
    font-family: 'Playfair Display', serif; 
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: capitalize;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

#toast {
    visibility: hidden;
    min-width: 250px;
    background-color: #d4af37; /* Gold color to match your theme */
    color: #fff;
    text-align: center;
    border-radius: 50px;
    padding: 16px;
    position: fixed;
    z-index: 1000;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

#toast.show {
    visibility: visible;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@keyframes fadein {
    from { bottom: 0; opacity: 0; }
    to { bottom: 30px; opacity: 1; }
}

@keyframes fadeout {
    from { bottom: 30px; opacity: 1; }
    to { bottom: 0; opacity: 0; }
}

.cart-btn { 
    background: rgba(255, 255, 255, 0.15); 
    backdrop-filter: blur(8px);
    color: white;
    padding: 10px 22px; 
    border-radius: 30px; 
    cursor: pointer; 
    font-weight: 600; 
    border: 1px solid rgba(255,255,255,0.3);
    transition: 0.3s ease;
}

.cart-btn:hover {
    background: var(--white);
    color: var(--gold);
    transform: translateY(-2px);
}

/* --- UPDATED LUXURY HERO SECTION --- */
.hero { 
    height: 100vh; 
    position: relative; 
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
}

.slider { height: 100%; width: 100%; }

.slide { 
    position: absolute; 
    width: 100%; 
    height: 100%; 
    background-size: cover; 
    background-position: center; 
    opacity: 0; 
    transition: opacity 1.2s ease-in-out; 
}

.slide.active { opacity: 1; }

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(74, 58, 26, 0.45), rgba(74, 58, 26, 0.1), rgba(74, 58, 26, 0.65));
    z-index: 5;
}

.hero-overlay { 
    position: absolute; 
    top: 55%; 
    left: 8%; 
    transform: translateY(-50%); 
    text-align: left; 
    color: white; 
    max-width: 700px; 
    z-index: 10;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--peach);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-overlay h1 { 
    font-family: 'Playfair Display', serif; 
    font-size: 4.5rem; 
    line-height: 1.1;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.45);
}

.hero-desc {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 35px;
    color: rgba(255,255,255,0.95);
    font-weight: 300;
}

.hero-btns { display: flex; gap: 20px; }

.btn-primary {
    background: var(--gold); 
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    border: 2px solid white;
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover { 
    transform: translateY(-3px) scale(1.03); 
    background: #e6be4d; 
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.45);
}
.btn-secondary:hover { background: white; color: var(--dark); }

/* --- FULL-SCREEN LUXURY OUR STORY SECTION --- */
.our-story { 
    min-height: 100vh; 
    padding: 60px 5% 40px; 
    background: var(--white); 
    display: flex;
    align-items: center; 
    box-sizing: border-box;
    overflow: hidden; 
}

.story-container { 
    max-width: 1400px; 
    margin: 0 auto; 
    width: 100%;
    display: flex;
    flex-direction: column; 
    height: 100%;
    justify-content: space-between; 
    gap: 40px;
}

.story-top-row {
    display: flex;
    align-items: flex-start; 
    gap: 80px;
    flex: 1; 
}

.story-content { flex: 1; }

.story-title { 
    font-family: 'Playfair Display', serif; 
    font-size: 3.5rem; 
    color: var(--gold); 
    margin-bottom: 25px; 
    margin-top: 0; 
}

.story-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
    font-size: 1.05rem;
}

.story-image { 
    flex: 1.5; 
    position: relative; 
    text-align: center; 
}

.story-image img { 
    width: 100%; 
    max-width: 700px; 
    border-radius: 30px; 
    box-shadow: 20px 20px 0px var(--cream), 0 30px 60px rgba(0,0,0,0.12); 
    transition: 0.5s ease;
}

.story-image:hover img {
    transform: scale(1.02);
}

.story-values-and-stats {
    display: flex;
    align-items: center;
    justify-content: space-between; 
    width: 100%; 
    padding: 35px 30px;
    background: var(--cream); 
    border-radius: 20px;
    border-top: 2px solid var(--peach); 
    border-bottom: 2px solid var(--peach);
    margin-top: auto; 
    box-sizing: border-box;
}

.value-item, .stat-box { 
    flex: 1; 
    text-align: center; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.value-icon {
    font-size: 1.2rem;
    color: #8b2635; 
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    border: 1px solid var(--peach);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.value-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 2px;
}

.value-item p {
    font-size: 0.75rem !important;
    line-height: 1.4 !important;
    color: #777 !important;
    text-align: center !important;
    margin: 0 !important;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem; 
    font-weight: 700;
    color: #8b2635; 
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem; 
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-top: 5px;
}

/* --- CATEGORY SECTION (RESTORED 180PX / 140PX) --- */
.section-title { 
    text-align: center; 
    margin: 40px 0 10px; 
    font-family: 'Playfair Display', serif; 
}

.scroll-wrapper { 
    position: relative; 
    padding: 0 50px; 
    margin: 20px 0; 
}

.category-container { 
    display: flex; 
    overflow-x: auto; 
    scroll-behavior: smooth; 
    gap: 20px; 
    padding: 30px 10px;
    scrollbar-width: none; 
}

.category-container::-webkit-scrollbar { display: none; }

.cat-card { 
    flex: 0 0 auto; 
    width: 280px; 
    text-align: center; 
    cursor: pointer; 
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    padding: 15px;
}

.cat-img {
    width: 240px;
    height: 240px;
    margin: 0 auto 15px;
    border-radius: 50%; 
    background-size: cover;
    background-position: center;
    border: 4px solid var(--peach);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.4s;
}

.cat-card span {
    display: block;
    font-weight: 700;
    color: var(--dark);
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Hover Effects */
.cat-card:hover { 
    transform: translateY(-12px);
}

.cat-card:hover .cat-img {
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
    transform: scale(1.08);
}

/* --- SUB-CATEGORIES (350PX TALL & HIDDEN BY DEFAULT) --- */
.sub-menu-area { 
    display: none; /* KILLS EMPTY SPACE UNTIL CLICKED */
    padding: 30px 5%; 
    text-align: center; 
}

.sub-card-container { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 280px)); 
    gap: 30px; 
    margin-top: 30px; 
    justify-content: center; 
}

.sub-flash-card { 
    background: white; 
    border-radius: 15px; 
    overflow: hidden; 
    border: 1px solid var(--peach); 
    cursor: pointer; 
    transition: 0.3s; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.05); 
}

.sub-flash-card:hover { 
    transform: translateY(-8px); 
    border-color: var(--gold); 
}

.sub-card-img { 
    width: 100%; 
    height: 350px; /* RESTORED TALL LOOK */
    background-size: cover; 
    background-position: center; 
}

.sub-flash-card h4 {
    margin: 0;
    padding: 15px 10px;
    background: white;
    font-size: 1.1rem;
    color: var(--dark);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 60px;
}

/* --- PRODUCT GRID (ZOOM EFFECT & HIDDEN BY DEFAULT) --- */
.product-reveal-section {
    display: none; /* KILLS EMPTY SPACE UNTIL CLICKED */
    width: 100%;
    padding: 60px 5%;
    background: #fffcf9;
    border-top: 1px solid var(--peach);
}

.product-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
    gap: 30px; 
    padding: 40px 5%; 
}

.product-card { 
    background: white; 
    padding: 20px; 
    border-radius: 20px; 
    text-align: center; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.05); 
    overflow: hidden; 
    transition: 0.4s;
}

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

.product-card img { 
    width: 100%; 
    border-radius: 15px; 
    transition: 0.5s ease; 
    object-fit: cover; 
    aspect-ratio: 1/1; 
}

.product-card:hover img { 
    transform: scale(1.1); /* ZOOM EFFECT */
}

/* --- TESTIMONIALS (FIRM POSITION BELOW PRODUCTS) --- */
.testimonials-section {
    background-color: #fffaf5; 
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
    border-top: 1px solid #f2e8df;
    border-bottom: 1px solid #f2e8df;
}

.testimonial-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    overflow: hidden;
}

.testimonial-container {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.45, 0, 0.55, 1);
    gap: 25px;
}

.testimonial-card {
    background: #ffffff;
    min-width: calc(33.333% - 17px); 
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(101, 78, 55, 0.06);
    text-align: left;
    box-sizing: border-box;
    border: 1px solid #fdf1e8;
}

.quote-icon-top {
    background: #fff0e6; 
    color: #d4af37;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.review-text {
    font-size: 1rem;
    color: #5c4a38;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 70px;
    font-style: italic;
}

.client-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #332a21;
    margin: 0;
    letter-spacing: 0.5px;
}

/* --- FOOTER & VISIT US --- */
.site-footer { 
    background: white; 
    padding: 80px 5% 40px; 
    border-top: 1px solid var(--peach); 
    margin-top: 0;
}

.footer-container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; max-width: 1200px; margin: 0 auto; }
.footer-info h3, .footer-contact h3 { font-family: 'Playfair Display', serif; color: var(--gold); margin-bottom: 30px; font-size: 2rem; }

.social-icon-grid { 
    display: flex; 
    flex-wrap: wrap;
    gap: 15px; 
    margin-bottom: 20px; 
}

.icon-link { 
    width: 50px; height: 50px; background: var(--cream); border-radius: 15px; 
    display: flex; align-items: center; justify-content: center; border: 1px solid var(--peach); transition: 0.3s;
}

.icon-link img { width: 24px; height: 24px; transition: 0.3s; }

.icon-link.loc:hover { background: #ea4335; border-color: #ea4335; } 
.icon-link.wa:hover { background: #25d366; border-color: #25d366; } 
.icon-link.ig:hover { background: #e1306c; border-color: #e1306c; } 
.icon-link.yt:hover { background: #FF0000; border-color: #FF0000; } 
.icon-link.call:hover { background: var(--gold); border-color: var(--gold); }
.icon-link:hover img { filter: brightness(0) invert(1); transform: scale(1.1); }

.thank-you-note {
    margin: 20px 0;
    padding: 15px;
    background: var(--cream);
    border-left: 3px solid var(--gold);
    border-radius: 0 10px 10px 0;
}

.thank-you-note p { font-style: italic; font-size: 0.95rem; color: var(--dark); line-height: 1.5; }

.thank-you-note strong { color: var(--gold); }

/* --- CONTACT FORM --- */
#contact-form { display: flex; flex-direction: column; gap: 15px; }
#contact-form input, #contact-form textarea { 
    padding: 18px; border: 1px solid var(--peach); border-radius: 12px; 
    background: var(--cream); font-family: inherit; 
}
.send-btn { background: var(--gold); color: white; border: none; padding: 18px; border-radius: 12px; font-weight: 700; cursor: pointer; transition: 0.3s; }

.footer-bottom {
    text-align: center;
    padding: 30px 5%;
    margin-top: 60px;
    width: 100%;

    /* Soft luxury background */
    background: linear-gradient(to right, #fffaf3, #fff, #fffaf3);

    border-top: 1px solid var(--peach);

    /* Better typography */
    font-size: 0.95rem;
    color: #666;

    /* Remove dull opacity */
    opacity: 1;
}

/* spacing between lines */
.footer-bottom p {
    margin: 6px 0;
}

/* Highlight brand name */
.footer-bottom strong {
    color: var(--gold);
}

/* Credit link styling */
.footer-bottom a {
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: 0.3s ease;
}

/* underline animation */
.footer-bottom a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

/* hover effect */
.footer-bottom a:hover {
    color: #b8952e;
}

.footer-bottom a:hover::after {
    width: 100%;
}

.footer-bottom {
    position: relative;
    overflow: hidden;
}

.footer-bottom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 0%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    transform: translateX(-50%);
    transition: width 0.6s ease;
}

.footer-bottom:hover::before {
    width: 80%;
}

/* --- BUTTONS & NAVIGATION --- */
.scroll-btn { 
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%); 
    background: white; 
    border: 1px solid var(--peach); 
    width: 45px; 
    height: 45px; 
    border-radius: 50%; 
    cursor: pointer; 
    z-index: 100; 
    display: flex;
    align-items: center;
    justify-content: center;
}
.scroll-btn.left { left: 5px; }
.scroll-btn.right { right: 5px; }

.add-btn { 
    width: 100%; padding: 12px; margin-top: 15px; border: none; 
    background: var(--gold); color: white; border-radius: 12px; 
    cursor: pointer; font-weight: 600; transition: 0.3s;
}
.add-btn:hover { background: #b8952e; }

.qty-btn {
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    line-height: 1;
}
.qty-minus { background: #f0f0f0; border: 1px solid #ddd; color: #333; }
.qty-plus  { background: var(--gold); color: white; }
.qty-num   { font-size: 1rem; font-weight: 600; margin: 0 8px; }

/* --- CART MODAL --- */
.cart-modal { 
    position: fixed; top: 0; right: -100%; width: 400px; height: 100%; 
    background: white; z-index: 2000; transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1); 
    display: flex; flex-direction: column; box-shadow: -10px 0 30px rgba(0,0,0,0.1); 
}
.cart-modal.active { right: 0; }
.cart-header { background: var(--gold); color: white; padding: 25px; display: flex; justify-content: space-between; align-items: center; }
.close-btn { background: none; border: none; color: white; font-size: 2rem; cursor: pointer; }
#cart-items { flex-grow: 1; overflow-y: auto; padding: 25px; list-style: none; }
.cart-footer { padding: 25px; border-top: 1px solid #eee; background: #fafafa; }
.total-row { display: flex; justify-content: space-between; font-weight: 700; font-size: 1.3rem; margin-bottom: 20px; }
.checkout-btn { width: 100%; padding: 18px; background: #25D366; color: white; border: none; border-radius: 15px; font-weight: 700; cursor: pointer; }

/* --- EMPTY CART STYLING (MATCHING REFERENCE) --- */
.empty-cart-container {
    text-align: center;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.empty-cart-icon {
    position: relative;
    width: 100px;
    height: 100px;
    background: #f0f9ff; /* Light blue circle from reference */
    border-radius: 50%;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-svg { font-size: 40px; font-style: normal; opacity: 0.6; }

.star { position: absolute; color: #ffd700; }
.s1 { top: 10px; left: 15px; font-size: 12px; }
.s2 { top: 5px; right: 20px; font-size: 16px; }
.s3 { bottom: 25px; right: 10px; font-size: 10px; }

.empty-cart-container h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 10px 0;
}

.empty-cart-container p {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.keep-shopping-btn {
    background: #D4AF37; /* TNT Gold Brand Color */
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

/* --- FLOATING CART BUTTON --- */
.cart-float {
    position: fixed;
    bottom: 115px;          /* sits above the 65px WhatsApp + 35px bottom gap + some spacing */
    right: 35px;
    width: 55px;
    height: 55px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
    transition: 0.3s ease;
}

.cart-float:hover {
    transform: scale(1.12) translateY(-3px);
    background: #c9a227;
    box-shadow: 0 10px 28px rgba(212, 175, 55, 0.55);
}

/* Badge showing item count */
.cart-float-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #e63946;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    line-height: 1;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .cart-float {
        bottom: 90px;
        right: 20px;
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}

/* --- WHATSAPP FLOAT --- */
.whatsapp-float { position: fixed; bottom: 35px; right: 35px; width: 65px; height: 65px; z-index: 1000; transition: 0.3s; }
.whatsapp-float:hover { transform: scale(1.1) rotate(10deg); }

/* ============================================================
   GLOBAL OVERFLOW PREVENTION
   ============================================================ */
html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
}

img {
    max-width: 100% !important;
    height: auto !important;
}

/* ============================================================
   LARGE DESKTOPS (1400px+)
   ============================================================ */
@media (min-width: 1400px) {
    .hero-overlay h1 { font-size: 5.5rem; }
    .story-title { font-size: 4rem; }
    .product-grid { grid-template-columns: repeat(4, 1fr); }
    .footer-container { gap: 120px; }
}

/* ============================================================
   STANDARD DESKTOPS / LAPTOPS (1025px – 1399px)
   ============================================================ */
@media (max-width: 1399px) and (min-width: 1025px) {
    .hero-overlay h1 { font-size: 4rem; }
    .story-title { font-size: 3rem; }
    .story-top-row { gap: 50px; }
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .testimonial-card { min-width: calc(33.333% - 17px); }
    .footer-container { gap: 60px; }
}

/* ============================================================
   TABLET LANDSCAPE / SMALL LAPTOPS (1024px)
   ============================================================ */
@media (max-width: 1024px) {
    .navbar { padding: 18px 4%; }
    .logo { font-size: 1.5rem; }
    .nav-links { gap: 20px; }
    .hero-overlay h1 { font-size: 3.5rem !important; }
    .hero-overlay { left: 5%; max-width: 85%; }
    .hero-desc { font-size: 1.05rem; }
    .btn-primary, .btn-secondary { padding: 15px 28px; font-size: 0.95rem; }
    .story-title { font-size: 2.8rem; }
    .story-top-row { gap: 40px; }
    .stat-number { font-size: 2.2rem; }
    .product-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 20px; }
    .testimonial-card { min-width: calc(50% - 13px); padding: 30px 22px; }
    .cat-card { width: 190px; }
    .cat-img { width: 155px; height: 155px; }
    .footer-container { gap: 40px; }
    .footer-info h3, .footer-contact h3 { font-size: 1.6rem; }
}

/* ============================================================
   TABLET PORTRAIT (768px – 900px)
   ============================================================ */
@media (max-width: 900px) {
    .testimonial-card { min-width: 100%; }
    .story-top-row { flex-direction: column !important; gap: 30px; }
    .story-image { order: -1; flex: unset; width: 100%; }
    .story-image img { max-width: 100%; box-shadow: 0 20px 40px rgba(0,0,0,0.10); }
    .story-content { flex: unset; width: 100%; }
    .story-title { font-size: 2.4rem; text-align: center; }
    .story-content p { text-align: center; }
    .story-values-and-stats { flex-wrap: wrap; gap: 20px; padding: 25px 15px; justify-content: center; }
    .value-item, .stat-box { flex: 1 1 40%; min-width: 130px; }
    .sub-card-container { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
    .sub-card-img { height: 260px; }
    .product-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 18px; }
    .section-title { font-size: 2rem !important; }
    .scroll-wrapper { padding: 0 35px; }
    .cart-modal { width: 90%; }
}

/* ============================================================
   MOBILE PHONES (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {

    /* ── NAVBAR ── */
    .navbar { padding: 15px 5% !important; }

    .menu-icon { display: block !important; }

    /* ── FANCY FULL-SCREEN MENU OVERLAY ── */
    .nav-links {
        display: none;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: linear-gradient(
            145deg,
            rgba(255, 253, 245, 0.98) 0%,
            rgba(255, 218, 185, 0.95) 100%
        ) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 0 !important;
        padding: 0 !important;
        z-index: 1050 !important;
        box-shadow: none !important;
        text-align: center !important;
        list-style: none !important;
    }

    .nav-links.active {
        display: flex !important;
        animation: menuFadeIn 0.4s ease forwards;
    }

    @keyframes menuFadeIn {
        from { opacity: 0; transform: translateY(-20px); }
        to   { opacity: 1; transform: translateY(0); }
    }

    /* Gold ornament above links */
    .nav-links::before {
        content: '✦';
        color: var(--gold);
        font-size: 1.6rem;
        margin-bottom: 30px;
        display: block;
        animation: spinIn 0.5s ease 0.1s both;
    }

    @keyframes spinIn {
        from { opacity: 0; transform: rotate(-90deg) scale(0.5); }
        to   { opacity: 1; transform: rotate(0deg) scale(1); }
    }

    /* Brand tagline below links */
    .nav-links::after {
        content: 'TNT Designing Work';
        color: var(--gold);
        font-family: 'Playfair Display', serif;
        font-size: 0.85rem;
        letter-spacing: 3px;
        text-transform: uppercase;
        margin-top: 35px;
        opacity: 0.6;
        display: block;
    }

    /* Each list item */
    .nav-links li {
        margin: 0 !important;
        width: 100%;
        border-bottom: 1px solid rgba(212, 175, 55, 0.15);
        opacity: 0;
        animation: itemSlideIn 0.4s ease forwards;
    }

    .nav-links li:nth-child(1) { animation-delay: 0.05s; }
    .nav-links li:nth-child(2) { animation-delay: 0.10s; }
    .nav-links li:nth-child(3) { animation-delay: 0.15s; }
    .nav-links li:nth-child(4) { animation-delay: 0.20s; }
    .nav-links li:nth-child(5) { animation-delay: 0.25s; }

    @keyframes itemSlideIn {
        from { opacity: 0; transform: translateX(-20px); }
        to   { opacity: 1; transform: translateX(0); }
    }

    /* Each nav link — luxury serif style */
    .nav-links a {
        display: block !important;
        padding: 22px 40px !important;
        color: #4A4A4A !important;
        font-size: 1.3rem !important;
        font-weight: 600 !important;
        letter-spacing: 1px !important;
        text-transform: uppercase !important;
        text-decoration: none !important;
        transition: color 0.3s ease, letter-spacing 0.3s ease !important;
        font-family: 'Playfair Display', serif !important;
    }

    .nav-links a:hover {
        color: var(--gold) !important;
        letter-spacing: 2px !important;
    }

    .cart-btn { padding: 8px 14px; font-size: 0.85rem; }

    /* ── HERO: FULL COVER TO TOP — NO GAP ── */
    .hero {
        height: 100svh !important;
        min-height: 100vh !important;
        padding: 0 !important;
        margin: 0 !important;
        display: block !important;
        position: relative !important;
    }

    .slider {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }

    .hero-overlay {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 88% !important;
        max-width: 100% !important;
        text-align: center !important;
        padding: 0 !important;
        z-index: 10 !important;
    }

    .hero-subtitle { font-size: 0.78rem !important; letter-spacing: 2px !important; }

    .hero-overlay h1 {
        font-size: 2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 14px !important;
    }

    .hero-desc { font-size: 0.95rem !important; margin-bottom: 22px !important; }

    .hero-btns {
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px !important;
    }

    .btn-primary, .btn-secondary {
        width: 80% !important;
        max-width: 260px !important;
        padding: 14px 20px !important;
        font-size: 0.95rem !important;
        text-align: center !important;
    }

    /* ── OUR STORY: HIDDEN ON MOBILE BY DEFAULT ── */
    .our-story {
        display: none !important;
        overflow: hidden;
    }

    /* Revealed when JS adds .story-visible */
    .our-story.story-visible {
        display: flex !important;
        animation: storyReveal 0.6s ease forwards;
    }

    @keyframes storyReveal {
        from { opacity: 0; transform: translateY(30px); }
        to   { opacity: 1; transform: translateY(0); }
    }

    /* ── OUR STORY INTERNAL LAYOUT (MOBILE) ── */
    #our-story, .our-story {
        padding: 60px 20px !important;
        min-height: auto !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .story-container {
        flex-direction: column !important;
        text-align: center !important;
        width: 100% !important;
        gap: 25px;
    }

    .story-top-row { flex-direction: column !important; gap: 25px !important; }

    .story-image, .our-journey img {
        width: 100% !important;
        max-width: 400px !important;
        margin: 0 auto 20px auto !important;
        position: relative !important;
        display: block !important;
        order: -1;
    }

    .story-image img { box-shadow: 0 15px 30px rgba(0,0,0,0.10); }

    .story-content { width: 100% !important; padding: 0 !important; }
    .story-title { font-size: 2rem; text-align: center; margin-bottom: 15px; }
    .story-content p { text-align: center; font-size: 0.95rem; }

    .story-values-and-stats {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 20px !important;
        padding: 25px 15px !important;
        justify-content: center !important;
    }

    .value-item, .stat-box {
        flex: 1 1 calc(50% - 20px) !important;
        min-width: 120px !important;
    }

    .stat-number { font-size: 2rem; }
    .stat-label { font-size: 0.7rem; }

    /* ── STATS CARD ── */
    .stats-card-container {
        flex-direction: column !important;
        width: 100% !important;
        height: auto !important;
        padding: 30px 15px !important;
        margin: 0 auto 40px auto !important;
        gap: 25px !important;
    }

    /* ── SECTION TITLES ── */
    .section-title { font-size: 1.8rem !important; margin-bottom: 20px; }

    /* ── CATEGORIES ── */
    .scroll-wrapper { padding: 0 30px; }
    .cat-card { width: 240px; padding: 10px; }
    .cat-img { width: 200px; height: 200px; border-width: 3px; }
    .cat-card span { font-size: 1.15rem; margin-top: 8px; }

    /* ── SUB-CATEGORIES ── */
    .sub-card-container { grid-template-columns: repeat(2, 1fr) !important; gap: 15px; }
    .sub-card-img { height: 220px; }
    .sub-flash-card h4 { font-size: 0.95rem; padding: 10px 8px; min-height: 50px; }

    /* ── PRODUCT GRID ── */
    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
        padding: 20px 3% !important;
    }
    .product-card { padding: 12px; border-radius: 15px; }

    /* ── TESTIMONIALS ── */
    .testimonials-section { padding: 50px 15px; }
    .testimonial-card { min-width: 100%; padding: 25px 20px; }
    .review-text { font-size: 0.95rem; min-height: auto; }

    /* ── FOOTER ── */
    .site-footer { padding: 50px 5% 30px; }
    .footer-container { grid-template-columns: 1fr !important; gap: 40px !important; }
    .footer-info h3, .footer-contact h3 { font-size: 1.5rem; margin-bottom: 20px; }
    .footer-bottom { margin-top: 40px; padding-top: 25px; }

    /* ── CART ── */
    .cart-modal { width: 100% !important; }
    .cart-header { padding: 20px; }

    /* ── WHATSAPP FLOAT ── */
    .whatsapp-float { bottom: 20px; right: 20px; width: 55px; height: 55px; }

    /* ── TOAST ── */
    #toast { min-width: 200px; font-size: 0.9rem; padding: 12px 20px; }

    /* ── SCROLL BUTTONS ── */
    .scroll-btn { width: 36px; height: 36px; }
}

/* ============================================================
   SMALL MOBILE PHONES (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
    .hero-overlay h1 { font-size: 1.7rem !important; }
    .hero-subtitle { font-size: 0.75rem; letter-spacing: 1.5px; }
    .hero-desc { font-size: 0.9rem; }
    .story-title { font-size: 1.7rem; }
    .story-image, .our-journey img { max-width: 300px !important; }
    .value-item, .stat-box { flex: 1 1 100% !important; }
    .stat-number { font-size: 1.8rem; }
    .cat-card { width: 210px; }
    .cat-img { width: 175px; height: 175px; }
    .cat-card span { font-size: 1.05rem; }
    .scroll-wrapper { padding: 0 25px; }
    .sub-card-container { grid-template-columns: 1fr !important; }
    .sub-card-img { height: 200px; }
    .product-grid { grid-template-columns: 1fr !important; gap: 15px !important; }
    .section-title { font-size: 1.5rem !important; }
    .footer-info h3, .footer-contact h3 { font-size: 1.3rem; }
    .icon-link { width: 42px; height: 42px; }
    .total-row { font-size: 1.1rem; }
    .logo { font-size: 1.3rem; }
    .cart-btn { padding: 7px 12px; font-size: 0.8rem; }
}

/* ============================================================
   EXTRA SMALL DEVICES (max-width: 360px)
   ============================================================ */
@media (max-width: 360px) {
    .hero-overlay h1 { font-size: 1.5rem !important; }
    .btn-primary, .btn-secondary { padding: 12px 18px !important; font-size: 0.85rem !important; }
    .section-title { font-size: 1.3rem !important; }
    .cat-card { width: 185px; }
    .cat-img { width: 155px; height: 155px; }
    .story-title { font-size: 1.5rem; }
    .stat-number { font-size: 1.6rem; }
    .logo { font-size: 1.15rem; }
    .product-grid { gap: 10px !important; }
}