@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;600;700&display=swap');

:root {
    --heading-color: rgb(179, 192, 176);
    --text-color: rgb(131, 129, 129);
    --accent-color: rgb(199, 161, 114);
    --bg: #f9f7f5;
    --card: #ffffff;
    --border: #e8e6e3;
    --shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Lato', sans-serif;
    background: #f9f7f5;
    color: var(--text-color);
}

a {
    color: inherit;
}

.webshop-hero {
    padding: 48px 18px 32px;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
}

.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 14px;
    color: var(--text-color);
    font-weight: 400;
    margin: 0;
}

.hero-title {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 2.8px;
    color: var(--heading-color);
    line-height: 1.3;
}

.hero-sub {
    margin: 0;
    color: var(--text-color);
    max-width: 720px;
    font-size: 14px;
    letter-spacing: 0.7px;
    line-height: 22.4px;
}
.webshop-hero {
    padding: 40px 18px 32px;
    background: linear-gradient(135deg, #546e5f 0%, #5a7562 50%, #4d6358 100%);
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.webshop-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 60% 70%, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 120px 120px;
    opacity: 0.4;
    pointer-events: none;
}

.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 16px;
    color: #e8e6e1;
    font-weight: 400;
    margin: 0;
    opacity: 0.9;
}

.hero-title {
    margin: 0;
    font-size: 48px;
    font-weight: 400;
    letter-spacing: 4px;
    color: #ffffff;
    line-height: 1.2;
}

.hero-brand {
    font-style: italic;
    font-weight: 600;
    display: inline;
}

.hero-sub {
    margin: 0;
    color: var(--accent-color);
    font-size: 16px;
    letter-spacing: 2px;
    line-height: 1.4;
    font-weight: 400;
    text-transform: uppercase;
    border-top: 1px solid rgba(199, 161, 114, 0.3);
    padding-top: 12px;
    display: inline-block;
}

.cart-link-hero {
    background: #5a7562;
    border: none;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.7px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 12px rgba(74, 104, 86, 0.2);
}

.cart-link-hero:hover {
    background: #4d6358;
    border: none;
    box-shadow: 0 8px 16px rgba(74, 104, 86, 0.3);
}

.cart-bar {
    max-width: 1100px;
    margin: 0 auto 8px;
    padding: 0 18px;
    display: flex;
    justify-content: flex-end;
}
.webshop-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 18px 56px;
}

.notice {
    background: #ffffff;
    border: 1px solid var(--border);
    padding: 16px 20px;
    border-radius: 8px;
    color: var(--text-color);
    font-size: 14px;
    letter-spacing: 0.7px;
    line-height: 22.4px;
}

.notice-error {
    border-color: #e8b4a8;
    color: #8b6f63;
    background: #fef8f5;
}

.notice-success {
    border-color: var(--accent-color);
    background: #fffbf7;
}

.product-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.product-row {
    display: grid;
    grid-template-columns: 160px 1fr 180px;
    gap: 20px;
    align-items: center;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.product-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.product-media {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f7f5;
    border: 1px solid var(--border);
    border-radius: 6px;
}

.product-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-weight: 400;
    font-size: 12px;
    background: #f0ebe5;
}

.product-main {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.9px;
    color: var(--heading-color);
    line-height: 1.4;
}

.product-description {
    margin: 0;
    color: var(--text-color);
    line-height: 22.4px;
    max-width: 640px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
    letter-spacing: 0.7px;
}

.child-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.child-chip {
    background: #f0ebe5;
    color: var(--text-color);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.6px;
    border: 1px solid var(--border);
}

.product-buy {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.price {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1.2px;
    color: var(--heading-color);
}

.buy-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 6px;
    background: #5a7562;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 12px rgba(74, 104, 86, 0.2);
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
    font-size: 14px;
    letter-spacing: 0.7px;
}

.buy-button:hover {
    transform: translateY(-1px);
    background: #4d6358;
    box-shadow: 0 8px 16px rgba(74, 104, 86, 0.3);
}

.cart-link {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.7px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 900px) {
    .product-row {
        grid-template-columns: 140px 1fr;
        grid-template-areas: "media buy" "media main";
        align-items: flex-start;
        gap: 16px;
    }

    .product-media {
        grid-area: media;
    }

    .product-main {
        grid-area: main;
    }

    .product-buy {
        grid-area: buy;
        align-items: flex-end;
    }

    .hero-title {
        font-size: 24px;
        letter-spacing: 2.4px;
    }
}

@media (max-width: 640px) {
    .product-row {
        grid-template-columns: 1fr;
        grid-template-areas: "media" "main" "buy";
        padding: 16px;
        gap: 12px;
    }

    .product-media {
        width: 100%;
        height: 120px;
    }

    .product-buy {
        width: 100%;
        align-items: flex-start;
    }

    .price {
        font-size: 20px;
    }

    .hero-title {
        font-size: 20px;
        letter-spacing: 2px;
    }

    .webshop-wrapper {
        padding: 20px 16px 40px;
    }

    .webshop-hero {
        padding: 32px 16px 24px;
    }
}

