/* ─── Custom Properties ─────────────────────────────────────── */
:root {
    --pink:       #E8166D;
    --pink-dark:  #c4105c;
    --pink-light: #fce8f2;
    --bg:         #fdf6f9;
    --white:      #ffffff;
    --text:       #1a1a1a;
    --text-muted: #666;
    --radius:     12px;
    --shadow:     0 4px 20px rgba(232, 22, 109, 0.12);
    --font-head:  'Playfair Display', serif;
    --font-body:  'Inter', sans-serif;
    --nav-h:      68px;
}

/* ─── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ─── Utilities ─────────────────────────────────────────────── */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.section {
    padding: 90px 0;
}

.section-alt {
    background: var(--pink-light);
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.section-sub {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2.5rem;
}

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    letter-spacing: 0.02em;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

.btn-white {
    background: var(--white);
    color: var(--pink);
}
.btn-white:hover { background: #ffe8f3; }

.btn-pink {
    background: var(--pink);
    color: var(--white);
}
.btn-pink:hover { background: var(--pink-dark); }

/* ─── Animations ────────────────────────────────────────────── */
.animate {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Header / Nav ──────────────────────────────────────────── */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    height: var(--nav-h);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.nav-logo img {
    height: 48px;
    width: 48px;
    border-radius: 8px;
    object-fit: cover;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text);
    transition: color 0.2s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -3px;
    width: 0; height: 2px;
    background: var(--pink);
    transition: width 0.25s;
}
.nav-links a:hover { color: var(--pink); }
.nav-links a:hover::after { width: 100%; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Language Toggle ───────────────────────────────────────── */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border: 1.5px solid var(--pink);
    border-radius: 50px;
    font-size: 1.15rem;
    line-height: 1;
    color: var(--text-muted);
    transition: border-color 0.2s;
    flex-shrink: 0;
    margin-left: 0.5rem;
}
.lang-toggle:hover { border-color: var(--pink-dark); }
.lang-divider { color: #ddd; font-weight: 300; font-size: 0.8rem; }
.lang-option { transition: opacity 0.2s; }
.lang-option.active { opacity: 1; }
.lang-option:not(.active) { opacity: 0.4; }

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
    position: relative;
    background: var(--pink);
    min-height: calc(100vh - var(--nav-h));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 80px 20px 120px;
}

.hero-content {
    max-width: 680px;
    animation: fadeUp 0.7s ease both;
}

.hero-eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 1rem;
}

.hero h1 {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    line-height: 1.15;
    margin-bottom: 1.2rem;
    color: var(--white);
}

.hero-sub {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 2.2rem;
    letter-spacing: 0.05em;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}
.hero-wave svg { width: 100%; height: 60px; }

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

/* ─── Products ──────────────────────────────────────────────── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.25s, box-shadow 0.25s;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 32px rgba(232, 22, 109, 0.18);
}

.product-img-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, var(--pink-light) 0%, #f7c5df 100%);
}

.product-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.product-body {
    padding: 1.2rem 1.4rem 1.6rem;
}

.product-badges {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.7rem;
}

.badge {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    background: var(--pink-light);
    color: var(--pink);
    border-radius: 50px;
    padding: 2px 10px;
    text-transform: uppercase;
}

.product-card h3 {
    font-family: var(--font-head);
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
    color: var(--text);
}

.product-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

/* ─── About ─────────────────────────────────────────────────── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text .section-title {
    margin-bottom: 1.2rem;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.97rem;
}

.value-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.6rem;
}

.pill {
    background: var(--white);
    border: 1.5px solid var(--pink);
    color: var(--pink);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 0.88rem;
    font-weight: 500;
}

.about-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-width: 380px;
    margin: 0 auto;
}

/* ─── Map ───────────────────────────────────────────────────── */
.map-wrap {
    margin-top: 1.5rem;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.map-wrap iframe {
    display: block;
    width: 100%;
    height: 220px;
    border: 0;
}

/* ─── Contact ───────────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-details {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-details li {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.contact-link {
    color: inherit;
    text-decoration: none;
}
.contact-link:hover {
    color: var(--pink);
    text-decoration: underline;
}

.contact-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}


.messenger-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.2rem;
    height: 100%;
}

.messenger-cta-text {
    color: var(--text-muted);
    font-size: 0.97rem;
    line-height: 1.65;
}

.btn-messenger {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0099FF;
    color: var(--white);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    align-self: flex-start;
}
.btn-messenger:hover {
    background: #007acc;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 153, 255, 0.35);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
    align-self: flex-start;
}
.btn-instagram:hover {
    opacity: 0.88;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 39, 67, 0.35);
}

/* ─── Footer ────────────────────────────────────────────────── */
footer {
    background: var(--pink);
    color: var(--white);
    padding: 50px 0 36px;
    text-align: center;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 0.2rem;
}

.footer-tagline {
    font-size: 0.85rem;
    opacity: 0.85;
    letter-spacing: 0.04em;
}

.footer-social {
    display: flex;
    gap: 1.2rem;
    margin-top: 0.3rem;
}

.footer-social a {
    color: var(--white);
    opacity: 0.8;
    transition: opacity 0.2s, transform 0.2s;
}
.footer-social a:hover { opacity: 1; transform: translateY(-2px); }

.footer-copy {
    font-size: 0.78rem;
    opacity: 0.65;
    margin-top: 0.5rem;
}

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 768px) {
    .hamburger { display: flex; }

    .nav-links {
        display: none;
        position: absolute;
        top: var(--nav-h);
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 1.5rem 0;
        gap: 1.4rem;
        box-shadow: 0 8px 16px rgba(0,0,0,0.08);
    }
    .nav-links.open { display: flex; }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-image { order: -1; }
    .about-image img { max-width: 240px; }

    .section { padding: 60px 0; }

    .hero { padding: 60px 20px 100px; }

    .lang-toggle { margin-left: 0; }
}
