/* Color Scheme Variables */

:root {
    /* Primary Colors */
    --primary-color: #0f766e;
    --primary-light: #99f6e4;
    --primary-dark: #083c43;
    --primary-vibrant: #14b8a6;

    /* Secondary Colors */
    --secondary-color: #ff8a65;
    --secondary-light: #ffd0c2;
    --secondary-dark: #d85d39;

    /* Accent Colors */
    --accent-color: #f4b942;
    --accent-light: #ffe3a1;
    --accent-dark: #b57912;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0f766e, #0ea5a3);
    --gradient-secondary: linear-gradient(135deg, #ff8a65, #f4b942);
    --gradient-accent: linear-gradient(90deg, #0f766e, #ff8a65, #f4b942);
    --gradient-vibrant: linear-gradient(45deg, #14b8a6, #ff8a65);
    --gradient-soft: linear-gradient(180deg, #ecfeff, #fff7ed);

    /* Status Colors */
    --success-color: #28bf18;
    --success-light: #6bcf59;
    --success-dark: #0bad16;
    --warning-color: #e1ba47;
    --warning-light: #e6b765;
    --warning-dark: #eca809;
    --error-color: #eb251e;
    --error-light: #e1645b;
    --danger-color: #eb251e;

    /* Text Colors */
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-tertiary: #6a6a6a;
    --text-muted: #9a9a9a;
    --text-inverse: #ffffff;

    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f4fbfa;
    --bg-tertiary: #e6f5f2;
    --bg-inverse: #083c43;
    --bg-overlay: rgba(255, 255, 255, 0.9);
    --bg-overlay-light: rgba(255, 255, 255, 0.2);

    /* Border Colors */
    --border-color: #e0e0e0;
    --border-light: #f0f0f0;
    --border-dark: #c0c0c0;

    /* Overlay Colors */
    --overlay-light: rgba(255, 255, 255, 0.1);
    --overlay-medium: rgba(255, 255, 255, 0.2);
    --overlay-dark: rgba(0, 0, 0, 0.1);
    --overlay-darker: rgba(0, 0, 0, 0.2);

    /* Themed Overlays (primary-dark based) */
    --primary-overlay-90: rgba(8, 60, 67, 0.9);
    --primary-overlay-75: rgba(8, 60, 67, 0.75);
    --primary-overlay-50: rgba(8, 60, 67, 0.5);
    --primary-overlay-25: rgba(8, 60, 67, 0.25);
    --primary-rgb: 15, 118, 110;

    /* Shadow Colors */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.18);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    --shadow-colored: 0 10px 30px rgba(15, 118, 110, 0.22);
}

/* ── BASE RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1380px; margin: 0 auto; padding: 0 24px; }

/* ── CSS CUSTOM PROPERTIES (design tokens) ── */
:root {
    --max-width: 1380px;
    --header-height: 64px;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
}

/* ── SECTIONS ── */
.section { padding: 72px 0; }
.section-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 36px; }
.section-title { font-size: 28px; font-weight: 700; letter-spacing: -0.5px; }
.section-subtitle { font-size: 15px; color: var(--text-secondary); margin-top: 6px; }
.section-link {
    font-size: 14px; font-weight: 500; color: var(--primary-color);
    display: flex; align-items: center; gap: 4px; transition: gap 0.2s; text-decoration: none;
}
.section-link:hover { gap: 8px; }
.section-link svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2; fill: none; }

/* ── HEADER ── */

/* ── HEADER: Dark Header ── */
.header {
    position: sticky; top: 0; z-index: 100;
    background: linear-gradient(90deg, #062f35, #0f4c54 58%, #083c43);
    min-height: 72px;
    height: auto;
    box-shadow: 0 8px 28px rgba(8, 60, 67, 0.16);
}
.header .container {
    display: flex; align-items: center; justify-content: space-between; min-height: 72px;
}
.header-logo {
    display: inline-flex; align-items: center; gap: 10px;
    color: #fff; text-decoration: none; flex-shrink: 0;
}
.header-logo img {
    width: 42px; height: 42px; object-fit: cover; border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 8px 20px rgba(0,0,0,0.22);
}
.header-logo-copy { display: flex; flex-direction: column; line-height: 1.05; }
.header-logo-copy strong {
    font-size: 20px; font-weight: 800; color: #fff;
}
.header-logo-copy small {
    margin-top: 4px; font-size: 11px; font-weight: 600; color: var(--secondary-light);
    text-transform: uppercase; letter-spacing: 0.6px;
}
.header-nav { display: flex; gap: 32px; list-style: none; }
.header-nav a {
    font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.7);
    text-decoration: none; transition: color 0.2s; position: relative; padding: 4px 0;
}
.header-nav a:hover { color: #fff; }
.header-nav a::after {
    content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px;
    background: linear-gradient(90deg, var(--primary-light), var(--secondary-color));
    transition: width 0.3s; border-radius: 1px;
}
.header-nav a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header-phone {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 600; color: #fff;
    margin-right: 8px; text-decoration: none;
}
.header-phone svg { width: 16px; height: 16px; stroke: var(--primary-light, var(--primary-color)); stroke-width: 2; fill: none; }
.header-action-btn {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border: none; background: transparent;
    color: rgba(255,255,255,0.7); cursor: pointer; border-radius: var(--radius-sm, 6px);
    transition: color 0.2s, background 0.2s;
}
.header-action-btn:hover { color: #fff; background: rgba(255,255,255,0.1); }
.header-action-btn svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 1.8; fill: none; }
.cart-count { position: relative; }
.cart-count::after {
    content: '0'; position: absolute; top: 4px; right: 4px;
    width: 16px; height: 16px; background: var(--secondary-color); color: #fff;
    font-size: 10px; font-weight: 600; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.menu-toggle { display: none; }

/* ── HERO ── */

/* ── HERO: Seafood Feature ── */
.hero {
    padding: 34px 0 56px;
    background:
        linear-gradient(180deg, rgba(236,254,255,0.92), rgba(255,255,255,0.98) 62%),
        radial-gradient(circle at 18% 10%, rgba(255,138,101,0.18), transparent 32%);
}
.hero-shell {
    display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    align-items: stretch; gap: 28px;
}
.hero-copy {
    background: #fff; border: 1px solid rgba(15,118,110,0.16);
    border-radius: 18px; padding: 48px;
    display: flex; flex-direction: column; justify-content: center;
    box-shadow: 0 18px 50px rgba(8,60,67,0.10);
}
.hero-kicker {
    display: inline-flex; align-self: flex-start;
    color: var(--secondary-dark); background: #fff2ec;
    border: 1px solid rgba(255,138,101,0.28); border-radius: 999px;
    padding: 8px 14px; font-size: 12px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 18px;
}
.hero h1 {
    font-size: 58px; font-weight: 850; line-height: 1.04;
    color: var(--primary-dark); margin-bottom: 22px;
}
.hero-desc {
    font-size: 18px; color: var(--text-secondary); line-height: 1.7;
    margin-bottom: 32px; max-width: 540px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-badges span {
    font-size: 12px; font-weight: 700; color: var(--primary-dark);
    padding: 8px 10px; border-radius: 999px; background: var(--bg-secondary);
    border: 1px solid rgba(15,118,110,0.12);
}
.hero-media {
    position: relative; min-height: 500px; overflow: hidden; border-radius: 22px;
    border: 1px solid rgba(15,118,110,0.16);
    box-shadow: 0 24px 70px rgba(8,60,67,0.18);
}
.hero-media::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(8,60,67,0.24), transparent 38%);
    pointer-events: none;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-freshness {
    position: absolute; left: 22px; bottom: 22px; z-index: 1;
    background: rgba(255,255,255,0.92); border: 1px solid rgba(255,255,255,0.7);
    border-radius: 14px; padding: 14px 16px; max-width: 290px;
    box-shadow: 0 14px 34px rgba(0,0,0,0.16);
}
.hero-freshness strong { display: block; color: var(--primary-dark); font-size: 14px; margin-bottom: 4px; }
.hero-freshness span { display: block; color: var(--text-secondary); font-size: 13px; line-height: 1.45; }

/* ── BUTTONS ── */

/* ── BUTTONS: Soft Elevated ── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 16px 32px; font-size: 15px; font-weight: 600;
    border-radius: 16px; border: none; cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none; line-height: 1;
}
.btn:active { transform: scale(0.97); }
.btn svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; }

.btn-primary {
    background: var(--primary-color); color: #fff;
    box-shadow: 0 8px 24px -4px rgba(0,0,0,0.2),
                0 2px 6px rgba(0,0,0,0.08);
}
.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 12px 32px -4px rgba(0,0,0,0.25),
                0 4px 8px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.btn-secondary {
    background: #fff7ed; color: var(--secondary-dark);
    border: 1px solid rgba(255,138,101,0.28);
    box-shadow: none;
}
.btn-secondary:hover {
    background: var(--secondary-color); color: #fff;
    transform: translateY(-2px);
}

.btn-outline {
    background: var(--bg-primary, #fff); color: var(--text-primary);
    border: 1.5px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.btn-outline:hover {
    border-color: var(--primary-color); color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.btn-white {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 16px 32px; font-size: 15px; font-weight: 600;
    border-radius: 16px; border: none; cursor: pointer;
    background: #fff; color: var(--primary-color);
    transition: all 0.25s ease; text-decoration: none;
    box-shadow: 0 8px 24px -4px rgba(0,0,0,0.12),
                0 2px 6px rgba(0,0,0,0.06);
}
.btn-white:hover {
    box-shadow: 0 12px 32px -4px rgba(0,0,0,0.18),
                0 4px 8px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}
.btn-white svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; }

.add-to-cart, .product-btn, .cart-button {
    background: var(--primary-color); color: #fff;
    padding: 16px 32px; border-radius: 16px;
    font-weight: 600; cursor: pointer; border: none;
    transition: all 0.25s ease;
    display: inline-flex; align-items: center; gap: 8px;
    box-shadow: 0 8px 24px -4px rgba(0,0,0,0.2),
                0 2px 6px rgba(0,0,0,0.08);
}
.add-to-cart:hover, .product-btn:hover, .cart-button:hover {
    background: var(--primary-dark);
    box-shadow: 0 12px 32px -4px rgba(0,0,0,0.25),
                0 4px 8px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

/* ── PRODUCT CARDS ── */

/* ── PRODUCT CARDS: Seafood Grid ── */
.product-grid {
    display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px;
}
.product-card {
    background: var(--bg-primary); border: 1px solid var(--border-color);
    border-radius: 14px;
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    padding: 0; overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.product-card:hover {
    border-color: rgba(15,118,110,0.32);
    box-shadow: 0 16px 38px rgba(8,60,67,0.10);
    transform: translateY(-3px);
}
.product-card-thumb {
    width: 100%; aspect-ratio: 1.18 / 1; border-radius: 0;
    background: linear-gradient(135deg, var(--bg-secondary), #fff7ed);
    overflow: hidden; flex-shrink: 0;
    display: block; text-decoration: none;
}
.product-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-card-body { flex: 1; min-width: 0; padding: 16px 16px 10px; }
.product-card-category {
    display: inline-flex;
    font-size: 10px; text-transform: uppercase; letter-spacing: 0.6px;
    color: var(--primary-dark); margin-bottom: 8px; font-weight: 800;
    background: var(--bg-secondary); border-radius: 999px; padding: 5px 8px;
}
.product-card-title {
    font-size: 16px; font-weight: 750; color: var(--text-primary);
    line-height: 1.3; text-decoration: none;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    min-height: 42px; overflow: hidden;
}
.product-card-rating { display: flex; align-items: center; gap: 4px; margin-top: 10px; }
.product-card-stars { display: flex; gap: 1px; color: var(--accent-color, var(--warning-color)); }
.product-card-stars svg { width: 11px; height: 11px; fill: currentColor; stroke: none; }
.product-card-stars .empty { color: var(--border-color); }
.product-card-rating span { font-size: 11px; color: var(--text-secondary); }
.product-card-end {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    flex-shrink: 0; padding: 12px 16px 16px; border-top: 1px solid var(--border-light);
}
.product-card-price { font-size: 18px; font-weight: 800; color: var(--primary-dark); white-space: nowrap; }
.product-card-cart-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 14px; border-radius: 10px;
    border: none; background: var(--primary-dark); color: #fff;
    cursor: pointer; font-size: 13px; font-weight: 600;
    transition: background 0.2s; white-space: nowrap; box-shadow: none;
}
.product-card-cart-btn:hover { background: var(--secondary-dark); }
.product-card-cart-btn svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 1.8; fill: none; }
.product-card-stars .half-filled { margin-left: -14px; clip-path: inset(0 50% 0 0); }

/* ── ITEM PAGE ── */

/* ── BREADCRUMBS ── */
.breadcrumbs { padding: 16px 0; border-bottom: 1px solid var(--border-color); }
.breadcrumbs-list { display: flex; align-items: center; gap: 8px; list-style: none; font-size: 13px; color: var(--text-secondary); padding: 0; margin: 0; }
.breadcrumbs-list a { color: var(--text-secondary); transition: color 0.2s; text-decoration: none; }
.breadcrumbs-list a:hover { color: var(--primary-color); }
.breadcrumbs-list .separator { color: var(--border-color); }
.breadcrumbs-list .current { color: var(--text-primary); font-weight: 500; }

/* ── PRODUCT DETAIL: Gallery Top ── */
.product-detail { padding: 48px 0 72px; }
.product-gallery-full { margin-bottom: 48px; }
.product-gallery-full .product-gallery-main {
    width: 100%; max-width: 700px; margin: 0 auto 16px;
    aspect-ratio: 4/3; border-radius: var(--radius-lg, 16px);
    background: var(--bg-secondary); border: 1px solid var(--border-color); overflow: hidden;
}
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery-full .product-gallery-thumbs {
    display: flex; gap: 12px; justify-content: center;
}
.product-gallery-thumb {
    width: 72px; height: 72px; border-radius: var(--radius-sm, 6px);
    background: var(--bg-secondary); border: 2px solid var(--border-color);
    overflow: hidden; cursor: pointer; transition: border-color 0.2s;
}
.product-gallery-thumb.active, .product-gallery-thumb:hover { border-color: var(--primary-color); }
.product-info-centered { max-width: 640px; margin: 0 auto; text-align: center; }
.product-info-category {
    font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px;
    color: var(--primary-color); font-weight: 600; margin-bottom: 12px;
}
.product-info-centered h1 { font-size: 32px; font-weight: 700; line-height: 1.25; margin-bottom: 16px; }
.product-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; justify-content: center; }
.product-rating-stars { display: flex; gap: 2px; color: var(--accent-color, var(--warning-color)); }
.product-rating-stars svg { width: 18px; height: 18px; fill: currentColor; stroke: none; }
.product-rating-stars .empty { color: var(--border-color); }
.product-rating-text { font-size: 14px; color: var(--text-secondary); }
.product-price-block { margin-bottom: 24px; }
.product-price-current { font-size: 36px; font-weight: 800; letter-spacing: -1px; }
.product-description { font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 32px; }
.product-actions { display: flex; gap: 12px; justify-content: center; }
.product-actions .btn { min-width: 180px; justify-content: center; }
.related-section { padding: 72px 0; border-top: 1px solid var(--border-color); }

/* ── FOOTER ── */

/* ── FOOTER: Three Column ── */
.footer { background: var(--footer-bg, #111827); color: var(--footer-text, #d1d5db); padding: 56px 0 0; }
.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px;
    padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand h3 { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.footer-brand h3 span { color: var(--primary-light); }
.footer-brand p {
    font-size: 14px; line-height: 1.7; color: var(--footer-text, #d1d5db);
    max-width: 280px; margin-bottom: 20px;
}
.footer-col h4 {
    font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 20px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 14px; color: var(--footer-text, #d1d5db); transition: color 0.2s; text-decoration: none; }
.footer-col a:hover { color: #fff; }
.footer-contact-item {
    display: flex; align-items: center; gap: 10px; margin-bottom: 14px; font-size: 14px;
}
.footer-contact-item svg {
    width: 16px; height: 16px; stroke: var(--primary-light); stroke-width: 1.8; fill: none; flex-shrink: 0;
}
.footer-bottom {
    padding: 24px 0; font-size: 13px; color: rgba(255,255,255,0.4); text-align: center;
}

/* ── CATEGORIES ── */

/* ── CATEGORIES: Underline Tabs ── */
.categories { padding: 0; border-bottom: 1px solid var(--border-color); }
.categories-tabs {
    display: flex; gap: 0; overflow-x: auto; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; justify-content: center;
}
.categories-tabs::-webkit-scrollbar { display: none; }
.category-tab {
    display: flex; align-items: center; gap: 6px;
    padding: 20px 24px; white-space: nowrap;
    font-size: 14px; font-weight: 500; color: var(--text-secondary);
    text-decoration: none; cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}
.category-tab:hover { color: var(--text-primary); }
.category-tab.active { color: var(--primary-color); border-bottom-color: var(--primary-color); }
.category-tab.active .tab-count { background: var(--primary-color); color: #fff; }
.tab-count {
    font-size: 11px; font-weight: 600; padding: 2px 7px;
    border-radius: 10px; background: var(--bg-secondary); color: var(--text-secondary);
}
@media (max-width: 480px) {
    .category-tab { padding: 16px 16px; font-size: 13px; }
}

/* ── PROMO BANNER ── */
.promo-banner { padding: 0 0 72px; }
.promo-inner {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color) 62%, var(--secondary-color));
    border-radius: 18px; padding: 56px 64px;
    display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center;
    color: #fff; position: relative; overflow: hidden;
}
.promo-inner::before {
    content: ''; position: absolute; inset: 0;
    background: repeating-linear-gradient(110deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 18px);
    opacity: 0.35;
}
.promo-inner::after {
    display: none;
}
.promo-text { position: relative; z-index: 1; }
.promo-text h2 { font-size: 32px; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.5px; }
.promo-text p { font-size: 16px; opacity: 0.85; line-height: 1.6; max-width: 480px; }

/* ── FEATURES ── */
.features { padding: 72px 0; background: var(--bg-secondary); border-top: 1px solid var(--border-color); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card {
    background: var(--bg-primary); border: 1px solid var(--border-color);
    border-radius: var(--radius-lg); padding: 28px 24px; text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); transform: translateY(-2px); }
.feature-icon {
    width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
    background: color-mix(in srgb, var(--primary-color) 8%, white); color: var(--primary-color);
}
.feature-icon svg { width: 24px; height: 24px; stroke: currentColor; stroke-width: 1.8; fill: none; }
.feature-card h4 { font-size: 15px; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }
.feature-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }

/* ── CONTENT PAGES ── */
.main-content h1 {
    font-size: 36px; line-height: 1.15; color: var(--primary-dark); margin-bottom: 24px;
}
.main-content h2 { font-size: 24px; color: var(--primary-dark); margin: 28px 0 16px; }
.main-content h3 { font-size: 18px; color: var(--text-primary); margin-bottom: 12px; }
.contact-info,
.delivery-info,
.return-policy {
    max-width: 980px;
}
.contact-details,
.delivery-option,
.payment-option,
.condition-block,
.refund-info,
.important-note {
    background: #fff; border: 1px solid rgba(15,118,110,0.14);
    border-radius: 12px; padding: 20px; margin-bottom: 16px;
    box-shadow: 0 10px 28px rgba(8,60,67,0.06);
}
.delivery-options,
.payment-methods,
.return-conditions {
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px;
}
.return-conditions { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.contact-form {
    background: var(--bg-secondary); border: 1px solid rgba(15,118,110,0.12);
    border-radius: 14px; padding: 22px; margin: 22px 0;
}
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-weight: 650; margin-bottom: 6px; color: var(--primary-dark); }
.form-group input,
.form-group textarea {
    width: 100%; border: 1px solid var(--border-color); border-radius: 10px;
    padding: 12px 14px; font: inherit; outline: none; background: #fff;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(15,118,110,0.12); }
.contact-form button {
    border: none; border-radius: 10px; background: var(--primary-dark); color: #fff;
    padding: 12px 18px; font-weight: 700; cursor: pointer;
}
.contact-form button:hover { background: var(--primary-color); }
.return-process { display: grid; gap: 12px; margin-bottom: 24px; }
.step {
    display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start;
    background: #fff; border: 1px solid var(--border-light); border-radius: 12px; padding: 16px;
}
.step-number {
    width: 44px; height: 44px; border-radius: 50%; background: var(--secondary-color);
    color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800;
}
.map-container iframe { width: 100%; border: 0; border-radius: 12px; min-height: 320px; }

/* ── PLACEHOLDER IMAGE ── */
.placeholder-img {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    background: var(--bg-secondary); color: var(--border-color);
}
.placeholder-img svg { width: 48px; height: 48px; stroke: currentColor; stroke-width: 1.2; fill: none; }

/* ── CART MODAL ── */
.modal {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5); z-index: 1000;
    backdrop-filter: blur(4px);
}
.cart-content {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    background: #fff; border-radius: var(--radius-lg); width: 95%; max-width: 750px;
    max-height: 85vh; overflow-y: auto; box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.cart-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 24px; border-bottom: 1px solid var(--border-color);
}
.cart-header h3 { font-size: 18px; font-weight: 700; }
.close-cart { font-size: 28px; cursor: pointer; color: var(--text-secondary); line-height: 1; }
.close-cart:hover { color: var(--text-primary); }
.cart-body { padding: 20px 24px; }
.show-cart { width: 100%; border-collapse: collapse; }
.show-cart th { padding: 10px 0; border-bottom: 2px solid var(--border-color); font-size: 13px; font-weight: 600; text-align: left; color: var(--text-secondary); }
.show-cart td { padding: 10px 0; border-bottom: 1px solid var(--border-color); font-size: 14px; vertical-align: middle; }
.show-cart td img { width: 60px; height: 60px; object-fit: cover; border-radius: var(--radius-sm); }
.quantity-control { display: inline-flex; align-items: center; gap: 4px; }
.quantity-btn { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; background: var(--bg-secondary); border-radius: var(--radius-sm); cursor: pointer; font-size: 16px; user-select: none; }
.quantity-btn:hover { background: var(--border-color); }
.item-count { width: 40px; text-align: center; border: 1px solid var(--border-color); border-radius: var(--radius-sm); padding: 4px; font-size: 14px; }
.delete-item { background: none; border: none; color: var(--text-secondary); cursor: pointer; font-size: 16px; padding: 4px 8px; }
.delete-item:hover { color: #e53e3e; }
.cart-total {
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px 0; font-size: 18px; font-weight: 700;
}
.cart-form { padding: 0 24px 16px; }
.cart-form label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 8px; }
.cart-form input {
    width: 100%; padding: 12px 16px; border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md); font-size: 14px; outline: none;
}
.cart-form input:focus { border-color: var(--primary-color); }
.cart-footer {
    display: flex; gap: 10px; padding: 16px 24px; border-top: 1px solid var(--border-color);
}
.cart-footer button {
    flex: 1; padding: 12px; border-radius: var(--radius-md); font-size: 14px;
    font-weight: 600; cursor: pointer; border: none; transition: background 0.2s;
}
.clear-cart { background: var(--bg-secondary); color: var(--text-secondary); }
.clear-cart:hover { background: var(--border-color); }
.order-btn { background: var(--primary-color); color: #fff; }
.order-btn:hover { background: var(--primary-dark); }
.close-btn { background: var(--bg-secondary); color: var(--text-secondary); }
.close-btn:hover { background: var(--border-color); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hero-shell { grid-template-columns: 1fr; }
    .hero-copy { padding: 40px; }
    .hero-media { min-height: 380px; }
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .promo-inner { padding: 40px 36px; }
    .promo-text h2 { font-size: 26px; }
}
@media (max-width: 768px) {
    .hero { padding: 24px 0 44px; }
    .hero-copy { padding: 28px; border-radius: 14px; }
    .hero h1 { font-size: 40px; }
    .hero-desc { font-size: 15px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { justify-content: center; }
    .hero-media { min-height: 320px; border-radius: 16px; }
    .hero-freshness { left: 14px; right: 14px; bottom: 14px; max-width: none; }
    .section { padding: 48px 0; }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .header-nav, .header-phone { display: none; }
    .menu-toggle { display: flex; }
    .product-detail-grid { grid-template-columns: 1fr; gap: 32px; }
    .product-gallery { position: static; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .section-header { flex-direction: column; gap: 8px; }
    .promo-inner { grid-template-columns: 1fr; text-align: center; }
    .delivery-options, .payment-methods, .return-conditions { grid-template-columns: 1fr; }
    .main-content h1 { font-size: 30px; }
}
@media (max-width: 480px) {
    .header-logo-copy small { display: none; }
    .hero h1 { font-size: 32px; }
    .hero-copy { padding: 22px; }
    .hero-media { min-height: 260px; }
    .hero-badges { flex-direction: column; }
    .product-grid { grid-template-columns: 1fr; gap: 12px; }
    .product-card-body { padding: 14px 14px 8px; }
    .product-card-title { font-size: 13px; }
    .product-card-price { font-size: 15px; }
    .container { padding: 0 16px; }
    .product-info h1 { font-size: 24px; }
    .product-price-current { font-size: 28px; }
    .product-actions { flex-direction: column; }
    .features-grid { grid-template-columns: 1fr; }
}
