/* CSS Variables */
:root {
    --cream: #FFF8F0;
    --soft-pink: #FFE5E5;
    --pastel-blue: #E3F2FD;
    --peach: #FFDAB9;
    --sage: #E8F5E3;
    --primary: #FF9EBB;
    --primary-dark: #FF7DA6;
    --text: #5A5A5A;
    --text-dark: #2C2C2C;
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.08);
    --shadow-hover: rgba(0, 0, 0, 0.15);
}

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

body {
    font-family: 'Quicksand', sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--text-dark);
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 15px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

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

.nav-brand a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.nav-brand a:hover { transform: scale(1.05); }

.logo-icon {
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

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

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.nav-menu a:hover, .nav-menu a.active { color: var(--primary); }

.cart-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.cart-icon { font-size: 1.5rem; }

.cart-count {
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    position: absolute;
    top: -8px;
    right: -8px;
    animation: bounce 0.5s ease;
}

@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.nav-actions .cart-link { position: relative; }

@media (max-width: 768px) {
    /* ensure cart link remains visible above the mobile menu */
    .nav-actions { z-index: 1200; }
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--soft-pink) 0%, var(--pastel-blue) 100%);
    padding: 5rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.btn-hero-primary, .btn-hero-secondary {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-hero-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-hero-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 158, 187, 0.4);
}

.btn-hero-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-hero-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.subscription-banner {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px var(--shadow);
    font-weight: 500;
    color: var(--text-dark);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.sub-icon { font-size: 1.3rem; }

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-cloud {
    position: absolute;
    font-size: 3rem;
    opacity: 0.3;
    animation: cloudFloat 20s ease-in-out infinite;
}

.cloud-1 { top: 10%; left: 10%; animation-delay: 0s; }
.cloud-2 { top: 60%; right: 15%; animation-delay: 3s; }
.cloud-3 { bottom: 15%; left: 20%; animation-delay: 6s; }

@keyframes cloudFloat {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(20px, -20px); }
    66% { transform: translate(-15px, 15px); }
}

/* Category Tabs */
.category-section { padding: 4rem 0; }

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text);
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.8rem 2rem;
    background: var(--white);
    border: 2px solid #E0E0E0;
    border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text);
}

.tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    animation: fadeInUp 1s ease-out;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.4s ease;
    animation: scaleIn 0.6s ease-out backwards;
}

.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; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px var(--shadow-hover);
}

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

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

.product-info { padding: 1.5rem; }

.product-name {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.product-category {
    font-size: 0.85rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.btn-add-cart {
    width: 100%;
    padding: 0.9rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Quicksand', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-cart:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.btn-add-cart:active { transform: scale(0.98); }

/* Product quantity controls (for product card) */
.product-quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 0.5rem;
}

.product-quantity-controls .qty-btn {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: none;
    background: #F5F5F5;
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.15s ease;
}

.product-quantity-controls .qty-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.product-quantity-controls .qty-value {
    min-width: 36px;
    text-align: center;
    font-weight: 700;
    color: var(--text-dark);
}

/* Subscription CTA */
.subscription-cta {
    background: linear-gradient(135deg, var(--soft-pink) 0%, var(--sage) 100%);
    padding: 4rem 2rem;
    margin: 4rem 0;
}

.cta-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.cta-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-left p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
    margin: 1.5rem 0;
}

.benefits-list li {
    padding: 0.8rem 0;
    font-size: 1.05rem;
    font-weight: 500;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 158, 187, 0.4);
}

.subscription-preview { text-align: center; }

.preview-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px var(--shadow);
}

.preview-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.preview-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

/* Features */
.features-section {
    padding: 4rem 0;
    background: var(--white);
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    background: var(--cream);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px var(--shadow);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.feature-card p { color: var(--text); }

/* Subscription Page */
.subscription-hero {
    background: linear-gradient(135deg, var(--soft-pink) 0%, var(--pastel-blue) 100%);
    padding: 4rem 2rem 3rem;
    text-align: center;
}

.subscription-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 2rem;
}

.billing-toggle {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.billing-btn {
    padding: 0.8rem 1.5rem;
    background: var(--white);
    border: 2px solid #E0E0E0;
    border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.billing-btn:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.billing-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.save-badge {
    font-size: 0.75rem;
    background: #4CAF50;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
}

/* Pricing Cards */
.pricing-section { padding: 4rem 0; }

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

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px var(--shadow);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px var(--shadow-hover);
}

.pricing-card.popular {
    border: 3px solid var(--primary);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.plan-header { text-align: center; margin-bottom: 2rem; }

.plan-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.plan-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.plan-desc { color: var(--text); }

.plan-price {
    text-align: center;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
    color: var(--primary);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
}

.period {
    font-size: 1rem;
    color: var(--text);
}

.original-price {
    text-align: center;
    margin-bottom: 2rem;
}

.original-price span {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #F0F0F0;
    font-size: 0.95rem;
}

.btn-plan {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-plan:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* How It Works */
.how-it-works {
    padding: 4rem 0;
    background: var(--cream);
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.step-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 15px var(--shadow);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    font-size: 3rem;
    margin: 1rem 0;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* Subscription Benefits */
.subscription-benefits {
    padding: 4rem 0;
    background: var(--white);
}

.subscription-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: var(--cream);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px var(--shadow);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

/* Contact Page */
.contact-section { padding: 4rem 0; }

.contact-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: var(--text);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

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

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px var(--shadow);
    text-align: center;
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.info-note {
    font-size: 0.85rem;
    color: #999;
    margin-top: 0.5rem;
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.social-btn {
    padding: 0.8rem;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--primary-dark);
    transform: translateX(5px);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px var(--shadow);
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Quick Help */
.quick-help {
    padding: 4rem 0;
    background: var(--cream);
}

.quick-help h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.help-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s ease;
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px var(--shadow-hover);
}

.help-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.help-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.help-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.help-link:hover {
    transform: translateX(5px);
}

/* Cart Page */
.cart-section {
    min-height: 70vh;
    padding: 3rem 0;
}

.cart-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out;
}

.cart-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    animation: fadeIn 0.8s ease-out;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cart-item {
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    gap: 1.5rem;
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s ease;
    animation: slideInLeft 0.5s ease-out;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.cart-item:hover { box-shadow: 0 6px 20px var(--shadow-hover); }

.cart-item-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
}

.cart-item-details { flex: 1; }

.cart-item-name {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.cart-item-price {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 600;
}

.cart-item-remove {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.cart-item-remove:hover {
    background: var(--primary);
    color: var(--white);
}

.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
    animation: fadeIn 0.8s ease-out;
}

.empty-cart-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-cart h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.empty-cart p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text);
}

.cart-summary {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px var(--shadow);
    position: sticky;
    top: 100px;
    height: fit-content;
    animation: slideInRight 0.6s ease-out;
}

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

.cart-summary h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.coupon-section {
    display: flex;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.coupon-section input {
    flex: 1;
    padding: 0.8rem;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.95rem;
}

.coupon-section input:focus {
    outline: none;
    border-color: var(--primary);
}

.discount-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: #4CAF50;
    font-weight: 600;
}

.discount-amount { color: #4CAF50; }

.subscription-offer {
    background: var(--sage);
    padding: 1rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.subscription-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 500;
}

.subscription-checkbox input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.subscription-note {
    font-size: 0.85rem;
    color: var(--text);
    margin-top: 0.5rem;
    margin-left: 1.5rem;
}

.total-row {
    border-top: 2px solid #E0E0E0;
    padding-top: 1rem;
    margin-top: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.total-amount {
    color: var(--primary);
    font-size: 1.5rem;
}

.btn-primary, .btn-secondary, .btn-checkout {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Quicksand', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.btn-secondary {
    background: var(--text);
    color: var(--white);
}

.btn-secondary:hover { background: var(--text-dark); }

.btn-checkout {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    margin-top: 1rem;
}

.btn-checkout:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 158, 187, 0.4);
}

.continue-shopping {
    display: block;
    text-align: center;
    margin-top: 1rem;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.continue-shopping:hover { color: var(--primary); }

.cart-benefits {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #E0E0E0;
}

.benefit-item {
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

/* About Page */
.about-section { padding: 3rem 0; }

.about-hero {
    text-align: center;
    padding: 3rem 0 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-subtitle {
    font-size: 1.3rem;
    color: var(--text);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 20px var(--shadow);
    animation: fadeIn 1s ease-out;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.about-text h3 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: var(--primary);
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.values-list, .benefits-list {
    list-style: none;
    margin: 1.5rem 0;
}

.values-list li, .benefits-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.values-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: bold;
}

.benefits-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 1.5rem;
}

.mission-statement {
    background: linear-gradient(135deg, var(--soft-pink) 0%, var(--pastel-blue) 100%);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

/* Founder section */
.about-founder {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin: 2rem 0 1.5rem;
    padding: 1.25rem;
    background: linear-gradient(180deg, rgba(255,158,187,0.05), rgba(227,242,253,0.02));
    border-radius: 12px;
}

.founder-photo {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    border: 4px solid rgba(255,158,187,0.08);
}

.founder-bio h3 {
    margin-bottom: 0.4rem;
}

.founder-bio p { color: var(--text); line-height: 1.5; }

/* Footer social links: add LinkedIn & Instagram icons */
.social-links { display: flex; gap: 0.6rem; }
.social-links a { text-decoration: none; font-size: 1.1rem; display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.4rem 0.6rem; border-radius: 8px; color: var(--text); transition: all 0.2s ease; }
.social-links a:hover { transform: translateY(-3px); color: var(--primary); background: rgba(255,158,187,0.06); }

/* Responsive adjustments */
@media (max-width: 992px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .product-image { height: 220px; }
}

@media (max-width: 768px) {
    /* Header / nav */
    .nav-menu { display: none; }
    .mobile-menu-toggle { display: flex; }
    .nav-menu.active {
        display: flex;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem 1.25rem;
        gap: 0.75rem;
        border-top: 1px solid #F0F0F0;
        box-shadow: 0 12px 40px rgba(0,0,0,0.08);
        z-index: 1100;
    }

    /* Products -> single column */
    .products-grid { grid-template-columns: 1fr; gap: 1rem; }
    .product-image { height: 180px; }
    .product-info { padding: 1rem; }

    /* Make action buttons easier to tap */
    .btn-add-cart { padding: 0.95rem; border-radius: 12px; }
    .product-quantity-controls .qty-btn { width: 48px; height: 48px; border-radius: 10px; }

    /* About founder -> stack */
    .about-founder { flex-direction: column; text-align: center; padding: 1rem; }
    .founder-photo { width: 120px; height: 120px; }
    .founder-bio { padding-top: 0.6rem; }

    /* Cart layout -> stack summary under items */
    .cart-wrapper { display: flex; flex-direction: column; gap: 1.25rem; }
    .cart-items { width: 100%; }
    .cart-summary { width: 100%; }
    .cart-item { display: flex; gap: 0.9rem; align-items: center; }
    .cart-item-image { width: 84px; height: 84px; object-fit: cover; border-radius: 8px; }
    .cart-item-details { flex: 1; }

    /* Footer -> stack columns */
    .footer-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}

@media (max-width: 480px) {
    html, body { font-size: 14px; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }

    .product-image { height: 160px; }
    .product-price { font-size: 1.25rem; }
    .product-name { font-size: 1.1rem; }

    .product-quantity-controls .qty-btn { width: 44px; height: 44px; font-size: 1.1rem; }
    .product-quantity-controls .qty-value, .qty-value { min-width: 30px; }

    .founder-photo { width: 108px; height: 108px; }
    .about-hero { padding: 1.5rem 0; }

    /* Cart item layout for very small screens */
    .cart-item { gap: 0.7rem; }
    .cart-item-line-total { margin-top: 0.4rem; display: block; }
}

/* Small enhancement: make clickable elements touch-friendly */
.btn-add-cart, .btn-cta, .btn-plan, .btn-primary, .btn-secondary, .qty-btn { -webkit-tap-highlight-color: transparent; }

.mission-statement h3 { margin-bottom: 1rem; }

.cta-section {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #E0E0E0;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* Modals */
.newsletter-popup, .checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.newsletter-popup.show, .checkout-modal.show {
    opacity: 1;
    pointer-events: all;
}

.newsletter-content, .modal-content {
    background: var(--white);
    border-radius: 25px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
    animation: popIn 0.5s ease-out;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

@keyframes popIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.close-popup {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text);
    transition: color 0.3s ease;
}

.close-popup:hover { color: var(--primary); }

.newsletter-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.newsletter-content h2, .modal-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter-content p, .modal-content p {
    margin-bottom: 2rem;
    color: var(--text);
}

.newsletter-content form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-content input {
    padding: 1rem;
    border: 2px solid #E0E0E0;
    border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
}

.newsletter-content input:focus {
    outline: none;
    border-color: var(--primary);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #4CAF50;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1.5rem;
    animation: scaleIn 0.5s ease-out;
}

.order-number, .subscription-details {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin: 1rem 0;
}

.delivery-note {
    color: var(--text);
    margin-bottom: 2rem;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Loading & Toast */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.loading-overlay.show {
    opacity: 1;
    pointer-events: all;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid #E0E0E0;
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-overlay p {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: var(--text);
}

.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--text-dark);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px var(--shadow);
    z-index: 2500;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.3s ease;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

/* Footer */
.footer {
    background: var(--white);
    padding: 3rem 0 2rem;
    margin-top: 4rem;
    box-shadow: 0 -2px 15px var(--shadow);
}

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-style: italic;
    color: var(--text);
    margin-bottom: 1rem;
}

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

.social-icon {
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icon:hover { transform: scale(1.2); }

.footer-links, .footer-contact {
    list-style: none;
}

.footer-links li, .footer-contact li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-contact li {
    color: var(--text);
    font-size: 0.95rem;
}

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

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

/* Responsive */
@media (max-width: 968px) {
    .cta-content { grid-template-columns: 1fr; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .cart-wrapper { grid-template-columns: 1fr; }
    .cart-summary { position: static; }
}

@media (max-width: 768px) {
    .mobile-menu-toggle { display: flex; }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
        transition: left 0.3s ease;
        box-shadow: 2px 0 15px var(--shadow);
    }
    
    .nav-menu.active { left: 0; }
    
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .hero-buttons { flex-direction: column; }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .about-content { padding: 2rem; }
    .about-hero h1 { font-size: 2.2rem; }
    
    .newsletter-content, .modal-content { padding: 2rem; }
    
    .toast {
        left: 1rem;
        right: 1rem;
        text-align: center;
    }
    
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.popular { transform: scale(1); }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .products-grid { grid-template-columns: 1fr; }
    .cart-item { flex-direction: column; }
    .cart-item-image {
        width: 100%;
        height: 200px;
    }
    .category-tabs { gap: 0.5rem; }
    .tab-btn { padding: 0.6rem 1.2rem; font-size: 0.85rem; }
}
