/* ==================== NOORFASHIONSTUDIO - STYLE.CSS ==================== */
/* Premium Pakistani Ladies Fashion Brand - Multi-Page Website */

/* ==================== ROOT VARIABLES ==================== */
:root {
    --primary-beige: #F5E6D3;
    --soft-pink: #F4D4D4;
    --off-white: #FAF8F5;
    --light-gold: #D4AF37;
    --dark-text: #3E3E3E;
    --soft-gray: #8B8B8B;
}

/* ==================== GLOBAL STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--off-white);
    color: var(--dark-text);
    line-height: 1.6;
}

/* ==================== BRAND NAME STYLING ==================== */
.brand-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--dark-text);
    letter-spacing: 2px;
    text-transform: lowercase;
    font-style: italic;
}

.brand-name-hero {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 4.5rem;
    color: var(--dark-text);
    letter-spacing: 3px;
    text-transform: lowercase;
    font-style: italic;
    margin-bottom: 1rem;
}

/* ==================== NAVBAR STYLING ==================== */
.navbar {
    background-color: rgba(250, 248, 245, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    padding: 1rem 0;
}

.navbar-brand {
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--dark-text) !important;
    margin: 0 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--light-gold) !important;
}

.dropdown-menu {
    background-color: var(--off-white);
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 1rem;
}

.dropdown-item {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--dark-text);
    padding: 0.7rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--soft-pink);
    color: var(--dark-text);
    transform: translateX(5px);
}

.social-icons a {
    color: var(--dark-text);
    font-size: 1.1rem;
    margin-left: 1rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--light-gold);
    transform: translateY(-3px);
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    background: linear-gradient(135deg, var(--primary-beige) 0%, var(--soft-pink) 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--soft-gray);
    letter-spacing: 3px;
    margin-bottom: 2rem;
}

.hero-btn {
    background-color: var(--dark-text);
    color: var(--off-white);
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.hero-btn:hover {
    background-color: var(--light-gold);
    color: var(--dark-text);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ==================== PAGE BANNER ==================== */
.page-banner {
    background: linear-gradient(135deg, var(--primary-beige) 0%, var(--soft-pink) 100%);
    padding: 5rem 0;
    text-align: center;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--dark-text);
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--soft-gray);
    letter-spacing: 1px;
}

/* ==================== SECTION STYLING ==================== */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--dark-text);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.section-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--soft-gray);
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 1px;
}

.content-section {
    padding: 5rem 0;
}

/* ==================== PRODUCT CARDS ==================== */
.product-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: all 0.4s ease;
}

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

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.product-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--light-gold);
    margin-bottom: 0.8rem;
}

.product-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--soft-gray);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.order-btn {
    background-color: var(--dark-text);
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.order-btn:hover {
    background-color: var(--light-gold);
    color: var(--dark-text);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ==================== ABOUT PAGE STYLING ==================== */
.about-image-section {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.about-content {
    padding: 2rem;
}

.about-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
}

.about-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--soft-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-box {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--light-gold);
    margin-bottom: 1rem;
}

/* ==================== CONTACT PAGE STYLING ==================== */
.contact-form {
    background-color: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.form-control {
    border: 2px solid var(--primary-beige);
    border-radius: 10px;
    padding: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--light-gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.contact-info-box {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 2rem;
    color: var(--light-gold);
    margin-bottom: 1rem;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.contact-detail {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--soft-gray);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* ==================== FOOTER STYLING ==================== */
.footer {
    background: linear-gradient(135deg, var(--dark-text) 0%, #2E2E2E 100%);
    color: var(--off-white);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--light-gold);
    letter-spacing: 2px;
    text-transform: lowercase;
    font-style: italic;
    margin-bottom: 1rem;
}

.footer-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--primary-beige);
    line-height: 1.8;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--light-gold);
    margin-bottom: 1.5rem;
}

.footer-link {
    color: var(--primary-beige);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 0.8rem;
}

.footer-link:hover {
    color: var(--light-gold);
    transform: translateX(5px);
}

.footer-social {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: var(--primary-beige);
    transition: all 0.3s ease;
}

.footer-social:hover {
    color: var(--light-gold);
    transform: translateY(-3px);
}

.copyright {
    border-top: 1px solid rgba(245, 230, 211, 0.2);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--primary-beige);
}

/* ==================== FEATURED SECTION ==================== */
.featured-section {
    background-color: white;
    padding: 5rem 0;
}

.intro-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--soft-gray);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* ==================== PRODUCTS MAIN PAGE ==================== */
.collection-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    margin-bottom: 2rem;
    text-decoration: none;
    display: block;
}

.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.collection-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.4s ease;
}

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

.collection-info {
    padding: 2rem;
    text-align: center;
}

.collection-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.collection-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--soft-gray);
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    .brand-name {
        font-size: 1.5rem;
    }
    
    .brand-name-hero {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .product-image {
        height: 250px;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .collection-image {
        height: 250px;
    }
}

/* ==================== HERO SPLIT LAYOUT ==================== */
.hero-section {
    background: var(--off-white);
    min-height: unset;
    padding: 0;
    display: block;
    text-align: left;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 92vh;
}

.hero-text-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 4rem 5rem 6rem;
    background: linear-gradient(135deg, var(--primary-beige) 0%, var(--soft-pink) 100%);
}

.hero-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--soft-gray);
    margin-bottom: 1.5rem;
}

.brand-name-hero {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 5rem;
    line-height: 1.05;
    color: var(--dark-text);
    letter-spacing: 1px;
    text-transform: lowercase;
    margin-bottom: 1.5rem;
}

.brand-name-hero em {
    font-style: italic;
    color: var(--light-gold);
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--soft-gray);
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-image-side {
    position: relative;
    overflow: hidden;
    background: #e8ddd4;
}

.hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.hero-float-wrap {
    position: absolute;
    bottom: 2rem;
    left: -3rem;
    width: 200px;
    height: 260px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    border: 4px solid white;
}

.hero-float-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* ==================== MARQUEE ==================== */
.hero-marquee {
    background: var(--dark-text);
    overflow: hidden;
    padding: 0.9rem 0;
    white-space: nowrap;
}

.marquee-track {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.marquee-track span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-beige);
    margin: 0 1rem;
}

.marquee-track .dot {
    color: var(--light-gold);
    font-size: 0.6rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==================== INTRO INNER ==================== */
.intro-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.intro-line {
    flex: 1;
    max-width: 100px;
    height: 1px;
    background: var(--light-gold);
}

/* ==================== PRODUCT BADGE ==================== */
.product-img-wrap {
    position: relative;
    overflow: hidden;
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--dark-text);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    z-index: 2;
}

.product-badge.bestseller {
    background: var(--light-gold);
    color: var(--dark-text);
}

/* ==================== LOOKBOOK STRIP ==================== */
.lookbook-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
    margin-top: 5rem;
}

.lookbook-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 250px 250px 250px;
    gap: 4px;
    overflow: hidden;
}

.lb-item {
    overflow: hidden;
    cursor: zoom-in;
}

.lb-item.lb-tall {
    grid-row: span 2;
}

.lb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.6s ease;
    display: block;
}

.lb-item:hover img {
    transform: scale(1.05);
}

.lookbook-text {
    background: linear-gradient(135deg, var(--primary-beige) 0%, var(--soft-pink) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 4rem;
}

.lookbook-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--soft-gray);
    margin-bottom: 1rem;
}

.lookbook-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-text);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.lookbook-heading em {
    font-style: italic;
    color: var(--light-gold);
}

.lookbook-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--soft-gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 991px) {
    .hero-split {
        grid-template-columns: 1fr;
        min-height: unset;
    }
    .hero-text-side {
        padding: 4rem 2rem;
        text-align: center;
    }
    .brand-name-hero {
        font-size: 3.5rem;
    }
    .hero-image-side {
        height: 60vw;
        min-height: 350px;
    }
    .hero-float-wrap {
        display: none;
    }
    .lookbook-strip {
        grid-template-columns: 1fr;
    }
    .lookbook-grid {
        height: 350px;
    }
    .lookbook-text {
        padding: 3rem 2rem;
    }
    .lookbook-heading {
        font-size: 2.5rem;
    }
}

/* ==================== NAVBAR LOGO ==================== */
.navbar-logo {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 8px;
    border: 1.5px solid #D4AF37;
    box-shadow: 0 0 8px rgba(212,175,55,0.3);
    vertical-align: middle;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.08);
    box-shadow: 0 0 16px rgba(212,175,55,0.55);
}

.navbar-brand.brand-name {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ==================== FULL RESPONSIVE OVERHAUL ==================== */

/* ---- TABLET (max 991px) already handled above, extra fixes ---- */
@media (max-width: 991px) {
    .footer {
        margin-top: 3rem;
    }
    .content-section {
        padding: 3rem 0;
    }
    .featured-section {
        padding: 3rem 0;
    }
    .intro-text {
        font-size: 1rem;
        padding: 0 1rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
}

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

    /* Navbar */
    .navbar {
        padding: 0.6rem 0;
    }
    .navbar-logo {
        width: 40px;
        height: 40px;
    }
    .brand-name {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    .navbar-toggler {
        border: none;
        padding: 0.3rem 0.5rem;
    }
    .navbar-collapse {
        background: var(--off-white);
        padding: 1rem;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        margin-top: 0.5rem;
    }
    .nav-link {
        font-size: 0.85rem;
        padding: 0.6rem 0.5rem !important;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    .social-icons {
        margin-top: 0.5rem;
        padding-top: 0.5rem;
    }
    .social-icons a {
        margin-left: 0.8rem;
    }
    .dropdown-menu {
        box-shadow: none;
        padding: 0.5rem;
    }

    /* Hero */
    .hero-split {
        grid-template-columns: 1fr;
    }
    .hero-text-side {
        padding: 3rem 1.5rem;
        text-align: center;
    }
    .brand-name-hero {
        font-size: 2.8rem;
        letter-spacing: 0;
    }
    .hero-tagline {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    .hero-btn {
        padding: 0.8rem 2rem;
        font-size: 0.85rem;
    }
    .hero-image-side {
        height: 70vw;
        min-height: 280px;
    }
    .hero-float-wrap {
        display: none;
    }

    /* Marquee */
    .marquee-track span {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }

    /* Sections */
    .content-section {
        padding: 2.5rem 0;
    }
    .featured-section {
        padding: 2.5rem 0;
    }
    .section-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    .intro-text {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    .intro-inner {
        gap: 1rem;
    }
    .intro-line {
        max-width: 50px;
    }

    /* Product Cards */
    .product-card {
        margin-bottom: 1.5rem;
    }
    .product-image {
        height: 280px;
    }
    .product-name {
        font-size: 1.2rem;
    }
    .product-price {
        font-size: 1.1rem;
    }
    .product-description {
        font-size: 0.85rem;
    }
    .order-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }

    /* Page Banner */
    .page-banner {
        padding: 3rem 1rem;
    }
    .page-title {
        font-size: 2rem;
    }
    .page-subtitle {
        font-size: 1.1rem;
    }

    /* Collection Cards */
    .collection-image {
        height: 220px;
    }
    .collection-name {
        font-size: 1.4rem;
    }

    /* Lookbook */
    .lookbook-strip {
        grid-template-columns: 1fr;
    }
    .lookbook-grid {
        height: 300px;
    }
    .lookbook-text {
        padding: 2.5rem 1.5rem;
        text-align: center;
    }
    .lookbook-heading {
        font-size: 2rem;
    }
    .lookbook-sub {
        font-size: 1rem;
    }

    /* About Page */
    .about-heading {
        font-size: 1.8rem;
    }
    .about-content {
        padding: 1.5rem 0;
    }

    /* Contact Page */
    .contact-form {
        padding: 1.5rem;
    }

    /* Footer */
    .footer {
        padding: 3rem 0 1.5rem;
        margin-top: 2rem;
    }
    .footer-brand {
        font-size: 1.8rem;
    }
    .footer-title {
        font-size: 1.2rem;
        margin-top: 1rem;
    }
    .footer-text {
        font-size: 0.9rem;
    }
    .footer-link {
        font-size: 0.9rem;
    }
    .copyright {
        font-size: 0.8rem;
        padding-top: 1.5rem;
        margin-top: 2rem;
    }
}

/* ---- SMALL MOBILE (max 480px) ---- */
@media (max-width: 480px) {
    .brand-name-hero {
        font-size: 2.2rem;
    }
    .hero-tagline {
        font-size: 1rem;
    }
    .hero-image-side {
        height: 80vw;
    }
    .product-image {
        height: 250px;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .page-title {
        font-size: 1.7rem;
    }
    .lookbook-heading {
        font-size: 1.7rem;
    }
    .navbar-logo {
        width: 34px;
        height: 34px;
    }
    .brand-name {
        font-size: 1rem;
    }
    .hero-btn {
        width: 100%;
        text-align: center;
        padding: 0.9rem 1rem;
    }
    .product-badge {
        font-size: 0.6rem;
        padding: 0.25rem 0.6rem;
    }
}

/* ==================== LIGHTBOX ==================== */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    cursor: zoom-out;
    animation: lbFadeIn 0.25s ease;
}

.lightbox-overlay.active {
    display: flex;
}

@keyframes lbFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    cursor: default;
    animation: lbZoomIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes lbZoomIn {
    from { transform: scale(0.75); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    border-radius: 10px;
    display: block;
    box-shadow: 0 25px 80px rgba(0,0,0,0.6);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 36px;
    height: 36px;
    background: #D4AF37;
    color: #1a1a1a;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background 0.2s, transform 0.2s;
    z-index: 10000;
}

.lightbox-close:hover {
    background: white;
    transform: scale(1.15) rotate(90deg);
}

.lightbox-caption {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.75);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* Prev / Next arrows */
.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212,175,55,0.85);
    color: #1a1a1a;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    z-index: 10000;
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #D4AF37;
    transform: translateY(-50%) scale(1.1);
}

/* Cursor hint on product images */
.product-img-wrap {
    cursor: zoom-in;
}

/* Counter badge */
.lightbox-counter {
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 2px;
    z-index: 10000;
}

@media (max-width: 480px) {
    .lightbox-prev { left: 6px; width: 36px; height: 36px; font-size: 1rem; }
    .lightbox-next { right: 6px; width: 36px; height: 36px; font-size: 1rem; }
    .lightbox-close { top: -12px; right: -12px; width: 30px; height: 30px; font-size: 1rem; }
}

/* ==================== ABOUT PAGE COLLAGE ==================== */
.about-collage {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 8px;
    height: 480px;
    border-radius: 16px;
    overflow: hidden;
}

.about-collage-main {
    height: 100%;
    overflow: hidden;
    border-radius: 12px 0 0 12px;
}

.about-collage-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}

.about-collage-main:hover img {
    transform: scale(1.04);
}

.about-collage-side {
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%;
}

.about-collage-sm {
    flex: 1;
    overflow: hidden;
    border-radius: 0 12px 12px 0;
}

.about-collage-sm:first-child {
    border-radius: 0 12px 0 0;
}

.about-collage-sm:last-child {
    border-radius: 0 0 12px 0;
}

.about-collage-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}

.about-collage-sm:hover img {
    transform: scale(1.06);
}

@media (max-width: 576px) {
    .about-collage {
        height: 320px;
        grid-template-columns: 1.5fr 1fr;
    }
}

/* ==================== HERO DECORATIVE ELEMENTS ==================== */
.hero-ornament-top,
.hero-ornament-bottom {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.hero-ornament-bottom {
    margin-top: 1.8rem;
    margin-bottom: 0;
}

.orn-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, #D4AF37, transparent);
    max-width: 80px;
}

.orn-diamond {
    color: #D4AF37;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.orn-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: var(--soft-gray);
    text-transform: uppercase;
    flex-shrink: 0;
}

/* Hero Stats Row */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin: 1.5rem 0 2rem;
    padding: 1.2rem 1.5rem;
    background: rgba(255,255,255,0.5);
    border-radius: 12px;
    border: 1px solid rgba(212,175,55,0.25);
    backdrop-filter: blur(4px);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark-text);
    line-height: 1;
}

.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--soft-gray);
    margin-top: 4px;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(212,175,55,0.4);
    flex-shrink: 0;
}

/* Hero Social Row */
.hero-social-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 1.5rem;
}

.hero-social-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--soft-gray);
}

.hero-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(212,175,55,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-text);
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.5);
}

.hero-social-icon:hover {
    background: var(--dark-text);
    color: white;
    border-color: var(--dark-text);
    transform: translateY(-3px);
}

.hero-social-icon.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
}

/* ==================== LOOKBOOK CONTACT STRIP ==================== */
.lb-ornament {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.2rem;
}

.lb-contact-strip {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212,175,55,0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.lb-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--dark-text);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.lb-contact-item i {
    font-size: 1.2rem;
    color: #25D366;
}

.lb-contact-item:hover {
    color: var(--light-gold);
}

.lb-social-icons {
    display: flex;
    gap: 10px;
}

.lb-social-icons a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(212,175,55,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-text);
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.lb-social-icons a:hover {
    background: var(--dark-text);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-stats {
        padding: 1rem;
        gap: 0.8rem;
    }
    .stat-num {
        font-size: 1.3rem;
    }
    .hero-social-row {
        justify-content: center;
    }
    .lb-contact-strip {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 991px) {
    .hero-ornament-top,
    .hero-ornament-bottom,
    .hero-social-row {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
}

/* ==================== NFS HERO SLIDER ==================== */
.nfs-hero-wrap {
    position: relative;
    overflow: hidden;
}

.nfs-slide {
    display: none;
}

.nfs-slide--active {
    display: block;
    animation: nfsSlideIn 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Prev / Next arrows */
.nfs-arrow {
    position: absolute;
    top: 44%;
    transform: translateY(-50%);
    z-index: 30;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(212,175,55,0.4);
    background: rgba(255,255,255,0.88);
    color: #3E3E3E;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    transition: all 0.3s ease;
}

.nfs-arrow:hover {
    background: #D4AF37;
    color: #fff;
    border-color: #D4AF37;
    transform: translateY(-50%) scale(1.08);
}

.nfs-arrow--prev { left: 14px; }
.nfs-arrow--next { right: 14px; }

/* Dots */
.nfs-dots {
    position: absolute;
    bottom: 54px;   /* sits above the marquee */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    z-index: 30;
}

.nfs-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(212,175,55,0.35);
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nfs-dot--active {
    background: #D4AF37;
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .nfs-arrow { width: 36px; height: 36px; font-size: 0.8rem; }
    .nfs-arrow--prev { left: 6px; }
    .nfs-arrow--next { right: 6px; }
    .nfs-dots { bottom: 46px; }
}

/* ==================== LOOKBOOK ADDITIONS ==================== */
.lb-whatsapp-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff !important;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(37,211,102,0.35);
}

.lb-whatsapp-pill i { font-size: 1.05rem; color: #fff; }

.lb-whatsapp-pill:hover {
    background: #1da851;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37,211,102,0.45);
}

.lb-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.4rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(212,175,55,0.2);
}

.lb-feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--soft-gray);
}

.lb-feature-item i { color: var(--light-gold); font-size: 0.88rem; }

/* ==================== TESTIMONIALS ==================== */
.testimonials-section {
    background: var(--off-white);
    padding: 5rem 0;
}

.testimonial-card {
    background: #fff;
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: rgba(212,175,55,0.18);
    position: absolute;
    top: 10px;
    left: 18px;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.07);
    border-color: rgba(212,175,55,0.4);
}

.testimonial-stars {
    color: #D4AF37;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: var(--dark-text);
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-style: italic;
}

.testimonial-author {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.73rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--soft-gray);
    margin: 0;
}

/* ==================== CONTACT PAGE ==================== */
.contact-wa-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-wa-icon-wrap {
    flex-shrink: 0;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: #fff;
}

.wa-float-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    padding: 0.55rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(37,211,102,0.3);
}

.wa-float-btn:hover {
    background: #1da851;
    color: #fff;
    transform: translateY(-2px);
}

.map-directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: transparent;
    color: var(--light-gold);
    border: 1px solid var(--light-gold);
    padding: 0.42rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.76rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.map-directions-btn:hover {
    background: var(--light-gold);
    color: #fff;
}

/* ==================== OPENING HOURS ==================== */
.hours-section {
    background: linear-gradient(135deg, var(--primary-beige) 0%, var(--soft-pink) 100%);
    padding: 3rem 0;
}

.hours-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hours-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hours-item i { font-size: 1.4rem; color: var(--light-gold); }

.hours-day {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--soft-gray);
    margin: 0 0 3px;
}

.hours-time {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--dark-text);
    font-weight: 600;
    margin: 0;
}

.hours-divider {
    width: 1px;
    height: 48px;
    background: rgba(212,175,55,0.35);
}

@media (max-width: 576px) {
    .hours-grid { flex-direction: column; align-items: flex-start; gap: 1.2rem; padding: 0 1rem; }
    .hours-divider { display: none; }
    .contact-wa-box { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
    .lb-features { gap: 0.6rem; }
}

/* ==================== FLOATING WHATSAPP ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 22px;
    right: 22px;
    z-index: 999;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.55rem;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(37,211,102,0.5);
    transition: all 0.3s ease;
    animation: waPulse 2.5s infinite;
}

.whatsapp-float:hover {
    background: #1da851;
    color: #fff;
    transform: scale(1.12);
}

@keyframes waPulse {
    0%,100% { box-shadow: 0 6px 20px rgba(37,211,102,0.5); }
    50%      { box-shadow: 0 6px 32px rgba(37,211,102,0.8); }
}

@media (max-width: 576px) {
    .whatsapp-float { bottom: 14px; right: 14px; width: 48px; height: 48px; font-size: 1.35rem; }
}
