/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --accent: #da8e90;
    --accent-dark: #c47a7c;
    --accent-light: #e8a5a7;
    --section-bg: #fbe9df;
    --section-bg-light: #fdf3ed;
    --white: #ffffff;
    --black: #1a1a1a;
    --gray-dark: #333333;
    --gray: #666666;
    --gray-light: #999999;
    --gray-lighter: #e8e8e8;
    --gold: #c49451;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Jost', 'Helvetica Neue', Arial, sans-serif;
    --container: 1300px;
    --header-height: 140px;
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--gray-dark);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Page Loading Animation */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader-logo {
    height: 60px;
    animation: loaderPulse 1.2s ease-in-out infinite;
}
.loader-bar {
    width: 120px;
    height: 2px;
    background: var(--gray-lighter);
    margin-top: 24px;
    border-radius: 2px;
    overflow: hidden;
}
.loader-bar::after {
    content: '';
    display: block;
    width: 40%;
    height: 100%;
    background: var(--accent);
    border-radius: 2px;
    animation: loaderSlide 1s ease-in-out infinite;
}
@keyframes loaderPulse {
    0%, 100% { opacity: 0.4; transform: scale(0.97); }
    50% { opacity: 1; transform: scale(1); }
}
@keyframes loaderSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(218,142,144,0.4);
    cursor: pointer;
    border: none;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(218,142,144,0.5);
}
.back-to-top svg {
    width: 20px;
    height: 20px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
}

a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 30px;
}

/* ========== TOP BAR ========== */
.top-bar {
    background: #fdf3ed;
    color: var(--gray-dark);
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
}

.top-bar-left {
    display: flex;
    gap: 24px;
    align-items: center;
}

.top-bar-left a,
.top-bar-right a {
    color: var(--gray);
    transition: color 0.3s;
    font-weight: 400;
}

.top-bar-left a:hover,
.top-bar-right a:hover { color: var(--accent); }

.top-bar-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-bar-phone {
    color: var(--accent) !important;
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* ========== HEADER ========== */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-lighter);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header .container,
.top-bar .container,
.trust-bar .container,
.section-categories .container,
.section-promos .container {
    max-width: 95%;
    padding: 0;
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

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

.logo-img {
    height: 50px;
    width: auto;
}

/* Main Nav */
.main-nav { flex: 1; display: flex; justify-content: center; }

.main-nav ul {
    display: flex;
    gap: 8px;
    align-items: center;
}

.main-nav > ul > li { position: relative; }

.main-nav > ul > li > a {
    display: block;
    padding: 8px 12px;
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray-dark);
    transition: color 0.3s;
    position: relative;
}

.main-nav > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.main-nav > ul > li:hover > a { color: var(--accent); }
.main-nav > ul > li:hover > a::after { width: 60%; }

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    min-width: 240px;
    padding: 16px 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    border-top: 2px solid var(--accent);
    border-radius: 0 0 8px 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    display: flex;
    flex-direction: column;
}

.main-nav > ul > li:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown li {
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.dropdown li:last-child {
    border-bottom: none;
}

.dropdown li a {
    display: block;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-dark);
    transition: all 0.25s;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.dropdown li a:hover {
    color: var(--accent);
    background: rgba(218, 142, 144, 0.06);
    padding-left: 34px;
}

/* Header Icons */
.header-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-icon {
    position: relative;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.header-icon:hover { background: var(--section-bg-light); }

.header-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--gray-dark);
    fill: none;
    stroke-width: 1.5;
    transition: stroke 0.3s;
}

.header-icon:hover svg { stroke: var(--accent); }

.header-icon .badge {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 16px;
    height: 16px;
    background: var(--accent);
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-slider {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide {
    min-width: 100%;
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
}

.hero-slide:nth-child(1) .hero-slide-overlay {
    background: none;
}

.hero-slide:nth-child(2) .hero-slide-overlay {
    background: none;
}

.hero-slide:nth-child(3) .hero-slide-overlay {
    background: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 0 60px;
}

.hero-slide:nth-child(1) .hero-content { color: var(--black); }
.hero-slide:nth-child(2) .hero-content { color: var(--black); }
.hero-slide:nth-child(3) .hero-content { color: var(--white); }

.hero-label {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.7;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: 0.01em;
}

.hero-title em {
    font-style: italic;
    color: var(--accent);
}

.hero-slide:nth-child(1) .hero-title em {
    color: var(--gold);
}
.hero-slide:nth-child(2) .hero-title em {
    color: var(--accent);
}
.hero-slide:nth-child(3) .hero-title em {
    color: var(--gold);
}

.hero-desc {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 36px;
    opacity: 0.8;
    max-width: 440px;
}

/* Gold Particles in Hero */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.gold-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(196,148,81,0.8), transparent);
    border-radius: 50%;
    animation: floatParticle linear infinite;
}
@keyframes floatParticle {
    0% { transform: translateY(100%) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* Hero Content Entrance Animations */
.hero-slide.active .hero-label {
    animation: heroFadeUp 0.8s 0.2s both cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-slide.active .hero-title {
    animation: heroFadeUp 0.8s 0.4s both cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-slide.active .hero-desc {
    animation: heroFadeUp 0.8s 0.6s both cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-slide.active .btn {
    animation: heroFadeUp 0.8s 0.8s both cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Shimmer Effect on Product Images */
.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    z-index: 3;
    transition: none;
}
.product-card:hover .product-image::before {
    animation: shimmer 0.8s ease forwards;
}
@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 150%; }
}

.hero-dots {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1.5px solid var(--accent);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-dot.active { background: var(--accent); transform: scale(1.15); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.35s ease;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    border: 2px solid var(--accent);
}

.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(218,142,144,0.35);
}

.btn-outline {
    background: transparent;
    color: var(--black);
    border: 1px solid #1a1a1a2b;
}

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

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}

.btn-arrow {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    transition: transform 0.3s;
}

.btn:hover .btn-arrow { transform: translateX(4px); }

/* Button Shine Effect */
.btn {
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: none;
}
.btn:hover::before {
    animation: btnShine 0.6s ease forwards;
}
@keyframes btnShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ========== SECTION STYLING ========== */
.section { padding: 90px 0; }
.section-warm { background: var(--section-bg); }
.section-warm-light { background: var(--section-bg-light); }

.section-header {
    text-align: center;
    margin-bottom: 55px;
}

.section-label {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 12px;
    letter-spacing: 0.01em;
}

.section-divider {
    width: 60px;
    height: 1.5px;
    background: var(--accent);
    margin: 18px auto 0;
    position: relative;
    overflow: hidden;
}
.section-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    animation: dividerShine 3s ease-in-out infinite;
}
@keyframes dividerShine {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}
.visible .section-divider {
    animation: dividerExpand 0.8s 0.3s both cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes dividerExpand {
    from { width: 0; }
    to { width: 60px; }
}

.section-subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto;
}

/* ========== TRUST BAR ========== */
.trust-bar {
    background: var(--section-bg);
    padding: 28px 0;
    border-bottom: 1px solid rgba(218,142,144,0.15);
}

.trust-items {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: nowrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.trust-icon {
    width: 30px;
    height: 30px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 1.3;
}

.trust-text {
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--gray-dark);
}

.trust-text span {
    display: block;
    font-size: 0.75rem;
    font-weight: 300;
    text-transform: none;
    color: var(--gray-light);
    letter-spacing: 0.02em;
    margin-top: 2px;
}

/* ========== PRODUCT GRID ========== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.product-card {
    background: var(--white);
    border-radius: 2px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #f9f5f2;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 14px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 2;
}

.badge-new {
    background: var(--accent);
    color: var(--white);
}

.badge-sale {
    background: #da8e90;
    color: var(--white);
}

.product-actions {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    z-index: 2;
}

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

.product-action-btn {
    width: 38px;
    height: 38px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.product-action-btn:hover {
    background: var(--accent);
}

.product-action-btn svg {
    width: 16px;
    height: 16px;
    stroke: var(--gray-dark);
    fill: none;
    stroke-width: 1.5;
    transition: stroke 0.3s;
}

.product-action-btn:hover svg { stroke: var(--white); }

.product-quick-add {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(218,142,144,0.92);
    color: var(--white);
    text-align: center;
    padding: 12px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transform: translateY(100%);
    transition: transform 0.35s ease;
    cursor: pointer;
    backdrop-filter: blur(4px);
}

.product-card:hover .product-quick-add {
    transform: translateY(0);
}

.product-info {
    padding: 20px 18px 24px;
    text-align: center;
}

.product-category {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 10px;
    line-height: 1.35;
    transition: color 0.3s;
}

.product-card:hover .product-name { color: var(--accent); }

.product-price {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-dark);
    letter-spacing: 0.03em;
}

.product-price .old-price {
    text-decoration: line-through;
    color: var(--gray-light);
    margin-right: 8px;
    font-weight: 300;
}

.product-price .current-price { color: var(--accent-dark); font-weight: 500; }

.section-footer {
    text-align: center;
    margin-top: 50px;
}

/* ========== CATEGORIES SECTION ========== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border-radius: 2px;
    cursor: pointer;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,26,0.7) 0%, rgba(26,26,26,0.1) 50%, transparent 100%);
    transition: background 0.4s;
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(218,142,144,0.8) 0%, rgba(218,142,144,0.15) 50%, transparent 100%);
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 24px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.category-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 4px;
    letter-spacing: 0.02em;
}

.category-count {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.8;
}

/* Category Card Lift & Glow */
.category-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    transition: border-color 0.4s ease;
    z-index: 3;
    pointer-events: none;
}
.category-card:hover::after {
    border-color: rgba(218,142,144,0.5);
}
.category-content {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.category-card:hover .category-content {
    transform: translateY(-8px);
}

/* Trust bar entrance */
.trust-item {
    opacity: 0;
    transform: translateY(20px);
}
.trust-bar.animated .trust-item {
    animation: trustFadeUp 0.6s both cubic-bezier(0.16, 1, 0.3, 1);
}
.trust-bar.animated .trust-item:nth-child(1) { animation-delay: 0s; }
.trust-bar.animated .trust-item:nth-child(2) { animation-delay: 0.1s; }
.trust-bar.animated .trust-item:nth-child(3) { animation-delay: 0.2s; }
.trust-bar.animated .trust-item:nth-child(4) { animation-delay: 0.3s; }
.trust-bar.animated .trust-item:nth-child(5) { animation-delay: 0.4s; }
.trust-bar.animated .trust-item:nth-child(6) { animation-delay: 0.5s; }
@keyframes trustFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Trust icon hover spin */
.trust-icon {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.trust-item:hover .trust-icon {
    transform: rotateY(360deg);
}

/* ========== PROMO BANNERS ========== */
.section-promos {
    padding: 0;
}

.section-promos .container {
    max-width: 100%;
    padding: 0;
}

.promo-banners {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.promo-banner {
    position: relative;
    height: 420px;
    overflow: hidden;
    border-radius: 0;
    display: flex;
    align-items: center;
}

.promo-banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.promo-banner:hover .promo-banner-bg { transform: scale(1.04); }

.promo-banner .promo-banner-content {
    position: relative;
    z-index: 2;
}
.promo-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.promo-banner-content {
    position: relative;
    z-index: 2;
    padding: 40px 48px;
}

.promo-banner:nth-child(1) .promo-banner-content { color: var(--white); }
.promo-banner:nth-child(2) .promo-banner-content { color: var(--white); }

.promo-label {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 12px;
    opacity: 0.65;
}

.promo-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* ========== NEWSLETTER ========== */
.newsletter {
    background: var(--accent);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.newsletter-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}

.newsletter-subtitle {
    font-size: 1rem;
    font-weight: 300;
    opacity: 0.6;
    margin-bottom: 36px;
}

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

.newsletter-input {
    flex: 1;
    padding: 16px 24px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.03em;
    outline: none;
    transition: border-color 0.3s;
}

.newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-input:focus { border-color: var(--accent); }

.newsletter-btn {
    padding: 16px 32px;
    background: var(--white);
    color: var(--accent);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    transition: background 0.3s, color 0.3s;
}

.newsletter-btn:hover { background: var(--black); color: var(--white); }
.newsletter-form { position: relative; }
.newsletter-success {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    color: var(--accent-light);
    font-size: 1rem;
    letter-spacing: 0.05em;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.newsletter-success.show {
    opacity: 1;
    visibility: visible;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.97);
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 20vh;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
}
.search-overlay.active {
    opacity: 1;
    visibility: visible;
}
.search-overlay-inner {
    width: 100%;
    max-width: 600px;
    padding: 0 30px;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.search-overlay.active .search-overlay-inner {
    transform: translateY(0);
}
.search-overlay-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--gray);
    text-align: center;
    margin-bottom: 30px;
}
.search-overlay-input {
    width: 100%;
    padding: 18px 0;
    border: none;
    border-bottom: 2px solid var(--gray-lighter);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 300;
    color: var(--black);
    background: transparent;
    outline: none;
    text-align: center;
    transition: border-color 0.3s;
}
.search-overlay-input:focus {
    border-color: var(--accent);
}
.search-overlay-input::placeholder {
    color: var(--gray-light);
}
.search-close {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s;
}
.search-close:hover { background: var(--section-bg); }
.search-close svg {
    width: 24px;
    height: 24px;
    stroke: var(--gray-dark);
    fill: none;
    stroke-width: 1.5;
}

/* Mobile Menu Panel */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: var(--white);
    z-index: 9998;
    padding: 80px 30px 30px;
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
}
.mobile-menu.active { right: 0; }
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}
.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s;
}
.mobile-menu-close:hover { background: var(--section-bg); }
.mobile-menu-close svg {
    width: 20px;
    height: 20px;
    stroke: var(--gray-dark);
    fill: none;
    stroke-width: 2;
}
.mobile-menu-nav li {
    border-bottom: 1px solid var(--gray-lighter);
}
.mobile-menu-nav li a {
    display: block;
    padding: 16px 0;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-dark);
    transition: color 0.3s, padding-left 0.3s;
}
.mobile-menu-nav li a:hover {
    color: var(--accent);
    padding-left: 8px;
}
.mobile-menu-item-wrap {
    display: flex;
    align-items: center;
}
.mobile-menu-item-wrap a {
    flex: 1;
}
.mobile-submenu-toggle {
    background: none;
    border: none;
    padding: 16px 0 16px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: transform 0.3s;
}
.mobile-submenu-toggle svg {
    width: 18px;
    height: 18px;
    stroke: var(--gray);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s;
}
.mobile-submenu-toggle.open svg {
    transform: rotate(180deg);
}
.mobile-submenu {
    list-style: none;
    margin: 0;
    padding: 0 0 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.mobile-submenu li {
    border-bottom: 1px solid var(--gray-lighter);
}
.mobile-submenu li:last-child {
    border-bottom: none;
}
.mobile-submenu li a {
    display: block;
    padding: 12px 0;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: none;
    color: var(--gray);
    transition: color 0.3s, padding-left 0.3s;
}
.mobile-submenu li a:hover {
    color: var(--accent);
    padding-left: 8px;
}
/* Nested submenu */
.mobile-submenu .mobile-submenu {
    padding-left: 15px;
}
.mobile-submenu .mobile-submenu li a {
    font-size: 0.85rem;
}

/* ========== INSTAGRAM SECTION ========== */
.instagram-section { padding: 80px 0 0; }

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.instagram-item {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.instagram-item:hover img { transform: scale(1.1); }

.instagram-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(218,142,144,0.5);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-item:hover::after { opacity: 1; }

/* ========== FOOTER ========== */
.footer {
    background: var(--accent);
    color: rgba(255,255,255,0.85);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo-img {
    height: 50px;
    width: auto;
    filter: invert(1) brightness(1.5) grayscale(1);
    margin-bottom: 16px;
    mix-blend-mode: color-dodge;
}

.footer-desc {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 24px;
    opacity: 0.85;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.footer-social a:hover {
    border-color: var(--accent);
    background: var(--accent);
}

.footer-social a svg {
    width: 16px;
    height: 16px;
    fill: rgba(255,255,255,0.7);
    transition: fill 0.3s;
}

.footer-social a:hover svg { fill: var(--white); }

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: 0.03em;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.85;
    color: rgba(255,255,255,0.85);
    transition: all 0.3s;
}

.footer-links a:hover { opacity: 1; color: var(--accent-light); }

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.85;
}

.footer-contact svg {
    width: 16px;
    height: 16px;
    stroke: var(--accent-light);
    fill: none;
    stroke-width: 1.5;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 1rem;
    font-weight: 300;
    opacity: 1;
}

.payment-icons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.payment-icons svg {
    height: 36px;
    width: auto;
}

/* ========== MOBILE MENU ========== */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 22px;
    height: 1.5px;
    background: var(--black);
    transition: all 0.3s;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .hero-slide { height: 480px; }
    .hero-title { font-size: 2.8rem; }
    .section { padding: 60px 0; }
    .section-title { font-size: 2.1rem; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .promo-banners { grid-template-columns: 1fr; }
    .promo-banner { height: 320px; }
    .instagram-grid { grid-template-columns: repeat(3, 1fr); }

    /* Brand story - stack on tablet */
    .brand-story-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}

@media (max-width: 768px) {
    /* Header */
    .top-bar { display: none; }
    .main-nav { display: none; }
    .mobile-toggle { display: flex; }
    .header-main { height: 60px; }
    .logo-img { height: 32px; width: auto; object-fit: contain; }
    .hero-slide .btn { display: none; }
    .hero-slide { cursor: pointer; align-items: flex-end; }
    .hero-content { padding-bottom: 60px; }
    .hero-dots { display: none; }
    .header-icon[title="Търсене"],
    .header-icon[title="Профил"],
    .header-icon[title="Любими"] { display: none; }

    /* Containers - add padding back on mobile */
    .header .container,
    .top-bar .container,
    .trust-bar .container,
    .section-categories .container {
        padding: 0 20px;
    }
    .section .container {
        padding: 0 20px;
    }
    .section-promos .container {
        padding: 0;
        max-width: 100%;
    }

    /* Hero */
    .hero-slide { height: 420px; }
    .hero-title { font-size: 2.2rem; }
    .hero-content { padding: 0 24px; }
    .hero-label { font-size: 0.75rem; }
    .hero-desc { font-size: 0.9rem; }

    /* Products */
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .product-info { padding: 14px 12px 18px; }
    .product-name { font-size: 0.9rem; }

    /* Categories */
    .categories-grid { gap: 12px; }
    .category-name { font-size: 1.1rem; }

    /* Trust bar - marquee on mobile */
    .trust-bar { padding: 12px 0; overflow: hidden; }
    .trust-bar .container { max-width: 100%; padding: 0; overflow: hidden; }
    .trust-items {
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 40px;
        animation: trustMarquee 20s linear infinite;
        width: max-content;
    }
    .trust-item { flex-shrink: 0; }

    /* Promo banners */
    .promo-banner { height: 280px; }
    .promo-banner-content { padding: 24px; }
    .promo-title { font-size: 1.6rem; }

    /* Newsletter */
    .newsletter { padding: 50px 0; }
    .newsletter-title { font-size: 1.8rem; }
    .newsletter-form { flex-direction: column; }
    .newsletter-btn { width: 100%; }

    /* Instagram */
    .instagram-grid { margin-top: 30px; margin-bottom: 30px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

    /* Marquee */
    .marquee-bar { font-size: 0.75rem; }
}

@media (max-width: 480px) {
    /* Hero */
    .hero-slide { height: 360px; }
    .hero-title { font-size: 1.6rem; }
    .hero-desc { font-size: 0.85rem; margin-bottom: 16px; }
    .hero-content { padding: 0 20px; }

    /* Sections */
    .section { padding: 40px 0; }
    .section-title { font-size: 1.5rem; }
    .section-label { font-size: 0.75rem; }

    /* Trust bar - keep marquee */
    .trust-items { gap: 30px; }

    /* Products */
    .product-grid { gap: 10px; }
    .product-info { padding: 10px 10px 14px; }
    .product-name { font-size: 0.85rem; }
    .product-price { font-size: 0.9rem; }
    .product-category { font-size: 0.7rem; }

    /* Categories */
    .categories-grid { grid-template-columns: 1fr; gap: 10px; }

    /* Promo banners */
    .promo-banner { height: 240px; }
    .promo-banner-content { padding: 20px; }
    .promo-title { font-size: 1.3rem; }
    .promo-label { font-size: 0.75rem; }

    /* Brand story */
    .brand-story-grid {
        gap: 20px !important;
    }

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

    /* Newsletter */
    .newsletter { padding: 40px 0; }
    .newsletter-title { font-size: 1.5rem; }
    .newsletter-input { padding: 14px 16px; }
    .newsletter-btn { padding: 14px 24px; }
}

/* Instagram Icon Overlay */
.instagram-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 40px;
    height: 40px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.5'%3E%3Crect x='2' y='2' width='20' height='20' rx='5'/%3E%3Ccircle cx='12' cy='12' r='5'/%3E%3Ccircle cx='17.5' cy='6.5' r='1.5' fill='white' stroke='none'/%3E%3C/svg%3E") center/contain no-repeat;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.instagram-item:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

/* Promo banner text reveal */
.promo-banner .promo-title {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.promo-banner:hover .promo-title {
    transform: translateX(6px);
}
.promo-banner .btn {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.85;
}
.promo-banner:hover .btn {
    opacity: 1;
    transform: translateY(-2px);
}

/* Brand Story Section - parallax placeholder */
.brand-story-image {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.brand-story-image:hover {
    transform: scale(1.02);
}

/* Footer link hover line */
.footer-links a {
    position: relative;
}
.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-light);
    transition: width 0.3s ease;
}
.footer-links a:hover::after {
    width: 100%;
}

/* ========== ANIMATIONS ========== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* Additional animation variants */
.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}
.fade-in-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Floating animation for decorative elements */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Elegant text reveal */
.reveal-text {
    overflow: hidden;
    display: inline-block;
}
.reveal-text span {
    display: inline-block;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.visible .reveal-text span {
    transform: translateY(0);
}
/* ========== CUSTOM CURSOR ========== */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.1s ease, opacity 0.3s ease;
    mix-blend-mode: difference;
}
.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99997;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), width 0.3s ease, height 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
    opacity: 0.5;
}
.cursor-ring.hovering {
    width: 56px;
    height: 56px;
    border-color: var(--gold);
    opacity: 0.8;
}
.cursor-dot.hovering {
    transform: scale(2.5);
    background: var(--gold);
}
@media (max-width: 768px) {
    .cursor-dot, .cursor-ring { display: none; }
}

/* ========== SCROLL PROGRESS BAR ========== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--gold), var(--accent-light));
    z-index: 10001;
    width: 0%;
    transition: none;
}

/* ========== MARQUEE BANNER ========== */
.marquee-bar {
    background: var(--black);
    color: var(--white);
    overflow: hidden;
    white-space: nowrap;
    padding: 8px 0;
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 300;
}
.marquee-track {
    display: inline-flex;
    animation: marqueeScroll 30s linear infinite;
}
.marquee-track span {
    padding: 0 40px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.marquee-track span::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    display: inline-block;
}
.marquee-cream {
    background: var(--section-bg);
    color: var(--gray-dark);
}
.marquee-cream .marquee-track span::before {
    background: var(--accent);
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes trustMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========== SPLIT TEXT ANIMATION ========== */
.split-title .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(60px) rotateX(-40deg);
    transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.split-title.visible .char {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}

/* ========== DECORATIVE SPARKLES ========== */
.sparkle-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}
.sparkle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: sparkleAnim 2s ease-in-out infinite;
}
@keyframes sparkleAnim {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

/* ========== ENHANCED PRODUCT CARD ========== */
.product-card {
    --card-glow: rgba(218,142,144,0);
    box-shadow: 0 2px 8px var(--card-glow);
    border: 1px solid #f5f5f5;
}
.product-card:hover {
    --card-glow: rgba(218,142,144,0.15);
}
.product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    transition: border-color 0.5s ease;
    pointer-events: none;
    z-index: 5;
}
.product-card:hover::after {
    border-color: var(--accent-light);
}

/* ========== GLOWING SECTION DIVIDERS ========== */
.section-divider-glow {
    width: 120px;
    height: 1px;
    margin: 20px auto 0;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    position: relative;
}
.section-divider-glow::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent), 0 0 20px rgba(218,142,144,0.3);
}

/* ========== CATEGORY CARD ENHANCED ========== */
.category-card .category-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
    margin-top: 10px;
}
.category-card:hover .category-cta {
    opacity: 1;
    transform: translateY(0);
}
.category-cta svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    transition: transform 0.3s ease;
}
.category-card:hover .category-cta svg {
    transform: translateX(4px);
}

/* ========== NEWSLETTER ENHANCED ========== */
.newsletter {
    position: relative;
    overflow: hidden;
}
.newsletter::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(218,142,144,0.08), transparent 70%);
    top: -200px;
    right: -100px;
    pointer-events: none;
    animation: float 8s ease-in-out infinite;
}
.newsletter::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196,148,81,0.06), transparent 70%);
    bottom: -150px;
    left: -50px;
    pointer-events: none;
    animation: float 6s ease-in-out infinite reverse;
}

/* ========== STAGGERED GRID ANIMATION ========== */
.product-grid .product-card:nth-child(1) { transition-delay: 0.05s; }
.product-grid .product-card:nth-child(2) { transition-delay: 0.12s; }
.product-grid .product-card:nth-child(3) { transition-delay: 0.19s; }
.product-grid .product-card:nth-child(4) { transition-delay: 0.26s; }
.product-grid .product-card:nth-child(5) { transition-delay: 0.33s; }
.product-grid .product-card:nth-child(6) { transition-delay: 0.40s; }
.product-grid .product-card:nth-child(7) { transition-delay: 0.47s; }
.product-grid .product-card:nth-child(8) { transition-delay: 0.54s; }

/* ========== FOOTER ENHANCED ========== */
.footer {
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--accent-light), var(--gold), transparent);
}
.footer-social a {
    position: relative;
    overflow: hidden;
}
.footer-social a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(196,148,81,0.3), rgba(218,142,144,0.3));
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.footer-social a:hover::before {
    transform: scale(1);
}
.footer-social a:hover {
    border-color: var(--gold);
    background: transparent;
}

/* ========== HERO ENHANCED ========== */
.hero-slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L30 60M0 30L60 30' stroke='rgba(196,148,81,0.03)' stroke-width='0.5'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* ========== SMOOTH IMAGE REVEAL ========== */
.img-reveal {
    position: relative;
    overflow: hidden;
}
.img-reveal::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--section-bg);
    transform-origin: left;
    transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}
.img-reveal.visible::after {
    transform: scaleX(0);
    transform-origin: right;
}

/* ========== RIPPLE ON CLICK ========== */
.btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    transform: scale(0);
    animation: rippleEffect 0.6s ease-out;
    pointer-events: none;
}
@keyframes rippleEffect {
    to { transform: scale(4); opacity: 0; }
}

/* ========== PROMO BANNER COUNTER ========== */
.promo-banner {
    position: relative;
}
.promo-banner::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--accent));
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 3;
}
.promo-banner:hover::before {
    width: 100%;
}

/* ========== INSTAGRAM ENHANCED ========== */
.instagram-grid {
    position: relative;
}
.instagram-item {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.instagram-item:hover {
    transform: scale(0.96);
    z-index: 2;
}

/* ========== STATIC PAGE TEMPLATE ========== */
.page-header-section {
    padding: 40px 0 36px;
    text-align: center;
    border-bottom: 1px solid var(--gray-lighter);
}
.page-header-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--black);
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.page-content-section {
    padding: 50px 0 80px;
}

.page-article {
    max-width: 860px;
    margin: 0 auto;
}

.page-featured-image {
    margin-bottom: 40px;
    border-radius: 2px;
    overflow: hidden;
}
.page-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Prose: rich-text content styling */
.entry-content.prose {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--gray);
}
.entry-content.prose h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    color: var(--black);
    margin: 48px 0 18px;
    letter-spacing: 0.01em;
}
.entry-content.prose h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--black);
    margin: 36px 0 14px;
}
.entry-content.prose h4 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--gray-dark);
    margin: 28px 0 10px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.entry-content.prose p {
    margin-bottom: 18px;
    color: var(--gray);
}
.entry-content.prose a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(218,142,144,0.4);
    transition: text-decoration-color 0.3s;
}
.entry-content.prose a:hover {
    text-decoration-color: var(--accent);
}
.entry-content.prose strong,
.entry-content.prose b {
    font-weight: 500;
    color: var(--gray-dark);
}
.entry-content.prose ul,
.entry-content.prose ol {
    margin: 0 0 22px;
    padding-left: 0;
}
.entry-content.prose ul {
    list-style: none;
}
.entry-content.prose ul li {
    padding: 6px 0 6px 22px;
    position: relative;
}
.entry-content.prose ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}
.entry-content.prose ol {
    padding-left: 20px;
}
.entry-content.prose ol li {
    padding: 6px 0;
}
.entry-content.prose ol li::marker {
    color: var(--accent);
    font-weight: 500;
}
.entry-content.prose blockquote {
    margin: 30px 0;
    padding: 20px 28px;
    border-left: 3px solid var(--accent);
    background: var(--section-bg-light);
    font-style: italic;
    color: var(--gray-dark);
    font-size: 1.05rem;
}
.entry-content.prose blockquote p:last-child {
    margin-bottom: 0;
}
.entry-content.prose img {
    max-width: 100%;
    height: auto;
    border-radius: 2px;
    margin: 10px 0;
}
.entry-content.prose img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.entry-content.prose img.alignleft {
    float: left;
    margin: 4px 24px 14px 0;
}
.entry-content.prose img.alignright {
    float: right;
    margin: 4px 0 14px 24px;
}
.entry-content.prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 0.92rem;
}
.entry-content.prose table th {
    text-align: left;
    padding: 12px 18px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gray-dark);
    background: var(--section-bg-light);
    border-bottom: 2px solid var(--gray-lighter);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.entry-content.prose table td {
    padding: 12px 18px;
    border-bottom: 1px solid var(--gray-lighter);
    color: var(--gray);
    font-weight: 300;
}
.entry-content.prose table tr:last-child td {
    border-bottom: none;
}
.entry-content.prose hr {
    border: none;
    height: 1px;
    background: var(--gray-lighter);
    margin: 40px 0;
}
.entry-content.prose .wp-block-separator {
    border: none;
    height: 1px;
    background: var(--gray-lighter);
    margin: 40px 0;
}
/* Clean up AI-generated content cruft */
.entry-content.prose [data-testid],
.entry-content.prose [data-scroll-anchor],
.entry-content.prose [data-message-author-role],
.entry-content.prose [data-message-id],
.entry-content.prose [data-message-model-slug] {
    all: unset;
    display: block;
}
.entry-content.prose .markdown {
    all: unset;
}
.entry-content.prose ._tableContainer_16hzy_1,
.entry-content.prose ._tableWrapper_16hzy_14 {
    all: unset;
    display: block;
}
/* WordPress block styles */
.entry-content.prose .has-text-align-center {
    text-align: center;
}
.entry-content.prose .has-text-align-right {
    text-align: right;
}
.entry-content.prose .wp-block-image {
    margin: 24px 0;
}
.entry-content.prose .wp-block-image figcaption {
    font-size: 0.82rem;
    color: var(--gray-light);
    text-align: center;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .page-header-title { font-size: 2rem; }
    .page-header-section { padding: 28px 0 24px; }
    .page-content-section { padding: 30px 0 50px; }
    .entry-content.prose { font-size: 0.95rem; }
    .entry-content.prose h2 { font-size: 1.6rem; margin: 32px 0 14px; }
    .entry-content.prose h3 { font-size: 1.3rem; }
    .entry-content.prose img.alignleft,
    .entry-content.prose img.alignright {
        float: none;
        display: block;
        margin: 10px auto;
    }
}
@media (max-width: 480px) {
    .page-header-title { font-size: 1.6rem; }
    .entry-content.prose table { font-size: 0.82rem; }
    .entry-content.prose table th,
    .entry-content.prose table td { padding: 8px 10px; }
}

/* ========== BLOG ARCHIVE ========== */
.blog-header {
    padding: 40px 0 36px;
    text-align: center;
    border-bottom: 1px solid var(--gray-lighter);
}
.blog-header-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--black);
    letter-spacing: 0.02em;
    margin-bottom: 6px;
}
.blog-header-desc {
    max-width: 600px;
    margin: 0 auto 10px;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.7;
}
.blog-header-desc p { margin: 0; }
.blog-header-count {
    font-size: 0.78rem;
    font-weight: 300;
    color: var(--gray-light);
    letter-spacing: 0.03em;
}

.blog-section { padding: 50px 0 80px; }

/* Category nav */
.blog-cats-nav {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--gray-lighter);
}
.blog-cat-link {
    padding: 8px 22px;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray);
    border: 1px solid var(--gray-lighter);
    transition: all 0.3s;
}
.blog-cat-link:hover {
    border-color: var(--accent-light);
    color: var(--accent);
}
.blog-cat-link.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    font-weight: 500;
}

/* Blog grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.blog-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Blog card */
.blog-card {
    background: var(--white);
    border: 1px solid #f5f5f5;
    border-radius: 2px;
    overflow: hidden;
    transition: all 0.4s ease;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.blog-card-image {
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #f9f5f2;
}
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.blog-card:hover .blog-card-image img {
    transform: scale(1.06);
}

.blog-card-body {
    padding: 24px 26px 28px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.blog-card-cat {
    color: var(--accent);
    font-weight: 500;
    transition: color 0.3s;
}
.blog-card-cat:hover { color: var(--accent-dark); }
.blog-card-date {
    color: var(--gray-light);
    font-weight: 300;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.35;
    margin-bottom: 12px;
    letter-spacing: 0.01em;
}
.blog-card-title a {
    color: var(--black);
    transition: color 0.3s;
}
.blog-card-title a:hover { color: var(--accent); }

.blog-card-excerpt {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 18px;
}

.blog-card-read {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    transition: all 0.3s;
}
.blog-card-read svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    transition: transform 0.3s;
}
.blog-card-read:hover { color: var(--accent-dark); }
.blog-card-read:hover svg { transform: translateX(4px); }

.blog-empty {
    text-align: center;
    padding: 80px 20px;
}
.blog-empty p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 24px;
}

/* ========== SINGLE POST ========== */
.post-header-section {
    padding: 40px 0 36px;
    text-align: center;
}
.post-header-inner {
    max-width: 780px;
    margin: 0 auto;
}
.post-header-cat {
    display: inline-block;
    padding: 6px 18px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid var(--accent);
    margin-bottom: 20px;
    transition: all 0.3s;
}
.post-header-cat:hover {
    background: var(--accent);
    color: var(--white);
}
.post-header-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--black);
    line-height: 1.25;
    letter-spacing: 0.01em;
    margin-bottom: 22px;
}
.post-header-meta {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.post-header-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--gray);
}
.post-header-meta svg {
    width: 15px;
    height: 15px;
    stroke: var(--gray-light);
    fill: none;
    stroke-width: 1.5;
}

/* Featured image */
.post-featured-image {
    margin-bottom: 50px;
}
.post-featured-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 2px;
    display: block;
}

/* Post content */
.post-content-section {
    padding: 0 0 40px;
}
.post-content-wrapper {
    max-width: 780px;
    margin: 0 auto;
}

/* Tags */
.post-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid var(--gray-lighter);
}
.post-tags-label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gray-dark);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.post-tag {
    padding: 5px 14px;
    font-size: 0.78rem;
    font-weight: 300;
    color: var(--gray);
    background: var(--section-bg-light);
    border-radius: 20px;
    transition: all 0.3s;
}
.post-tag:hover {
    background: var(--accent);
    color: var(--white);
}

/* Share */
.post-share {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-lighter);
}
.post-share-label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gray-dark);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.post-share-links {
    display: flex;
    gap: 8px;
}
.post-share-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-lighter);
    border-radius: 50%;
    transition: all 0.3s;
}
.post-share-link svg {
    width: 16px;
    height: 16px;
    stroke: var(--gray);
    fill: none;
    stroke-width: 1.5;
    transition: stroke 0.3s;
}
.post-share-link:hover {
    border-color: var(--accent);
    background: var(--accent);
}
.post-share-link:hover svg { stroke: var(--white); }

/* Author box */
.post-author-section {
    padding: 40px 0;
}
.post-author-box {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    gap: 24px;
    align-items: center;
    padding: 30px;
    background: var(--section-bg-light);
    border-radius: 2px;
}
.post-author-avatar img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
}
.post-author-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 4px;
}
.post-author-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--black);
    margin: 0 0 6px;
}
.post-author-bio {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* Post navigation */
.post-nav-section {
    padding: 0 0 40px;
    border-bottom: 1px solid var(--gray-lighter);
}
.post-nav {
    max-width: 780px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.post-nav-link {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px;
    border: 1px solid var(--gray-lighter);
    transition: all 0.3s;
    border-radius: 2px;
}
.post-nav-link:hover {
    border-color: var(--accent-light);
    background: var(--section-bg-light);
}
.post-nav-next { text-align: right; }
.post-nav-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
}
.post-nav-label svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}
.post-nav-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--black);
    line-height: 1.35;
}
.post-nav-link:hover .post-nav-title { color: var(--accent-dark); }

/* Related posts */
.related-posts-section {
    padding: 80px 0;
    background: var(--section-bg-light);
}

/* ========== BLOG RESPONSIVE ========== */
@media (max-width: 900px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .blog-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .post-header-title { font-size: 2.2rem; }
    .post-nav { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .blog-header-title { font-size: 2rem; }
    .blog-section { padding: 30px 0 50px; }
    .blog-card-body { padding: 18px 20px 22px; }
    .blog-card-title { font-size: 1.15rem; }
    .post-header-section { padding: 28px 0; }
    .post-header-title { font-size: 1.8rem; }
    .post-header-meta { gap: 16px; }
    .post-featured-image { margin-bottom: 30px; }
    .post-author-box { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
    .blog-grid { grid-template-columns: 1fr; gap: 24px; }
    .blog-grid-3 { grid-template-columns: 1fr; }
    .blog-cats-nav { gap: 4px; }
    .blog-cat-link { padding: 6px 14px; font-size: 0.72rem; }
}
@media (max-width: 480px) {
    .blog-header-title { font-size: 1.6rem; }
    .post-header-title { font-size: 1.5rem; }
    .post-share { flex-direction: column; align-items: flex-start; }
}
