/** Shopify CDN: Minification failed

Line 2172:0 All "@import" rules must come first
Line 2576:0 All "@import" rules must come first

**/
/* ==========================================================================
   KrasetKurdi - High Fashion Luxury Kurdish E-Commerce Styling
   ========================================================================== */

:root {
    --gold: #D4AF37;
    --gold-light: #F7EAAD;
    --gold-champagne: #E5C268;
    --gold-dark: #B38C15;
    --red-kurdish: #9E1B2C;
    --green-kurdish: #0B4A2C;
    --dark-bg: #0C0E12;
    --dark-surface: #161A22;
    --dark-card: #1D222D;
    --light-bg: #FBF9F5;
    --light-surface: #FFFFFF;
    --text-primary: #12151A;
    --text-secondary: #5A626E;
    --text-light: #F8F9FA;
    --border-light: #E8E5DF;
    --border-gold: rgba(212, 175, 55, 0.35);
    --shadow-soft: 0 12px 35px rgba(0, 0, 0, 0.05);
    --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.25);
    --shadow-deep: 0 20px 50px rgba(0, 0, 0, 0.15);
    --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Typography */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-heading-accent: 'Montserrat', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--light-bg);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--dark-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* ==========================================================================
   Announcement Bar
   ========================================================================== */
.announcement-bar {
    background: linear-gradient(90deg, #0C0E12 0%, #2A1F0D 50%, #0C0E12 100%);
    color: var(--gold-light);
    text-align: center;
    padding: 10px 16px;
    font-family: var(--font-heading-accent);
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header-container {
    max-width: 1350px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 28px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-sun {
    font-size: 2rem;
    color: var(--gold);
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
    animation: pulseSun 4s infinite ease-in-out;
}

@keyframes pulseSun {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.08); opacity: 1; filter: drop-shadow(0 0 8px #E5C268); }
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-serif);
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--dark-bg);
    line-height: 0.95;
}

.logo-sub {
    font-family: var(--font-heading-accent);
    font-size: 0.62rem;
    letter-spacing: 3.5px;
    color: var(--gold-dark);
    font-weight: 700;
    margin-top: 4px;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading-accent);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-primary);
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-champagne), var(--gold-dark));
    transition: var(--transition-smooth);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-box {
    display: flex;
    align-items: center;
    background-color: #F3F1EC;
    border: 1px solid var(--border-light);
    border-radius: 30px;
    padding: 7px 16px;
    transition: var(--transition-smooth);
}

.search-box:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
    background-color: white;
}

.search-box input {
    border: none;
    background: transparent;
    font-size: 0.85rem;
    padding: 2px 6px;
    width: 140px;
    outline: none;
}

.search-box button {
    color: var(--text-secondary);
}

.search-box button:hover {
    color: var(--gold-dark);
}

.currency-selector select {
    border: 1px solid var(--border-light);
    background: #F3F1EC;
    border-radius: 20px;
    padding: 7px 14px;
    font-family: var(--font-heading-accent);
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    outline: none;
    transition: var(--transition-smooth);
}

.currency-selector select:hover {
    border-color: var(--gold);
}

.cart-trigger {
    position: relative;
    font-size: 1.4rem;
    color: var(--dark-bg);
    padding: 8px;
    transition: var(--transition-smooth);
}

.cart-trigger:hover {
    color: var(--gold-dark);
    transform: scale(1.1);
}

.cart-badge {
    position: absolute;
    top: 2px;
    right: 0;
    background-color: var(--red-kurdish);
    color: white;
    font-family: var(--font-heading-accent);
    font-size: 0.65rem;
    font-weight: 800;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--dark-bg);
}

/* ==========================================================================
   Hero Section (Luxury Overhaul)
   ========================================================================== */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 600px;
    background: radial-gradient(circle at 50% 40%, rgba(229, 194, 104, 0.12), transparent 60%),
                linear-gradient(180deg, rgba(12, 14, 18, 0.72) 0%, rgba(12, 14, 18, 0.92) 100%),
                url('images/red_dress.jpg') center 25%/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(12, 14, 18, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 850px;
    padding: 0 24px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    font-family: var(--font-heading-accent);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 30px;
    margin-bottom: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F7EAAD 60%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 36px;
    font-weight: 300;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--font-serif);
    font-style: italic;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--font-heading-accent);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 2px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-champagne) 0%, var(--gold-dark) 100%);
    color: white;
    box-shadow: var(--shadow-gold);
    border: 1px solid var(--gold);
}

.btn-gold:hover {
    background: linear-gradient(135deg, #FFF0B8 0%, var(--gold) 100%);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.45);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: white;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background-color: white;
    color: var(--dark-bg);
    border-color: white;
    transform: translateY(-3px);
}

.btn-block {
    width: 100%;
}

/* ==========================================================================
   Features Bar
   ========================================================================== */
.features-bar {
    max-width: 1350px;
    margin: -45px auto 70px;
    position: relative;
    z-index: 20;
    background: var(--light-surface);
    border-radius: 14px;
    box-shadow: var(--shadow-deep);
    padding: 32px 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 28px;
    border: 1px solid var(--border-gold);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.feature-item i {
    font-size: 2.2rem;
    color: var(--gold-dark);
    background: linear-gradient(135deg, var(--gold-champagne), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-item h4 {
    font-family: var(--font-heading-accent);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--dark-bg);
}

.feature-item p {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   Products Section
   ========================================================================== */
.products-section {
    max-width: 1350px;
    margin: 0 auto 90px;
    padding: 0 28px;
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 52px;
}

.section-subtitle {
    font-family: var(--font-heading-accent);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--gold-dark);
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 12px;
}

.gold-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 14px 0 18px;
    color: var(--gold);
}

.gold-divider::before,
.gold-divider::after {
    content: '';
    height: 1px;
    width: 70px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-description {
    color: var(--text-secondary);
    font-size: 1rem;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 30px;
    font-family: var(--font-heading-accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background-color: var(--light-surface);
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--dark-bg);
    color: var(--gold-light);
    border-color: var(--gold-dark);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Product Grid & Luxury Cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 36px;
}

.product-card {
    background: var(--light-surface);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
    border-color: var(--gold);
}

.product-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 10;
    padding: 5px 14px;
    font-family: var(--font-heading-accent);
    font-size: 0.7rem;
    font-weight: 800;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.badge-bestseller {
    background: linear-gradient(135deg, var(--gold-champagne), var(--gold-dark));
    color: white;
}

.badge-new {
    background: linear-gradient(135deg, #116B40, var(--green-kurdish));
    color: white;
}

.badge-exclusive {
    background: linear-gradient(135deg, #C52233, var(--red-kurdish));
    color: white;
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background-color: #F2EFEC;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-img {
    transform: scale(1.07);
}

.product-actions {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%) translateY(35px);
    display: flex;
    gap: 12px;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 10;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.action-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    color: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    transition: var(--transition-smooth);
}

.action-btn:hover {
    background-color: var(--dark-bg);
    color: var(--gold-champagne);
    transform: scale(1.12);
}

.product-info {
    padding: 26px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-family: var(--font-heading-accent);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold-dark);
    font-weight: 700;
    margin-bottom: 6px;
}

.product-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 8px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.stars {
    color: var(--gold);
    font-size: 0.85rem;
}

.rating-count {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.product-short-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 22px;
    line-height: 1.55;
    flex-grow: 1;
}

.product-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid var(--border-light);
}

.price-container {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-current {
    font-family: var(--font-serif);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--dark-bg);
}

.price-old {
    font-size: 0.95rem;
    color: #A5ABB2;
    text-decoration: line-through;
}

.btn-add-cart {
    padding: 12px 20px;
    background: var(--dark-bg);
    color: var(--gold-light);
    border-radius: 4px;
    font-family: var(--font-heading-accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-add-cart:hover {
    background: linear-gradient(135deg, var(--gold-champagne), var(--gold-dark));
    color: white;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

/* ==========================================================================
   Craftsmanship Spotlight Section
   ========================================================================== */
.craft-spotlight {
    background-color: var(--dark-bg);
    color: white;
    padding: 90px 28px;
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}

.craft-container {
    max-width: 1350px;
    margin: 0 auto;
}

.craft-header {
    text-align: center;
    margin-bottom: 56px;
}

.craft-header h2 {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--gold-light);
}

.craft-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.craft-card {
    background: var(--dark-surface);
    border-radius: 12px;
    padding: 36px 28px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    transition: var(--transition-smooth);
}

.craft-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.craft-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--gold-champagne);
}

.craft-card h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: white;
    margin-bottom: 12px;
}

.craft-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.craft-tag {
    display: inline-block;
    font-family: var(--font-heading-accent);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-light);
    background: rgba(212, 175, 55, 0.15);
    padding: 4px 14px;
    border-radius: 20px;
}

/* ==========================================================================
   Heritage Section
   ========================================================================== */
.heritage-section {
    background: linear-gradient(180deg, #0C0E12 0%, #161A22 100%);
    color: white;
    padding: 100px 28px;
    position: relative;
    overflow: hidden;
}

.heritage-container {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.heritage-text h2 {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    line-height: 1.15;
    margin: 14px 0 24px;
    color: var(--gold-light);
}

.heritage-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin-bottom: 28px;
    font-weight: 300;
}

.heritage-list {
    list-style: none;
    margin-bottom: 36px;
}

.heritage-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.heritage-list i {
    color: var(--gold);
}

.heritage-gallery {
    display: flex;
    gap: 24px;
    position: relative;
}

.gallery-card {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.gallery-card.card-1 {
    width: 58%;
    aspect-ratio: 3/4;
}

.gallery-card.card-2 {
    width: 46%;
    aspect-ratio: 3/4;
    margin-top: 70px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   Newsletter Section
   ========================================================================== */
.newsletter-section {
    max-width: 1050px;
    margin: -60px auto 90px;
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, #1C222E 0%, #0C0E12 100%);
    border-radius: 18px;
    padding: 70px 45px;
    text-align: center;
    color: white;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.newsletter-icon {
    font-size: 3.2rem;
    color: var(--gold-champagne);
    margin-bottom: 18px;
}

.newsletter-container h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 14px;
}

.newsletter-container p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 620px;
    margin: 0 auto 32px;
    font-size: 1rem;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 14px;
    max-width: 520px;
    margin: 0 auto;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 16px 22px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background-color: rgba(255, 255, 255, 0.08);
    color: white;
    outline: none;
    font-size: 0.95rem;
}

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

/* ==========================================================================
   Footer
   ========================================================================== */
.main-footer {
    background-color: #080A0C;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 28px 28px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-container {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 52px;
    margin-bottom: 70px;
}

.brand-col .brand-logo.white .logo-main {
    color: white;
}

.brand-col p {
    margin: 18px 0 26px;
    font-size: 0.92rem;
}

.social-links {
    display: flex;
    gap: 14px;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background-color: var(--gold);
    color: var(--dark-bg);
    transform: translateY(-4px);
    border-color: var(--gold);
}

.footer-col h4 {
    font-family: var(--font-serif);
    color: white;
    font-size: 1.3rem;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    font-size: 0.9rem;
}

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

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.pay-badge {
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 14px;
    border-radius: 4px;
    font-size: 0.8rem;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    max-width: 1350px;
    margin: 0 auto;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    font-size: 0.88rem;
}

/* ==========================================================================
   Quick View Modal
   ========================================================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    padding: 24px;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    background-color: white;
    border-radius: 18px;
    max-width: 920px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    transform: scale(0.92);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-gold);
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 2.2rem;
    color: var(--text-secondary);
    z-index: 10;
    line-height: 1;
}

.modal-close:hover {
    color: var(--red-kurdish);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    padding: 36px;
}

.modal-img-col img {
    border-radius: 12px;
    aspect-ratio: 3/4;
    object-fit: cover;
    width: 100%;
}

.modal-info-col h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    margin-bottom: 8px;
    color: var(--dark-bg);
}

.modal-price {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 18px;
}

.modal-desc {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin-bottom: 26px;
    line-height: 1.6;
}

.size-selector-label {
    font-family: var(--font-heading-accent);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.size-options {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.size-btn {
    padding: 9px 16px;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    font-family: var(--font-heading-accent);
    font-size: 0.8rem;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.size-btn.active,
.size-btn:hover {
    border-color: var(--gold);
    background-color: rgba(212, 175, 55, 0.12);
    color: var(--gold-dark);
}

/* ==========================================================================
   Cart Drawer
   ========================================================================== */
.cart-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 1500;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.cart-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 440px;
    max-width: 92vw;
    height: 100vh;
    background-color: white;
    z-index: 1600;
    box-shadow: -15px 0 40px rgba(0, 0, 0, 0.25);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.cart-drawer.active {
    transform: translateX(0);
}

.cart-header {
    padding: 26px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-header h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
}

.cart-close {
    font-size: 2rem;
    color: var(--text-secondary);
}

.cart-items {
    flex-grow: 1;
    overflow-y: auto;
    padding: 26px;
}

.cart-item {
    display: flex;
    gap: 18px;
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--border-light);
}

.cart-item-img {
    width: 75px;
    height: 95px;
    border-radius: 8px;
    object-fit: cover;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-title {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.cart-item-price {
    font-weight: 700;
    color: var(--gold-dark);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.qty-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    width: fit-content;
    padding: 3px 10px;
}

.qty-btn {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-secondary);
}

.cart-item-remove {
    color: var(--red-kurdish);
    font-size: 0.82rem;
    margin-top: 8px;
    font-weight: 600;
}

.cart-footer {
    padding: 26px;
    border-top: 1px solid var(--border-light);
    background-color: var(--light-bg);
}

.cart-summary {
    margin-bottom: 22px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.total-row {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark-bg);
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border-light);
}

/* ==========================================================================
   Social Proof Live Purchase Toast
   ========================================================================== */
.social-proof-popup {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 2500;
    background: var(--dark-surface);
    color: white;
    border-radius: 12px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    border: 1px solid var(--border-gold);
    transform: translateY(120px);
    opacity: 0;
    transition: var(--transition-smooth);
    max-width: 380px;
}

.social-proof-popup.active {
    transform: translateY(0);
    opacity: 1;
}

.sp-img-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.sp-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sp-title {
    font-family: var(--font-heading-accent);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--gold-champagne);
    text-transform: uppercase;
}

.sp-detail {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
}

.sp-time {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.65);
}

.sp-close {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.5);
    margin-left: auto;
}

.sp-close:hover {
    color: white;
}

/* ==========================================================================
   Toast Notifications
   ========================================================================== */
.toast-container {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    background-color: var(--dark-bg);
    color: white;
    padding: 16px 26px;
    border-radius: 8px;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
    border-left: 4px solid var(--gold);
    animation: slideIn 0.35s ease forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .heritage-container {
        grid-template-columns: 1fr;
    }
    .gallery-card.card-2 {
        margin-top: 0;
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    .modal-body {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .search-box input {
        width: 80px;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
    .social-proof-popup {
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: none;
    }
    .products-section {
        padding: 30px 12px;
    }
    .product-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    .product-card {
        border-radius: 12px;
        overflow: hidden;
        background: var(--light-surface);
        box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    }
    .product-image-wrapper {
        aspect-ratio: 3 / 4;
        width: 100%;
        overflow: hidden;
    }
    .product-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .product-info {
        padding: 10px 8px;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }
    .product-title {
        font-size: 0.9rem;
        font-family: var(--font-serif);
        font-weight: 700;
        line-height: 1.25;
        color: var(--text-primary);
        margin-bottom: 2px;
    }
    .product-price-row {
        display: flex;
        flex-direction: column;
        gap: 6px;
        align-items: stretch;
    }
    .price-container {
        display: flex;
        align-items: baseline;
        gap: 4px;
    }
    .price-current {
        font-size: 1rem;
        font-weight: 800;
        color: var(--gold-dark);
    }
    .price-old {
        font-size: 0.75rem;
        color: var(--text-secondary);
        text-decoration: line-through;
    }
    .btn-add-cart {
        width: 100%;
        padding: 7px;
        font-size: 0.8rem;
        border-radius: 6px;
        justify-content: center;
        background: var(--gold);
        color: var(--dark-bg);
        font-weight: 700;
    }
    .product-badge {
        font-size: 0.6rem;
        padding: 3px 6px;
        top: 6px;
        left: 6px;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    .hero-title {
        font-size: 2.1rem;
    }
}







/* ==========================================================================
   DELAL BRIDGE HERO BANNER (REVERTED TO PREVIOUS FLAWLESS STATE)
   ========================================================================== */

body {
    background-color: #FFFFFF !important;
    color: #2D3748 !important;
}

.main-header {
    background: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2) !important;
}

.hero-section {
    position: relative !important;
    background-image: url('/cdn/shop/t/1/assets/banner_desktop.jpg?v=1787003693') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    min-height: 480px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 95px 20px 85px !important;
    border-bottom: 2px solid #D4AF37 !important;
}

.hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    color: #0C0E12 !important;
    font-weight: 900 !important;
    font-style: normal !important;
    font-size: 3.2rem !important;
    letter-spacing: -0.5px !important;
    text-shadow: none !important;
    filter: none !important;
}

.hero-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    color: #D4AF37 !important;
    font-weight: 600 !important;
    font-style: normal !important;
    font-size: 1.05rem !important;
    letter-spacing: 0.5px !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7) !important;
    filter: none !important;
}

.products-section {
    background-color: #FFFFFF !important;
}

.coming-soon-placeholder {
    background: #FAF8F5 !important;
    border-color: rgba(212, 175, 55, 0.25) !important;
}

.filter-tabs {
    background: #FAF8F5 !important;
}

@media (max-width: 768px) {
    .hero-section {
        background-image: url('/cdn/shop/t/1/assets/banner_mobile.jpg?v=1787003696') !important;
        background-size: cover !important;
        background-position: center center !important;
        padding: 65px 16px 50px !important;
        min-height: 380px !important;
    }
    .hero-title {
        font-size: 2.1rem !important;
    }
    .hero-subtitle {
        font-size: 0.95rem !important;
    }
}


/* ==========================================================================
   WARM BEIGE HERO BANNER & STORE THEME (#FDF1E1)
   ========================================================================== */

body {
    background-color: #FDF1E1 !important;
}

.main-header {
    background: #FDF1E1 !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15) !important;
}

.hero-section {
    background-color: #FDF1E1 !important;
    background-image: none !important;
    min-height: 420px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 75px 20px 65px !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2) !important;
}

.hero-title {
    font-size: 3.6rem !important;
    font-weight: 800 !important;
    letter-spacing: -0.5px !important;
}

.hero-subtitle {
    font-size: 1.45rem !important;
    color: #C69214 !important;
    font-weight: 700 !important;
    font-style: italic !important;
}

.products-section {
    background-color: #FDF1E1 !important;
}

.coming-soon-placeholder {
    background: #FAF2E3 !important;
    border-color: rgba(212, 175, 55, 0.3) !important;
}

.filter-tabs {
    background: #F4E4CE !important;
}

@media (max-width: 768px) {
    .hero-section {
        background-image: none !important;
        padding: 55px 16px 45px !important;
        min-height: 350px !important;
    }
    .hero-title {
        font-size: 2.7rem !important;
    }
    .hero-subtitle {
        font-size: 1.2rem !important;
    }
}


/* ==========================================================================
   NO-EFFECTS CLEAN HERO TYPOGRAPHY (NO SHADOWS, NO BLURS, NO GRADIENTS)
   ========================================================================== */

.hero-title,
.hero-title span,
.hero-subtitle {
    text-shadow: none !important;
    filter: none !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    background: transparent !important;
    -webkit-text-fill-color: initial !important;
    mix-blend-mode: normal !important;
    opacity: 1 !important;
}

.hero-title span:first-child {
    color: #C4512C !important;
}

.hero-title span:last-child {
    color: #2C5E3B !important;
}

.hero-subtitle {
    color: #C69214 !important;
}


/* ==========================================================================
   CLEAN MOBILE HEADER ALIGNMENT (CURRENCY & CART RIGHT-ALIGNED)
   ========================================================================== */

.main-header {
    background: #FDF1E1 !important;
    padding: 0 !important;
    width: 100% !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15) !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
}

.header-container {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 14px 20px !important;
    box-sizing: border-box !important;
}

.header-actions {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-left: auto !important;
}

.currency-selector select {
    border-radius: 20px !important;
    border: 1.5px solid rgba(212, 175, 55, 0.4) !important;
    background: #FAF8F5 !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    padding: 6px 14px 6px 12px !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    cursor: pointer !important;
    color: #0C0E12 !important;
    outline: none !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04) !important;
}

.cart-trigger {
    position: relative !important;
    font-size: 1.3rem !important;
    color: #0C0E12 !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 6px !important;
}

.cart-badge {
    position: absolute !important;
    top: -2px !important;
    right: -4px !important;
    background: #C4512C !important;
    color: #FFFFFF !important;
    font-size: 0.7rem !important;
    font-weight: 800 !important;
    border-radius: 50% !important;
    min-width: 18px !important;
    height: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1.5px solid #FFFFFF !important;
}

@media (max-width: 768px) {
    .header-container {
        padding: 10px 16px !important;
    }
    .currency-selector select {
        font-size: 0.8rem !important;
        padding: 5px 12px !important;
    }
    .cart-trigger {
        font-size: 1.2rem !important;
    }
}



/* ==========================================================================
   TOP LEFT CATEGORY MENU DRAWER STYLING
   ========================================================================== */

.mobile-menu-toggle {
    background: transparent !important;
    border: none !important;
    font-size: 1.35rem !important;
    color: #0C0E12 !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 6px !important;
    transition: transform 0.2s ease !important;
}

.mobile-menu-toggle:hover {
    color: #C69214 !important;
    transform: scale(1.08) !important;
}

.menu-overlay {
    position: fixed !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(4px) !important;
    z-index: 1999 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.35s ease !important;
}

.menu-overlay.active {
    opacity: 1 !important;
    pointer-events: auto !important;
}

.category-menu-drawer {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 300px !important;
    max-width: 85vw !important;
    background: #0C0E12 !important;
    color: #FFFFFF !important;
    z-index: 2000 !important;
    transform: translateX(-100%) !important;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 6px 0 25px rgba(0, 0, 0, 0.4) !important;
    display: flex !important;
    flex-direction: column !important;
}

.category-menu-drawer.active {
    transform: translateX(0) !important;
}

.menu-drawer-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 20px 24px !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25) !important;
}

.menu-drawer-header h3 {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 1.2rem !important;
    font-weight: 800 !important;
    color: #FFFFFF !important;
    margin: 0 !important;
}

.menu-close {
    background: none !important;
    border: none !important;
    color: #A0AEC0 !important;
    font-size: 1.8rem !important;
    cursor: pointer !important;
    line-height: 1 !important;
}

.menu-drawer-body {
    padding: 24px !important;
    flex: 1 !important;
    overflow-y: auto !important;
}

.menu-section-title {
    font-size: 0.8rem !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    color: #C69214 !important;
    font-weight: 700 !important;
    display: block !important;
    margin-bottom: 16px !important;
}

.menu-category-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.menu-category-list li {
    margin-bottom: 12px !important;
}

.menu-cat-link {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    padding: 12px 16px !important;
    color: #F7F5F0 !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(212, 175, 55, 0.15) !important;
    transition: all 0.25s ease !important;
}

.menu-cat-link:hover,
.menu-cat-link.active {
    background: rgba(212, 175, 55, 0.15) !important;
    color: #C69214 !important;
    border-color: #C69214 !important;
    transform: translateX(4px) !important;
}

.menu-cat-link i {
    color: #C69214 !important;
    width: 20px !important;
    text-align: center !important;
}


/* ==========================================================================
   PERFECT WARM BEIGE HERO BANNER (#FDF1E1 - ZERO VIGNETTE / ZERO BG-IMAGE)
   ========================================================================== */

.hero-overlay {
    display: none !important;
}

.hero-section {
    background-color: #FDF1E1 !important;
    background-image: none !important;
    background: #FDF1E1 !important;
    min-height: 440px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 85px 20px 75px !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2) !important;
    box-shadow: none !important;
    filter: none !important;
}

.hero-title {
    font-family: 'Cormorant Garamond', 'Plus Jakarta Sans', serif !important;
    font-size: 3.6rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.5px !important;
    line-height: 1.1 !important;
    margin: 0 !important;
    text-shadow: none !important;
    filter: none !important;
}

.hero-title span:first-child {
    color: #C4512C !important;
}

.hero-title span:last-child {
    color: #2C5E3B !important;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 1.45rem !important;
    color: #C69214 !important;
    font-weight: 600 !important;
    font-style: italic !important;
    margin-top: 12px !important;
    letter-spacing: 0.5px !important;
    text-shadow: none !important;
    filter: none !important;
}

@media (max-width: 768px) {
    .hero-section {
        background-color: #FDF1E1 !important;
        background-image: none !important;
        padding: 65px 16px 55px !important;
        min-height: 360px !important;
    }
    .hero-title {
        font-size: 2.7rem !important;
    }
    .hero-subtitle {
        font-size: 1.2rem !important;
    }
}


/* ==========================================================================
   PURE WHITE HEADER STYLING (#FFFFFF)
   ========================================================================== */

.main-header {
    background-color: #FFFFFF !important;
    background: #FFFFFF !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03) !important;
}


/* ==========================================================================
   EXACT SCREENSHOT BANNER (#FCEBD9)
   ========================================================================== */

body {
    background-color: #FCEBD9 !important;
}

.hero-section {
    background-color: #FCEBD9 !important;
    background-image: none !important;
    background: #FCEBD9 !important;
    min-height: 420px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 75px 20px 65px !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2) !important;
    box-shadow: none !important;
    filter: none !important;
}

.products-section {
    background-color: #FCEBD9 !important;
}

.coming-soon-placeholder {
    background: #FAF2E3 !important;
    border-color: rgba(212, 175, 55, 0.3) !important;
}

.filter-tabs {
    background: #F4E4CE !important;
}

.center-banner-logo {
    width: 320px !important;
    max-width: 90% !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
}


/* ==========================================================================
   FLAWLESS NATIVE HERO BANNER (MATCHING SCREENSHOT 100% IN NATIVE HTML/CSS)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

body {
    background-color: #FDF1E1 !important;
}

.main-header {
    background-color: #FFFFFF !important;
    background: #FFFFFF !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03) !important;
}

.hero-section {
    background-color: #FDF1E1 !important;
    background-image: none !important;
    background: #FDF1E1 !important;
    min-height: 460px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 90px 20px 80px !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25) !important;
    box-shadow: none !important;
    filter: none !important;
}

.hero-content {
    max-width: 650px !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.hero-sun-icon {
    margin-bottom: 18px !important;
    display: inline-flex !important;
    justify-content: center !important;
}

.hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 3.8rem !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    letter-spacing: -0.5px !important;
    margin: 0 !important;
    text-shadow: none !important;
    filter: none !important;
}

.hero-title .title-kraset {
    color: #C84B2B !important;
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-weight: 700 !important;
}

.hero-title .title-kurdi {
    color: #2C5E3B !important;
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-weight: 700 !important;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    font-style: italic !important;
    color: #C5941A !important;
    margin-top: 12px !important;
    letter-spacing: 0.5px !important;
    text-shadow: none !important;
    filter: none !important;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 70px 16px 60px !important;
        min-height: 380px !important;
    }
    .hero-title {
        font-size: 2.8rem !important;
    }
    .hero-subtitle {
        font-size: 1.25rem !important;
    }
    .hero-sun-icon svg {
        width: 72px !important;
        height: 72px !important;
    }
}


/* ==========================================================================
   EXACT 16-RAY ALTERNATING SUN VECTOR (#FDF1E1)
   ========================================================================== */

body {
    background-color: #FDF1E1 !important;
}

.hero-section {
    background-color: #FDF1E1 !important;
    background-image: none !important;
    background: #FDF1E1 !important;
    min-height: 460px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 90px 20px 80px !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25) !important;
    box-shadow: none !important;
    filter: none !important;
}

.hero-content {
    max-width: 650px !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.hero-sun-icon {
    margin-bottom: 18px !important;
    display: inline-flex !important;
    justify-content: center !important;
}

.hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 3.8rem !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    letter-spacing: -0.5px !important;
    margin: 0 !important;
    text-shadow: none !important;
    filter: none !important;
}

.hero-title .title-kraset {
    color: #C84B2B !important;
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-weight: 700 !important;
}

.hero-title .title-kurdi {
    color: #2C5E3B !important;
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-weight: 700 !important;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    font-style: italic !important;
    color: #C5941A !important;
    margin-top: 12px !important;
    letter-spacing: 0.5px !important;
    text-shadow: none !important;
    filter: none !important;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 70px 16px 60px !important;
        min-height: 380px !important;
    }
    .hero-title {
        font-size: 2.8rem !important;
    }
    .hero-subtitle {
        font-size: 1.25rem !important;
    }
    .hero-sun-icon svg {
        width: 72px !important;
        height: 72px !important;
    }
}


/* ==========================================================================
   WHITE PRODUCTS SECTION & MOBILE-ONLY CATEGORY MENU DRAWER
   ========================================================================== */

body {
    background-color: #FFFFFF !important;
}

.main-header {
    background-color: #FFFFFF !important;
    background: #FFFFFF !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03) !important;
}

.hero-section {
    background-color: #FDF1E1 !important;
    background-image: none !important;
    background: #FDF1E1 !important;
    min-height: 460px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 90px 20px 80px !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25) !important;
}

.products-section {
    background-color: #FFFFFF !important;
    padding-top: 80px !important;
}

.coming-soon-placeholder {
    background: #FAF8F5 !important;
    border-color: rgba(212, 175, 55, 0.25) !important;
}

.filter-tabs {
    background: #FAF8F5 !important;
    border: 1px solid rgba(212, 175, 55, 0.25) !important;
}

.main-footer {
    background-color: #FFFFFF !important;
    border-top: 1px solid rgba(212, 175, 55, 0.2) !important;
}

/* Desktop vs Mobile Menu Visibility */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }
    .nav-menu {
        display: flex !important;
        align-items: center !important;
        gap: 28px !important;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: inline-flex !important;
    }
    .nav-menu {
        display: none !important;
    }
}

/* Luxury Mobile Category Menu Drawer */
.menu-overlay {
    position: fixed !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(4px) !important;
    z-index: 1999 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.35s ease !important;
}

.menu-overlay.active {
    opacity: 1 !important;
    pointer-events: auto !important;
}

.category-menu-drawer {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 310px !important;
    max-width: 85vw !important;
    background: #FAF8F5 !important;
    color: #0C0E12 !important;
    z-index: 2000 !important;
    transform: translateX(-100%) !important;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 8px 0 30px rgba(0, 0, 0, 0.15) !important;
    display: flex !important;
    flex-direction: column !important;
    border-right: 1px solid rgba(212, 175, 55, 0.3) !important;
}

.category-menu-drawer.active {
    transform: translateX(0) !important;
}

.menu-drawer-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 22px 24px !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25) !important;
    background: #FFFFFF !important;
}

.menu-drawer-header h3 {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    color: #0C0E12 !important;
    margin: 0 !important;
}

.menu-close {
    background: none !important;
    border: none !important;
    color: #2D3748 !important;
    font-size: 1.8rem !important;
    cursor: pointer !important;
    line-height: 1 !important;
}

.menu-drawer-body {
    padding: 24px 20px !important;
    flex: 1 !important;
    overflow-y: auto !important;
}

.menu-section-title {
    font-size: 0.75rem !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    color: #C5941A !important;
    font-weight: 800 !important;
    display: block !important;
    margin-bottom: 18px !important;
}

.menu-category-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.menu-category-list li {
    margin-bottom: 12px !important;
}

.menu-cat-link {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    padding: 14px 18px !important;
    color: #2D3748 !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    border-radius: 12px !important;
    background: #FFFFFF !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03) !important;
    transition: all 0.25s ease !important;
}

.menu-cat-link:hover,
.menu-cat-link.active {
    background: rgba(212, 175, 55, 0.12) !important;
    color: #C84B2B !important;
    border-color: #C5941A !important;
    transform: translateX(4px) !important;
}

.menu-cat-link i {
    color: #C5941A !important;
    width: 20px !important;
    text-align: center !important;
}


/* ==========================================================================
   HIDE BROKEN IMAGE ICONS & NATIVE SHOPIFY FOOTER DUPLICATES
   ========================================================================== */

#shopify-section-footer,
#shopify-section-sections--footer-group,
.footer-group,
footer.footer,
.footer__content-top,
.footer__content-bottom {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
}

.brand-logo.white,
.brand-logo.white img {
    display: none !important;
}


/* ==========================================================================
   PERFECT 21-RAY KURDISH SUN (ROJ) HERO BANNER (#FDF1E1)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

body {
    background-color: #FFFFFF !important;
}

.main-header {
    background-color: #FFFFFF !important;
    background: #FFFFFF !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03) !important;
}

.hero-section {
    background-color: #FDF1E1 !important;
    background-image: none !important;
    background: #FDF1E1 !important;
    min-height: 460px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 90px 20px 80px !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25) !important;
    box-shadow: none !important;
    filter: none !important;
}

.hero-content {
    max-width: 650px !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.hero-sun-icon {
    margin-bottom: 18px !important;
    display: inline-flex !important;
    justify-content: center !important;
}

.hero-sun-icon svg {
    width: 86px !important;
    height: 86px !important;
}

.hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 3.8rem !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    letter-spacing: -0.5px !important;
    margin: 0 !important;
    text-shadow: none !important;
    filter: none !important;
}

.hero-title .title-kraset {
    color: #C84B2B !important;
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-weight: 700 !important;
}

.hero-title .title-kurdi {
    color: #2C5E3B !important;
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-weight: 700 !important;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    font-style: italic !important;
    color: #C5941A !important;
    margin-top: 12px !important;
    letter-spacing: 0.5px !important;
    text-shadow: none !important;
    filter: none !important;
}

.products-section {
    background-color: #FFFFFF !important;
    padding-top: 80px !important;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 70px 16px 60px !important;
        min-height: 380px !important;
    }
    .hero-title {
        font-size: 2.8rem !important;
    }
    .hero-subtitle {
        font-size: 1.25rem !important;
    }
    .hero-sun-icon svg {
        width: 74px !important;
        height: 74px !important;
    }
}


/* ==========================================================================
   COMPACT & SHORTER HERO BANNER (#FDF1E1)
   ========================================================================== */

.hero-section {
    background-color: #FDF1E1 !important;
    background-image: none !important;
    background: #FDF1E1 !important;
    min-height: 280px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 45px 20px 40px !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25) !important;
    box-shadow: none !important;
    filter: none !important;
}

.hero-content {
    max-width: 650px !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.hero-sun-icon {
    margin-bottom: 12px !important;
    display: inline-flex !important;
    justify-content: center !important;
}

.hero-sun-icon svg {
    width: 68px !important;
    height: 68px !important;
}

.hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 3.2rem !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    letter-spacing: -0.5px !important;
    margin: 0 !important;
    text-shadow: none !important;
    filter: none !important;
}

.hero-title .title-kraset {
    color: #C84B2B !important;
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-weight: 700 !important;
}

.hero-title .title-kurdi {
    color: #2C5E3B !important;
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-weight: 700 !important;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    font-style: italic !important;
    color: #C5941A !important;
    margin-top: 8px !important;
    letter-spacing: 0.5px !important;
    text-shadow: none !important;
    filter: none !important;
}

.products-section {
    background-color: #FFFFFF !important;
    padding-top: 50px !important;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 35px 16px 30px !important;
        min-height: 230px !important;
    }
    .hero-title {
        font-size: 2.3rem !important;
    }
    .hero-subtitle {
        font-size: 1.05rem !important;
        margin-top: 6px !important;
    }
    .hero-sun-icon svg {
        width: 58px !important;
        height: 58px !important;
        margin-bottom: 8px !important;
    }
}


/* ==========================================================================
   2/3 HEIGHT COMPACT HERO BANNER (#FDF1E1)
   ========================================================================== */

.hero-section {
    background-color: #FDF1E1 !important;
    background-image: none !important;
    background: #FDF1E1 !important;
    min-height: 220px !important;
    height: auto !important;
    max-height: 48vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 32px 20px 28px !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25) !important;
    box-shadow: none !important;
    filter: none !important;
}

.hero-content {
    max-width: 600px !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.hero-sun-icon {
    margin-bottom: 8px !important;
    display: inline-flex !important;
    justify-content: center !important;
}

.hero-sun-icon svg {
    width: 60px !important;
    height: 60px !important;
}

.hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 2.9rem !important;
    font-weight: 700 !important;
    line-height: 1.05 !important;
    letter-spacing: -0.5px !important;
    margin: 0 !important;
    text-shadow: none !important;
    filter: none !important;
}

.hero-title .title-kraset {
    color: #C84B2B !important;
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-weight: 700 !important;
}

.hero-title .title-kurdi {
    color: #2C5E3B !important;
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-weight: 700 !important;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 1.15rem !important;
    font-weight: 600 !important;
    font-style: italic !important;
    color: #C5941A !important;
    margin-top: 6px !important;
    letter-spacing: 0.5px !important;
    text-shadow: none !important;
    filter: none !important;
}

.products-section {
    background-color: #FFFFFF !important;
    padding-top: 40px !important;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 22px 16px 18px !important;
        min-height: 175px !important;
        height: auto !important;
        max-height: 42vh !important;
    }
    .hero-title {
        font-size: 2.1rem !important;
    }
    .hero-subtitle {
        font-size: 0.95rem !important;
        margin-top: 4px !important;
    }
    .hero-sun-icon {
        margin-bottom: 6px !important;
    }
    .hero-sun-icon svg {
        width: 50px !important;
        height: 50px !important;
    }
}


/* ==========================================================================
   ELEGANT 2/3 PROPORTION HERO BANNER (#FDF1E1)
   ========================================================================== */

.hero-section {
    background-color: #FDF1E1 !important;
    background-image: none !important;
    background: #FDF1E1 !important;
    min-height: 350px !important;
    height: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 58px 20px 50px !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25) !important;
    box-shadow: none !important;
    filter: none !important;
}

.hero-content {
    max-width: 650px !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.hero-sun-icon {
    margin-bottom: 14px !important;
    display: inline-flex !important;
    justify-content: center !important;
}

.hero-sun-icon svg {
    width: 74px !important;
    height: 74px !important;
}

.hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 3.4rem !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    letter-spacing: -0.5px !important;
    margin: 0 !important;
    text-shadow: none !important;
    filter: none !important;
}

.hero-title .title-kraset {
    color: #C84B2B !important;
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-weight: 700 !important;
}

.hero-title .title-kurdi {
    color: #2C5E3B !important;
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-weight: 700 !important;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    font-style: italic !important;
    color: #C5941A !important;
    margin-top: 8px !important;
    letter-spacing: 0.5px !important;
    text-shadow: none !important;
    filter: none !important;
}

.products-section {
    background-color: #FFFFFF !important;
    padding-top: 55px !important;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 48px 16px 42px !important;
        min-height: 290px !important;
        height: auto !important;
    }
    .hero-title {
        font-size: 2.5rem !important;
    }
    .hero-subtitle {
        font-size: 1.15rem !important;
        margin-top: 6px !important;
    }
    .hero-sun-icon {
        margin-bottom: 10px !important;
    }
    .hero-sun-icon svg {
        width: 64px !important;
        height: 64px !important;
    }
}


/* ==========================================================================
   SUN CLOSER TO TITLE TEXT
   ========================================================================== */

.hero-sun-icon {
    margin-bottom: 2px !important;
    display: inline-flex !important;
    justify-content: center !important;
}

.hero-sun-icon svg {
    width: 74px !important;
    height: 74px !important;
}

@media (max-width: 768px) {
    .hero-sun-icon {
        margin-bottom: 0px !important;
    }
    .hero-sun-icon svg {
        width: 64px !important;
        height: 64px !important;
    }
}


/* ==========================================================================
   SUN EVEN CLOSER (SNUG OVERLAP WITH TITLE TEXT)
   ========================================================================== */

.hero-sun-icon {
    margin-bottom: -12px !important;
    display: inline-flex !important;
    justify-content: center !important;
    z-index: 2 !important;
    position: relative !important;
}

.hero-sun-icon svg {
    width: 74px !important;
    height: 74px !important;
}

.hero-title {
    z-index: 1 !important;
    position: relative !important;
}

@media (max-width: 768px) {
    .hero-sun-icon {
        margin-bottom: -8px !important;
    }
    .hero-sun-icon svg {
        width: 64px !important;
        height: 64px !important;
    }
}
