/*
Theme Name: Noona Western Wear
Theme URI: http://localhost/noona
Author: Noona Team
Author URI: http://localhost/noona
Description: A beautiful, elegant theme for Noona Western Wear - Ladies fashion boutique in Kochi
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: noona-theme
Tags: fashion, retail, boutique, elegant
*/

/* ===================================
   CSS RESET & BASE STYLES
   =================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Cormorant+Garamond:wght@300;400;500;600&family=Montserrat:wght@300;400;500;600&display=swap');

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

:root {
    --primary-color: #8B6F47;
    --secondary-color: #D4A574;
    --accent-color: #E8C4A0;
    --text-dark: #2C2C2C;
    --text-light: #666;
    --white: #FFFFFF;
    --cream: #FAF7F5;
    --rose-gold: #B76E79;
    --soft-pink: #F5E6E8;
}

body {
    font-family: 'Cormorant Garamond', 'Georgia', 'Garamond', serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 400;
    letter-spacing: 2px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   SCROLL ANIMATIONS - BOTTOM TO TOP
   =================================== */
.scroll-animate-up {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate-up.animate-in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* ===================================
   HEADER
   =================================== */
.site-header {
    background: linear-gradient(to bottom, var(--white) 0%, var(--cream) 100%);
    padding: 5px 0;
    box-shadow: 0 2px 20px rgba(139, 111, 71, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--accent-color);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Logo Sizing */
.site-logo {
    max-width: 120px;
    height: auto;
}

.custom-logo-link {
    display: block;
    line-height: 0;
}

.custom-logo {
    width: 120px;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.custom-logo:hover {
    transform: scale(1.05);
}

/* Site Title & Description */
.site-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 600;
    letter-spacing: 3px;
    line-height: 1.2;
}

.site-title a {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--rose-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.site-title a:hover {
    letter-spacing: 4px;
}

.site-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    color: var(--text-light);
    letter-spacing: 4px;
    margin-top: 5px;
    text-transform: uppercase;
    font-weight: 300;
}

/* Navigation */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 40px;
    align-items: center;
}

.main-navigation a {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    font-size: 0.9rem;
    letter-spacing: 2px;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    transition: all 0.3s ease;
}

.main-navigation a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--rose-gold) 100%);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.main-navigation a:hover {
    color: var(--primary-color);
}

.main-navigation a:hover::before {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ===================================
   BANNER SECTION
   =================================== */
.banner-section {
    position: relative;
    height: 700px;
    overflow: hidden;
}

.banner-slider {
    position: relative;
    height: 100%;
    width: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.banner-slide.active {
    opacity: 1;
    z-index: 2;
}

.banner-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(40, 30, 25, 0.75) 0%, rgba(60, 40, 35, 0.7) 50%, rgba(80, 50, 45, 0.65) 100%);
    z-index: 1;
}

.banner-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    max-width: 700px;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.banner-slide.active .banner-content {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.banner-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 3px;
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.3);
}

.banner-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 30px;
    font-style: italic;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.banner-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.btn {
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    padding: 16px 45px;
    background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
    color: var(--primary-color);
    border: 2px solid var(--white);
    border-radius: 30px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Slider Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 15px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: var(--white);
    transform: scale(1.3);
}

.slider-dot:hover {
    background-color: var(--accent-color);
}

/* Slider Arrow Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.slider-nav:hover {
    background-color: rgba(255, 255, 255, 0.4);
    border-color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 30px;
}

.slider-nav.next {
    right: 30px;
}

.banner-decoration {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 196, 160, 0.2) 0%, transparent 70%);
    opacity: 0.5;
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about-section {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #FFF5F7 0%, 
        #FFE8EC 25%, 
        #FFF0E6 50%, 
        #FFF8F0 75%, 
        #FFFAF5 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatShape 20s ease-in-out infinite;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(183, 110, 121, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatShape 15s ease-in-out infinite reverse;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(50px, 50px) scale(1.1);
    }
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--rose-gold) 100%);
    border-radius: 2px;
}

.section-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--text-light);
    font-style: italic;
    letter-spacing: 1px;
    font-weight: 400;
    margin-top: 20px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.0rem;
    line-height: 2.1;
    color: var(--text-light);
}

.about-text p {
    margin-bottom: 28px;
}

.about-highlight {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.3rem;
    position: relative;
    display: inline-block;
    padding-bottom: 2px;
}

.about-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, transparent 100%);
}

.about-image-wrapper {
    position: relative;
    height: 500px;
    perspective: 1000px;
}

/* Creative Image Display - Magazine Style */
.about-image {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    padding: 0;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 0 20px 0;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.2),
        0 0 0 15px rgba(255, 255, 255, 0.9),
        0 0 0 16px var(--secondary-color);
    position: relative;
    z-index: 5;
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
}

/* Polaroid Style Overlay */
.about-image::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -30px;
    width: 80%;
    height: 90%;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 1;
    transform: rotate(8deg);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -40px;
    width: 75%;
    height: 85%;
    background: var(--soft-pink);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1;
    transform: rotate(-5deg);
}

/* Enhanced Floating Background Elements */
.floating-bg-element {
    position: absolute;
    pointer-events: none;
    z-index: 2;
}

/* Sparkles and Stars */
.sparkle {
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
    border-radius: 50%;
    animation: twinkle 3s ease-in-out infinite;
}

.sparkle-1 { top: 10%; left: 5%; animation-delay: 0s; }
.sparkle-2 { top: 25%; right: 8%; animation-delay: 1s; }
.sparkle-3 { bottom: 20%; left: 10%; animation-delay: 2s; }
.sparkle-4 { top: 60%; right: 15%; animation-delay: 1.5s; }
.sparkle-5 { bottom: 35%; right: 5%; animation-delay: 0.5s; }

@keyframes twinkle {
    0%, 100% { 
        opacity: 0.3; 
        transform: scale(1);
    }
    50% { 
        opacity: 1; 
        transform: scale(1.5);
    }
}

/* Fashion Icons with Glow */
.fashion-float-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.15),
        0 0 20px rgba(183, 110, 121, 0.3);
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    backdrop-filter: blur(10px);
}

.icon-dress {
    top: 8%;
    left: 8%;
    animation: floatDiagonal 8s ease-in-out infinite;
}

.icon-bag {
    top: 45%;
    right: 5%;
    animation: floatBounce 6s ease-in-out infinite;
}

.icon-jewelry {
    bottom: 12%;
    left: 12%;
    animation: floatSpin 10s ease-in-out infinite;
}

.icon-sparkle {
    top: 28%;
    right: 20%;
    animation: floatPulse 5s ease-in-out infinite;
}

.icon-shoe {
    bottom: 30%;
    right: 10%;
    animation: floatWave 7s ease-in-out infinite;
}

.icon-crown {
    top: 70%;
    left: 45%;
    animation: floatRotate 9s ease-in-out infinite;
}

/* Decorative Shapes */
.deco-shape {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.shape-1 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(232, 196, 160, 0.2) 0%, rgba(183, 110, 121, 0.2) 100%);
    top: 5%;
    right: 10%;
    animation: morphShape 12s ease-in-out infinite;
}

.shape-2 {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(245, 230, 232, 0.3) 0%, rgba(232, 196, 160, 0.2) 100%);
    bottom: 5%;
    left: 5%;
    animation: morphShape 15s ease-in-out infinite reverse;
}

.shape-3 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(183, 110, 121, 0.15) 0%, rgba(212, 165, 116, 0.15) 100%);
    top: 40%;
    left: 5%;
    animation: morphShape 10s ease-in-out infinite;
}

/* Geometric Lines */
.geo-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--secondary-color) 50%, transparent 100%);
    opacity: 0.3;
    animation: lineSlide 8s ease-in-out infinite;
}

.line-1 {
    width: 200px;
    top: 15%;
    right: 0;
    animation-delay: 0s;
}

.line-2 {
    width: 180px;
    bottom: 25%;
    left: 0;
    animation-delay: 2s;
}

.line-3 {
    width: 150px;
    top: 55%;
    right: 0;
    animation-delay: 4s;
}

/* Floating Leaves/Petals - Enhanced */
.petal {
    position: absolute;
    width: 25px;
    height: 25px;
    background: var(--rose-gold);
    border-radius: 0 100% 0 100%;
    opacity: 0.6;
    animation: petalFall linear infinite;
    box-shadow: 0 2px 8px rgba(183, 110, 121, 0.3);
}

.petal-1 { 
    top: -30px; 
    left: 10%; 
    animation-duration: 12s;
    animation-delay: 0s; 
}

.petal-2 { 
    top: -30px; 
    left: 30%; 
    animation-duration: 14s;
    animation-delay: 3s; 
    background: var(--secondary-color);
}

.petal-3 { 
    top: -30px; 
    left: 50%; 
    animation-duration: 16s;
    animation-delay: 6s; 
}

.petal-4 { 
    top: -30px; 
    left: 70%; 
    animation-duration: 13s;
    animation-delay: 2s; 
    background: var(--accent-color);
}

.petal-5 { 
    top: -30px; 
    left: 85%; 
    animation-duration: 15s;
    animation-delay: 8s; 
    background: var(--soft-pink);
}

.petal-6 { 
    top: -30px; 
    left: 20%; 
    animation-duration: 17s;
    animation-delay: 5s;
    width: 20px;
    height: 20px;
}

.petal-7 { 
    top: -30px; 
    left: 60%; 
    animation-duration: 14s;
    animation-delay: 9s;
    width: 22px;
    height: 22px;
    background: var(--rose-gold);
}

.petal-8 { 
    top: -30px; 
    left: 40%; 
    animation-duration: 16s;
    animation-delay: 4s;
    background: var(--secondary-color);
}

.petal-9 { 
    top: -30px; 
    left: 80%; 
    animation-duration: 13s;
    animation-delay: 7s;
    width: 23px;
    height: 23px;
}

.petal-10 { 
    top: -30px; 
    left: 15%; 
    animation-duration: 15s;
    animation-delay: 10s;
    background: var(--accent-color);
}

/* Animation Keyframes */
@keyframes floatDiagonal {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, -30px) rotate(15deg); }
}

@keyframes floatBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-40px); }
}

@keyframes floatSpin {
    0%, 100% { transform: rotate(0deg) translateY(0); }
    50% { transform: rotate(180deg) translateY(-25px); }
}

@keyframes floatPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.3); opacity: 1; }
}

@keyframes floatWave {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-20px) translateY(-15px); }
    75% { transform: translateX(20px) translateY(-15px); }
}

@keyframes floatRotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(360deg) scale(1.2); }
}

@keyframes morphShape {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: rotate(0deg) scale(1);
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
        transform: rotate(90deg) scale(1.1);
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
        transform: rotate(180deg) scale(0.9);
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
        transform: rotate(270deg) scale(1.05);
    }
}

@keyframes lineSlide {
    0%, 100% { transform: translateX(-100%); opacity: 0; }
    50% { transform: translateX(100%); opacity: 0.5; }
}

@keyframes petalFall {
    0% {
        transform: translateY(0) rotate(0deg) translateX(0);
        opacity: 0;
    }
    5% {
        opacity: 0.6;
    }
    95% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(550px) rotate(360deg) translateX(30px);
        opacity: 0;
    }
}

.about-image:hover {
    transform: scale(1.02);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid var(--secondary-color);
    transform: translate(-20px, -20px);
    z-index: -1;
    transition: all 0.3s ease;
}

.about-image:hover::before {
    transform: translate(-25px, -25px);
    border-color: var(--rose-gold);
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 60%;
    background: linear-gradient(135deg, transparent 0%, var(--accent-color) 100%);
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.about-image:hover img {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Decorative Elements */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(139, 111, 71, 0.1);
    transition: all 0.6s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 111, 71, 0.15);
    background: rgba(255, 255, 255, 0.9);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
}

/* ===================================
   COLLECTION SECTION
   =================================== */
.collection-section {
    padding: 100px 0;
    background-color: var(--white);
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

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

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

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

.collection-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 30px 20px;
    color: var(--white);
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.collection-item:hover .collection-overlay {
    transform: translateY(0);
    opacity: 1;
}

.collection-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: 1px;
}

.collection-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 300;
}

/* ===================================
   FEATURES SECTION
   =================================== */
.features-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #2C1810 0%, #4A2C1F 50%, #5D3A29 100%);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(232, 196, 160, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(183, 110, 121, 0.1) 0%, transparent 50%);
    opacity: 0.6;
}

.features-section .section-title {
    color: var(--accent-color);
}

.features-section .section-subtitle {
    color: rgba(232, 196, 160, 0.8);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-top: 70px;
    position: relative;
    z-index: 2;
}

.feature-item {
    text-align: center;
    padding: 50px 35px;
    background: linear-gradient(135deg, rgba(232, 196, 160, 0.15) 0%, rgba(212, 165, 116, 0.1) 100%);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 2px solid rgba(232, 196, 160, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(232, 196, 160, 0.2) 0%, transparent 70%);
    transition: all 0.5s ease;
    opacity: 0;
}

.feature-item:hover::before {
    opacity: 1;
    animation: rotateGradient 4s linear infinite;
}

.feature-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(183, 110, 121, 0.1) 0%, rgba(232, 196, 160, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.feature-item:hover {
    transform: translateY(-20px) scale(1.03);
    border-color: var(--secondary-color);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(232, 196, 160, 0.3);
}

.feature-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 35px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--rose-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--white);
    border: 3px solid rgba(255, 255, 255, 0.3);
    position: relative;
    transition: all 0.5s ease;
    box-shadow: 
        0 10px 30px rgba(212, 165, 116, 0.4),
        inset 0 -5px 15px rgba(0, 0, 0, 0.2);
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    opacity: 0.5;
    animation: pulse 2.5s ease-in-out infinite;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 30%;
    height: 30%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    filter: blur(8px);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--secondary-color) 100%);
    box-shadow: 
        0 15px 40px rgba(212, 165, 116, 0.6),
        inset 0 -5px 15px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(232, 196, 160, 0.5);
}

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.feature-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    font-weight: 300;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

/* ===================================
   INSTAGRAM SECTION
   =================================== */
.instagram-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFE8EC 25%, #FFF5F7 50%, #FFE8EC 75%, #FFF8F0 100%);
    position: relative;
    overflow: hidden;
}

.instagram-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 20%, rgba(232, 196, 160, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(183, 110, 121, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.instagram-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.instagram-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(45deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(221, 42, 123, 0.3);
    animation: float 3s ease-in-out infinite;
    position: relative;
}

.instagram-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    border-radius: 27px;
    opacity: 0.3;
    filter: blur(10px);
    z-index: -1;
    animation: pulse 2s ease-in-out infinite;
}

.instagram-icon-wrapper svg {
    color: white;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.instagram-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.instagram-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: var(--rose-gold);
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 1px;
}

.instagram-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: rgba(93, 58, 41, 0.8);
    max-width: 600px;
    margin: 0 auto 35px;
    line-height: 1.8;
    font-weight: 300;
}

.instagram-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: linear-gradient(45deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(221, 42, 123, 0.3);
    position: relative;
    overflow: hidden;
}

.instagram-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.instagram-button:hover::before {
    left: 100%;
}

.instagram-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(221, 42, 123, 0.4);
}

.instagram-button svg {
    flex-shrink: 0;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

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

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 133, 41, 0.9) 0%, rgba(221, 42, 123, 0.9) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.instagram-overlay svg {
    color: white;
}

.instagram-overlay span {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
}

/* ===================================
   MAP SECTION
   =================================== */
.map-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(213, 165, 116, 0.05) 0%, rgba(183, 110, 121, 0.08) 100%);
    position: relative;
    overflow: hidden;
}

.map-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(183, 110, 121, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.map-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(213, 165, 116, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s infinite ease-in-out reverse;
}

.map-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.location-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #B76E79, #D4A574);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(183, 110, 121, 0.3);
    animation: pulse 2s infinite;
}

.location-icon svg {
    width: 30px;
    height: 30px;
}

.map-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.map-address {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: white;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
    filter: grayscale(10%);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%);
}

.map-overlay-info {
    position: absolute;
    top: 30px;
    left: 30px;
    background: white;
    padding: 30px 35px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    max-width: 350px;
    z-index: 10;
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-overlay-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.map-overlay-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.map-overlay-info p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.directions-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #B76E79, #D4A574);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(183, 110, 121, 0.3);
}

.directions-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(183, 110, 121, 0.4);
    color: white;
}

.directions-button svg {
    width: 18px;
    height: 18px;
}
/* ===================================
   FOOTER
   =================================== */
.site-footer {
    background: linear-gradient(135deg, #3D2817 0%, #5D3A29 50%, #4A2C1F 100%);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(232, 196, 160, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(183, 110, 121, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 15px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color) 0%, transparent 100%);
}

.footer-section p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.85);
    font-weight: 300;
    margin-bottom: 15px;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

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

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.footer-links li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-links li:hover::before {
    left: 5px;
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(232, 196, 160, 0.15) 0%, rgba(212, 165, 116, 0.1) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(232, 196, 160, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--rose-gold) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 50%;
}

.social-links a svg {
    position: relative;
    z-index: 2;
    color: var(--accent-color);
    transition: all 0.4s ease;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: var(--accent-color);
    box-shadow: 0 10px 25px rgba(232, 196, 160, 0.3);
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links a:hover svg {
    color: var(--white);
    transform: scale(1.1);
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-info svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--accent-color);
}

.contact-info span {
    flex: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 35px;
    border-top: 1px solid rgba(232, 196, 160, 0.2);
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 1.5px;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    margin: 0;
}

/* ===================================
   FLOATING WHATSAPP BUTTON
   =================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FF6B9D 0%, #E91E63 50%, #C2185B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.4);
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: floatWhatsapp 3s ease-in-out infinite;
    cursor: pointer;
}

.floating-whatsapp::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #FF6B9D, #E91E63, #C2185B);
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(15px);
    z-index: -1;
    animation: pulse 2s ease-in-out infinite;
}

.floating-whatsapp svg {
    color: white;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.5);
}

.floating-whatsapp:hover svg {
    transform: scale(1.1) rotate(10deg);
}

.whatsapp-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid #FF6B9D;
    border-radius: 50%;
    animation: whatsappPulse 2s ease-out infinite;
}

@keyframes floatWhatsapp {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ===================================
   PAGE TEMPLATES
   =================================== */
.page-header {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFE8EC 100%);
    text-align: center;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 600;
}

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

.page-entry-content {
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
}

.page-entry-content h1,
.page-entry-content h2,
.page-entry-content h3,
.page-entry-content h4,
.page-entry-content h5,
.page-entry-content h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-entry-content p {
    margin-bottom: 20px;
}

.page-entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px 0;
}

/* ===================================
   BLOG ARCHIVE / LISTING
   =================================== */
.blog-section {
    padding: 80px 0;
    background: var(--soft-pink);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-category {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
}

.blog-card-category a {
    display: inline-block;
    padding: 8px 20px;
    background: var(--secondary-color);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    font-weight: 500;
}

.blog-card-content {
    padding: 30px;
}

.blog-card-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: rgba(93, 58, 41, 0.7);
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--rose-gold);
}

.blog-card-excerpt {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.blog-card-link:hover {
    color: var(--rose-gold);
    gap: 12px;
}

/* ===================================
   SINGLE POST / BLOG DETAIL
   =================================== */
.single-post-featured {
    height: 500px;
    overflow: hidden;
}

.single-post-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-post-header {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFE8EC 100%);
}

.post-categories {
    margin-bottom: 20px;
}

.post-category {
    display: inline-block;
    padding: 8px 20px;
    background: var(--secondary-color);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    font-weight: 500;
    margin-right: 10px;
}

.single-post-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 600;
}

.single-post-meta {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: rgba(93, 58, 41, 0.8);
}

.single-post-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.single-post-content {
    padding: 80px 0;
}

.post-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.post-entry-content {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 50px;
}

.post-entry-content h1,
.post-entry-content h2,
.post-entry-content h3,
.post-entry-content h4,
.post-entry-content h5,
.post-entry-content h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-top: 50px;
    margin-bottom: 25px;
    font-weight: 600;
}

.post-entry-content h2 {
    font-size: 2.2rem;
}

.post-entry-content h3 {
    font-size: 1.8rem;
}

.post-entry-content p {
    margin-bottom: 25px;
}

.post-entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.post-entry-content blockquote {
    border-left: 4px solid var(--secondary-color);
    padding: 25px 30px;
    margin: 40px 0;
    background: var(--soft-pink);
    border-radius: 10px;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.post-tags {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    padding: 30px 0;
    border-top: 1px solid rgba(139, 111, 71, 0.2);
    border-bottom: 1px solid rgba(139, 111, 71, 0.2);
    margin-bottom: 50px;
}

.post-tags a {
    padding: 8px 18px;
    background: var(--soft-pink);
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.post-tags a:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.post-navigation a {
    display: block;
    padding: 25px;
    background: var(--soft-pink);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.post-navigation a:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.post-navigation .nav-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 500;
}

.post-navigation a:hover .nav-label {
    color: var(--white);
}

.post-navigation .nav-title {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    line-height: 1.4;
}

.post-navigation a:hover .nav-title {
    color: var(--white);
}

.post-navigation .nav-next {
    text-align: right;
}

.author-bio {
    display: flex;
    gap: 25px;
    padding: 40px;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFE8EC 100%);
    border-radius: 15px;
    margin-bottom: 50px;
}

.author-avatar {
    flex-shrink: 0;
}

.author-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.author-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.author-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
}

/* ===================================
   SEARCH RESULTS & 404
   =================================== */
.search-section,
.error-section {
    padding: 80px 0;
}

.search-count {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: 500;
}

.search-results-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
}

.search-result-item {
    display: flex;
    gap: 30px;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.search-result-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.search-result-image {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.result-type {
    display: inline-block;
    padding: 5px 15px;
    background: var(--secondary-color);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 15px;
    margin-bottom: 10px;
}

.search-result-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.search-result-title a {
    color: var(--primary-color);
}

.search-result-title a:hover {
    color: var(--rose-gold);
}

.search-result-meta {
    display: flex;
    gap: 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: rgba(93, 58, 41, 0.7);
    margin-bottom: 15px;
}

.search-result-excerpt {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.read-more-link {
    color: var(--secondary-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.read-more-link:hover {
    color: var(--rose-gold);
}

.no-results,
.no-posts {
    text-align: center;
    padding: 80px 20px;
}

.no-results h2,
.no-posts h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.no-results p,
.no-posts p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 40px;
}

/* 404 Error Page */
.error-content {
    text-align: center;
    padding: 60px 20px;
}

.error-number {
    font-family: 'Playfair Display', serif;
    font-size: 12rem;
    font-weight: 700;
    color: var(--secondary-color);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 20px;
}

.error-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.error-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: var(--text-dark);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.error-actions {
    margin-bottom: 60px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--rose-gold) 100%);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.4);
}

.search-form-wrapper {
    max-width: 600px;
    margin: 0 auto 60px;
}

.helpful-links {
    max-width: 400px;
    margin: 0 auto;
}

.helpful-links h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.helpful-links a {
    color: var(--secondary-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.helpful-links a:hover {
    color: var(--rose-gold);
    padding-left: 10px;
}

/* Pagination */
.pagination {
    text-align: center;
    margin-top: 60px;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pagination a,
.pagination .current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    background: var(--white);
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.pagination a:hover,
.pagination .current {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 968px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .site-branding {
        text-align: left;
    }
    
    .custom-logo {
        width: 100px;
        max-height: 70px;
    }
    
    .site-title {
        font-size: 1.5rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(135deg, #FFF8F0 0%, #FFE8EC 100%);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
        padding: 80px 30px 30px;
        transition: right 0.4s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .main-navigation.active {
        right: 0;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .main-navigation li {
        width: 100%;
        border-bottom: 1px solid rgba(139, 111, 71, 0.1);
    }

    .main-navigation a {
        display: block;
        padding: 18px 15px;
        font-size: 1rem;
        color: var(--primary-color);
        text-align: left;
    }

    .main-navigation a::before {
        display: none;
    }

    .main-navigation a:hover {
        background: rgba(232, 196, 160, 0.2);
        padding-left: 25px;
    }
    
    .banner-section {
        height: 600px;
    }
    
    .banner-title {
        font-size: 3.5rem;
    }
    
    .banner-subtitle {
        font-size: 1.5rem;
    }
    
    .slider-nav {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .slider-nav.prev {
        left: 15px;
    }
    
    .slider-nav.next {
        right: 15px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .about-image-wrapper {
        height: 450px;
    }
    
    .fashion-float-icon {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
    
    .deco-shape {
        transform: scale(0.8);
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .custom-logo {
        width: 80px;
        max-height: 60px;
    }
    
    .site-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    .site-description {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }
    
    .banner-section {
        height: 500px;
    }
    
    .banner-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .banner-subtitle {
        font-size: 1.3rem;
    }
    
    .banner-text {
        font-size: 0.95rem;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-nav.prev {
        left: 10px;
    }
    
    .slider-nav.next {
        right: 10px;
    }
    
    .slider-dots {
        bottom: 25px;
        gap: 10px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .about-section {
        padding: 80px 0;
    }
    
    .about-text {
        font-size: 1.05rem;
    }
    
    .about-highlight {
        font-size: 1.15rem;
    }
    
    .about-image-wrapper {
        height: 400px;
    }
    
    .fashion-float-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .deco-shape {
        transform: scale(0.6);
    }
    
    .sparkle {
        width: 20px;
        height: 20px;
    }
    
    .about-image img {
        box-shadow: 
            0 15px 40px rgba(0, 0, 0, 0.2),
            0 0 0 10px rgba(255, 255, 255, 0.9),
            0 0 0 11px var(--secondary-color);
    }
    
    .about-image::after,
    .about-image::before {
        display: none;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .collection-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 10px;
    }

    /* Blog & Template Responsive */
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .single-post-title {
        font-size: 2.5rem;
    }

    .post-navigation {
        grid-template-columns: 1fr;
    }

    .author-bio {
        flex-direction: column;
        text-align: center;
    }

    .search-result-item {
        flex-direction: column;
    }

    .search-result-image {
        width: 100%;
        height: 250px;
    }

    .error-number {
        font-size: 8rem;
    }

    .error-title {
        font-size: 2rem;
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
.map-header h2 {
        font-size: 2rem;
    }

    .map-address {
        font-size: 1rem;
        padding: 0 20px;
    }

    .map-container {
        margin: 0 20px;
    }

    .map-container iframe {
        height: 350px;
    }

    .map-overlay-info {
        position: static;
        margin: 20px;
        max-width: 100%;
    }

    .map-overlay-info h3 {
        font-size: 1.5rem;
    }

    .map-overlay-info p {
        font-size: 0.95rem;
    }

    .directions-button {
        width: 100%;
        justify-content: center;
    }

    .floating-whatsapp {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }

    .floating-whatsapp svg {
        width: 28px;
        height: 28px;
    }
}
