:root {
    --bg: #f7f5fb;
    --bg-alt: #ffffff;
    --accent: #f19fb4;
    --accent-soft: #fde4ec;
    --text: #2f2f3a;
    --muted: #6f6f80;
    --border: #e3dff2;
    --radius-lg: 24px;
    --radius-md: 16px;
    --shadow-soft: 0 18px 40px rgba(36, 24, 74, 0.12);
}

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

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top left, #fef7ff 0, var(--bg) 52%, #f0f7ff 100%);
    color: var(--text);
}

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

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1120px, 100% - 32px);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(18px);
    background: rgba(247, 245, 251, 0.88);
    border-bottom: 1px solid rgba(227, 223, 242, 0.7);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 16px;
}

.logo {
    font-weight: 700;
    font-size: 1.1rem;
    padding: 6px 14px;
    border-radius: 999px;
    background: linear-gradient(120deg, #ffffff, #fde4ec);
    box-shadow: 0 10px 30px rgba(208, 152, 186, 0.25);
}
.logo span {
    color: var(--accent);
}

.main-nav {
    display: flex;
    gap: 18px;
    font-size: 0.95rem;
}
.main-nav a {
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--muted);
    transition: background 0.2s ease, color 0.2s ease;
}
.main-nav a:hover {
    background: rgba(241, 159, 180, 0.12);
    color: var(--text);
}

.cart-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(241, 159, 180, 0.55);
    font-size: 0.9rem;
    background: #fff;
}
.cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: 0.8rem;
}

main {
    padding: 24px 0 64px;
}

.section {
    padding: 40px 0;
}

.section-alt {
    background: radial-gradient(circle at top right, #fde4ec 0, #f7f5fb 40%, #ffffff 100%);
}

.section-intro {
    max-width: 640px;
    color: var(--muted);
}

.hero {
    padding: 40px 0 16px;
}
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}
.hero-text h1 {
    font-size: clamp(2rem, 4vw, 2.7rem);
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}
.hero-text p {
    color: var(--muted);
    line-height: 1.6;
}
.hero-text p + p {
    margin-top: 12px;
}
.hero-image {
    padding: 16px;
    border-radius: 26px;
    background: linear-gradient(145deg, #ffffff, #fde4ec);
    box-shadow: var(--shadow-soft);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.feature-card {
    padding: 18px 18px 20px;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(36, 24, 74, 0.06);
    border: 1px solid rgba(227, 223, 242, 0.7);
}
.feature-card h2 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.feature-card p {
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.6;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 32px;
    align-items: center;
}
.image-stack {
    position: relative;
    display: grid;
    gap: 16px;
}
.image-stack img:first-child {
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(36, 24, 74, 0.16);
}
.image-stack img:last-child {
    border-radius: 999px;
    width: 68%;
    justify-self: end;
    margin-top: -32%;
    box-shadow: 0 16px 40px rgba(36, 24, 74, 0.14);
}

.cta-block {
    margin-top: 16px;
    padding: 24px 24px;
    border-radius: 26px;
    background: linear-gradient(130deg, #fde4ec, #fdf8ff);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: var(--shadow-soft);
}
.cta-block p {
    max-width: 540px;
    color: var(--muted);
}

.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-primary {
    background: linear-gradient(135deg, #f19fb4, #f2b6d1);
    color: #fff;
    box-shadow: 0 16px 34px rgba(241, 159, 180, 0.45);
}
.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 40px rgba(241, 159, 180, 0.55);
}
.btn-secondary {
    background: #fff;
    color: var(--text);
    border: 1px solid rgba(241, 159, 180, 0.7);
}
.btn-secondary:hover {
    background: #fef7fb;
}
.btn-outline {
    background: transparent;
    border: 1px solid rgba(227, 223, 242, 0.9);
    color: var(--text);
}
.btn-outline:hover {
    background: #fff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 24px;
}
.product-card {
    padding: 18px 18px 20px;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(36, 24, 74, 0.06);
    border: 1px solid rgba(227, 223, 242, 0.7);
}
.product-card h2 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}
.product-card p {
    font-size: 0.95rem;
    color: var(--muted);
}
.product-card .price {
    font-weight: 600;
    color: var(--text);
    margin: 10px 0 14px;
}

.product-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.1fr);
    gap: 32px;
    align-items: start;
}
.product-images {
    padding: 18px;
    border-radius: 26px;
    background: radial-gradient(circle at top left, #fde4ec, #ffffff);
    box-shadow: var(--shadow-soft);
}
.product-info h1 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}
.product-info p {
    color: var(--muted);
    line-height: 1.6;
}
.product-info p + p {
    margin-top: 10px;
}
.product-info .price {
    margin: 16px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
}
.product-meta {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 18px;
    background: var(--accent-soft);
}
.product-meta ul {
    padding-left: 18px;
    margin: 8px 0 0;
}
.product-meta li {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 4px;
}

.cart-items {
    margin-top: 18px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(36, 24, 74, 0.06);
    border: 1px solid rgba(227, 223, 242, 0.7);
    padding: 14px 16px;
}
.cart-item {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #f1edf9;
    font-size: 0.95rem;
}
.cart-item:last-child {
    border-bottom: none;
}
.cart-item input[type="number"] {
    width: 70px;
    padding: 6px;
    border-radius: 14px;
    border: 1px solid var(--border);
}
.cart-remove {
    background: transparent;
    border: none;
    color: var(--muted);
    cursor: pointer;
    font-size: 0.9rem;
}
.cart-summary {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-weight: 600;
}

.narrow {
    max-width: 720px;
}
.narrow p {
    color: var(--muted);
    line-height: 1.7;
}
.narrow p + p {
    margin-top: 12px;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}
.contact-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}
.contact-list li {
    margin-bottom: 6px;
}

.lead-form {
    padding: 18px 18px 20px;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(36, 24, 74, 0.06);
    border: 1px solid rgba(227, 223, 242, 0.7);
}
.lead-form h2 {
    margin-top: 0;
    margin-bottom: 12px;
}
.lead-form label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 10px;
}
.lead-form input,
.lead-form textarea {
    width: 100%;
    margin-top: 4px;
    padding: 8px 10px;
    border-radius: 14px;
    border: 1px solid var(--border);
    font-family: inherit;
    font-size: 0.95rem;
}

.site-footer {
    border-top: 1px solid rgba(227, 223, 242, 0.9);
    background: rgba(255, 255, 255, 0.92);
    padding: 24px 0 12px;
    margin-top: 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.3fr 1fr;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--muted);
}
.footer-grid h4 {
    color: var(--text);
    margin-bottom: 6px;
    font-size: 0.95rem;
}
.footer-bottom {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--muted);
    text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-grid,
    .split-layout,
    .product-layout,
    .contact-layout {
        grid-template-columns: minmax(0, 1fr);
    }
    .hero-image {
        order: -1;
    }
    .image-stack img:last-child {
        margin-top: -20%;
        width: 70%;
    }
    .footer-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 720px) {
    .header-inner {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .main-nav {
        order: 2;
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .product-grid,
    .features-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .cart-item {
        grid-template-columns: 1.8fr 1fr;
        grid-template-rows: auto auto;
    }
}

@media (max-width: 480px) {
    .cta-block {
        flex-direction: column;
        align-items: flex-start;
    }
}
