/* Cherry Bloom Decor - Main CSS */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #faf9f7;
}

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

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

/* Navigation */
nav {
    background: rgba(139, 74, 107, 0.95);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 182, 193, 0.2);
}

nav .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

nav li {
    margin: 0;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

nav a:hover,
nav a[aria-current="page"] {
    color: #fff;
    background: rgba(255, 182, 193, 0.2);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

main {
    margin-top: 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #8B4A6B 0%, #A0566C 50%, #B8627D 100%);
    color: #fff;
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 182, 193, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.floating-petals {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floating-petals::before,
.floating-petals::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 182, 193, 0.3);
    border-radius: 50% 0 50% 0;
    animation: float 15s infinite linear;
}

.floating-petals::before {
    top: -20px;
    left: 10%;
    animation-delay: 0s;
}

.floating-petals::after {
    top: -20px;
    left: 80%;
    animation-delay: 7s;
}

@keyframes float {
    0% {
        transform: translateY(-20px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 182, 193, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 182, 193, 0.3);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    background: linear-gradient(45deg, #fff, #FFB6C1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    text-align: center;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(212, 165, 116, 0.2));
    border-radius: 20px;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #D4A574;
    color: #fff;
    box-shadow: 0 4px 20px rgba(212, 165, 116, 0.3);
}

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

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #8B4A6B;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

/* Wave Features Section */
.wave-features {
    padding: 8rem 0;
    background: #faf9f7;
    position: relative;
    overflow: hidden;
}

.wave-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,60 Q300,0 600,60 T1200,60 L1200,120 L0,120 Z" fill="%23f0ede8"/></svg>') repeat-x;
    background-size: 1200px 120px;
    opacity: 0.5;
    animation: wave 20s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-200px);
    }
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #8B4A6B;
    margin-bottom: 1rem;
}

.features-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.features-wave-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.feature-wave {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(139, 74, 107, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-wave::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.05) 0%, transparent 70%);
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.feature-wave:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(139, 74, 107, 0.15);
}

.feature-wave:hover::before {
    transform: rotate(45deg) scale(1.1);
}

.feature-wave-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D4A574, #E6B885);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: #fff;
    position: relative;
    z-index: 1;
}

.feature-wave h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #8B4A6B;
    position: relative;
    z-index: 1;
}

.feature-wave p {
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Organic Showcase Section */
.organic-showcase {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f0ede8 0%, #faf9f7 100%);
    position: relative;
    overflow: hidden;
}

.organic-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.organic-shapes::before,
.organic-shapes::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(212, 165, 116, 0.1);
    animation: organic-float 25s ease-in-out infinite;
}

.organic-shapes::before {
    width: 300px;
    height: 300px;
    top: 10%;
    right: -150px;
    animation-delay: 0s;
}

.organic-shapes::after {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: -100px;
    animation-delay: 12s;
}

@keyframes organic-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-30px) rotate(120deg);
    }
    66% {
        transform: translateY(20px) rotate(240deg);
    }
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.showcase-text h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #8B4A6B;
    margin-bottom: 1.5rem;
}

.showcase-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.showcase-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.showcase-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.showcase-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8B4A6B, #A0566C);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.showcase-feature-content h4 {
    font-size: 1.2rem;
    color: #8B4A6B;
    margin-bottom: 0.5rem;
}

.showcase-feature-content p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.showcase-visual {
    text-align: center;
    position: relative;
}

.showcase-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(139, 74, 107, 0.2);
    transform: perspective(1000px) rotateY(5deg);
    transition: transform 0.3s ease;
}

.showcase-visual:hover img {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

/* Fluid Products Section */
.fluid-products {
    padding: 8rem 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.fluid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="fluid" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:%23FFB6C1;stop-opacity:0.05"/><stop offset="100%" style="stop-color:%23FFB6C1;stop-opacity:0"/></radialGradient></defs><circle cx="200" cy="200" r="150" fill="url(%23fluid)"/><circle cx="800" cy="300" r="100" fill="url(%23fluid)"/><circle cx="300" cy="700" r="120" fill="url(%23fluid)"/></svg>') no-repeat;
    background-size: cover;
    animation: fluid-move 30s ease-in-out infinite;
}

@keyframes fluid-move {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.1) rotate(180deg);
    }
}

.fluid-products h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #8B4A6B;
    margin-bottom: 1rem;
}

.fluid-products p {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.products-fluid-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.product-card-link {
    text-decoration: none;
    color: inherit;
}

.product-fluid {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(139, 74, 107, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.product-fluid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-fluid:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(139, 74, 107, 0.2);
}

.product-fluid:hover::before {
    opacity: 1;
}

.product-fluid.featured {
    border: 2px solid #D4A574;
}

.product-fluid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-fluid:hover img {
    transform: scale(1.05);
}

.product-fluid h3 {
    font-size: 1.3rem;
    color: #8B4A6B;
    margin: 1.5rem;
    font-weight: 600;
}

.product-fluid .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #D4A574;
    margin: 0 1.5rem;
}

.product-fluid .rating {
    color: #D4A574;
    margin: 1rem 1.5rem 1.5rem;
    font-size: 0.9rem;
}

.product-fluid .rating i {
    margin-right: 2px;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #8B4A6B, #A0566C);
    color: #fff;
    padding: 8rem 0 4rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
footer {
    background: #2c2c2c;
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #FFB6C1;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FFB6C1;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
    text-align: center;
    color: #999;
}

/* Blog Styles */
.blog-content {
    padding: 4rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(139, 74, 107, 0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-card-content {
    padding: 2rem;
}

.blog-date {
    color: #D4A574;
    font-size: 0.9rem;
    font-weight: 500;
}

.blog-card h2 {
    font-size: 1.3rem;
    color: #8B4A6B;
    margin: 1rem 0;
}

.blog-card h2 a {
    color: inherit;
    text-decoration: none;
}

.blog-card h2 a:hover {
    color: #D4A574;
}

.blog-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    color: #D4A574;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more:hover {
    color: #8B4A6B;
}

/* Article Styles */
.blog-article {
    padding: 6rem 0 4rem;
}

.article-header {
    text-align: center;
    margin-bottom: 3rem;
}

.article-date {
    color: #D4A574;
    font-size: 0.9rem;
    font-weight: 500;
}

.article-header h1 {
    font-size: 3rem;
    color: #8B4A6B;
    margin: 1rem 0;
    font-weight: 700;
}

.article-excerpt {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.article-image {
    width: 100%;
    max-width: 800px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    margin: 3rem auto;
    display: block;
    box-shadow: 0 15px 40px rgba(139, 74, 107, 0.2);
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-cta {
    background: linear-gradient(135deg, #f0ede8, #faf9f7);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin: 3rem auto 0;
    max-width: 600px;
}

.article-cta p {
    font-size: 1.2rem;
    color: #8B4A6B;
    margin-bottom: 1.5rem;
}

/* Contact Styles */
.contact-content {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: #8B4A6B;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    padding: 1.5rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(139, 74, 107, 0.1);
}

.contact-method h3 {
    color: #8B4A6B;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-method p a {
    color: #D4A574;
    text-decoration: none;
    font-weight: 500;
}

.contact-method small {
    color: #999;
    font-size: 0.9rem;
}

.contact-form-section {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(139, 74, 107, 0.1);
}

.contact-form h2 {
    color: #8B4A6B;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #8B4A6B;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #f0ede8;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4A574;
}

/* Legal Content */
.legal-content {
    padding: 6rem 0 4rem;
}

.legal-content h1 {
    font-size: 3rem;
    color: #8B4A6B;
    margin-bottom: 1rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
}

.legal-text h2 {
    color: #8B4A6B;
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.legal-text p {
    margin-bottom: 1.5rem;
}

.legal-text a {
    color: #D4A574;
    text-decoration: none;
}

.legal-text a:hover {
    text-decoration: underline;
}

/* Product Page Styles */
.product-hero {
    background: linear-gradient(135deg, #8B4A6B, #A0566C);
    color: #fff;
    padding: 8rem 0 4rem;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 6rem;
}

.main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.thumbnail {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.thumbnail.active,
.thumbnail:hover {
    border-color: #D4A574;
}

.product-info h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.rating {
    margin-bottom: 1rem;
}

.stars {
    color: #D4A574;
    margin-right: 0.5rem;
}

.rating-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.price {
    margin-bottom: 2rem;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #D4A574;
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.specifications {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.specifications h3 {
    margin-bottom: 1rem;
    color: #FFB6C1;
}

.specifications ul {
    list-style: none;
}

.specifications li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.specifications strong {
    color: #FFB6C1;
}

.specifications span {
    color: rgba(255, 255, 255, 0.8);
}

.purchase-section {
    margin-top: 2rem;
}

.trust-badges {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Botanical Experience CTA */
.botanical-experience-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f7f3ef, #ffffff);
}

.experience-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    background: #fff;
    border-radius: 28px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(139, 74, 107, 0.12);
}

.experience-content h2 {
    font-size: 2.2rem;
    color: #8B4A6B;
    margin-bottom: 1rem;
    font-weight: 700;
}

.experience-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.experience-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, #8B4A6B, #A0566C);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 10px 25px rgba(139, 74, 107, 0.25);
}

.experience-features {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin: 1rem 0 1.5rem;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(139, 74, 107, 0.08);
    border: 1px solid rgba(139, 74, 107, 0.15);
    color: #8B4A6B;
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 500;
}

.experience-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.experience-visual {
    text-align: center;
}

.experience-visual img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(139, 74, 107, 0.18);
}

@media (max-width: 992px) {
    .experience-card {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
}

/* Mobile layout adjustments */
@media (max-width: 768px) {
    /* Ensure product image does not remain sticky on mobile */
    .product-gallery {
        position: static;
        top: auto;
    }
    /* Blog layout tweaks for small screens */
    .blog-content {
        padding: 2rem 0;
    }
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .blog-card img {
        height: 180px;
    }
    .blog-card-content {
        padding: 1rem;
    }
    .blog-card h2 {
        font-size: 1.1rem;
    }
}

/* Reviews Section */
.reviews {
    padding: 4rem 0;
    background: #faf9f7;
}

.reviews h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #8B4A6B;
    margin-bottom: 3rem;
}

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

.review {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(139, 74, 107, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review .stars {
    color: #D4A574;
}

.reviewer {
    font-weight: 500;
    color: #8B4A6B;
}

.review p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(139, 74, 107, 0.95);
        flex-direction: column;
        padding: 1rem 0;
        gap: 0;
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav ul li {
        text-align: center;
        padding: 0.5rem 0;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .showcase-content,
    .contact-grid,
    .product-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-wave-grid,
    .products-fluid-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .thumbnail-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .trust-badges {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-header h2,
    .showcase-text h2,
    .fluid-products h2 {
        font-size: 2rem;
    }
    
    .feature-wave,
    .contact-form-section {
        padding: 2rem 1.5rem;
    }
    
    .article-header h1 {
        font-size: 2rem;
    }
    
    .product-info h1 {
        font-size: 2rem;
    }
    
    .current-price {
        font-size: 2rem;
    }
}

/* Spotlight Product Banner */
.spotlight-banner {
    background: linear-gradient(135deg, #8B4A6B 0%, #A0566C 50%, #B8627D 100%);
    color: #fff;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.spotlight-wrap {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.spotlight-content h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.spotlight-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.spotlight-media {
    text-align: center;
}

.spotlight-media img {
    max-width: 100%;
    height: auto;
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
    transform: perspective(1000px) rotateY(-6deg);
    transition: transform 0.3s ease;
}

.spotlight-media img:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

/* Mosaic Gallery */
.mosaic-gallery {
    padding: 6rem 0;
    background: #fff;
}

.mosaic-gallery .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.mosaic-gallery .section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #8B4A6B;
    margin-bottom: 0.75rem;
}

.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    row-gap: 0.5rem;
    column-gap: 0.25rem;
}

.mosaic-grid.centered {
    justify-items: stretch;
    align-items: stretch;
}

.mosaic-item {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(139, 74, 107, 0.12);
}

.mosaic-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.mosaic-item:hover img {
    transform: scale(1.05);
}

/* Mosaic sizing pattern */
.mosaic-item.span-3x2 { grid-column: span 3; grid-row: span 2; height: 420px; }
.mosaic-item.span-2x2 { grid-column: span 2; grid-row: span 2; height: 420px; }
.mosaic-item.span-1x1 { grid-column: span 1; grid-row: span 1; height: 200px; }
.mosaic-item.span-2x1 { grid-column: span 2; grid-row: span 1; height: 200px; }
.mosaic-item.span-3x1 { grid-column: span 3; grid-row: span 1; height: 200px; }

@media (max-width: 992px) {
    .spotlight-wrap { grid-template-columns: 1fr; }
    .spotlight-content h2 { font-size: 2.2rem; }
    .mosaic-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
    .mosaic-grid { grid-template-columns: repeat(2, 1fr); }
    .mosaic-item.span-3x2,
    .mosaic-item.span-2x2,
    .mosaic-item.span-3x1 { grid-column: span 2; grid-row: span 1; height: 200px; }
}