/* Modern Light Bulgarian Design - Complete Redesign */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;600;700;800&display=swap');

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

:root {
    --primary-color: #4F46E5;
    --primary-light: #6366F1;
    --primary-dark: #4338CA;
    --secondary-color: #10B981;
    --accent-color: #F59E0B;
    --accent-pink: #EC4899;
    --bg-light: #FAFBFC;
    --bg-white: #FFFFFF;
    --bg-cream: #FFFBF5;
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --text-light: #9CA3AF;
    --border-light: #E5E7EB;
    --border-medium: #D1D5DB;
    --success: #10B981;
    --warning: #F59E0B;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-light);
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header - Elegant Light Design */
.header {
    background: var(--bg-white);
    color: var(--text-primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-light);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: all 0.3s;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.header-nav {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.header-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 0.95rem;
    position: relative;
}

.header-nav a:hover {
    color: var(--primary-color);
    background: rgba(79, 70, 229, 0.08);
}

.header-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
    border-radius: 2px;
}

.header-nav a:hover::before {
    width: 60%;
}

/* Hero Section - Fresh Light Design */
.hero {
    background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 50%, #F0F9FF 100%);
    color: var(--text-primary);
    padding: 6rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -30px) rotate(5deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color) 0%, #FBBF24 100%);
    color: var(--bg-white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4); }
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.75rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -1px;
}

.subtitle {
    font-size: 1.375rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-image {
    margin-top: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    transform: perspective(1000px) rotateY(-3deg) rotateX(3deg);
    transition: transform 0.5s;
    border: 8px solid var(--bg-white);
}

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

/* Section Headers - Refined Design */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-pink));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 2rem auto 0;
    line-height: 1.7;
    font-weight: 400;
}

.section-intro-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 2rem auto;
    line-height: 1.8;
    text-align: center;
    padding: 2.5rem;
    background: var(--bg-white);
    border-radius: 20px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

/* Product Section - Light & Airy */
.product-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    margin-top: 3rem;
}

.product-image {
    position: sticky;
    top: 100px;
}

.carousel-container {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--bg-cream);
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: var(--bg-cream);
}

.carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.carousel-slide.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(1.05); }
    to { opacity: 1; transform: scale(1); }
}

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

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-white);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
    padding: 12px 16px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 12px;
    z-index: 10;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-dots {
    text-align: center;
    padding: 20px 0;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    justify-content: center;
}

.dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid var(--bg-white);
}

.dot.active,
.dot:hover {
    background-color: var(--bg-white);
    transform: scale(1.3);
    width: 24px;
    border-radius: 12px;
}

.product-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--success) 0%, #34D399 100%);
    color: var(--bg-white);
    padding: 0.625rem 1.25rem;
    border-radius: 10px;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
}

.product-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.product-description {
    margin-bottom: 2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.125rem;
}

.product-comfort-info {
    background: var(--bg-cream);
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2.5rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.product-comfort-info h3 {
    font-family: 'Playfair Display', serif;
    color: var(--text-primary);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.product-comfort-info p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.0625rem;
}

.product-features {
    margin-bottom: 2.5rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.75rem;
    padding: 1.75rem;
    background: var(--bg-white);
    border-radius: 16px;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.feature:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.feature-icon-wrapper {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.25);
}

.feature-icon {
    font-size: 1.75rem;
}

.feature-text {
    flex: 1;
}

.feature-text strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.feature-text p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

/* Buttons - Modern Light Design */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    padding: 1.25rem 3rem;
    border: none;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    text-decoration: none;
    display: block;
    text-align: center;
    box-shadow: 0 6px 25px rgba(79, 70, 229, 0.3);
    letter-spacing: 0.3px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(79, 70, 229, 0.4);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.btn-primary:active {
    transform: translateY(0);
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 0;
}

.btn-cta {
    max-width: 450px;
    margin: 0 auto;
    font-size: 1.25rem;
    padding: 1.5rem 3.5rem;
    display: inline-block;
    animation: pulseButton 2s infinite;
}

@keyframes pulseButton {
    0%, 100% {
        box-shadow: 0 6px 25px rgba(79, 70, 229, 0.3);
    }
    50% {
        box-shadow: 0 10px 40px rgba(79, 70, 229, 0.5);
    }
}

/* Benefits Section - Light Cards */
.benefits-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

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

.benefit-item {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-pink));
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.benefit-item h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1.375rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.benefit-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background: var(--bg-white);
}

.application-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
    margin-top: 3rem;
}

.step-item {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    transition: all 0.3s;
    border: 1px solid var(--border-light);
}

.step-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
    background: var(--bg-white);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
    font-family: 'Playfair Display', serif;
}

.step-item h3 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.step-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.0625rem;
}

.usage-note {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    border-left: 4px solid var(--accent-color);
    padding: 2rem;
    border-radius: 16px;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow-sm);
}

.usage-note p {
    color: #92400E;
    margin: 0;
    line-height: 1.8;
    font-size: 1.0625rem;
}

/* Ingredients Section */
.ingredients-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

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

.ingredient-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    border: 1px solid var(--border-light);
}

.ingredient-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.ingredient-image {
    width: 100%;
    height: 250px;
    margin-bottom: 1.5rem;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-cream);
}

.ingredient-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.ingredient-item h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.ingredient-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.0625rem;
}

/* Why Choose Section */
.why-choose-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="60" height="60" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.why-choose-section .section-title {
    color: var(--bg-white);
    position: relative;
    z-index: 1;
}

.why-choose-section .section-title::after {
    background: var(--bg-white);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 3rem auto 0;
    position: relative;
    z-index: 1;
}

.why-choose-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.75rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.why-choose-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(8px);
    border-color: rgba(255, 255, 255, 0.4);
}

.check-icon {
    color: var(--bg-white);
    font-size: 1.75rem;
    font-weight: bold;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.2);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.why-choose-item span:last-child {
    color: var(--bg-white);
    line-height: 1.7;
    font-size: 1.0625rem;
}

/* Guarantee Section */
.guarantee {
    padding: 6rem 0;
    background: var(--bg-white);
}

.guarantee-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.guarantee-item {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s;
    border: 1px solid var(--border-light);
}

.guarantee-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
    background: var(--bg-white);
}

.guarantee-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.guarantee-item h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1.375rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.guarantee-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.0625rem;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: var(--bg-light);
}

.faq-list {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.faq-item h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.375rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.0625rem;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="60" height="60" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.contact-section .section-title,
.contact-section .section-subtitle {
    color: var(--bg-white);
    position: relative;
    z-index: 1;
}

.contact-section .section-title::after {
    background: var(--bg-white);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin: 4rem 0;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.contact-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 280px;
    transition: all 0.3s;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.4);
}

.contact-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.contact-item strong {
    display: block;
    font-size: 1.375rem;
    color: var(--bg-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

/* Footer - Completely New Structure */
.footer {
    background: var(--bg-white);
    color: var(--text-primary);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-light);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-light);
}

.footer-brand {
    max-width: 400px;
}

.footer-brand .logo {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid var(--border-light);
}

.footer-social a:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.footer-column h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

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

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    transform: translateX(4px);
}

.footer-column p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.footer-column strong {
    color: var(--text-primary);
    font-weight: 600;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 2rem;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-legal {
    margin-bottom: 2rem;
}

.footer-legal h3 {
    font-family: 'Playfair Display', serif;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.legal-info {
    margin-bottom: 2rem;
}

.legal-info p {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.7;
    font-size: 1rem;
}

.legal-info strong {
    color: var(--text-primary);
    font-weight: 600;
}

.health-notice {
    background: var(--bg-cream);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    border: 1px solid var(--border-light);
}

.health-notice h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.health-notice p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

.contact-info-footer {
    margin-bottom: 2rem;
}

.contact-info-footer p {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.7;
    font-size: 1rem;
}

.contact-info-footer strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Legal Pages */
.legal-page {
    padding: 5rem 0;
    min-height: 70vh;
    background: var(--bg-light);
}

.legal-page h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
    font-weight: 700;
    text-align: center;
}

.legal-page section {
    margin-bottom: 3rem;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.legal-page h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.legal-page h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: var(--text-primary);
    font-weight: 600;
}

.legal-page p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.0625rem;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page ul li {
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.0625rem;
}

.legal-page a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

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

.withdrawal-form {
    background: var(--bg-cream);
    padding: 2.5rem;
    border-radius: 16px;
    margin: 2rem 0;
    border: 1px solid var(--border-light);
}

.withdrawal-form p {
    margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        position: static;
    }

    .carousel-slides {
        height: 400px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 1rem;
    }

    .header-nav {
        justify-content: center;
        gap: 0.5rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .benefits-grid,
    .ingredients-grid,
    .guarantee-content,
    .application-steps {
        grid-template-columns: 1fr;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
    }

    .legal-page h1 {
        font-size: 2rem;
    }
}

/* Image Placeholders */
img {
    max-width: 100%;
    height: auto;
}

.product-image img,
.carousel-slide img {
    background-color: var(--bg-cream);
    min-height: 200px;
    display: block;
}
