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

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #F9F8F6;
    color: #2D2C2A;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== COLOR SYSTEM ===== */
:root {
    /* Primary Colors - Sage Green */
    --primary-500: #4B5445;
    --primary-700: #3A4236;
    
    /* Neutral Colors */
    --neutral-0: #FFFFFF;
    --neutral-50: #F9F8F6;
    --neutral-400: #A6A29A;
    --neutral-900: #2D2C2A;
    
    /* Accent Colors */
    --accent-300: #E1DCD1;
    
    /* Semantic Colors */
    --success-500: #5E7C60;
    --error-500: #A96858;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    line-height: 1.3;
    color: var(--neutral-900);
}

h1 {
    font-size: 61px;
    letter-spacing: -1.5%;
}

h2 {
    font-size: 38px;
    letter-spacing: -1%;
}

h3 {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.5%;
}

.body-large {
    font-size: 18px;
    line-height: 1.7;
}

.body {
    font-size: 16px;
    line-height: 1.6;
}

.small {
    font-size: 14px;
    line-height: 1.5;
}

/* ===== SPACING SYSTEM ===== */
.container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 24px;
}

.space-xs { margin: 8px; }
.space-sm { margin: 16px; }
.space-md { margin: 24px; }
.space-lg { margin: 32px; }
.space-xl { margin: 48px; }
.space-xxl { margin: 96px; }
.space-xxxl { margin: 128px; }

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(249, 248, 246, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--accent-300);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.logo h1 {
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--neutral-900);
    line-height: 1;
    position: relative;
    display: inline-block;
}

.logo .brand-line {
    display: block;
    text-align: center;
}

.logo .brand-line.skincare {
    font-size: 9px;
    letter-spacing: -1px;
    margin-top: -2px;
    text-align: center;
    width: 100%;
}

.logo .brand-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.logo .brand-logo:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 48px;
}

.nav-links a {
    text-decoration: none;
    color: var(--neutral-900);
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.nav-text {
    color: var(--neutral-900);
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 14px;
    cursor: default;
}



/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(45, 44, 42, 0.1), rgba(45, 44, 42, 0.1)),
                url('facewash-tube.png') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 0 24px;
}

.hero-title {
    color: var(--neutral-0);
    margin-bottom: 48px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.cta-button {
    background: var(--primary-500);
    color: var(--neutral-0);
    border: none;
    padding: 18px 48px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.4s ease;
    height: 56px;
    min-width: 240px;
}

.cta-button:hover {
    background: var(--primary-700);
    transform: scale(1.02);
}

.cta-button:active {
    transform: scale(0.98);
}

/* ===== PRODUCT SHOWCASE ===== */
.product-showcase {
    padding: 128px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    margin-top: 96px;
}

.product-card {
    text-align: center;
    transition: transform 0.5s ease;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    margin-bottom: 24px;
}

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

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

.quick-add {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    background: var(--primary-500);
    color: var(--neutral-0);
    border: none;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
}

.product-card:hover .quick-add {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.product-name {
    margin-bottom: 8px;
}

.product-price {
    font-size: 14px;
    color: var(--neutral-400);
    font-family: 'Inter', sans-serif;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 128px 0;
    background: var(--neutral-50);
}

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

.about-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    color: var(--primary-500);
    text-align: center;
    margin-bottom: 96px;
    line-height: 1.2;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.about-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 500;
    color: var(--primary-500);
    margin-bottom: 8px;
    line-height: 1.3;
}

.about-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--neutral-900);
    text-align: justify;
    hyphens: auto;
}

/* Responsive adjustments for About section */
@media (max-width: 768px) {
    .about-section {
        padding: 96px 0;
    }
    
    .about-title {
        margin-bottom: 64px;
    }
    
    .about-text {
        gap: 48px;
    }
    
    .about-block {
        gap: 20px;
    }
    
    .about-description {
        text-align: left;
        hyphens: none;
    }
}



/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 128px 0;
    background: var(--neutral-0);
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    color: var(--primary-500);
    margin-bottom: 64px;
    line-height: 1.2;
}

.contact-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-description {
    font-family: 'Inter', sans-serif;
    font-size: clamp(18px, 3vw, 24px);
    line-height: 1.6;
    color: var(--neutral-900);
}

.contact-email {
    color: var(--primary-500);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
}

.contact-email:hover {
    color: var(--primary-700);
    border-bottom-color: var(--primary-500);
    transform: translateY(-1px);
}

/* Responsive adjustments for Contact section */
@media (max-width: 768px) {
    .contact-section {
        padding: 96px 0;
    }
    
    .contact-title {
        margin-bottom: 48px;
    }
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter {
    padding: 128px 0;
    background: var(--accent-300);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h2 {
    margin-bottom: 24px;
}

.newsletter p {
    font-size: 18px;
    color: var(--neutral-400);
    margin-bottom: 48px;
}

.newsletter-form {
    display: flex;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    height: 56px;
    border: 1px solid var(--accent-300);
    background: var(--neutral-0);
    padding: 16px;
    font-size: 16px;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 8px 24px rgba(45, 44, 42, 0.08);
}

.newsletter-form button {
    background: var(--primary-500);
    color: var(--neutral-0);
    border: none;
    padding: 0 32px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.4s ease;
    height: 56px;
    min-width: 120px;
}

.newsletter-form button:hover {
    background: var(--primary-700);
}

/* ===== FORMCARRY STYLES FOR NEWSLETTER ===== */

.newsletter-form {
    max-width: 400px;
    margin: 0 auto;
    display: block;
}

.newsletter-form .formcarry-block {
    margin-bottom: 16px;
    text-align: left;
}

.newsletter-form label {
    display: block;
    margin-bottom: 4px;
    font-weight: 500;
    color: var(--neutral-900);
    cursor: pointer;
}

.newsletter-form input {
    width: 100%;
    height: 48px;
    border: 2px solid var(--accent-300);
    color: var(--neutral-900);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 125ms ease;
    background: var(--neutral-0);
    box-sizing: border-box;
}

.newsletter-form input::placeholder {
    color: var(--neutral-400);
}

.newsletter-form input:hover {
    border-color: var(--neutral-400);
    background: var(--neutral-50);
}

.newsletter-form input:focus {
    border-color: var(--primary-500);
    background: var(--neutral-0);
    box-shadow: 0 0 0 3px rgba(75, 84, 69, 0.1);
    outline: none;
}

.newsletter-form button {
    width: 100%;
    height: 48px;
    background: var(--primary-500);
    color: var(--neutral-0);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 125ms ease;
    margin-top: 8px;
}

.newsletter-form button:hover {
    background: var(--primary-700);
    box-shadow: 0 4px 12px rgba(75, 84, 69, 0.2);
}

.newsletter-form button:focus {
    background: var(--primary-700);
    box-shadow: 0 0 0 3px rgba(75, 84, 69, 0.15);
}

.newsletter-form input:focus:required:invalid {
    border-color: var(--error-500);
    box-shadow: 0 0 0 3px rgba(169, 104, 88, 0.1);
}

/* ===== FOOTER ===== */
.footer {
    padding: 96px 0 48px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-section h3 {
    color: var(--neutral-0);
    margin-bottom: 24px;
    font-size: 20px;
    line-height: 1;
}

.footer-section h3 .brand-line {
    display: block;
}

.footer-section h3 .brand-line.skincare {
    font-size: 6px;
    letter-spacing: -0.5px;
    margin-top: -2px;
    opacity: 0.8;
}

.footer-section .brand-logo-footer {
    height: 32px;
    width: auto;
    object-fit: contain;
    margin-bottom: 16px;
}

.footer-section h4 {
    color: var(--neutral-0);
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: var(--neutral-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--neutral-0);
}

/* ===== TERMS & CONDITIONS PAGE ===== */

.terms-section {
    background: var(--neutral-0);
    padding: 128px 24px;
    min-height: calc(100vh - 200px);
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
}

.terms-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--primary-500);
    margin-bottom: 24px;
    text-align: center;
}

.terms-last-updated {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--neutral-400);
    text-align: center;
    margin-bottom: 48px;
    font-style: italic;
}

.terms-description {
    margin-bottom: 48px;
}

.terms-intro {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: var(--neutral-600);
    margin-bottom: 24px;
    line-height: 1.6;
}

.terms-agreement {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--neutral-700);
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.6;
    padding: 16px;
    background: var(--neutral-100);
    border-left: 4px solid var(--primary-500);
}

.terms-section-content {
    margin-bottom: 48px;
}

.terms-section-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-500);
    margin-bottom: 24px;
    border-bottom: 2px solid var(--primary-200);
    padding-bottom: 8px;
}

.terms-subsection {
    margin-bottom: 32px;
}

.terms-subsection h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--neutral-700);
    margin-bottom: 12px;
}

.terms-subsection p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--neutral-600);
    line-height: 1.7;
    margin-bottom: 16px;
}

.terms-section-content p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--neutral-600);
    line-height: 1.7;
    margin-bottom: 16px;
}

.terms-section-content p a {
    color: var(--primary-500);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.terms-section-content p a:hover {
    color: var(--primary-600);
    text-decoration: underline;
}

/* ===== BLOGS & TIPS PAGE ===== */

.blogs-section {
    background: var(--neutral-0);
    padding: 128px 24px;
    min-height: calc(100vh - 200px);
}

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

.blogs-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--primary-500);
    margin-bottom: 16px;
    text-align: center;
}

.blogs-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: var(--neutral-600);
    text-align: center;
    margin-bottom: 64px;
    font-style: italic;
}

.blog-post {
    background: var(--neutral-0);
    border-radius: 12px;
    padding: 48px;
    margin-bottom: 48px;
    box-shadow: 0 4px 24px rgba(45, 44, 42, 0.08);
    border: 1px solid var(--neutral-200);
}

.blog-post-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-500);
    margin-bottom: 16px;
    line-height: 1.3;
}

.blog-post-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: var(--neutral-700);
    margin-bottom: 32px;
    font-weight: 500;
    font-style: italic;
}

.blog-content {
    line-height: 1.7;
}

.blog-intro {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: var(--neutral-700);
    font-weight: 500;
    margin-bottom: 24px;
    padding: 24px;
    background: var(--neutral-100);
    border-left: 4px solid var(--primary-500);
    border-radius: 0 8px 8px 0;
}

.blog-content p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--neutral-600);
    margin-bottom: 20px;
}

/* Product Essentials */
.product-essentials {
    margin: 40px 0;
}

.essential-item {
    background: var(--neutral-50);
    padding: 32px;
    margin-bottom: 24px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-400);
}

.essential-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-500);
    margin-bottom: 16px;
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--neutral-600);
    margin-bottom: 16px;
    padding-left: 24px;
    position: relative;
}

.benefit-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-500);
    font-weight: 600;
}

/* Skin Test Sections */
.skin-test-section {
    margin: 40px 0;
    padding: 32px;
    background: var(--neutral-50);
    border-radius: 8px;
    border: 1px solid var(--neutral-200);
}

.skin-test-section h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-500);
    margin-bottom: 16px;
}

.test-steps {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--neutral-600);
    padding-left: 24px;
}

.test-steps li {
    margin-bottom: 12px;
}

.results-table {
    margin: 24px 0;
}

.results-table h5 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--neutral-700);
    margin-bottom: 16px;
}

.skin-type-results, .results-timeline {
    width: 100%;
    border-collapse: collapse;
    background: var(--neutral-0);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(45, 44, 42, 0.1);
}

.skin-type-results th, .skin-type-results td,
.results-timeline th, .results-timeline td {
    padding: 16px;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.skin-type-results th, .results-timeline th {
    background: var(--primary-500);
    color: var(--neutral-0);
    font-weight: 600;
}

.skin-type-results td, .results-timeline td {
    border-bottom: 1px solid var(--neutral-200);
    color: var(--neutral-600);
}

.skin-type-results tr:last-child td, .results-timeline tr:last-child td {
    border-bottom: none;
}

.skin-type-results tr:nth-child(even), .results-timeline tr:nth-child(even) {
    background: var(--neutral-50);
}

/* Lists Styling */
.blotting-results, .sensitive-signs, .routine-tips, .criteria-list {
    list-style: none;
    padding: 0;
}

.blotting-results li, .sensitive-signs li, .routine-tips li, .criteria-list li {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--neutral-600);
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.blotting-results li::before, .sensitive-signs li::before, .routine-tips li::before, .criteria-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-500);
    font-weight: 600;
    font-size: 18px;
}

/* Double Cleanse Sections */
.double-cleanse-section, .barrier-protection-section {
    margin: 40px 0;
}

.double-cleanse-section h4, .barrier-protection-section h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-500);
    margin-bottom: 16px;
}

.warning-signs {
    margin: 24px 0;
}

.warning-item {
    background: var(--neutral-50);
    padding: 24px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid #dc3545;
}

.warning-item h5 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--neutral-700);
    margin-bottom: 12px;
}

.warning-item p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--neutral-600);
    margin: 0;
}

.the-fix {
    background: var(--primary-100);
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-500);
    margin-top: 24px;
}

.the-fix h5 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-600);
    margin-bottom: 12px;
}

/* UVA and Timeline Sections */
.uva-threat, .window-effect, .bottom-line {
    margin: 32px 0;
}

.uva-threat h4, .window-effect h4, .bottom-line h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-500);
    margin-bottom: 16px;
}

.uv-types {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--neutral-600);
    padding-left: 24px;
}

.uv-types li {
    margin-bottom: 12px;
}

.damage-factors, .spf-tips {
    list-style: none;
    padding: 0;
}

.damage-factors li, .spf-tips li {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--neutral-600);
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.damage-factors li::before, .spf-tips li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-500);
    font-weight: 600;
    font-size: 16px;
}

.final-note {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-600);
    background: var(--primary-100);
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    margin-top: 24px;
}

/* Timeline and Patience Sections */
.golden-rule, .timeline-breakdown, .key-timelines, .premature-surrender {
    margin: 32px 0;
}

.golden-rule h4, .timeline-breakdown h4, .key-timelines h4, .premature-surrender h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-500);
    margin-bottom: 16px;
}

.timeline-item {
    background: var(--neutral-50);
    padding: 24px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-400);
}

.timeline-item h5 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-600);
    margin-bottom: 12px;
}

.timeline-table {
    margin: 24px 0;
    overflow-x: auto;
}

.final-wisdom {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--neutral-700);
    background: var(--primary-100);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-top: 24px;
    border: 2px solid var(--primary-200);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    /* Facewash Product */
    .facewash-product {
        flex-direction: column;
        gap: 48px;
        padding: 48px;
    }
    
    .facewash-image {
        flex: none;
        width: 300px;
    }
    

    
    .facewash-title {
        font-size: 28px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    /* Typography Adjustments */
    h1 { font-size: 48px; }
    h2 { font-size: 32px; }
    h3 { font-size: 20px; }
    
    /* Header */
    .nav {
        padding: 16px 0;
    }
    
    .logo h1 {
        font-size: 20px;
    }
    
    .logo .brand-line.skincare {
        font-size: 7px;
        letter-spacing: -0.5px;
    }
    
    .logo .brand-logo {
        height: 36px;
        width: auto;
    }
    
    .nav-links {
        gap: 24px;
    }
    
    /* Hero */
    .hero {
        height: 80vh;
    }
    
    .hero-title {
        font-size: 36px;
        margin-bottom: 32px;
    }
    
    .cta-button {
        height: 48px;
        min-width: 200px;
        padding: 14px 32px;
        font-size: 14px;
    }
    
    /* Sections */
    .product-showcase,
    .newsletter {
        padding: 64px 0;
    }
    
    /* Newsletter Form Responsiveness */
    .newsletter-form {
        max-width: 350px;
    }
    
    .newsletter-form input {
        height: 52px;
        font-size: 16px;
    }
    
    .newsletter-form button {
        height: 52px;
        font-size: 15px;
    }
    
    /* Products */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 48px;
    }
    
    .product-image {
        margin-bottom: 16px;
    }
    
    /* Facewash Product */
    .facewash-product {
        padding: 32px;
        gap: 32px;
    }
    
    .facewash-image {
        width: 250px;
    }
    

    
    .facewash-title {
        font-size: 24px;
    }
    
    .spec-item h4 {
        font-size: 16px;
    }
    
    .spec-item li,
    .spec-item p {
        font-size: 14px;
    }
    
    /* Newsletter */
    .newsletter-form {
        flex-direction: column;
        gap: 16px;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        height: 48px;
    }
    
    /* Footer */
    .footer {
        padding: 48px 0 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 18px;
    }
    
    .footer-section h3 .brand-line.skincare {
        font-size: 5px;
        letter-spacing: -0.5px;
    }
    
    .footer-section .brand-logo-footer {
        height: 28px;
        width: auto;
    }
    
    /* Newsletter Form Mobile Styles */
    .newsletter-form {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .newsletter-form input {
        height: 50px;
        font-size: 16px;
        padding: 12px 16px;
    }
    
    .newsletter-form button {
        height: 50px;
        font-size: 16px;
        font-weight: 600;
    }
}

/* ===== ANIMATIONS ===== */
@media (prefers-reduced-motion: no-preference) {
    .product-card {
        animation: fadeInUp 0.6s ease forwards;
        opacity: 0;
        transform: translateY(30px);
    }
    
    .product-card:nth-child(1) { animation-delay: 0.1s; }
    .product-card:nth-child(2) { animation-delay: 0.2s; }
    .product-card:nth-child(3) { animation-delay: 0.3s; }
    .product-card:nth-child(4) { animation-delay: 0.4s; }
}

/* ===== FACEWASH PRODUCT SECTION ===== */
.facewash-product {
    display: flex;
    align-items: center;
    gap: 64px;
    margin-top: 96px;
    background: linear-gradient(135deg, #F9F8F6 0%, #ffffff 100%);
    padding: 64px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(75, 84, 69, 0.1);
}

.facewash-image {
    flex: 0 0 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.facewash-img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.facewash-specs {
    flex: 1;
}

.facewash-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 600;
    color: #2D2C2A;
    margin-bottom: 32px;
    line-height: 1.3;
}

.specifications {
    margin-bottom: 32px;
}

.spec-item {
    margin-bottom: 24px;
}

.spec-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #4B5445;
    margin-bottom: 12px;
}

.spec-item ul {
    list-style: none;
    padding: 0;
}

.spec-item li {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #2D2C2A;
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.spec-item li::before {
    content: '•';
    color: #4B5445;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}

.spec-item p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #2D2C2A;
    line-height: 1.6;
    margin: 0;
}

.facewash-product .cta-button {
    background: #4B5445;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.facewash-product .cta-button:hover {
    background: #3A3F35;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(75, 84, 69, 0.3);
}

/* Facewash image positioning */
.facewash-image {
    position: relative;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
button:focus,
input:focus,
a:focus {
    outline: 2px solid var(--primary-500);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --neutral-900: #000000;
        --neutral-400: #666666;
        --primary-500: #2D4A2D;
    }
}

/* ===== MOISTURIZER PRODUCT PAGE ===== */

/* Hero Section for Moisturizer */
.moisturizer-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #F9F8F6 0%, #E8F4F8 50%, #F9F8F6 100%);
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 600;
    line-height: 1.1;
    color: var(--neutral-900);
    margin-bottom: 32px;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: var(--neutral-400);
    margin-bottom: 48px;
    font-weight: 400;
}

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

.moisturizer-hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(75, 84, 69, 0.15);
    transition: transform 0.5s ease;
}

.moisturizer-hero-img:hover {
    transform: scale(1.02);
}

/* Product Description Section */
.product-description {
    padding: 120px 0;
    background: var(--neutral-0);
}

.description-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 48px;
    text-align: center;
}

.description-text {
    text-align: left;
}

.lead-text {
    font-size: 24px;
    line-height: 1.5;
    color: var(--neutral-900);
    margin-bottom: 32px;
    font-weight: 500;
}

.description-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--neutral-400);
    margin-bottom: 24px;
}

/* Key Benefits Section */
.key-benefits {
    padding: 120px 0;
    background: linear-gradient(135deg, #F0F7F4 0%, #E8F4F8 50%, #F0F7F4 100%);
}

.benefits-content {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
    margin-top: 80px;
}

.benefit-card {
    background: var(--neutral-0);
    padding: 48px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(75, 84, 69, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(75, 84, 69, 0.15);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
}

.benefit-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 20px;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--neutral-400);
}

/* ===== MOBILE NAVIGATION ===== */
@media (max-width: 768px) {
    .nav {
        position: relative;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--neutral-0);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: left 0.3s ease;
        z-index: 1000;
        padding: 0 40px;
    }
    
    .nav-links.active {
        display: flex;
        left: 0;
    }
    
    .nav-links li {
        margin: 0;
    }
    
    .nav-links a {
        font-size: 24px;
        font-weight: 600;
        color: var(--neutral-900);
        padding: 20px;
        border-radius: 8px;
        transition: background 0.3s ease;
    }
    
    .nav-links a:hover {
        background: var(--neutral-100);
    }
    
    /* Mobile menu toggle */
    .nav-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 12px;
        z-index: 1001;
        background: transparent;
        border: none;
        border-radius: 8px;
        transition: background-color 0.3s ease;
        min-width: 44px;
        min-height: 44px;
        justify-content: center;
        align-items: center;
    }
    
    .nav-toggle:hover {
        background-color: rgba(75, 84, 69, 0.1);
    }
    
    .nav-toggle span {
        width: 24px;
        height: 2px;
        background: var(--neutral-900);
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 1px;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* Moisturizer Page Enhanced Responsive Design */
@media (max-width: 1024px) {
    .hero-content-wrapper {
        gap: 48px;
        flex-direction: column;
        text-align: center;
    }
    
    .hero-main-title {
        font-size: 52px;
    }
    
    .moisturizer-hero-img {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .moisturizer-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-content-wrapper {
        gap: 28px;
        padding: 0 20px;
    }
    
    .hero-main-title {
        font-size: 38px;
        line-height: 1.2;
        margin-bottom: 16px;
        font-weight: 700;
    }
    
    .hero-subtitle {
        font-size: 17px;
        line-height: 1.6;
        margin-bottom: 28px;
        max-width: 92%;
        margin-left: auto;
        margin-right: auto;
        font-weight: 500;
    }
    
    .moisturizer-hero-img {
        max-width: 280px;
        width: 100%;
        margin-top: 24px;
    }
    
    .section-title {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 28px;
        font-weight: 600;
    }
    
    .lead-text {
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 20px;
        font-weight: 500;
    }
    
    .description-text p {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 16px;
    }
    
    .description-content {
        padding: 0 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-top: 40px;
        padding: 0 20px;
    }
    
    .benefit-card {
        padding: 32px 20px;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(75, 84, 69, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .benefit-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 30px rgba(75, 84, 69, 0.12);
    }

    .benefit-card {
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.5);
    }
    
    .benefit-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
        line-height: 1.4;
    }
    
    .benefit-card p {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .benefit-icon {
        font-size: 32px;
        margin-bottom: 16px;
    }
    
    .product-description,
    .key-benefits {
        padding: 60px 0;
    }
    
    /* Newsletter improvements for mobile */
    .newsletter {
        padding: 60px 0;
    }
    
    .newsletter-content h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .newsletter-content p {
        font-size: 16px;
        margin-bottom: 32px;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .newsletter-form {
        padding: 0 20px;
        max-width: 100%;
    }
    
    .formcarry-block label {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .formcarry-container input {
        height: 48px;
        font-size: 16px;
        padding: 0 16px;
    }
    
    .formcarry-container button {
        height: 48px;
        font-size: 16px;
        padding: 0 20px;
        margin-top: 12px;
        width: 100%;
    }
    
    /* Footer improvements */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
    
    .footer-section h4 {
        font-size: 18px;
        margin-bottom: 16px;
    }
    
    .footer-section ul li {
        margin-bottom: 8px;
    }
    
    .footer-section a {
        font-size: 15px;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .moisturizer-hero {
        padding: 80px 0 40px;
    }
    
    .hero-content-wrapper {
        gap: 24px;
        padding: 0 16px;
    }
    
    .hero-main-title {
        font-size: 34px;
        line-height: 1.15;
        margin-bottom: 14px;
        font-weight: 700;
    }
    
    .hero-subtitle {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 24px;
        font-weight: 500;
    }
    
    .moisturizer-hero-img {
        max-width: 180px;
    }
    
    .section-title {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 24px;
    }
    
    .lead-text {
        font-size: 17px;
        line-height: 1.6;
        margin-bottom: 18px;
    }
    
    .description-text p {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .description-content,
    .benefits-grid {
        padding: 0 16px;
    }
    
    .benefits-grid {
        gap: 24px;
        margin-top: 32px;
    }
    
    .benefit-card {
        padding: 28px 16px;
    }
    
    .benefit-card h3 {
        font-size: 17px;
        margin-bottom: 10px;
    }
    
    .benefit-card p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .benefit-icon {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .product-description,
    .key-benefits {
        padding: 50px 0;
    }
    
    .newsletter {
        padding: 50px 0;
    }
    
    .newsletter-content h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .newsletter-content p {
        font-size: 15px;
        margin-bottom: 28px;
    }
    
    .newsletter-form {
        padding: 0 16px;
    }
    
    .formcarry-container input,
    .formcarry-container button {
        height: 44px;
        font-size: 16px;
    }
    
    /* Additional mobile optimizations */
    .benefit-card {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    /* Performance optimizations for mobile */
@media (max-width: 768px) {
    /* Smooth scrolling for better UX */
    html {
        scroll-behavior: smooth;
    }
    
    /* Optimize animations for mobile */
    *,
    *::before,
    *::after {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    /* Better touch targets */
    button,
    input,
    a {
        -webkit-tap-highlight-color: rgba(75, 84, 69, 0.2);
        tap-highlight-color: rgba(75, 84, 69, 0.2);
    }
    
    /* Reduce motion for users who prefer it */
    @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }
}

/* Improve readability on very small screens */
    @media (max-width: 360px) {
        .hero-content-wrapper {
            padding: 0 12px;
        }
        
        .description-content,
        .benefits-grid,
        .newsletter-form {
            padding: 0 12px;
        }
        
        .moisturizer-hero {
            padding: 70px 0 30px;
        }
        
        .hero-main-title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 12px;
        }
        
        .hero-subtitle {
            font-size: 15px;
            font-weight: 500;
            line-height: 1.6;
        }
        
        .section-title {
            font-size: 24px;
        }
        
        .moisturizer-hero-img {
            max-width: 150px;
        }
        
        .benefit-card {
            padding: 24px 12px;
        }
    }
}