/* ============================================
   Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FFD700;
    --secondary-color: #FF69B4;
    --accent-color: #FFB6C1;
    --dark-color: #333333;
    --light-color: #FFFFFF;
    --gray-color: #F5F5F5;
    --border-color: #EEEEEE;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 15px 60px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    text-align: center;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
}

p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

a {
    color: var(--dark-color);
    text-decoration: none;
    transition: var(--transition);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #FFC700 100%);
    color: var(--dark-color);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--dark-color);
    border: 2px solid var(--dark-color);
}

.btn-secondary:hover {
    background: var(--dark-color);
    color: var(--light-color);
    transform: translateY(-3px);
}

.btn-small {
    padding: 10px 22px;
    font-size: 0.9rem;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    background: var(--light-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo h2 {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    position: relative;
    color: var(--dark-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 105, 180, 0.05) 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-text {
    animation: fadeInLeft 0.8s ease-out;
}

.hero-text h1 {
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    animation: fadeInRight 0.8s ease-out;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.1));
    transition: var(--transition);
}

.hero-image:hover img {
    transform: translateY(-10px);
    filter: drop-shadow(0 15px 60px rgba(0, 0, 0, 0.15));
}

/* ============================================
   About Section
   ============================================ */
.about {
    padding: 5rem 0;
    background: var(--light-color);
}

.about h2 {
    margin-bottom: 3rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    animation: zoomIn 0.8s ease-out;
}

.about-text h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.highlight-list {
    list-style: none;
    margin-top: 2rem;
}

.highlight-list li {
    padding: 0.8rem 0;
    color: #666;
    font-weight: 500;
    animation: slideInRight 0.5s ease-out backwards;
}

.highlight-list li:nth-child(1) { animation-delay: 0.1s; }
.highlight-list li:nth-child(2) { animation-delay: 0.2s; }
.highlight-list li:nth-child(3) { animation-delay: 0.3s; }
.highlight-list li:nth-child(4) { animation-delay: 0.4s; }
.highlight-list li:nth-child(5) { animation-delay: 0.5s; }

/* ============================================
   Benefits Section
   ============================================ */
.benefits {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 105, 180, 0.08) 100%);
}

.benefits h2 {
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
    animation: slideUp 0.6s ease-out backwards;
}

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefit-card:nth-child(4) { animation-delay: 0.4s; }
.benefit-card:nth-child(5) { animation-delay: 0.5s; }
.benefit-card:nth-child(6) { animation-delay: 0.6s; }

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
    border-top-color: var(--secondary-color);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #666;
    font-size: 0.95rem;
}

/* ============================================
   Ingredients Section
   ============================================ */
.ingredients {
    padding: 5rem 0;
    background: var(--light-color);
}

.ingredients h2 {
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: #888;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.ingredient-item {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 105, 180, 0.05) 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    animation: fadeIn 0.6s ease-out backwards;
}

.ingredient-item:nth-child(1) { animation-delay: 0.1s; }
.ingredient-item:nth-child(2) { animation-delay: 0.15s; }
.ingredient-item:nth-child(3) { animation-delay: 0.2s; }
.ingredient-item:nth-child(4) { animation-delay: 0.25s; }
.ingredient-item:nth-child(5) { animation-delay: 0.3s; }
.ingredient-item:nth-child(6) { animation-delay: 0.35s; }
.ingredient-item:nth-child(7) { animation-delay: 0.4s; }
.ingredient-item:nth-child(8) { animation-delay: 0.45s; }
.ingredient-item:nth-child(9) { animation-delay: 0.5s; }

.ingredient-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.ingredient-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.ingredient-item h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.ingredient-item p {
    color: #666;
    font-size: 0.9rem;
}

/* ============================================
   Variants Section
   ============================================ */
.variants {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 105, 180, 0.05) 100%);
}

.variants h2 {
    margin-bottom: 0.5rem;
}

.variants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.variant-card {
    background: var(--light-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    animation: fadeInUp 0.8s ease-out;
}

.variant-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--box-shadow-hover);
}

.variant-image-carousel {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: var(--gray-color);
    border-radius: 0;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10;
    transition: var(--transition);
    border-radius: 5px;
}

.carousel-nav:hover {
    background: rgba(0, 0, 0, 0.8);
}

.carousel-nav.prev {
    left: 10px;
}

.carousel-nav.next {
    right: 10px;
}

.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: white;
    width: 12px;
    height: 12px;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.yellow-theme .carousel-container {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
}

.pink-theme .carousel-container {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.1) 0%, rgba(255, 105, 180, 0.05) 100%);
}

.yellow-theme {
    border-top: 5px solid var(--primary-color);
}

.pink-theme {
    border-top: 5px solid var(--secondary-color);
}

.variant-content {
    padding: 2rem;
}

.variant-content h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.variant-formula {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.bottle-info {
    margin-bottom: 1.5rem;
}

.bottle-color {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gray-color);
    border-radius: 25px;
    font-size: 0.9rem;
    color: #666;
}

.variant-features {
    margin: 1.5rem 0;
}

.variant-features p {
    margin: 0.8rem 0;
    color: #555;
    font-weight: 500;
}

.price-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    display: none;
}

/* ============================================
   How to Use Section
   ============================================ */
.how-to-use {
    padding: 5rem 0;
    background: var(--light-color);
}

.how-to-use h2 {
    margin-bottom: 3rem;
}

.usage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.usage-steps {
    padding: 2rem;
}

.usage-steps h3 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.step {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    animation: slideInLeft 0.6s ease-out backwards;
}

.step:nth-child(2) { animation-delay: 0.1s; }
.step:nth-child(3) { animation-delay: 0.2s; }
.step:nth-child(4) { animation-delay: 0.3s; }
.step:nth-child(5) { animation-delay: 0.4s; }

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--dark-color);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.usage-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    animation: fadeInRight 0.8s ease-out;
}

/* ============================================
   Brand Story Section
   ============================================ */
.brand-story {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 105, 180, 0.08) 100%);
}

.brand-story h2 {
    margin-bottom: 2rem;
}

.brand-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.brand-text h3 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.brand-text p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.brand-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    animation: zoomIn 0.6s ease-out backwards;
}

.value:nth-child(1) { animation-delay: 0.1s; }
.value:nth-child(2) { animation-delay: 0.2s; }
.value:nth-child(3) { animation-delay: 0.3s; }

.value h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.value p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    padding: 5rem 0;
    background: var(--light-color);
}

.contact h2 {
    margin-bottom: 0.5rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-item {
    animation: slideInLeft 0.6s ease-out backwards;
}

.contact-item:nth-child(2) { animation-delay: 0.1s; }
.contact-item:nth-child(3) { animation-delay: 0.2s; }

.contact-link {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    text-decoration: underline;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--gray-color);
    border-radius: 50%;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.8rem;
    color: var(--dark-color);
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-5px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: fadeInRight 0.8s ease-out;
}

.contact-form input,
.contact-form textarea {
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--gray-color);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.contact-form button {
    align-self: flex-start;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #ccc;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    color: var(--dark-color);
    font-weight: 600;
    transition: var(--transition);
}

.footer-socials a:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #aaa;
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--light-color);
        padding: 2rem;
        gap: 1rem;
        box-shadow: var(--box-shadow);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .about-content,
    .usage-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: 2;
    }

    .about-text {
        order: 1;
    }

    .variants-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid,
    .ingredients-grid,
    .brand-values,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .benefits,
    .ingredients {
        padding: 2.5rem 0;
    }

    .benefits h2,
    .ingredients h2 {
        margin-bottom: 1.5rem;
    }

    .benefits-grid,
    .ingredients-grid {
        gap: 1.5rem;
    }

    .benefit-card,
    .ingredient-item {
        padding: 1.5rem;
    }

    .benefit-card:nth-child(n+4) {
        display: none;
    }

    .ingredient-item:nth-child(n+5) {
        display: none;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .hero {
        padding: 2rem 0;
        min-height: auto;
    }

    .about,
    .benefits,
    .ingredients,
    .variants,
    .how-to-use,
    .brand-story,
    .contact {
        padding: 3rem 0;
    }

    .step {
        gap: 1.5rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .variant-image-carousel {
        height: 250px;
    }

    .carousel-nav {
        padding: 0.5rem 0.75rem;
        font-size: 1rem;
    }

    .hero-description,
    .brand-text p {
        font-size: 1rem;
    }

    .benefit-card,
    .ingredient-item {
        padding: 1.5rem;
    }

    .benefit-icon {
        font-size: 2.5rem;
    }

    .ingredient-icon {
        font-size: 2rem;
    }

    .price-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .price {
        text-align: center;
    }

    .btn-small {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    p {
        font-size: 0.95rem;
    }

    .logo h2 {
        font-size: 1.2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }

    .navbar-content {
        padding: 1rem 0;
    }

    .hero,
    .about,
    .benefits,
    .ingredients,
    .variants,
    .how-to-use,
    .brand-story,
    .contact {
        padding: 2rem 0;
    }

    .about-text h3,
    .contact-item h3 {
        font-size: 1.2rem;
    }

    .benefit-card,
    .ingredient-item {
        padding: 1.2rem;
    }

    .variant-content {
        padding: 1.5rem;
    }

    .variant-formula {
        font-size: 1rem;
    }

    .price {
        font-size: 1.5rem;
    }

    .step {
        gap: 1rem;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.85rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .navbar,
    .footer,
    .contact-form,
    .cta-buttons {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    button,
    .btn {
        display: none;
    }
}
