\n/* Custom Properties - Pyari Walls Aesthetic */
:root {
    --primary: #121212; /* Deep Charcoal / Black for strong contrast */
    --primary-hover: #333333;
    --bg-main: #ffffff; /* Clean white */
    --bg-secondary: #f8f9fa; /* Soft off-white for sections */
    --text-main: #333333;
    --text-muted: #666666;
    --accent: #8b7355; /* Muted elegant brown/gold accent */
    --border-color: #eaeaea;
    --transition: all 0.3s ease;
    
    --font-heading: 'Maven Pro', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    position: relative;
}

.text-center {
    text-align: center;
}

p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

section {
    padding: 5rem 0;
}

.grid-2, .grid-3 {
    display: grid;
    gap: 3rem;
}

.align-center {
    align-items: center;
}

@media (min-width: 768px) {
    .grid-2 { grid-template-columns: 1fr 1fr; }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    border-radius: 4px; /* Slight rounding for modern look */
    text-decoration: none;
    font-weight: 500;
    font-family: var(--font-heading);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: #fff;
}

/* Header Styling */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    border-bottom: 1px solid #f0f0f0;
}

.header-icons-left, .header-icons-right {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.header-icons-left a, .header-icons-right a {
    color: #333;
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-icons-left a:hover, .header-icons-right a:hover {
    color: var(--accent);
}

.icon-badge-wrapper {
    position: relative;
}

.icon-badge-wrapper .badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: #000;
    color: #fff;
    font-size: 0.6rem;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 50%;
}

.logo {
    font-size: 2.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
    cursor: pointer;
}

footer .logo {
    text-align: left;
    margin-left: -2px; /* Aligns perfectly with the text edge */
}

.logo span {
    font-weight: 300;
    color: var(--accent);
}

.header-bottom {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    padding: 1rem 5%;
    background: #ffffff;
}

.header-bottom a {
    color: #333;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-bottom a:hover {
    color: var(--accent);
}

.header-bottom a.highlight-link {
    color: #e60000; /* Red value prices */
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}
/* Categories Scroll */
.categories-scroll {
    padding: 3rem 0;
    background-color: var(--bg-main);
    border-bottom: 1px solid var(--border-color);
}

.scroll-container {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 50px; /* Add padding so items aren't behind buttons */
    margin: -1rem -50px; /* Offset the padding visually if needed, but here it's fine just as padding */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scroll-snap-type: x mandatory;
    justify-content: flex-start; /* Fixes left-side cut off for overflow content */
}

/* Optional: hide buttons on very small screens if preferred, but they work fine */
@media (max-width: 768px) {
    .scroll-container {
        padding: 1rem 20px;
        margin: -1rem -20px;
    }
}

.scroll-container::-webkit-scrollbar { 
    display: none; /* Safari and Chrome */
}

.category-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-main);
    flex-shrink: 0;
    width: 160px; 
    scroll-snap-align: start;
    transition: var(--transition);
}

.category-circle:hover {
    transform: translateY(-3px);
}

.circle-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 3px solid #7ee310; /* Highlighted green border */
    box-shadow: 0 6px 15px rgba(126, 227, 16, 0.2);
    transition: var(--transition);
    background-color: var(--bg-secondary);
}

.category-circle:hover .circle-img {
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transform: scale(1.05);
}

.circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-circle span {
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-heading);
    text-align: center;
    letter-spacing: 0.5px;
    color: var(--primary);
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-main);
    color: var(--primary);
    border: 1px solid var(--border-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.scroll-btn:hover {
    background: var(--primary);
    color: white;
}

.scroll-left {
    left: 0;
}

.scroll-right {
    right: 0;
}

/* Categories Scroll */
.categories-scroll {
    padding: 3rem 0;
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
}

.scroll-container {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 50px;
    margin: -1rem -50px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: flex-start;
}

@media (max-width: 768px) {
    .scroll-container {
        padding: 1rem 20px;
        margin: -1rem -20px;
    }
}

.scroll-container::-webkit-scrollbar { 
    display: none;
}

.category-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    gap: 1rem;
    flex: 0 0 auto;
}

.category-img-container {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 3px solid #7ED957;
    padding: 3px;
    background: #fff;
    transition: transform 0.3s ease;
}

.category-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.category-img-container:hover {
    transform: scale(1.05);
}

.category-circle span {
    font-weight: 600;
    font-size: 1rem;
    color: #1a1a1a;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #333;
}
.scroll-btn:hover {
    background: #f5f5f5;
}
.scroll-left { left: 10px; }
.scroll-right { right: 10px; }

/* Hero Section */
/* --- NEW HERO SECTION --- */
.hero.new-hero-layout {
    padding-top: 160px; /* Space for fixed headers */
    padding-bottom: 60px;
    background: #ffffff;
    min-height: auto; /* Remove 100vh */
}

.hero-split {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-left {
    flex: 0 0 55%;
    position: relative;
    height: 500px;
}

.hero-right {
    flex: 0 0 45%;
    padding-right: 20px;
}

.hero-grid-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-grid-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
}

.hero-grid-slide.active {
    opacity: 1;
    z-index: 2;
}

.grid-top {
    flex: 0 0 65%;
    width: 100%;
    overflow: hidden;
    border-bottom: 4px solid #ffffff;
}

.grid-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grid-bottom {
    flex: 0 0 35%;
    width: 100%;
    display: flex;
}

.grid-bottom img {
    width: 50%;
    height: 100%;
    object-fit: cover;
}

.grid-bottom img:first-child {
    border-right: 4px solid #ffffff;
}

/* Hero Right Side Text */
.hero-subtext {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 10px;
    font-weight: 500;
}

.hero-heading {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: #111;
    margin-bottom: 30px;
    text-transform: lowercase; /* Like the reference */
}

.hero-heading::first-letter {
    text-transform: capitalize;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-dark {
    display: inline-block;
    padding: 14px 28px;
    background-color: #111;
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: background-color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-dark:hover {
    background-color: #333;
}

.btn-outline {
    display: inline-block;
    padding: 12px 28px;
    background-color: transparent;
    color: #111 !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 4px;
    border: 2px solid #111;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline:hover {
    background-color: #f5f5f5;
}




@media (max-width: 768px) {
    .hero::after {
        width: 100%;
        opacity: 0.15;
    }
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
}

/* About Section */
.about {
    background-color: var(--bg-main);
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Services */
.services {
    background-color: var(--bg-secondary);
}

.service-card {
    background: var(--bg-main);
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background-color: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Collection (Products) */
.collection {
    background-color: var(--bg-main);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.product-card {
    text-align: center;
    cursor: pointer;
    border: 2px solid #7ee310; /* Pyari Walls green border */
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-main);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.product-card:hover {
    box-shadow: 0 12px 24px rgba(126, 227, 16, 0.25);
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    overflow: hidden;
    background-color: var(--bg-secondary);
    aspect-ratio: 1/1; /* Square image */
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #ff3b30;
    color: white;
    padding: 5px 10px;
    font-size: 0.8rem;
    font-family: var(--font-heading);
    font-weight: 700;
    border-radius: 4px;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.product-info {
    padding: 1.5rem 1rem;
}

.product-info h3 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    line-height: 1.4;
    min-height: 2.8em;
}

.stars {
    color: #f39c12;
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
}

.stars span {
    color: var(--text-muted);
    margin-left: 5px;
}

.btn-whatsapp {
    display: inline-block;
    width: 100%;
    background-color: #25D366;
    color: white;
    padding: 0.8rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: all 0.3s ease;
    text-transform: none;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp i {
    margin-right: 5px;
    font-size: 1.1rem;
}

/* CEO Message Section */
.ceo-section {
    width: 100%;
    background: #ffffff;
}

.ceo-split {
    display: flex;
    flex-wrap: wrap;
    min-height: 500px;
}

.ceo-image {
    flex: 1 1 50%;
    min-height: 400px;
    overflow: hidden; /* Required for zoom effect */
}

.ceo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    animation: ceoZoom 20s ease-in-out infinite alternate;
}

@keyframes ceoZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.ceo-content {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 8%;
    background: #faf8f5; /* Premium warm tone */
    position: relative;
    z-index: 1;
}

.ceo-content::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 40px;
    font-size: 15rem;
    color: rgba(212, 175, 55, 0.08); /* Subtle accent watermark */
    font-family: 'Playfair Display', serif;
    z-index: -1;
    line-height: 1;
}

.ceo-title {
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

.ceo-divider {
    width: 80px;
    height: 3px;
    background: var(--accent);
    margin-bottom: 2.5rem;
}

.ceo-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 3rem;
    font-style: italic;
    font-family: 'Georgia', serif;
}

.ceo-signature h3 {
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
    font-style: italic;
}

.ceo-signature span {
    font-size: 0.85rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .ceo-image, .ceo-content {
        flex: 1 1 100%;
    }
    .ceo-content {
        padding: 4rem 6%;
        align-items: center;
        text-align: center;
    }
    .ceo-divider {
        margin-left: auto;
        margin-right: auto;
    }
    .ceo-content::before {
        left: 50%;
        transform: translateX(-50%);
        top: 0;
    }
}

/* Newsletter Section */
.newsletter {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 0;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--border-color);
    border-right: none;
    font-family: var(--font-body);
    outline: none;
    border-radius: 4px 0 0 4px;
}

.newsletter-form .btn-primary {
    border-radius: 0 4px 4px 0;
}

/* Footer */
footer {
    background: var(--bg-main);
    padding: 4rem 0 0;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--primary);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    color: var(--primary);
    margin-right: 0.5rem;
    text-decoration: none;
}

.social-links a:hover {
    background-color: var(--primary);
    color: #fff;
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    font-size: 0.85rem;
}

/* Watch & Buy Section */
.watch-and-buy-section {
    position: relative;
}
.video-scroll-container {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 1rem 50px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE */
    justify-content: flex-start;
}
.video-scroll-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}
.video-item {
    position: relative;
    flex: 0 0 auto;
    width: 250px;
    height: 444px; /* 16:9 aspect ratio */
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}
.video-item:hover {
    transform: translateY(-5px);
}
.video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.video-overlay i {
    font-size: 3rem;
    color: rgba(255,255,255,0.8);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.video-item:hover .video-overlay {
    opacity: 1;
}
.watch-buy-btn {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: #25D366;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 10;
    transition: background 0.3s ease;
    white-space: nowrap;
}
.watch-buy-btn:hover {
    background: #128C7E;
}

/* Interactive Media Gallery Section */
.gallery-section {
    padding: 6rem 0;
    background: var(--bg-main);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.gallery-item img, .gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img, .gallery-item:hover video {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i {
    font-size: 3rem;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 95vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-content img, .lightbox-content video {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--accent);
}

/* Lightbox Carousel Extensions */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 10001;
    transition: background 0.3s;
}
.lightbox-nav:hover {
    background: rgba(255,255,255,0.3);
}
.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

.lightbox-slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.lightbox-slide {
    position: absolute;
    width: 320px; 
    height: 568px; 
    border-radius: 12px;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0;
    transform: scale(0.8) translateX(0);
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    pointer-events: none; 
}

.lightbox-slide.active {
    opacity: 1;
    transform: scale(1.1) translateX(0);
    z-index: 3;
    pointer-events: auto;
}

.lightbox-slide.prev {
    opacity: 0.5;
    transform: scale(0.8) translateX(-130%);
    z-index: 2;
    cursor: pointer;
    pointer-events: auto;
}
.lightbox-slide.prev:hover, .lightbox-slide.next:hover {
    opacity: 0.8;
}

.lightbox-slide.next {
    opacity: 0.5;
    transform: scale(0.8) translateX(130%);
    z-index: 2;
    cursor: pointer;
    pointer-events: auto;
}

.lightbox-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.lightbox-buy-btn {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.5s ease;
    opacity: 0;
    width: max-content;
}
.lightbox-slide.active .lightbox-buy-btn {
    bottom: 25px;
    opacity: 1;
}

/* Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }

/* Responsive */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 75px;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #ffffff !important;
        background-color: var(--bg-main) !important;
        flex-direction: column;
        padding: 2rem 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        border-top: 1px solid var(--border-color);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
    }
    
    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .hamburger {
        display: block;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-right: 1px solid var(--border-color);
        border-radius: 4px;
        margin-bottom: 1rem;
    }
    
    .newsletter-form .btn-primary {
        border-radius: 4px;
    }
}

/* Hide reviews (stars) from product cards in collection */
.product-card .stars {
    display: none !important;
}

/* Dark Theme Settings */
[data-theme="dark"] {
    --primary: #ffffff;
    --primary-hover: #cccccc;
    --bg-main: #121212;
    --bg-secondary: #1e1e1e;
    --text-main: #f0f0f0;
    --text-muted: #bbbbbb;
    --border-color: #333333;
}

[data-theme="dark"] .page-header { background: var(--bg-secondary) !important; }
[data-theme="dark"] .watch-and-buy-section { background: var(--bg-main) !important; }
[data-theme="dark"] .watch-and-buy-section h2 { color: var(--primary) !important; }
[data-theme="dark"] .category-circle span { color: var(--text-main); }
[data-theme="dark"] .product-card { background: transparent; }
[data-theme="dark"] .product-card h3 { color: var(--primary); }
[data-theme="dark"] footer { background: transparent; color: var(--text-main); border-top: 1px solid var(--border-color); }

/* Comprehensive Dark Mode Fixes */
[data-theme="dark"] .main-header { background: var(--bg-main) !important; }
[data-theme="dark"] .header-top { border-bottom-color: var(--border-color) !important; }
[data-theme="dark"] .header-icons-left a, [data-theme="dark"] .header-icons-right a { color: var(--text-main) !important; }
[data-theme="dark"] .nav-links { background: var(--bg-main) !important; }
[data-theme="dark"] .nav-links a { color: var(--text-main) !important; }
[data-theme="dark"] .hamburger { color: var(--text-main) !important; }
[data-theme="dark"] section { background: var(--bg-main); }
[data-theme="dark"] .collection { background: var(--bg-main); }
[data-theme="dark"] .section-title { color: var(--primary); }
[data-theme="dark"] .page-header { background: var(--bg-secondary) !important; }
[data-theme="dark"] .page-content { background: var(--bg-main); color: var(--text-muted); }
[data-theme="dark"] .page-content h3 { color: var(--primary); }
[data-theme="dark"] .page-content p { color: var(--text-main); }
[data-theme="dark"] .product-info h3 { color: var(--primary); }
[data-theme="dark"] .product-card { border: 1px solid var(--border-color); }
[data-theme="dark"] .watch-and-buy-section { background: var(--bg-main) !important; }
[data-theme="dark"] .watch-and-buy-section h2 { color: var(--primary) !important; }
[data-theme="dark"] footer .logo { color: var(--primary) !important; }
[data-theme="dark"] .logo { color: var(--primary) !important; }
[data-theme="dark"] .social-links a { color: var(--primary) !important; }
[data-theme="dark"] .footer-col h3 { color: var(--primary) !important; }
[data-theme="dark"] .footer-col a { color: var(--text-main) !important; }
[data-theme="dark"] .footer-bottom { border-top-color: var(--border-color) !important; }
[data-theme="dark"] .footer-bottom p { color: var(--text-muted) !important; }
[data-theme="dark"] .categories-scroll { background: var(--bg-secondary) !important; }
[data-theme="dark"] .lightbox-single-content { background: var(--bg-main) !important; }


/* Mobile Navigation Full-Screen Overlay */
@media (max-width: 992px) {
    .hamburger {
        display: block !important;
    }
    
    .header-bottom.nav-links {
        position: fixed !important;
        inset: 0 !important; /* Full screen */
        width: 100vw !important;
        height: 100dvh !important;
        background-color: #ffffff !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 2rem !important;
        box-shadow: none !important;
        border-top: none !important;
        clip-path: none !important;
        transform: translateX(100%) !important;
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1) !important;
        z-index: 9999 !important;
        opacity: 1 !important; /* solid background */
    }
    
    [data-theme="dark"] .header-bottom.nav-links {
        background-color: var(--bg-main) !important;
    }
    
    .header-bottom.nav-links.active {
        transform: translateX(0) !important;
    }
    
    .header-bottom.nav-links a {
        font-size: 1.5rem !important;
        margin-bottom: 1.5rem !important;
        width: auto !important;
        text-align: center;
    }
    
    .sidebar-socials {
        margin-top: 2rem !important;
        display: flex !important;
        gap: 2rem !important;
        padding-top: 2rem !important;
        border-top: 1px solid var(--border-color) !important;
        width: 100% !important;
        justify-content: center !important;
    }
    
    .sidebar-socials a {
        font-size: 1.8rem !important;
        margin-bottom: 0 !important;
        color: var(--primary) !important;
    }
}

/* Mobile Close Button Style */
.mobile-menu-close {
    display: none;
}

@media (max-width: 992px) {
    .mobile-menu-close {
        display: block;
        position: absolute;
        top: 20px;
        right: 25px;
        font-size: 2.5rem;
        background: transparent;
        border: none;
        color: #333;
        cursor: pointer;
        width: 44px;
        height: 44px;
        line-height: 44px;
        text-align: center;
        padding: 0;
        appearance: none;
        -webkit-appearance: none;
        z-index: 10000;
    }
    
    [data-theme="dark"] .mobile-menu-close {
        color: var(--text-main);
    }
    
    body.menu-open {
        overflow: hidden !important;
    }
}


/* Header Live Time Widget */
.header-live-time {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.75rem;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.header-live-time .time-day {
    font-weight: 600;
}
.header-live-time .time-date {
    font-weight: 400;
}
.header-live-time .time-clock {
    font-weight: 500;
    color: var(--primary);
}
[data-theme="dark"] .header-live-time .time-day,
[data-theme="dark"] .header-live-time .time-date {
    color: var(--text-main);
}
[data-theme="dark"] .header-live-time .time-clock {
    color: var(--primary);
}

@media (max-width: 1024px) {
    .header-live-time {
        font-size: 0.65rem;
    }
}

@media (max-width: 768px) {
    .header-live-time {
        flex-direction: row;
        align-items: center;
        gap: 8px;
        font-size: 0.8rem;
    }
    .header-live-time .time-day,
    .header-live-time .time-date {
        display: none;
    }
}


/* =========================================
   COMPREHENSIVE MOBILE RESPONSIVE FIXES
   ========================================= */

/* 1. Global Viewport Lockdown */
html, body {
    overflow-x: hidden !important;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Ensure all images and videos are responsive */
img, video {
    max-width: 100%;
    height: auto;
}

/* 2. Hero Section Mobile Fixes */
@media (max-width: 992px) {
    /* Stack the hero section vertically */
    .hero-split {
        flex-direction: column;
        gap: 30px;
    }
    
    /* Remove fixed heights to allow natural scaling */
    .hero-left {
        flex: 1 1 100%;
        width: 100%;
        height: 450px !important; /* Explicit height to prevent collapsing and text mixing */
        margin-bottom: 20px; /* Extra breathing room */
    }
    
    .hero-right {
        flex: 1 1 100%;
        width: 100%;
        padding-right: 0;
        text-align: center; /* Better balance on mobile */
    }
    
    /* Ensure the slider container fits the new height naturally */
    .hero-grid-slider {
        position: relative;
        min-height: 400px;
    }
    
    .hero-grid-slide {
        height: auto;
        min-height: 400px;
    }
}

/* 3. Typography & Button Scaling */
.hero-heading {
    /* Use clamp for perfectly scaling responsive typography */
    font-size: clamp(2.5rem, 8vw, 4rem) !important;
    word-wrap: break-word;
    max-width: 100%;
}

@media (max-width: 767px) {
    /* Hide live clock on mobile to clean up header */
    .header-live-time {
        display: none !important;
    }
    
    /* Stack buttons for comfortable touch targets */
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .hero-buttons a {
        width: 100%;
        max-width: 320px;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .hero-heading {
        margin-bottom: 20px;
        line-height: 1.3 !important; /* Prevent text mixing vertically */
    }
    
    .hero-subtext {
        font-size: 1rem;
    }
}


/* Product Grid Mobile Fixes */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px; /* Make gap smaller for mobile so 2 cards fit nicely */
    }
    
    /* Pyari Walls Text Sizing on Mobile */
    .product-info {
        padding: 10px 8px !important;
    }
    
    .product-info h3 {
        font-size: 0.85rem !important; /* Smaller, cleaner title */
        margin-bottom: 5px !important;
        line-height: 1.3 !important;
        min-height: auto !important;
    }
    
    .price {
        font-size: 1rem !important; /* Prominent but not huge */
        margin-bottom: 5px !important;
    }
    
    .btn-whatsapp {
        font-size: 0.8rem !important;
        padding: 8px 12px !important;
    }
    
    /* Ensure the general grid-2 and grid-3 also stack */
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
    }
}


/* =========================================
   PREMIUM HERO REDESIGN
   ========================================= */
.premium-hero {
    width: 100%;
    position: relative;
    
    background-color: var(--bg-main);
    padding: 160px 0 0 0;
    margin: 0;
}

.premium-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
    width: 100%;
    margin: 0 auto;
}

/* LEFT: Gallery */
.premium-hero-gallery {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: transparent;
}

.premium-hero-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.premium-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease-in-out, visibility 1.2s;
}

.premium-hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.premium-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 6s ease-out;
}

.premium-hero-slide.active img {
    transform: scale(1); /* Subtle zoom out effect */
}

/* Gallery Controls */
.premium-hero-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: none;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    backdrop-filter: blur(5px);
}

.premium-hero-controls button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: #111;
    padding: 5px;
    transition: color 0.3s ease;
}

.premium-hero-controls button:hover {
    color: #666;
}

#premium-hero-counter {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #111;
}

/* RIGHT: Content */
.premium-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 10%;
    background-color: var(--bg-main);
}

.hero-eyebrow {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #666;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-heading {
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.hero-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Tablets (Smooth Transition) */
@media (max-width: 1024px) {
    .premium-hero-container {
        grid-template-columns: 1fr 1fr; /* 50/50 split */
    }
    .premium-hero-content {
        padding: 3rem 6%;
    }
}

/* MOBILE (Stacked layout as requested) */
@media (max-width: 992px) {
    .premium-hero-container {
        grid-template-columns: 1fr; /* Stack images on top, text below */
        min-height: auto;
    }
    
    .premium-hero-gallery {
        height: 60vh;
        min-height: 400px;
        width: 100%;
    }
    
    .hero-collage {
        padding: 20px; 
    }
    
    .premium-hero-content {
        padding: 3rem 5%;
        text-align: left;
    }
    
    .hero-heading {
        font-size: clamp(2.2rem, 8vw, 3rem) !important;
        margin-bottom: 20px;
        word-wrap: break-word;
        max-width: 100%;
        line-height: 1.2 !important;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .hero-eyebrow {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .hero-heading {
        font-size: clamp(2.2rem, 8vw, 3rem) !important;
        margin-bottom: 20px;
        word-wrap: break-word;
        max-width: 100%;
        line-height: 1.2 !important;
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    
    .hero-buttons a {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
}


/* Hero Collage Layout - 3D Premium */
.hero-collage {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 30px; /* Reduces overall size */
    box-sizing: border-box;
}

.hero-collage-top {
    flex: 0 0 60%;
    width: 100%;
    overflow: hidden;
    border: 2px solid #7ee310;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(126, 227, 16, 0.25);
    background: transparent;
}

.hero-collage-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-collage-bottom {
    flex: 0 0 calc(40% - 15px);
    width: 100%;
    display: flex;
    gap: 15px;
}

.hero-collage-bottom img {
    flex: 1;
    width: 50%;
    height: 100%;
    object-fit: cover;
    border: 2px solid #7ee310;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(126, 227, 16, 0.2);
    background: transparent;
}

/* =========================================
   FLOATING WHATSAPP CHAT BUTTON
   ========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-float i {
    line-height: 1;
}

/* Tooltip "Chat with us" */
.whatsapp-float-tooltip {
    position: absolute;
    left: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: #333;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    white-space: nowrap;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(-50%) translateX(-5px);
}

.whatsapp-float-tooltip::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right-color: #fff;
}

.whatsapp-float:hover .whatsapp-float-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Pulse animation */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Dark mode */
[data-theme="dark"] .whatsapp-float {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

[data-theme="dark"] .whatsapp-float-tooltip {
    background: #1e1e1e;
    color: #f0f0f0;
    box-shadow: 0 3px 12px rgba(0,0,0,0.4);
}

[data-theme="dark"] .whatsapp-float-tooltip::before {
    border-right-color: #1e1e1e;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 20px;
        left: 20px;
        font-size: 1.7rem;
    }
    
    .whatsapp-float-tooltip {
        display: none; /* Hide tooltip on mobile, icon is self-explanatory */
    }
}
