/* 
========================================================================
   SAMBALPURI WEAVES - STYLESHEET
   Luxury, Elegant, Minimal & Premium Indian Heritage
========================================================================
*/

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

/* --- Custom Variables & Reset --- */
:root {
    --primary-maroon: #7A0F17;
    --primary-maroon-rgb: 122, 15, 23;
    --secondary-ivory: #FFF9F3;
    --accent-gold: #C79A3B;
    --accent-gold-rgb: 199, 154, 59;
    --bg-warm-white: #FAF7F2;
    --text-charcoal: #222222;
    --border-beige: #EAE3D8;
    --card-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
    --hover-shadow: 0 15px 40px rgba(122, 15, 23, 0.08);
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Poppins', sans-serif;
    --font-btn: 'Inter', sans-serif;
    --transition-smooth: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-warm-white);
    color: var(--text-charcoal);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* --- Typographical Hierarchy --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--primary-maroon);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Sticky Header & Announcement Bar --- */
.announcement-bar {
    background-color: var(--primary-maroon);
    color: var(--secondary-ivory);
    padding: 10px 5%;
    font-family: var(--font-btn);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1001;
}

.announcement-bar .socials {
    display: flex;
    gap: 15px;
}

.announcement-bar .socials a {
    color: var(--secondary-ivory);
    opacity: 0.8;
}

.announcement-bar .socials a:hover {
    opacity: 1;
    color: var(--accent-gold);
}

.announcement-bar .announcements-slider {
    flex: 1;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.announcements-slider span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.announcements-slider span::before {
    content: "•";
    color: var(--accent-gold);
}

/* Header Navigation */
header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(250, 247, 242, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(122, 15, 23, 0.05);
    transition: var(--transition-smooth);
}

header.scrolled {
    background-color: rgba(250, 247, 242, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 72px;
    width: auto;
    object-fit: contain;
    border-radius: 50%;
    border: 1px solid var(--border-beige);
    background-color: #fff;
    transition: var(--transition-fast);
}

.logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.logo-img-footer {
    height: 82px;
    width: auto;
    object-fit: contain;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2px;
}

nav {
    display: flex;
    align-items: center;
}

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

.nav-links li {
    position: relative;
}

.nav-links a {
    font-family: var(--font-btn);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-charcoal);
    padding: 10px 0;
    display: inline-block;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 5px;
    left: 0;
    background-color: var(--primary-maroon);
    transition: var(--transition-fast);
}

.nav-links li:hover > a {
    color: var(--primary-maroon);
}

.nav-links li:hover > a::after {
    width: 100%;
}

/* Dropdown styling */
.has-dropdown .dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: var(--bg-warm-white);
    border: 1px solid var(--border-beige);
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    opacity: 0;
    visibility: hidden;
    list-style: none;
    padding: 15px 0;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown li a {
    padding: 8px 25px;
    font-size: 11px;
    display: block;
    width: 100%;
}

.dropdown li a::after {
    display: none;
}

.dropdown li a:hover {
    background-color: rgba(122, 15, 23, 0.03);
    color: var(--accent-gold);
}

/* Right Header Icons */
.header-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

.action-btn {
    background: none;
    border: none;
    color: var(--text-charcoal);
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    position: relative;
}

.action-btn:hover {
    color: var(--primary-maroon);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background-color: var(--primary-maroon);
    color: var(--secondary-ivory);
    font-family: var(--font-btn);
    font-size: 8px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle {
    display: none;
    font-size: 22px;
}

/* --- Hero Section --- */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px 5% 100px;
    background: radial-gradient(circle at 80% 20%, rgba(199, 154, 59, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(122, 15, 23, 0.04) 0%, transparent 60%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 120px;
    height: 120px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%237A0F17" opacity="0.03"><polygon points="50,0 60,35 100,50 60,65 50,100 40,65 0,50 40,35"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    animation: floatPattern 12s infinite alternate ease-in-out;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 45%;
    width: 160px;
    height: 160px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%23C79A3B" opacity="0.04"><polygon points="50,0 65,35 100,50 65,65 50,100 35,65 0,50 35,35"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    animation: floatPattern 18s infinite alternate-reverse ease-in-out;
    pointer-events: none;
}

.hero-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s 0.2s forwards cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-tagline {
    font-family: var(--font-btn);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 20px;
    display: block;
}

.hero-content h2 {
    font-size: 72px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--primary-maroon);
}

.hero-content h2 span {
    font-style: italic;
    font-weight: 500;
    color: var(--accent-gold);
}

.hero-subheading {
    font-size: 16px;
    font-weight: 300;
    color: #555555;
    margin-bottom: 40px;
    max-width: 540px;
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

/* Button Styling */
.btn {
    font-family: var(--font-btn);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--primary-maroon);
    color: var(--secondary-ivory);
    border: 1px solid var(--primary-maroon);
}

.btn-primary:hover {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--secondary-ivory);
    box-shadow: 0 10px 25px rgba(199, 154, 59, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-maroon);
    border: 1px solid var(--border-beige);
}

.btn-secondary:hover {
    border-color: var(--primary-maroon);
    background-color: rgba(122, 15, 23, 0.02);
}

.hero-badges {
    display: flex;
    gap: 30px;
    border-top: 1px solid var(--border-beige);
    padding-top: 30px;
    max-width: 500px;
}

.hero-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 500;
    color: #666;
}

.hero-badge-item i {
    color: var(--accent-gold);
    font-size: 16px;
}

/* Hero Image Column */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    transform: scale(0.95);
    animation: imageReveal 1.2s forwards cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-image-frame {
    position: relative;
    border-radius: 300px 300px 0 0;
    overflow: hidden;
    box-shadow: var(--hover-shadow);
    border: 8px solid var(--secondary-ivory);
    aspect-ratio: 0.75;
    width: 90%;
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

.hero-image-wrapper:hover .hero-image-frame img {
    transform: scale(1.08);
}

.floating-motif {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background-color: var(--secondary-ivory);
    border: 1px solid var(--border-beige);
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border-radius: 4px;
    z-index: 2;
}

.floating-motif svg {
    width: 32px;
    height: 32px;
    fill: var(--primary-maroon);
}

.floating-motif p {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-maroon);
    line-height: 1.1;
}

.floating-motif span {
    font-family: var(--font-btn);
    font-size: 8px;
    color: #777;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Keyframes */
@keyframes floatPattern {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-15px) rotate(8deg); }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes imageReveal {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* --- Trust Bar Section --- */
.trust-bar {
    background-color: var(--secondary-ivory);
    border-top: 1px solid var(--border-beige);
    border-bottom: 1px solid var(--border-beige);
    padding: 35px 0;
}

.trust-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 20px;
    border-right: 1px solid rgba(122, 15, 23, 0.08);
}

.trust-card:last-child {
    border-right: none;
}

.trust-icon {
    font-size: 26px;
    color: var(--primary-maroon);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(122, 15, 23, 0.03);
    border-radius: 50%;
    transition: var(--transition-fast);
}

.trust-card:hover .trust-icon {
    background-color: var(--primary-maroon);
    color: var(--secondary-ivory);
    transform: translateY(-3px);
}

.trust-info h4 {
    font-family: var(--font-btn);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-charcoal);
    margin-bottom: 4px;
}

.trust-info p {
    font-size: 11px;
    color: #777;
    line-height: 1.4;
}

/* --- Section Formatting --- */
.section {
    padding: 120px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header h2 {
    font-size: 46px;
    font-weight: 300;
    letter-spacing: 0.03em;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header p {
    font-size: 15px;
    font-weight: 300;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.section-divider {
    display: block;
    width: 80px;
    height: 2px;
    background-color: var(--accent-gold);
    margin: 15px auto 0;
    position: relative;
}

.section-divider::before {
    content: '❖';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--bg-warm-white);
    padding: 0 8px;
    color: var(--primary-maroon);
    font-size: 10px;
}

/* --- Shop by Collection --- */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.collection-card {
    position: relative;
    aspect-ratio: 0.8;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-beige);
    transition: var(--transition-smooth);
}

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(122, 15, 23, 0.85) 0%, rgba(122, 15, 23, 0.2) 60%, transparent 100%);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    transition: var(--transition-smooth);
}

.collection-card h3 {
    color: var(--secondary-ivory);
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 10px;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.collection-btn {
    font-family: var(--font-btn);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.collection-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.collection-card:hover img {
    transform: scale(1.08);
}

.collection-card:hover .collection-overlay {
    background: linear-gradient(to top, rgba(122, 15, 23, 0.92) 0%, rgba(122, 15, 23, 0.3) 50%, transparent 100%);
}

.collection-card:hover h3,
.collection-card:hover .collection-btn {
    transform: translateY(0);
    opacity: 1;
}

/* --- Featured Collections (Alternating layout) --- */
.featured-layout {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.featured-block {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.featured-block.reversed {
    grid-template-columns: 1.1fr 1fr;
}

.featured-img-container {
    position: relative;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-beige);
    aspect-ratio: 0.85;
    overflow: hidden;
}

.featured-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

.featured-block:hover .featured-img-container img {
    transform: scale(1.05);
}

.featured-label {
    font-family: var(--font-btn);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 20px;
    display: block;
}

.featured-block h3 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 25px;
    line-height: 1.2;
}

.featured-desc {
    font-size: 15px;
    font-weight: 300;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.8;
}

/* --- Best Sellers (Product Grid) --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    position: relative;
    background-color: var(--secondary-ivory);
    border: 1px solid var(--border-beige);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.product-img-wrapper {
    position: relative;
    aspect-ratio: 0.78;
    overflow: hidden;
}

/* Double image swap */
.product-img-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease, transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-img-hover {
    opacity: 0;
    z-index: 1;
}

.product-card:hover .product-img-primary {
    opacity: 0;
}

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

/* Badge tags & heart */
.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background-color: var(--secondary-ivory);
    border: 1px solid var(--border-beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: var(--transition-fast);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.wishlist-btn i {
    font-size: 14px;
    color: #777;
    transition: var(--transition-fast);
}

.wishlist-btn:hover {
    background-color: var(--primary-maroon);
    border-color: var(--primary-maroon);
}

.wishlist-btn:hover i {
    color: var(--secondary-ivory);
}

.product-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-maroon);
    color: var(--secondary-ivory);
    font-family: var(--font-btn);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 2px;
    z-index: 3;
}

.quick-view-btn {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background-color: rgba(250, 247, 242, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-top: 1px solid var(--border-beige);
    padding: 12px;
    text-align: center;
    font-family: var(--font-btn);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-maroon);
    cursor: pointer;
    z-index: 3;
    transition: var(--transition-smooth);
}

.product-img-wrapper:hover .quick-view-btn {
    bottom: 0;
}

/* Product Info */
.product-info {
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-family: var(--font-btn);
    font-size: 9px;
    font-weight: 500;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 8px;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 500;
    color: var(--text-charcoal);
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-rating {
    display: flex;
    justify-content: center;
    gap: 4px;
    font-size: 11px;
    color: var(--accent-gold);
    margin-bottom: 12px;
}

.product-rating span {
    font-family: var(--font-body);
    font-size: 10px;
    color: #888;
    margin-left: 5px;
}

.product-price-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.price-original {
    font-size: 12px;
    text-decoration: line-through;
    color: #999;
}

.price-current {
    font-family: var(--font-btn);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-maroon);
}

.price-discount {
    font-family: var(--font-btn);
    font-size: 9px;
    font-weight: 600;
    color: #2e7d32;
    background-color: #e8f5e9;
    padding: 2px 6px;
    border-radius: 2px;
}

/* WhatsApp CTA Button */
.whatsapp-cta {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #25D366;
    color: #ffffff;
    font-family: var(--font-btn);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 14px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-fast);
    width: 100%;
}

.whatsapp-cta i {
    font-size: 16px;
}

.whatsapp-cta:hover {
    background-color: #20ba5a;
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.25);
    transform: translateY(-2px);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

/* --- Why Choose Sambalpuri Section --- */
.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.why-choose-left {
    position: relative;
    border: 1px solid var(--border-beige);
    box-shadow: var(--card-shadow);
}

.why-choose-left img {
    width: 100%;
    aspect-ratio: 0.85;
    object-fit: cover;
}

.why-choose-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--secondary-ivory);
    border: 1px solid var(--border-beige);
    padding: 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.why-choose-badge-icon {
    font-size: 32px;
    color: var(--primary-maroon);
}

.why-choose-badge-text h5 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.1;
}

.why-choose-badge-text p {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.why-choose-right {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.why-choose-right h3 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 10px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-item-icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--primary-maroon);
    border-radius: 50%;
    color: var(--primary-maroon);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.feature-item:hover .feature-item-icon {
    background-color: var(--primary-maroon);
    color: var(--secondary-ivory);
    transform: scale(1.05);
}

.feature-item-text h4 {
    font-family: var(--font-btn);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-charcoal);
    margin-bottom: 8px;
}

.feature-item-text p {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
}

/* --- Artisan Story (Full Width Overlay) --- */
.artisan-section {
    position: relative;
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5)), url('assets/images/artisan-loom.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 160px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.artisan-overlay-card {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 60px 80px;
    max-width: 800px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.artisan-overlay-card h3 {
    font-size: 40px;
    font-weight: 300;
    color: var(--primary-maroon);
}

.artisan-overlay-card p {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
}

/* --- Testimonials Section (Sliding Carousel) --- */
.reviews-section {
    background-color: var(--secondary-ivory);
    border-top: 1px solid var(--border-beige);
    border-bottom: 1px solid var(--border-beige);
}

.reviews-carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.review-slide {
    min-width: 100%;
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0.3;
    transition: opacity 0.5s ease;
}

.review-slide.active {
    opacity: 1;
}

.review-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid var(--accent-gold);
    box-shadow: var(--card-shadow);
}

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

.review-stars {
    color: var(--accent-gold);
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}

.review-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-style: italic;
    color: var(--text-charcoal);
    margin-bottom: 25px;
    line-height: 1.6;
}

.review-author {
    font-family: var(--font-btn);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-maroon);
}

.review-location {
    font-size: 11px;
    color: #777;
    margin-top: 2px;
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: 1px solid var(--border-beige);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    color: var(--primary-maroon);
    background-color: var(--bg-warm-white);
    transition: var(--transition-fast);
    z-index: 2;
}

.carousel-nav-btn:hover {
    background-color: var(--primary-maroon);
    color: var(--secondary-ivory);
    border-color: var(--primary-maroon);
}

.carousel-nav-prev {
    left: -60px;
}

.carousel-nav-next {
    right: -60px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--border-beige);
    cursor: pointer;
    transition: var(--transition-fast);
}

.carousel-dot.active {
    background-color: var(--primary-maroon);
    transform: scale(1.3);
}

/* --- Instagram Gallery --- */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.instagram-card {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-beige);
}

.instagram-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.instagram-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(122, 15, 23, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 2;
}

.instagram-overlay i {
    font-size: 32px;
    color: var(--secondary-ivory);
    transform: scale(0.8);
    transition: var(--transition-smooth);
}

.instagram-card:hover img {
    transform: scale(1.06);
}

.instagram-card:hover .instagram-overlay {
    opacity: 1;
}

.instagram-card:hover .instagram-overlay i {
    transform: scale(1);
}

/* --- Newsletter Banner --- */
.newsletter-section {
    padding: 80px 5%;
}

.newsletter-banner {
    max-width: 1400px;
    margin: 0 auto;
    background-color: var(--primary-maroon);
    color: var(--secondary-ivory);
    padding: 80px 100px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--hover-shadow);
}

.newsletter-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60" fill="%23ffffff" opacity="0.01"><polygon points="30,0 45,15 60,30 45,45 30,60 15,45 0,30 15,15"/></svg>');
    background-size: 80px 80px;
    pointer-events: none;
}

.newsletter-content {
    max-width: 550px;
    position: relative;
    z-index: 2;
}

.newsletter-content h3 {
    font-size: 40px;
    font-weight: 300;
    color: var(--secondary-ivory);
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 14px;
    font-weight: 300;
    opacity: 0.85;
}

.newsletter-form {
    display: flex;
    width: 450px;
    position: relative;
    z-index: 2;
}

.newsletter-input {
    flex-grow: 1;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-right: none;
    color: var(--secondary-ivory);
    font-family: var(--font-body);
    font-size: 13px;
    padding: 18px 25px;
    outline: none;
    transition: var(--transition-fast);
}

.newsletter-input:focus {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: var(--accent-gold);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-btn {
    background-color: var(--accent-gold);
    color: var(--secondary-ivory);
    border: none;
    font-family: var(--font-btn);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0 35px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.newsletter-btn:hover {
    background-color: var(--secondary-ivory);
    color: var(--primary-maroon);
}

/* --- Footer --- */
footer {
    background-color: #1a0305;
    color: #b09e9f;
    border-top: 1px solid rgba(199, 154, 59, 0.15);
    padding: 90px 5% 40px;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 70px;
}

.footer-col h4 {
    font-family: var(--font-btn);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--secondary-ivory);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: var(--accent-gold);
}

.footer-col p {
    font-size: 13px;
    line-height: 1.8;
}

.footer-brand-logo {
    margin-bottom: 25px;
}

.footer-brand-logo h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-ivory);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1;
}

.footer-brand-logo span {
    font-family: var(--font-btn);
    font-size: 8px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-gold);
}

.footer-col-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col-links a {
    font-size: 13px;
    transition: var(--transition-fast);
}

.footer-col-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-ivory);
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-socials a:hover {
    background-color: var(--primary-maroon);
    border-color: var(--primary-maroon);
    color: var(--secondary-ivory);
}

.footer-newsletter-form {
    display: flex;
    margin-top: 20px;
    position: relative;
}

.footer-newsletter-input {
    flex-grow: 1;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--secondary-ivory);
    font-family: var(--font-body);
    font-size: 12px;
    padding: 14px 18px;
    outline: none;
    border-radius: 2px 0 0 2px;
}

.footer-newsletter-btn {
    background-color: var(--primary-maroon);
    color: var(--secondary-ivory);
    border: none;
    font-size: 12px;
    padding: 0 20px;
    cursor: pointer;
    border-radius: 0 2px 2px 0;
    transition: var(--transition-fast);
}

.footer-newsletter-btn:hover {
    background-color: var(--accent-gold);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 12px;
    color: #666;
}

.footer-payment-icons {
    display: flex;
    gap: 10px;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-payment-icons img {
    height: 22px;
    opacity: 0.6;
    transition: var(--transition-fast);
}

.footer-payment-icons img:hover {
    opacity: 0.9;
}

/* --- Mobile Slide Drawer --- */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background-color: var(--bg-warm-white);
    z-index: 2000;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
}

.mobile-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-beige);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.drawer-close {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--primary-maroon);
    cursor: pointer;
    transition: var(--transition-fast);
}

.drawer-close:hover {
    color: var(--accent-gold);
    transform: rotate(90deg);
}

.drawer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.drawer-links a {
    font-family: var(--font-btn);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-charcoal);
    display: block;
    transition: var(--transition-fast);
}

.drawer-links a:hover {
    color: var(--primary-maroon);
    padding-left: 6px;
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(122, 15, 23, 0.15);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* --- Mobile Responsiveness & Adjustments --- */
@media (max-width: 1200px) {
    .hero-content h2 { font-size: 56px; }
    .collections-grid { grid-template-columns: repeat(2, 1fr); }
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; }
}

@media (max-width: 991px) {
    .section { padding: 80px 5%; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-image-wrapper { justify-content: center; }
    .hero-image-frame { width: 70%; }
    .trust-container { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .trust-card { border-right: none; border-bottom: 1px solid rgba(122, 15, 23, 0.08); padding-bottom: 15px; }
    .trust-card:nth-child(even) { border-right: none; }
    .trust-card:last-child { border-bottom: none; }
    .featured-block { grid-template-columns: 1fr; gap: 40px; }
    .featured-block.reversed { grid-template-columns: 1fr; }
    .why-choose-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-toggle { display: block; }
    .logo-img { height: 58px; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .instagram-grid { grid-template-columns: repeat(2, 1fr); }
    .artisan-overlay-card { padding: 40px 30px; }
    .artisan-overlay-card h3 { font-size: 30px; }
    .carousel-nav-btn { display: none; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 576px) {
    .announcement-bar { display: none; }
    .hero-content h2 { font-size: 36px; }
    .hero-ctas { flex-direction: column; gap: 12px; }
    .btn { width: 100%; justify-content: center; }
    .trust-container { grid-template-columns: 1fr; }
    .collections-grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .instagram-grid { grid-template-columns: 1fr; }
}

/* --- Fixed WhatsApp Float Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 998; /* Below drawer (2000) and overlay (1999) but above page */
    transition: var(--transition-fast);
    cursor: pointer;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: #fff;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}
