@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --bg-primary: #FCF9F5;
    --bg-secondary: #F3EFE9;
    --accent-olive: #6B8E23;
    --accent-olive-dark: #556B2F;
    --accent-terracotta: #CD853F;
    --accent-gold: #D4AF37;
    --text-main: #333333;
    --text-muted: #666666;
    --white: #FFFFFF;
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-medium: 0 15px 40px rgba(0,0,0,0.1);
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, .font-serif {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Layout Utils --- */
.section-padding {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

.flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.grid { display: grid; }

/* --- Animations --- */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

.shimmer {
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    background-size: 1000px 100%;
    animation: shimmer 3s infinite linear;
}

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

.float-anim {
    animation: float 6s ease-in-out infinite;
}

/* --- Components --- */

/* Top Disclaimer */
.top-disclaimer {
    background: var(--bg-secondary);
    padding: 8px 0;
    font-size: 11px;
    text-align: center;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-olive);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(107, 142, 35, 0.3);
}

.btn-primary:hover {
    background: var(--accent-olive-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(107, 142, 35, 0.4);
}

.btn-amazon {
    background: #FF9900;
    color: #111;
    font-weight: 700;
}

.btn-amazon:hover {
    background: #e68a00;
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--accent-olive);
    color: var(--accent-olive);
}

.btn-secondary:hover {
    background: var(--accent-olive);
    color: var(--white);
}

/* Badge */
.discount-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-terracotta);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    z-index: 10;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(205, 133, 63, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(205, 133, 63, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(205, 133, 63, 0); }
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-main);
}

.section-header p {
    font-size: 18px;
    color: var(--text-muted);
}

/* Cards */
.card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

/* Footer */
footer {
    background: #222;
    color: #aaa;
    padding: 80px 0 40px;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 40px;
    text-align: center;
}

/* Sticky Mobile CTA */
.sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 15px 20px;
    display: none;
    z-index: 100;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    justify-content: center;
}

@media (max-width: 768px) {
    .sticky-mobile-cta {
        display: flex;
    }
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gallery-item {
    aspect-ratio: 1;
    background: var(--bg-secondary);
    border-radius: 15px;
    overflow: hidden;
}

/* Accordion */
.accordion-item {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.accordion-header {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
    color: var(--text-muted);
    font-size: 15px;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding-bottom: 20px;
}
