/* === MamaOceana Global Styles === */
:root {
    --bg: #FDF8F4;
    --bg-alt: #F5EDE6;
    --text: #3D3229;
    --text-light: #7A6E63;
    --accent: #4A7C6F;
    --accent-light: #6BA396;
    --accent-dark: #3A6359;
    --warm: #C9856B;
    --warm-light: #E8B4A0;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(61,50,41,0.08);
    --shadow-lg: 0 8px 40px rgba(61,50,41,0.12);
    --radius: 16px;
    --radius-sm: 10px;
    --font-body: 'Inter', sans-serif;
    --font-heading: 'Cormorant Garamond', serif;
    --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

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

a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-dark); }

img { max-width: 100%; height: auto; }

/* === Header === */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(253,248,244,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(61,50,41,0.06);
    transition: var(--transition);
}

.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem; font-weight: 700;
    color: var(--accent); letter-spacing: -0.02em;
}

.nav { display: flex; gap: 32px; }
.nav a {
    font-size: 0.95rem; color: var(--text-light); font-weight: 500;
    position: relative; padding: 4px 0;
}
.nav a:hover, .nav a.active { color: var(--accent); }
.nav a::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 0; height: 2px; background: var(--accent);
    transition: width 0.3s ease;
}
.nav a:hover::after, .nav a.active::after { width: 100%; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
    display: block; width: 24px; height: 2px;
    background: var(--text); margin: 5px 0; transition: var(--transition);
}

/* === Buttons === */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 32px; border-radius: 50px; font-size: 0.95rem;
    font-weight: 600; cursor: pointer; transition: var(--transition);
    border: none; text-decoration: none; gap: 8px;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
.btn-outline:hover { background: var(--accent); color: var(--white); }
.btn-glow {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--white); box-shadow: 0 4px 20px rgba(74,124,111,0.3);
}
.btn-glow:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(74,124,111,0.4); color: var(--white); }
.btn-full { width: 100%; }

/* === Hero === */
.hero {
    padding: 140px 0 80px; min-height: 90vh;
    display: flex; align-items: center;
    background: linear-gradient(135deg, var(--bg) 0%, #EDE5DC 100%);
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero h1 {
    font-family: var(--font-heading); font-size: 3.5rem;
    line-height: 1.15; font-weight: 700; color: var(--text);
}
.hero .accent { color: var(--accent); font-style: italic; }
.hero-subtitle { font-size: 1.15rem; color: var(--text-light); margin: 24px 0 36px; max-width: 500px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual { display: flex; justify-content: center; }
.hero-circle {
    width: 350px; height: 350px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-light), var(--warm-light));
    display: flex; align-items: center; justify-content: center;
    animation: float 6s ease-in-out infinite;
}
.hero-icon { font-size: 100px; }

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

/* === Sections === */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-alt); }
.section-title {
    font-family: var(--font-heading); font-size: 2.5rem;
    text-align: center; margin-bottom: 60px; color: var(--text);
}

/* === About === */
.about-grid { display: grid; grid-template-columns: 300px 1fr; gap: 60px; align-items: start; }
.photo-placeholder {
    width: 300px; height: 380px; border-radius: var(--radius);
    background: var(--bg-alt); display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 12px;
}
.photo-placeholder span { font-size: 80px; }
.photo-placeholder p { color: var(--text-light); font-size: 0.9rem; }
.lead { font-size: 1.15rem; color: var(--text); margin-bottom: 16px; font-weight: 500; }
.about-text p { margin-bottom: 16px; color: var(--text-light); }
.about-certs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.cert-item {
    padding: 12px 16px; background: var(--white); border-radius: var(--radius-sm);
    font-size: 0.9rem; box-shadow: var(--shadow);
}

/* === Services === */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card {
    background: var(--white); border-radius: var(--radius); padding: 40px 30px;
    box-shadow: var(--shadow); transition: var(--transition); text-align: center;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-icon { font-size: 48px; margin-bottom: 20px; }
.service-card h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 16px; }
.service-card p { color: var(--text-light); margin-bottom: 20px; font-size: 0.95rem; }
.service-details {
    list-style: none; text-align: left; margin-bottom: 24px;
    padding: 16px; background: var(--bg); border-radius: var(--radius-sm);
}
.service-details li { padding: 6px 0; font-size: 0.9rem; color: var(--text-light); }
.service-details li::before { content: '✓ '; color: var(--accent); font-weight: 600; }

/* === Cards Teaser === */
.cards-teaser {
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
    color: var(--white); padding: 100px 0;
}
.cards-teaser-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.cards-teaser h2 { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 20px; }
.cards-teaser p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 30px; }
.card-deck { position: relative; width: 200px; height: 300px; margin: 0 auto; }
.deck-card {
    position: absolute; width: 180px; height: 260px; border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), var(--warm));
    border: 2px solid rgba(255,255,255,0.2);
}
.deck-1 { top: 0; left: 10px; transform: rotate(-5deg); }
.deck-2 { top: 5px; left: 15px; transform: rotate(0deg); }
.deck-3 { top: 10px; left: 20px; transform: rotate(5deg); }

/* === Reviews === */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-card {
    background: var(--white); border-radius: var(--radius); padding: 30px;
    box-shadow: var(--shadow);
}
.review-stars { margin-bottom: 16px; }
.review-card p { color: var(--text-light); font-style: italic; margin-bottom: 16px; }
.review-author { font-weight: 600; color: var(--accent); font-size: 0.9rem; }

/* === Contacts === */
.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contacts-lead { font-size: 1.1rem; color: var(--text-light); margin-bottom: 30px; }
.contact-links { display: flex; flex-direction: column; gap: 16px; }
.contact-link {
    display: flex; align-items: center; gap: 12px; padding: 16px 24px;
    background: var(--white); border-radius: var(--radius-sm); box-shadow: var(--shadow);
    font-weight: 600; font-size: 1.05rem; transition: var(--transition);
}
.contact-link svg { width: 24px; height: 24px; }
.contact-link:hover { transform: translateX(8px); box-shadow: var(--shadow-lg); }
.contact-link.telegram { color: #0088cc; }
.contact-link.whatsapp { color: #25D366; }
.contact-link.instagram { color: #E1306C; }
.contacts-hours { margin-top: 24px; color: var(--text-light); font-size: 0.95rem; }

.contacts-form h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 24px; }
.contacts-form input, .contacts-form textarea {
    width: 100%; padding: 14px 18px; border: 2px solid #E8E0D8;
    border-radius: var(--radius-sm); font-family: var(--font-body);
    font-size: 1rem; margin-bottom: 16px; background: var(--white);
    transition: var(--transition);
}
.contacts-form input:focus, .contacts-form textarea:focus {
    outline: none; border-color: var(--accent);
}
.form-result { margin-top: 12px; font-size: 0.95rem; }
.form-result.success { color: var(--accent); }
.form-result.error { color: #c0392b; }

/* === Footer === */
.footer {
    background: var(--text); color: rgba(255,255,255,0.7); padding: 40px 0;
}
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer .logo { color: var(--white); font-size: 1.4rem; }
.footer-brand p { font-size: 0.85rem; margin-top: 4px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 0.85rem; width: 100%; text-align: center; margin-top: 20px; }

/* === Floating Contacts === */
.floating-contacts { position: fixed; bottom: 24px; right: 24px; z-index: 99; }
.floating-btn {
    width: 60px; height: 60px; border-radius: 50%; border: none;
    background: var(--accent); color: var(--white); font-size: 24px;
    cursor: pointer; box-shadow: var(--shadow-lg); transition: var(--transition);
}
.floating-btn:hover { transform: scale(1.1); }
.floating-menu {
    position: absolute; bottom: 70px; right: 0; display: none;
    flex-direction: column; gap: 8px;
}
.floating-menu.active { display: flex; }
.floating-link {
    padding: 10px 20px; background: var(--white); border-radius: 50px;
    box-shadow: var(--shadow-lg); font-size: 0.9rem; font-weight: 600;
    white-space: nowrap;
}
.floating-link.tg { color: #0088cc; }
.floating-link.wa { color: #25D366; }
.floating-link.ig { color: #E1306C; }

/* === Contact links mini === */
.contact-links-mini { display: flex; gap: 16px; justify-content: center; margin-top: 16px; }
.contact-links-mini a {
    padding: 10px 24px; background: var(--white); border-radius: 50px;
    font-weight: 600; font-size: 0.9rem; box-shadow: var(--shadow);
}

/* === Shop === */
.shop-intro { text-align: center; color: var(--text-light); max-width: 600px; margin: -30px auto 50px; font-size: 1.1rem; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.product-card {
    background: var(--white); border-radius: var(--radius); padding: 30px;
    box-shadow: var(--shadow); text-align: center; transition: var(--transition);
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-cover { font-size: 64px; margin-bottom: 20px; }
.product-card h3 { font-family: var(--font-heading); font-size: 1.4rem; margin-bottom: 12px; }
.product-card p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 20px; }
.product-price { font-size: 1.5rem; font-weight: 700; color: var(--accent); margin-bottom: 20px; }
.shop-cta { text-align: center; margin-top: 60px; color: var(--text-light); }

/* === Responsive === */
@media (max-width: 768px) {
    .nav { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--bg); flex-direction: column; padding: 24px; gap: 16px; box-shadow: var(--shadow-lg); }
    .nav.active { display: flex; }
    .nav-toggle { display: block; }
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero h1 { font-size: 2.2rem; }
    .hero-subtitle { margin: 16px auto 28px; }
    .hero-buttons { justify-content: center; }
    .hero-circle { width: 200px; height: 200px; }
    .hero-icon { font-size: 60px; }
    .about-grid { grid-template-columns: 1fr; }
    .photo-placeholder { width: 100%; max-width: 300px; margin: 0 auto; }
    .about-certs { grid-template-columns: 1fr; }
    .services-grid, .reviews-grid, .products-grid { grid-template-columns: 1fr; }
    .cards-teaser-inner { grid-template-columns: 1fr; text-align: center; }
    .contacts-grid { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; text-align: center; }
}
