:root {
    --primary-color: #d35431;
    --primary-hover: #b84525;
    --bg-dark: #19120e;
    --bg-card: #241b15;
    --text-light: #ffffff;
    --text-muted: #a8a8a8;
    --border-color: #3e322a;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.25);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.35);
    --shadow-glow: 0 8px 24px rgba(211,84,49,0.25);
    --radius-sm: 8px;
    --radius-md: 12px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

h1, h2, h3, h4 {
    font-family: 'Barlow Condensed', 'Inter', sans-serif;
    letter-spacing: 0.3px;
}

/* Accessible keyboard focus (kept off for mouse users) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
.size-btn:focus-visible,
.color-dot:focus-visible,
.page-num:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Scroll-reveal (paired with js/script.js IntersectionObserver) */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
    .reveal { opacity: 1; transform: none; }
}

/* Header & Navbar */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 5%;
    background-color: rgba(25, 18, 14, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
    background-color: rgba(25, 18, 14, 0.97);
    box-shadow: var(--shadow-sm);
}

.logo {
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
}

.logo i {
    color: var(--primary-color);
}

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

nav a {
    font-size: 16px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    cursor: pointer;
}

nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s var(--ease);
}

nav a:hover, nav a.active {
    color: var(--primary-color);
}

nav a:hover::after, nav a.active::after {
    width: 100%;
}

/* Mobile hamburger toggle */
.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-light);
    width: 44px;
    height: 44px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    order: 3;
}

.btn {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 24px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s var(--ease), transform 0.2s var(--ease), box-shadow 0.3s var(--ease);
    box-shadow: var(--shadow-glow);
    display: inline-block;
}

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

.btn:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 10px 20px;
    cursor: pointer;
    transition: 0.3s var(--ease);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    background-color: rgba(211, 84, 49, 0.1);
    transform: translateY(-2px);
}

/* Hero Section / Banner Slider */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 0 10%;
    position: relative;
    transition: background-image 0.6s ease-in-out;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(211, 84, 49, 0.15);
    border: 1px solid rgba(211, 84, 49, 0.4);
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.hero-eyebrow i {
    font-size: 11px;
}

.hero h1 {
    font-size: 58px;
    margin-bottom: 20px;
    line-height: 1.05;
    font-weight: 700;
    text-transform: uppercase;
}

.hero h1 span {
    color: var(--primary-color);
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #e0e0e0;
    max-width: 520px;
}

.slider-arrows {
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 5%;
    z-index: 3;
}

.arrow {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    width: 45px; height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.arrow:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* General Sections */
section {
    padding: 80px 5%;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-style: italic;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Reels Section */
/* Instagram Reels Horizontal Slider */
/* Slider Wrapper (To hold buttons on left/right) */
.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

/* The actual scrolling track */
.reels-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    width: 100%;
}

/* Hide scrollbar */
.reels-grid::-webkit-scrollbar {
    display: none;
}

/* Strict Box for Instagram Embeds so they don't break layout */
.reel-card {
    position: relative;
    flex: 0 0 300px;         /* Isko 300px pe fix kar diya */
    min-width: 300px;        /* Instagram ise bada nahi kar payega */
    max-width: 300px;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.reel-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

/* Crop out Instagram's own header/caption chrome so only the video shows.
   The embed is a cross-origin iframe, so this is a positioning approximation
   (push the frame up, oversize it, let the card's overflow:hidden clip both ends). */
.reel-frame {
    position: absolute;
    top: -68px;
    left: 0;
    width: 100%;
    height: calc(100% + 150px);
    border: none;
}

.reel-follow-cta {
    text-align: center;
    margin-top: 40px;
}

/* Side Buttons */
.slider-btn {
    position: absolute;
    z-index: 10;
    background: var(--primary-color);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.5);
    transition: 0.3s;
}

.slider-btn:hover { background: var(--primary-hover); }
.slider-btn.left { left: -10px; }
.slider-btn.right { right: -10px; }

/* Products Section */
/* Product Horizontal Slider */
.products-track {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    width: 100%;
}

.products-track::-webkit-scrollbar {
    display: none;
}

/* Fix product card size for slider */
.products-track .product-card {
    flex: 0 0 280px; 
    min-width: 280px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.products-track,
.shop-products-grid {
    align-items: stretch;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-info {
    text-align: left;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.product-info p {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.product-info .btn,
.product-info .btn-outline {
    margin-top: auto;
}

.product-card .btn-outline {
    width: 100%;
    border-radius: 8px;
}

/* Inner Page Hero Header */
.page-hero {
    padding: 160px 5% 80px;
    text-align: center;
    background: linear-gradient(var(--bg-dark), var(--bg-card));
    border-bottom: 1px solid var(--border-color);
}

.page-hero h1 {
    font-size: 42px;
    color: var(--primary-color);
    text-transform: uppercase;
}

/* Contact Page Form */
.contact-layout {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact-info-panel {
    flex: 1;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 22px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.contact-info-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.contact-info-card .icon-box {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(211, 84, 49, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
}

.contact-info-card h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.contact-info-card p, .contact-info-card a {
    color: var(--text-muted);
    font-size: 14px;
}

.contact-info-card a:hover {
    color: var(--primary-color);
}

.contact-container {
    flex: 1.3;
    min-width: 320px;
    max-width: 650px;
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

@media (max-width: 900px) {
    .contact-layout { flex-direction: column; }
    .contact-container { max-width: 100%; }
}

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

.form-group input, .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    color: white;
    border-radius: 8px;
    font-size: 15px;
}

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

/* Footer Section */
footer {
    background: var(--bg-card);
    padding: 60px 5% 20px;
    border-top: 1px solid var(--border-color);
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--primary-color);
}

.footer-col p, .footer-col a {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 12px;
    display: block;
}

.footer-col a:hover {
    color: var(--primary-color);
}

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

.social-icons a i {
    font-size: 22px;
    color: var(--text-muted);
    transition: 0.3s;
}

.social-icons a i:hover {
    color: var(--primary-color);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-form input {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    padding: 12px;
    color: white;
    border-radius: 30px;
    flex: 1;
    padding-left: 20px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; }

    .nav-toggle { display: flex; }

    nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(78vw, 320px);
        background: var(--bg-card);
        border-left: 1px solid var(--border-color);
        box-shadow: var(--shadow-md);
        padding: 100px 30px 30px;
        transform: translateX(100%);
        transition: transform 0.35s var(--ease);
        z-index: 999;
    }

    nav.open {
        transform: translateX(0);
    }

    nav ul {
        flex-direction: column;
        gap: 24px;
    }

    nav a {
        font-size: 20px;
        display: block;
    }

    .nav-scrim {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.35s var(--ease);
        z-index: 998;
    }

    .nav-scrim.open {
        opacity: 1;
        pointer-events: auto;
    }

    header .btn { padding: 10px 18px; font-size: 14px; }

    .hero h1 { font-size: 34px; }
    .hero { background-position: 68% 8%; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
}
/* --- SHOP PAGE SIDEBAR & LAYOUT --- */
.shop-layout {
    display: flex;
    gap: 40px;
    padding: 0 5% 60px;
    align-items: flex-start;
}

.shop-sidebar {
    width: 250px;
    flex-shrink: 0;
}

.shop-main {
    flex-grow: 1;
}

/* Filters */
.filter-group {
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.filter-group:last-child {
    border-bottom: none;
}

.filter-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    letter-spacing: 1px;
}

.filter-list {
    list-style: none;
}

.filter-list > li {
    margin-bottom: 12px;
    color: var(--text-light);
    font-size: 14px;
    cursor: pointer;
}

.filter-sublist {
    list-style: none;
    padding-left: 15px;
    margin-top: 10px;
    border-left: 1px solid var(--border-color);
    margin-left: 5px;
}

.filter-sublist li {
    color: var(--text-muted);
    margin-bottom: 10px;
    transition: 0.3s;
}

.filter-sublist li:hover {
    color: var(--primary-color);
}

/* Price Range Slider Demo */
.price-slider-track {
    width: 100%;
    height: 4px;
    background: var(--border-color);
    position: relative;
    margin: 20px 0 10px;
    border-radius: 2px;
}

.price-slider-fill {
    position: absolute;
    left: 10%; right: 20%;
    height: 100%;
    background: var(--primary-color);
}

.price-thumb {
    width: 14px; height: 14px;
    background: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: -5px;
    cursor: pointer;
}

/* Size Grid */
.size-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.size-btn {
    width: 38px; height: 38px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    background: transparent;
    color: var(--text-light);
    display: flex; justify-content: center; align-items: center;
    font-size: 12px; cursor: pointer; transition: 0.3s;
}

.size-btn:hover {
    border-color: var(--primary-color);
    background: rgba(211, 84, 49, 0.1);
}

/* Color Grid */
.color-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.color-dot {
    width: 20px; height: 20px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
}

.color-dot:hover {
    border-color: var(--text-light);
}

/* Sort & Pagination */
.shop-sort-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 13px;
    color: var(--text-muted);
}

.shop-sort-bar span { cursor: pointer; transition: 0.3s; }
.shop-sort-bar span:hover { color: var(--text-light); }

.pagination {
    display: flex; justify-content: center; align-items: center; gap: 15px; margin-top: 50px; font-size: 15px;
}

.page-num {
    color: var(--text-muted); cursor: pointer; padding: 6px 12px; border-radius: 4px; transition: 0.3s;
}

.page-num.active { background: var(--primary-color); color: white; }
.page-num:hover:not(.active) { color: white; }

@media (max-width: 900px) {
    .shop-layout { flex-direction: column; }
    .shop-sidebar { width: 100%; }
}
/* Shop Page ke liye sirf 3-column wali grid */
.shop-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns fix */
    gap: 20px;
}
/* Shop images ko fix karne ke liye */
.shop-products-grid .product-card img {
    height: 220px; 
    width: 100%;
    object-fit: cover; /* Isse image stretch nahi hogi */
    border-radius: 8px;
}
/* WhatsApp Floating Button */
/* WhatsApp Floating Button - Fixed at Screen level */
.whatsapp-float {
    position: fixed; /* Yahi asli magic hai jo screen par chipka ke rakhega */
    bottom: 30px;
    right: 30px;
    z-index: 99999; /* Isse ye sabse upar dikhega */
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    background-color: #128c7e;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}