:root {
    --cream: #F7F4EF;
    --sage: #8B9D77;
    --sage-dark: #6B7D5A;
    --terracotta: #C4745D;
    --terracotta-dark: #A85D48;
    --charcoal: #2D2D2D;
    --warm-gray: #9A9490;
    --sand: #E8E2D9;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 500; }

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--cream);
    box-shadow: 0 2px 30px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
}

nav.scrolled { padding: 1rem 4rem; }
nav.transparent { background: linear-gradient(to bottom, var(--cream) 0%, transparent 100%); box-shadow: none; }

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--charcoal);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.logo span { color: var(--sage); }
.nav-links { display: flex; gap: 3rem; list-style: none; }

.nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
}

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

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: var(--cream);
    z-index: 1000;
    padding: 5rem 2rem 2rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 4px 0 20px rgba(0,0,0,0.1);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.open { opacity: 1; pointer-events: auto; }
.mobile-menu ul { list-style: none; }
.mobile-menu li { margin-bottom: 0.5rem; }

.mobile-menu a {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
    color: var(--charcoal);
    text-decoration: none;
    border-bottom: 1px solid var(--sand);
}

.mobile-menu a:hover { color: var(--sage); }

/* Cart Icon */
.cart-icon { position: relative; cursor: pointer; }
.cart-icon svg { width: 24px; height: 24px; stroke: var(--charcoal); fill: none; stroke-width: 1.5; }

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--terracotta);
    color: white;
    font-size: 0.65rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Page Header */
.page-header {
    padding: 10rem 4rem 4rem;
    text-align: center;
    color: white;
}

.page-header.sage { background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%); }
.page-header.terracotta { background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-dark) 100%); }
.page-header h1 { font-size: 3.5rem; margin-bottom: 1rem; }
.page-header p { max-width: 550px; margin: 0 auto; font-size: 1.1rem; opacity: 0.95; }

/* Breadcrumb */
.breadcrumb { padding: 1.5rem 4rem; background: var(--sand); }
.breadcrumb a { color: var(--warm-gray); text-decoration: none; font-size: 0.85rem; }
.breadcrumb a:hover { color: var(--charcoal); }
.breadcrumb span { color: var(--charcoal); font-size: 0.85rem; }

/* Products Grid */
.products { padding: 4rem; max-width: 1400px; margin: 0 auto; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 300px));
    gap: 2rem;
    justify-content: center;
}

.product-card {
    position: relative;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.product-image { position: relative; height: 300px; background: var(--sand); overflow: hidden; }
.product-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-img { transform: scale(1.05); }

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--charcoal);
    color: white;
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
}

.product-info { padding: 1.5rem; }
.product-category { font-size: 0.75rem; color: var(--warm-gray); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.product-name { font-size: 1.3rem; margin-bottom: 0.5rem; }
.product-price { font-size: 1.1rem; color: var(--sage-dark); font-weight: 500; }

.add-to-cart {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--charcoal);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.product-card:hover .add-to-cart { opacity: 1; transform: translateY(0); }
.add-to-cart:hover { background: var(--sage); }
.add-to-cart svg { width: 20px; height: 20px; stroke: white; stroke-width: 2; }

/* Color Selector */
.color-selector { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.75rem; flex-wrap: wrap; }
.color-selector-label { font-size: 0.7rem; color: var(--warm-gray); text-transform: uppercase; letter-spacing: 0.05em; width: 100%; margin-bottom: 0.25rem; }

.color-swatch {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.color-swatch:hover { transform: scale(1.1); }
.color-swatch.selected { border-color: var(--charcoal); box-shadow: 0 0 0 2px white inset; }
.color-swatch[data-color="white"] { background: #FFFFFF; border-color: #E0E0E0; }
.color-swatch[data-color="white"].selected { border-color: var(--charcoal); }
.color-swatch[data-color="black"] { background: #2D2D2D; }
.color-swatch[data-color="brown"] { background: #8B6914; }
.color-swatch[data-color="tan"] { background: #D2B48C; }
.color-swatch[data-color="marble"] { background: linear-gradient(135deg, #f5f5f5 25%, #e0e0e0 50%, #f5f5f5 75%); }
.color-swatch[data-color="sage"] { background: var(--sage); }
.color-swatch[data-color="terracotta"] { background: var(--terracotta); }

/* Footer */
footer {
    background: var(--charcoal);
    color: white;
    padding: 5rem 4rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.footer-brand .logo { color: white; }
.footer-brand p { color: var(--warm-gray); margin-top: 1rem; font-size: 0.9rem; line-height: 1.7; }
.footer-column h4 { font-size: 1rem; margin-bottom: 1.5rem; font-weight: 500; }
.footer-column ul { list-style: none; }
.footer-column li { margin-bottom: 0.75rem; }
.footer-column a { color: var(--warm-gray); text-decoration: none; font-size: 0.9rem; transition: color 0.3s ease; }
.footer-column a:hover { color: white; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-bottom p { color: var(--warm-gray); font-size: 0.85rem; }
.social-links { display: flex; gap: 1rem; }
.social-links a { color: var(--warm-gray); transition: color 0.3s ease; }
.social-links a:hover { color: white; }
.social-links svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.5; }

/* Loading */
.loading { text-align: center; padding: 4rem; color: var(--warm-gray); }

/* Cart Modal */
.cart-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--charcoal);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    z-index: 10001;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.cart-notification.show { opacity: 1; transform: translateY(0); }

.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    justify-content: flex-end;
}

.cart-modal.open { display: flex; }

.cart-modal-content {
    background: var(--cream);
    width: 100%;
    max-width: 450px;
    height: 100%;
    display: flex;
    flex-direction: column;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--sand);
}

.cart-header h2 { font-size: 1.8rem; }

.cart-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--charcoal);
    line-height: 1;
}

.cart-items { flex: 1; overflow-y: auto; padding: 1rem; }

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    background: var(--sand);
}

.cart-item-details { flex: 1; }
.cart-item-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; margin-bottom: 0.25rem; }
.cart-item-color { font-size: 0.75rem; color: var(--warm-gray); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.25rem; }
.cart-item-price { color: var(--sage-dark); font-weight: 500; }
.cart-item-controls { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.5rem; }

.qty-btn {
    width: 28px;
    height: 28px;
    border: 1px solid var(--sand);
    background: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

.qty-btn:hover { background: var(--sand); }
.cart-item-qty { width: 30px; text-align: center; }

.cart-item-remove {
    color: var(--warm-gray);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.8rem;
    margin-left: auto;
}

.cart-item-remove:hover { color: var(--terracotta); }
.cart-empty { text-align: center; padding: 3rem; color: var(--warm-gray); }
.cart-footer { padding: 1.5rem; border-top: 1px solid var(--sand); }
.cart-total { display: flex; justify-content: space-between; font-size: 1.2rem; font-weight: 500; margin-bottom: 1rem; }

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background: var(--charcoal);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.checkout-btn:hover { background: var(--sage-dark); }
.checkout-btn:disabled { background: var(--warm-gray); cursor: not-allowed; }

/* Email Popup */
#email-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease;
}

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

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
}

.popup-content {
    position: relative;
    background: var(--cream);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    animation: slideUp 0.4s ease;
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--warm-gray);
    line-height: 1;
    padding: 0.5rem;
}

.popup-close:hover { color: var(--charcoal); }
.popup-icon { font-size: 3rem; margin-bottom: 1rem; }
.popup-content h2 { font-size: 2.2rem; margin-bottom: 0.75rem; }
.popup-content > p { color: var(--warm-gray); font-size: 0.95rem; line-height: 1.6; margin-bottom: 1.5rem; }

#email-form { display: flex; flex-direction: column; gap: 0.75rem; }

#popup-email {
    padding: 1rem 1.25rem;
    border: 2px solid var(--sand);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

#popup-email:focus { outline: none; border-color: var(--sage); }

#email-form button {
    padding: 1rem;
    background: var(--charcoal);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

#email-form button:hover { background: var(--sage-dark); }
#email-form button:disabled { background: var(--warm-gray); cursor: not-allowed; }
.popup-note { font-size: 0.8rem; color: var(--warm-gray); margin-top: 1rem; }
.popup-success { padding: 1rem 0; }

.success-icon {
    width: 60px;
    height: 60px;
    background: var(--sage);
    color: white;
    font-size: 1.8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.popup-success h3 { font-size: 1.8rem; margin-bottom: 0.5rem; }
.popup-success p { color: var(--warm-gray); margin-bottom: 0.75rem; }

.discount-code {
    background: var(--charcoal);
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    padding: 1rem 2rem;
    border-radius: 10px;
    display: inline-block;
    margin: 0.5rem 0;
}

.code-note { font-size: 0.85rem; color: var(--sage-dark); }

/* === INDEX PAGE SPECIFIC === */

/* Noise texture overlay */
body.home::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.03;
    z-index: 1000;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 4rem 4rem 8rem;
    position: relative;
    z-index: 2;
}

.hero-tagline {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--terracotta);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.4s;
}

.hero h1 em { font-style: italic; color: var(--sage); }

.hero-description {
    font-size: 1.1rem;
    color: var(--warm-gray);
    max-width: 400px;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.8s;
}

.btn {
    padding: 1rem 2.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary { background: var(--charcoal); color: white; }
.btn-primary:hover { background: var(--sage-dark); transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--charcoal); border: 1px solid var(--charcoal); }
.btn-secondary:hover { background: var(--charcoal); color: white; }

.hero-image {
    position: relative;
    background: var(--sand);
    overflow: hidden;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 30% 70%, var(--sage) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 30%, var(--terracotta) 0%, transparent 40%);
    opacity: 0.15;
}

.floating-plant {
    position: absolute;
    width: 70%; height: 80%;
    top: 10%; left: 15%;
    border-radius: 200px 200px 100px 100px;
    background: linear-gradient(180deg, var(--sage) 0%, var(--sage-dark) 100%);
    opacity: 0;
    animation: floatIn 1s ease forwards 0.5s, float 6s ease-in-out infinite 1.5s;
}

.floating-planter {
    position: absolute;
    width: 35%; height: 45%;
    bottom: 5%; right: 10%;
    background: var(--terracotta);
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
    opacity: 0;
    animation: floatIn 1s ease forwards 0.8s, floatAlt 5s ease-in-out infinite 1.8s;
}

.geometric-accent {
    position: absolute;
    width: 150px; height: 150px;
    border: 2px solid var(--charcoal);
    border-radius: 50%;
    top: 20%; left: -50px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1s;
}

/* Sections */
.featured, .categories, .about { padding: 8rem 4rem; }
.featured { background: white; }
.categories { background: var(--cream); }
.about { background: white; }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--terracotta); margin-bottom: 1rem; }
.section-title { font-size: clamp(2.5rem, 4vw, 3.5rem); margin-bottom: 1rem; }
.section-subtitle { color: var(--warm-gray); max-width: 500px; margin: 0 auto; }

/* Combo Bundles */
.combos {
    padding: 8rem 4rem;
    background: linear-gradient(180deg, var(--sand) 0%, var(--cream) 100%);
}

.combo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 340px));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.combo-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.combo-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
.combo-card.featured-combo { border: 2px solid var(--sage); }

.combo-images {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--cream);
    gap: 1rem;
}

.combo-img {
    width: 120px; height: 120px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.combo-card:hover .combo-img { transform: scale(1.05); }
.combo-plus { font-size: 1.5rem; font-weight: 300; color: var(--warm-gray); }
.combo-info { padding: 1.5rem; flex-grow: 1; }

.combo-badge {
    display: inline-block;
    background: var(--sage);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}

.combo-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; margin-bottom: 0.5rem; color: var(--charcoal); }
.combo-description { font-size: 0.9rem; color: var(--warm-gray); line-height: 1.5; margin-bottom: 1rem; }
.combo-pricing { display: flex; align-items: center; gap: 0.75rem; }
.combo-original { font-size: 1rem; color: var(--warm-gray); text-decoration: line-through; }
.combo-price { font-size: 1.3rem; font-weight: 600; color: var(--terracotta); }

.combo-cart {
    position: relative;
    width: auto;
    height: auto;
    border-radius: 8px;
    opacity: 1;
    transform: none;
    padding: 0.75rem 1.25rem;
    margin: 0 1rem 1rem 1rem;
    gap: 0.4rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    background: var(--sage);
    color: white;
    box-shadow: 0 2px 8px rgba(139, 157, 119, 0.3);
    transition: all 0.2s ease;
    justify-content: center;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

.combo-cart svg {
    width: 14px;
    height: 14px;
    stroke: white;
    fill: none;
    stroke-width: 2;
}

.combo-cart:hover { transform: translateY(-2px); background: var(--sage-dark); box-shadow: 0 4px 12px rgba(139, 157, 119, 0.4); }

/* Categories */
.category-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    position: relative;
    display: block;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.2); }
.category-card.plants { background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%); }
.category-card.planters { background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-dark) 100%); }

.category-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 3rem;
    color: white;
    z-index: 2;
}

.category-title { font-size: 2.5rem; margin-bottom: 0.5rem; color: white; }
.category-count { font-size: 0.9rem; opacity: 0.8; margin-bottom: 1.5rem; }

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.category-link svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform 0.3s ease; }
.category-card:hover .category-link svg { transform: translateX(5px); }

.category-visual {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 250px; height: 300px;
    opacity: 0.3;
}

.category-card.plants .category-visual { background: white; border-radius: 150px 150px 50px 50px; }
.category-card.planters .category-visual { background: white; clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%); }

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-image {
    position: relative;
    height: 600px;
    background: var(--sand);
    border-radius: 300px 300px 24px 24px;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 40px;
    background: linear-gradient(180deg, var(--sage) 0%, var(--sage-dark) 100%);
    border-radius: 250px 250px 16px 16px;
    opacity: 0.8;
}

.about-content h2 { font-size: clamp(2rem, 3vw, 2.8rem); margin-bottom: 1.5rem; line-height: 1.2; }
.about-content p { color: var(--warm-gray); margin-bottom: 1.5rem; font-size: 1.05rem; }

.features-list { list-style: none; margin: 2rem 0; }
.features-list li { display: flex; align-items: center; gap: 1rem; padding: 0.75rem 0; border-bottom: 1px solid var(--sand); }
.features-list li:last-child { border-bottom: none; }

.feature-icon {
    width: 40px; height: 40px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg { width: 20px; height: 20px; stroke: var(--sage); fill: none; stroke-width: 2; }

/* Newsletter */
.newsletter {
    padding: 6rem 4rem;
    background: var(--charcoal);
    color: white;
    text-align: center;
}

.newsletter h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.newsletter p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; max-width: 400px; margin-left: auto; margin-right: auto; }

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

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus { border-color: var(--sage); }

.newsletter-form button {
    padding: 1rem 2rem;
    background: var(--sage);
    color: white;
    border: none;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.newsletter-form button:hover { background: var(--sage-dark); }

/* Index Footer Override */
.home footer { padding: 4rem; background: var(--cream); border-top: 1px solid var(--sand); color: var(--charcoal); }
.home .footer-brand .logo { color: var(--charcoal); }
.home .footer-brand p { color: var(--warm-gray); }
.home .footer-column h4 { color: var(--charcoal); }
.home .footer-column a { color: var(--warm-gray); }
.home .footer-column a:hover { color: var(--charcoal); }
.home .footer-bottom { border-top: 1px solid var(--sand); }
.home .footer-bottom p { color: var(--warm-gray); }
.home .footer-trust { border-top: 1px solid var(--sand); }
.home .footer-trust-badge { color: var(--warm-gray); }
.home .social-links a { background: var(--sand); }
.home .social-links a:hover { background: var(--sage); }
.home .social-links svg { stroke: var(--charcoal); }
.home .social-links a:hover svg { stroke: white; }

/* Planters page designer note */
.designer-note {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--sand);
    border-radius: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.designer-note p { color: var(--warm-gray); font-size: 0.9rem; }
.designer-note a { color: var(--sage-dark); }

/* Animations */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes floatIn { from { opacity: 0; transform: translateY(50px) scale(0.9); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@keyframes floatAlt { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-10px) rotate(2deg); } }

/* Mobile Responsive */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-content { padding: 8rem 2rem 4rem; }
    .hero-image { height: 400px; }
    .category-grid { grid-template-columns: 1fr; }
    .category-card { height: 350px; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-image { height: 400px; }
}

@media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .mobile-menu { display: block; }
    .mobile-menu-overlay { display: block; }
    .page-header { padding: 8rem 1.5rem 3rem; }
    .page-header h1 { font-size: 2.5rem; }
    .breadcrumb { padding: 1rem 1.5rem; }
    .products { padding: 2rem 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; }
    footer { padding: 3rem 1.5rem 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

    .product-card .add-to-cart {
        opacity: 1;
        transform: translateY(0);
        width: 48px;
        height: 48px;
    }

    .product-card .add-to-cart svg { width: 24px; height: 24px; stroke-width: 2.5; }

    /* Index specific mobile */
    .hero-content { padding: 7rem 1.5rem 3rem; }
    .featured, .categories, .about { padding: 4rem 1.5rem; }
    .combos { padding: 4rem 0.5rem; }
    .product-grid { grid-template-columns: 1fr; }
    .combo-grid { grid-template-columns: 1fr; padding: 0 1rem; justify-items: center; }
    .combo-card { max-width: 400px; width: 100%; padding-bottom: 0.25rem; }
    .combo-cart { font-size: 0.9rem; }
    .combo-cart:hover, .combo-cart:active { transform: translateY(-1px); }
    .combo-cart svg { width: 16px; height: 16px; }
    .newsletter-form { flex-direction: column; }
}

/* === TRUST & SOCIAL PROOF === */

/* Announcement Bar */
.announcement-bar {
    background: var(--charcoal);
    color: white;
    text-align: center;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

.announcement-bar a { color: var(--sage); text-decoration: underline; }

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1.5rem;
    background: white;
    border-top: 1px solid var(--sand);
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--warm-gray);
}

.trust-badge svg {
    width: 20px;
    height: 20px;
    stroke: var(--sage);
    fill: none;
    stroke-width: 1.5;
}

.trust-badge.secure svg { stroke: var(--sage); }

/* Payment Icons */
.payment-icons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

.payment-icon {
    width: 40px;
    height: 25px;
    background: var(--sand);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--charcoal);
}

/* Difficulty Badge */
.difficulty-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.difficulty-badge.easy { background: #E8F5E9; color: #2E7D32; }
.difficulty-badge.moderate { background: #FFF3E0; color: #E65100; }
.difficulty-badge.advanced { background: #FFEBEE; color: #C62828; }

.difficulty-badge svg {
    width: 12px;
    height: 12px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* Size Info */
.product-size {
    font-size: 0.75rem;
    color: var(--warm-gray);
    margin-top: 0.25rem;
}

/* Low Stock Warning */
.low-stock {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: var(--terracotta);
    margin-top: 0.5rem;
}

.low-stock::before {
    content: '•';
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Reviews Section */
.reviews-section {
    padding: 5rem 4rem;
    background: var(--sand);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

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

.review-author {
    font-weight: 500;
    color: var(--charcoal);
}

.review-verified {
    font-size: 0.7rem;
    color: var(--sage);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.review-verified svg {
    width: 12px;
    height: 12px;
    stroke: var(--sage);
    fill: none;
    stroke-width: 2;
}

.review-stars {
    color: #F5A623;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.review-text {
    color: var(--warm-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
}

.review-date {
    font-size: 0.75rem;
    color: var(--warm-gray);
    margin-top: 1rem;
}

/* Stats Bar */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 2rem 4rem;
    background: white;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--sage);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--warm-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

/* Free Shipping Progress */
.shipping-progress {
    background: var(--cream);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.shipping-progress-text {
    font-size: 0.85rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.shipping-progress-text strong { color: var(--sage); }

.shipping-progress-bar {
    height: 6px;
    background: var(--sand);
    border-radius: 3px;
    overflow: hidden;
}

.shipping-progress-fill {
    height: 100%;
    background: var(--sage);
    border-radius: 3px;
    transition: width 0.3s ease;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--charcoal);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--sage); transform: translateY(-3px); }
.back-to-top svg { width: 24px; height: 24px; stroke: white; fill: none; stroke-width: 2; }

/* Footer Trust Section */
.footer-trust {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    margin-top: 2rem;
}

.footer-trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.footer-trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--warm-gray);
}

.footer-trust-badge svg {
    width: 18px;
    height: 18px;
    stroke: var(--sage);
    fill: none;
    stroke-width: 1.5;
}

/* Mobile Responsive for new elements */
@media (max-width: 768px) {
    .announcement-bar { font-size: 0.75rem; padding: 0.5rem; }
    .trust-badges { gap: 1rem; padding: 1rem; }
    .trust-badge { font-size: 0.7rem; }
    .stats-bar { flex-direction: column; gap: 1.5rem; padding: 2rem 1.5rem; }
    .stat-number { font-size: 2rem; }
    .reviews-section { padding: 3rem 1.5rem; }
    .reviews-grid { grid-template-columns: 1fr; }
    .back-to-top { bottom: 1rem; right: 1rem; width: 44px; height: 44px; }
    .footer-trust-badges { gap: 1rem; }
}

/* === FAQ STYLES === */
.faq-section {
    padding: 4rem 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-container { display: flex; flex-direction: column; gap: 3rem; }

.faq-category h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--sand);
}

.faq-item { border-bottom: 1px solid var(--sand); }

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--charcoal);
    transition: color 0.2s ease;
}

.faq-question:hover { color: var(--sage); }

.faq-question svg {
    width: 20px;
    height: 20px;
    stroke: var(--warm-gray);
    fill: none;
    stroke-width: 2;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.open .faq-question svg { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 500px; padding-bottom: 1.5rem; }

.faq-answer p {
    color: var(--warm-gray);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.faq-answer a { color: var(--sage); text-decoration: underline; }

.faq-contact {
    text-align: center;
    padding: 4rem;
    background: var(--sand);
}

.faq-contact h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.faq-contact p { color: var(--warm-gray); margin-bottom: 1.5rem; }

/* === CONTACT STYLES === */
.contact-section {
    padding: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-info h2, .contact-form-container h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--warm-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-methods { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }

.contact-method { display: flex; gap: 1rem; align-items: flex-start; }

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--sand);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--sage);
    fill: none;
    stroke-width: 1.5;
}

.contact-detail h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; }
.contact-detail a { color: var(--sage); text-decoration: none; font-weight: 500; }
.contact-detail a:hover { text-decoration: underline; }
.contact-detail p { font-size: 0.85rem; color: var(--warm-gray); margin-top: 0.25rem; }

.quick-links {
    background: var(--sand);
    padding: 1.5rem;
    border-radius: 12px;
}

.quick-links h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.quick-links > p { font-size: 0.9rem; color: var(--warm-gray); margin-bottom: 1rem; }
.quick-links ul { list-style: none; }
.quick-links li { margin-bottom: 0.5rem; }
.quick-links a { color: var(--sage); text-decoration: none; font-size: 0.9rem; }
.quick-links a:hover { text-decoration: underline; }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.85rem; font-weight: 500; color: var(--charcoal); }

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 1px solid var(--sand);
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(139, 157, 119, 0.1);
}

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

.form-success { text-align: center; padding: 3rem; }

.form-success svg {
    width: 64px;
    height: 64px;
    stroke: var(--sage);
    fill: none;
    stroke-width: 1.5;
    margin-bottom: 1rem;
}

.form-success h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-success p { color: var(--warm-gray); }

/* === PLANT CARE HUB STYLES === */
.quick-tips { background: var(--sage); padding: 2rem 4rem; }

.quick-tips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.quick-tip { color: white; }
.quick-tip-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.quick-tip h4 { font-weight: 600; margin-bottom: 0.25rem; }
.quick-tip p { font-size: 0.85rem; opacity: 0.9; }

.care-section { padding: 4rem; max-width: 1200px; margin: 0 auto; }
.care-section.alt-bg { background: var(--sand); max-width: none; }
.care-section.alt-bg > * { max-width: 1200px; margin-left: auto; margin-right: auto; }

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

.article-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.article-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sand);
}

.article-image img { width: 100%; height: 100%; object-fit: cover; }
.article-icon { font-size: 3rem; }

.article-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.article-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    background: var(--sand);
    color: var(--warm-gray);
    margin-bottom: 0.75rem;
    width: fit-content;
}

.article-tag.easy { background: #E8F5E9; color: #2E7D32; }
.article-tag.moderate { background: #FFF3E0; color: #E65100; }
.article-tag.advanced { background: #FFEBEE; color: #C62828; }

.article-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.article-content p {
    font-size: 0.9rem;
    color: var(--warm-gray);
    line-height: 1.6;
    flex-grow: 1;
}

.article-link { color: var(--sage); font-weight: 500; font-size: 0.9rem; margin-top: 1rem; }
.care-newsletter { background: var(--charcoal); }

/* === ARTICLE PAGE STYLES === */
.article-page { max-width: 800px; margin: 0 auto; padding: 2rem 4rem 4rem; }

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

.article-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    margin: 1rem 0;
    color: var(--charcoal);
}

.article-intro { font-size: 1.1rem; color: var(--warm-gray); line-height: 1.7; }

.care-quick-ref {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    background: var(--sand);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    text-align: center;
}

.care-stat { display: flex; flex-direction: column; gap: 0.25rem; }
.care-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--warm-gray); }
.care-value { font-weight: 600; color: var(--charcoal); }

.article-body section { margin-bottom: 2.5rem; }

.article-body h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--sand);
}

.article-body h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal);
    margin: 1.5rem 0 0.75rem;
}

.article-body p { color: var(--charcoal); line-height: 1.8; margin-bottom: 1rem; }

.article-body ul, .article-body ol {
    margin: 1rem 0 1rem 1.5rem;
    color: var(--charcoal);
    line-height: 1.8;
}

.article-body li { margin-bottom: 0.5rem; }
.article-body a { color: var(--sage); }

.tip-box, .warning-box {
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    line-height: 1.7;
}

.tip-box { background: #E8F5E9; border-left: 4px solid var(--sage); }
.warning-box { background: #FFF3E0; border-left: 4px solid #E65100; }

.article-cta {
    background: var(--sand);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
}

.article-cta h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.article-cta p { color: var(--warm-gray); margin-bottom: 1.5rem; }

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

/* === RESPONSIVE FOR NEW PAGES === */
@media (max-width: 768px) {
    .faq-section { padding: 2rem 1.5rem; }
    .faq-category h2 { font-size: 1.5rem; }
    .faq-contact { padding: 3rem 1.5rem; }
    .contact-section { padding: 2rem 1.5rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .quick-tips { padding: 2rem 1.5rem; }
    .quick-tips-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .care-section { padding: 3rem 1.5rem; }
    .article-grid { grid-template-columns: 1fr; }
    .article-page { padding: 1.5rem; }
    .article-header h1 { font-size: 2rem; }
    .care-quick-ref { grid-template-columns: repeat(2, 1fr); }
}
