/* GoldGlossy Beauty Website - Main Styles */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2a1810;
    background: linear-gradient(135deg, #faf7f4, #f5f0eb);
    overflow-x: hidden;
}

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

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

/* Navigation */
nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

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

nav .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.8rem;
    font-weight: bold;
    color: #d4536b;
}

/* Ensure image logo has a consistent size in the navigation */
nav .logo img {
    height: 50px;
    width: auto;
    display: block;
}

nav .logo-icon {
    font-size: 2rem;
    background: linear-gradient(45deg, #d4536b, #e67284);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(212, 83, 107, 0.3));
}

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

nav li {
    margin: 0;
}

nav a {
    text-decoration: none;
    color: #2a1810;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    position: relative;
}

nav a:hover,
nav a[aria-current="page"] {
    color: #d4536b;
    background: rgba(212, 83, 107, 0.1);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #d4536b;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

main {
    margin-top: 0;
}

/* Hero Section */
.hero {
    background: radial-gradient(ellipse at top, rgba(212, 83, 107, 0.15), transparent 70%), 
                linear-gradient(135deg, #faf7f4, #f5f0eb);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(212,83,107,0.1)"/></svg>') repeat;
    animation: float 20s infinite linear;
    opacity: 0.3;
}

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

.hero-content {
    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, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #d4536b;
    margin-bottom: 2rem;
    border: 1px solid rgba(212, 83, 107, 0.2);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(45deg, #2a1810, #d4536b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.6;
    color: #2a1810;
}

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

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-card {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(212, 83, 107, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.floating-card img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
}

.card-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, rgba(212, 83, 107, 0.3), rgba(230, 114, 132, 0.3));
    border-radius: 40px;
    z-index: -1;
    filter: blur(20px);
    animation: glow 4s ease-in-out infinite alternate;
}

@keyframes glow {
    0% { opacity: 0.5; }
    100% { opacity: 0.8; }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.element {
    position: absolute;
    font-size: 2rem;
    color: #d4536b;
    opacity: 0.6;
    animation: floatElement 8s ease-in-out infinite;
}

.element-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 20%;
    right: 10%;
    animation-delay: 2s;
}

.element-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes floatElement {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    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.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, #d4536b, #e67284);
    color: #fff;
    box-shadow: 0 8px 25px rgba(212, 83, 107, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 83, 107, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #d4536b;
    border: 2px solid rgba(212, 83, 107, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(212, 83, 107, 0.1);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #d4536b;
    border: 2px solid #d4536b;
}

.btn-outline:hover {
    background: #d4536b;
    color: #fff;
}

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

/* Features Wave Section */
.features-wave {
    padding: 6rem 0;
    position: relative;
    background: rgba(212, 83, 107, 0.05);
}

.wave-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.wave-container svg {
    width: 100%;
    height: 100%;
}

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

.features-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #2a1810, #d4536b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-header p {
    font-size: 1.2rem;
    color: #666;
}

.features-organic {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-blob {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(212, 83, 107, 0.1);
    transition: all 0.3s ease;
}

.feature-blob:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(212, 83, 107, 0.2);
}

.feature-blob::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #d4536b, #e67284, #d4536b);
    border-radius: 52px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-blob:hover::before {
    opacity: 0.3;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #d4536b;
    background: linear-gradient(45deg, #d4536b, #e67284);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-blob h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2a1810;
}

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

/* Showcase Curved Section */
.showcase-curved {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(245, 240, 235, 0.9));
}

.curved-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.curved-bg svg {
    width: 100%;
    height: 100%;
}

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

.showcase-gallery {
    position: relative;
}

.gallery-main {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(212, 83, 107, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.gallery-main img {
    width: 100%;
    border-radius: 20px;
}

.gallery-thumbs {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

.thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.thumb:hover,
.thumb.active {
    border-color: #d4536b;
    transform: scale(1.1);
}

.showcase-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2a1810;
}

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

.showcase-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.mini-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #d4536b;
    font-weight: 500;
}

.mini-feature i {
    font-size: 1.2rem;
}

/* Shades Hexagon Section */
.shades-hexagon {
    padding: 6rem 0;
    background: radial-gradient(ellipse at center, rgba(212, 83, 107, 0.08), transparent 70%);
}

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

.shades-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #2a1810, #d4536b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shades-header p {
    font-size: 1.2rem;
    color: #666;
}

.hexagon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.shade-hex {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(212, 83, 107, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.shade-hex:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(212, 83, 107, 0.2);
}

.shade-color {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.shade-hex h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2a1810;
}

.shade-hex p {
    color: #666;
    margin-bottom: 1rem;
}

.shade-hex .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #d4536b;
}

/* CTA Diamond Section */
.cta-diamond {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(135deg, #2a1810, #3d2a1f);
    color: #fff;
    overflow: hidden;
}

.diamond-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    opacity: 0.1;
}

.diamond-shape {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #d4536b, #e67284);
    transform: rotate(45deg);
    border-radius: 20px;
    animation: rotateDiamond 20s linear infinite;
}

@keyframes rotateDiamond {
    0% { transform: rotate(45deg); }
    100% { transform: rotate(405deg); }
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    color: #d4536b;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Product Hero (Shop Page) */
.product-hero {
    background: radial-gradient(ellipse at center, rgba(212, 83, 107, 0.1), transparent 70%);
    padding: 6rem 0 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.product-gallery-spiral {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-product-image {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(212, 83, 107, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.main-product-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
}

.image-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, rgba(212, 83, 107, 0.3), rgba(230, 114, 132, 0.3));
    border-radius: 40px;
    z-index: -1;
    filter: blur(15px);
    animation: pulseGlow 3s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% { opacity: 0.5; }
    100% { opacity: 0.8; }
}

.spiral-thumbnails {
    position: absolute;
    width: 500px;
    height: 500px;
    pointer-events: none;
}

.thumb-orbit {
    position: absolute;
    pointer-events: all;
}

.orbit-1 {
    top: 10%;
    left: 80%;
    animation: orbit1 15s linear infinite;
}

.orbit-2 {
    top: 80%;
    left: 85%;
    animation: orbit2 15s linear infinite;
}

.orbit-3 {
    top: 85%;
    left: 10%;
    animation: orbit3 15s linear infinite;
}

.orbit-4 {
    top: 15%;
    left: 5%;
    animation: orbit4 15s linear infinite;
}

@keyframes orbit1 {
    0% { transform: rotate(0deg) translateX(100px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(100px) rotate(-360deg); }
}

@keyframes orbit2 {
    0% { transform: rotate(90deg) translateX(100px) rotate(-90deg); }
    100% { transform: rotate(450deg) translateX(100px) rotate(-450deg); }
}

@keyframes orbit3 {
    0% { transform: rotate(180deg) translateX(100px) rotate(-180deg); }
    100% { transform: rotate(540deg) translateX(100px) rotate(-540deg); }
}

@keyframes orbit4 {
    0% { transform: rotate(270deg) translateX(100px) rotate(-270deg); }
    100% { transform: rotate(630deg) translateX(100px) rotate(-630deg); }
}

.thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    box-shadow: 0 5px 15px rgba(212, 83, 107, 0.2);
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #d4536b;
    transform: scale(1.2);
}

.product-info-glass {
    position: relative;
}

.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(212, 83, 107, 0.15);
}

.glass-card h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2a1810;
    line-height: 1.2;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.stars {
    font-size: 1.2rem;
}

.rating-text {
    color: #666;
    font-size: 0.9rem;
}

.price-display {
    margin-bottom: 2rem;
}

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

.product-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.specifications-accordion {
    margin-bottom: 2rem;
}

.specifications-accordion h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2a1810;
}

.spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(212, 83, 107, 0.1);
}

.spec-item strong {
    color: #2a1810;
}

.spec-item span {
    color: #666;
}

.shade-selector-wave {
    margin-bottom: 2rem;
}

.shade-selector-wave h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2a1810;
}

.wave-shades {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.shade-wave {
    position: relative;
}

.shade-wave input[type="radio"] {
    display: none;
}

.shade-wave label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.shade-wave input[type="radio"]:checked + label {
    border-color: #d4536b;
    background: rgba(212, 83, 107, 0.1);
}

.shade-preview {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.shade-name {
    font-weight: 600;
    color: #2a1810;
    font-size: 0.9rem;
}

.shade-price {
    color: #d4536b;
    font-weight: 700;
    font-size: 0.8rem;
}

.purchase-section-curved {
    text-align: center;
}

.trust-badges-organic {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.trust-badges-organic span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.trust-badges-organic i {
    color: #d4536b;
}

/* Beauty Experience Fluid Section */
.beauty-experience-fluid {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(245, 240, 235, 0.9));
}

.fluid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.fluid-bg svg {
    width: 100%;
    height: 100%;
}

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

.experience-icon-float {
    font-size: 4rem;
    color: #d4536b;
    margin-bottom: 2rem;
    animation: floatIcon 4s ease-in-out infinite;
}

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

.experience-flow h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2a1810;
}

.experience-flow p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.experience-highlights {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.highlight-bubble {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 83, 107, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    color: #d4536b;
    font-weight: 500;
    font-size: 0.9rem;
}

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

.experience-visual-flow {
    position: relative;
}

.experience-visual-flow img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(212, 83, 107, 0.15);
}

.visual-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #d4536b;
    border-radius: 50%;
    opacity: 0.6;
    animation: floatParticle 6s ease-in-out infinite;
}

.particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.particle-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes floatParticle {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.2); }
}

/* Reviews Constellation Section */
.reviews-constellation {
    padding: 6rem 0;
    background: radial-gradient(ellipse at center, rgba(212, 83, 107, 0.05), transparent 70%);
}

.reviews-constellation h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 4rem;
    background: linear-gradient(45deg, #2a1810, #d4536b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.constellation-reviews {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    height: 500px;
}

.review-star {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(212, 83, 107, 0.1);
    max-width: 350px;
    animation: floatReview 8s ease-in-out infinite;
}

.review-1 {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.review-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation-delay: 2s;
}

.review-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 4s;
}

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

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

.review-header .stars {
    color: #d4536b;
}

.reviewer {
    font-weight: 600;
    color: #2a1810;
}

.review-content p {
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2a1810, #3d2a1f);
    color: #fff;
    padding: 4rem 0 2rem;
    position: relative;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
}

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

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

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

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

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Ensure image logo has a consistent size in the footer */
footer .logo img {
    height: 50px;
    width: auto;
    display: block;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 2;
}

/* Page Hero (for other pages) */
.page-hero {
    background: linear-gradient(135deg, #d4536b, #e67284);
    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;
}

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

.legal-content .container {
    max-width: 800px;
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2a1810;
}

.last-updated {
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-text h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #2a1810;
}

.legal-text p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #666;
}

.legal-text a {
    color: #d4536b;
    text-decoration: underline;
}

.legal-text a:hover {
    color: #b8455a;
}

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

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

.blog-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(212, 83, 107, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(212, 83, 107, 0.2);
}

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

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

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

.blog-card h2 {
    font-size: 1.3rem;
    margin: 0.5rem 0 1rem;
}

.blog-card h2 a {
    color: #2a1810;
    transition: color 0.3s ease;
}

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

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

.read-more {
    color: #d4536b;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #b8455a;
    transform: translateX(5px);
}

/* Blog Article */
.blog-article {
    padding: 6rem 0;
    background: #fff;
}

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

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

.blog-article h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 1rem 0;
    color: #2a1810;
}

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

.article-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 3rem;
    display: block;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(212, 83, 107, 0.1);
}

.article-content {
    max-width: 700px;
    margin: 0 auto;
}

.article-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #666;
}

.article-cta {
    background: rgba(212, 83, 107, 0.05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
}

.article-cta p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #2a1810;
}

/* Contact Form */
.contact-content {
    padding: 4rem 0;
    background: #fff;
}

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

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2a1810;
}

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

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

.contact-method {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(212, 83, 107, 0.1);
}

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

.contact-method h3 i {
    color: #d4536b;
}

.contact-method p a {
    color: #d4536b;
    font-weight: 500;
}

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

.contact-form-section {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(212, 83, 107, 0.1);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid rgba(212, 83, 107, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* About Content */
.about-content {
    padding: 4rem 0;
    background: #fff;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.text-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2a1810;
}

.text-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.image-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-content img {
    width: 90%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(212, 83, 107, 0.15);
}

.cta-section {
    background: linear-gradient(135deg, rgba(212, 83, 107, 0.1), rgba(230, 114, 132, 0.1));
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2a1810;
}

.cta-section p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content,
    .showcase-content,
    .product-spiral-layout,
    .experience-flow,
    .content-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero h1,
    .blog-article h1 {
        font-size: 2.5rem;
    }
    
    .features-organic,
    .hexagon-grid,
    .wave-shades,
    .spec-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav ul li {
        margin: 0.5rem 0;
    }
    
    .constellation-reviews {
        position: static;
        height: auto;
    }
    
    .review-star {
        position: static;
        margin-bottom: 2rem;
        max-width: none;
    }
    
    .spiral-thumbnails {
        display: none;
    }
    
    .gallery-thumbs {
        flex-wrap: wrap;
    }
    
    .thumb {
        width: 60px;
        height: 60px;
    }
    
    .hero-buttons,
    .cta-buttons,
    .experience-cta-flow,
    .trust-badges-organic,
    .experience-highlights {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .features-header h2,
    .shades-header h2,
    .reviews-constellation h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .glass-card {
        padding: 2rem;
    }
    
    .glass-card h1 {
        font-size: 2rem;
    }
    
    .current-price {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .feature-blob,
    .shade-hex,
    .blog-card {
        padding: 1.5rem;
    }
    
    .floating-card {
        padding: 1rem;
    }
    
    .main-product-image {
        padding: 1rem;
    }
}