@import "tailwindcss";

@source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php';
@source '../../storage/framework/views/*.php';
@source '../**/*.blade.php';
@source '../**/*.js';

@theme {
    --font-sans: "Inter", system-ui, sans-serif;
}

:root {
    --bg: #f6f1e7;
    --paper: #fffaf1;
    --ink: #1e211a;
    --muted: #5b604d;
    --line: rgba(34, 40, 24, 0.14);
    --brand: #2f3a20;
    --brand-2: #6c7a3b;
    --accent: #caa66a;
    --accent-2: #a97a3d;
    --shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
    --radius: 18px;
    --radius-sm: 12px;
    --container: 1120px;
}

* {
    box-sizing: border-box;
}
html,
body {
    height: 100%;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial,
        sans-serif;
    color: var(--ink);
    background: radial-gradient(
            1200px 700px at 15% 0%,
            rgba(202, 166, 106, 0.18),
            transparent 55%
        ),
        radial-gradient(
            900px 600px at 90% 10%,
            rgba(108, 122, 59, 0.16),
            transparent 45%
        ),
        var(--bg);
}

a {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    display: block;
}
button,
input {
    font: inherit;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 10px;
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 10px 12px;
    border-radius: 12px;
    z-index: 1000;
}
.skip-link:focus {
    left: 10px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(246, 241, 231, 0.65);
    border-bottom: 1px solid rgba(34, 40, 24, 0.1);
}
.header-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 220px;
}
.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: var(--brand);
    background: linear-gradient(
        180deg,
        rgba(202, 166, 106, 0.22),
        rgba(47, 58, 32, 0.06)
    );
    border: 1px solid rgba(34, 40, 24, 0.12);
    box-shadow: 0 10px 30px rgba(47, 58, 32, 0.08);
}
.brand-mark svg {
    width: 30px;
    height: 30px;
}
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}
.brand-name {
    font-family: Fraunces, serif;
    font-weight: 700;
    letter-spacing: 0.2px;
}
.brand-sub {
    font-size: 12px;
    color: var(--muted);
}

.nav {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(34, 40, 24, 0.1);
    background: rgba(255, 250, 241, 0.65);
}
.nav-link {
    padding: 8px 12px;
    border-radius: 999px;
    color: rgba(30, 33, 26, 0.85);
    font-weight: 500;
    font-size: 14px;
}
.nav-link:hover {
    background: rgba(202, 166, 106, 0.18);
}
.nav-link.is-active {
    background: rgba(47, 58, 32, 0.1);
    color: var(--brand);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255, 250, 241, 0.75);
    border: 1px solid rgba(34, 40, 24, 0.1);
    min-width: min(300px, 46vw);
}
.search input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
}
.search input::placeholder {
    color: rgba(91, 96, 77, 0.9);
}
.section-search {
    margin-left: auto;
    min-width: min(340px, 32vw);
    transform: translateY(30px);
}

#produk {
    scroll-margin-top: 96px;
}

.icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(34, 40, 24, 0.1);
    background: rgba(255, 250, 241, 0.75);
    display: grid;
    place-items: center;
    cursor: pointer;
    position: relative;
}
.icon-btn:hover {
    background: rgba(202, 166, 106, 0.18);
}
.icon-btn svg {
    width: 20px;
    height: 20px;
    color: var(--brand);
}
.cart-btn .badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(180deg, var(--brand-2), var(--brand));
    border: 2px solid rgba(246, 241, 231, 0.95);
}
.hamburger {
    display: none;
}

.mobile-menu {
    border-top: 1px solid rgba(34, 40, 24, 0.1);
    background: rgba(255, 250, 241, 0.82);
}
.mobile-menu-inner {
    display: grid;
    gap: 6px;
    padding: 12px 0 16px;
}
.mobile-menu .nav-link {
    border-radius: 12px;
    border: 1px solid rgba(34, 40, 24, 0.1);
    background: rgba(246, 241, 231, 0.55);
}

.hero {
    padding: 28px 0 16px;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 22px;
    align-items: stretch;
}
.hero-copy {
    padding: 22px 18px;
}
.eyebrow {
    margin: 0 0 10px;
    color: rgba(47, 58, 32, 0.78);
    font-weight: 600;
    letter-spacing: 0.2px;
}
.hero-title {
    margin: 0 0 12px;
    font-family: Fraunces, serif;
    font-weight: 700;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: 0.2px;
}
.hero-subtitle {
    margin: 0 0 12px;
    font-size: clamp(20px, 3vw, 28px);
    color: var(--brand);
    font-weight: 700;
}
.hero-desc {
    margin: 0 0 18px;
    color: var(--muted);
    max-width: 62ch;
}
.hero-cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 14px;
    border-radius: 999px;
    border: 1px solid rgba(34, 40, 24, 0.12);
    background: rgba(255, 250, 241, 0.85);
    cursor: pointer;
    font-weight: 600;
    color: rgba(30, 33, 26, 0.9);
    transition: transform 0.08s ease, background 0.15s ease,
        box-shadow 0.15s ease;
    user-select: none;
}
.btn:hover {
    background: rgba(202, 166, 106, 0.18);
}
.btn:active {
    transform: translateY(1px);
}
.btn-primary {
    color: #fff;
    border-color: rgba(47, 58, 32, 0.2);
    background: linear-gradient(180deg, var(--brand-2), var(--brand));
    box-shadow: 0 10px 24px rgba(47, 58, 32, 0.22);
}
.btn-primary:hover {
    background: linear-gradient(180deg, #7b8a40, #2a341c);
}
.btn-ghost {
    background: rgba(255, 250, 241, 0.75);
}
.btn-sm {
    padding: 9px 12px;
    font-size: 13px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}
.stat {
    padding: 12px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(34, 40, 24, 0.1);
    background: rgba(255, 250, 241, 0.72);
}
.stat-number {
    font-weight: 800;
    color: var(--brand);
    font-size: 18px;
}
.stat-label {
    color: var(--muted);
    font-size: 12px;
    margin-top: 2px;
}

.hero-art {
    position: relative;
    min-height: 340px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(34, 40, 24, 0.1);
    background: linear-gradient(
        180deg,
        rgba(202, 166, 106, 0.18),
        rgba(47, 58, 32, 0.08)
    );
    box-shadow: var(--shadow);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(
            900px 500px at 70% 10%,
            rgba(202, 166, 106, 0.35),
            transparent 55%
        ),
        radial-gradient(
            700px 480px at 20% 80%,
            rgba(108, 122, 59, 0.3),
            transparent 52%
        ),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='600'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0' stop-color='%23f9f1df'/%3E%3Cstop offset='1' stop-color='%23d8c39a'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='800' height='600' fill='url(%23g)'/%3E%3Cpath d='M0 390 C120 330 230 340 330 300 C430 260 540 210 800 250 L800 600 L0 600 Z' fill='%23b7c77a' opacity='.55'/%3E%3Cpath d='M0 420 C170 350 320 390 440 340 C560 290 650 260 800 290 L800 600 L0 600 Z' fill='%236c7a3b' opacity='.28'/%3E%3C/svg%3E");
    background-size: cover;
    filter: saturate(1.06) contrast(1.02);
}
.hero-card {
    position: absolute;
    right: 16px;
    bottom: 16px;
    left: 16px;
    max-width: 520px;
    margin-left: auto;
    z-index: 2;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 250, 241, 0.78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.16);
}
.hero-card-top {
    display: flex;
    gap: 8px;
    padding: 14px 14px 0;
    flex-wrap: wrap;
}
.pill {
    font-size: 12px;
    font-weight: 700;
    color: var(--brand);
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(34, 40, 24, 0.12);
    background: rgba(202, 166, 106, 0.18);
}
.pill-soft {
    background: rgba(108, 122, 59, 0.14);
}
.hero-card-body {
    padding: 12px 14px 14px;
}
.preview {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 14px;
    border: 1px solid rgba(34, 40, 24, 0.1);
    background: rgba(246, 241, 231, 0.55);
}
.preview-img {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    border: 1px solid rgba(34, 40, 24, 0.1);
    background: radial-gradient(
            circle at 35% 30%,
            rgba(255, 255, 255, 0.8),
            transparent 45%
        ),
        linear-gradient(
            180deg,
            rgba(202, 166, 106, 0.6),
            rgba(47, 58, 32, 0.18)
        );
}
.preview-title {
    font-weight: 700;
}
.preview-price {
    color: var(--brand);
    font-weight: 800;
    margin-top: 2px;
}
.preview-sub {
    color: var(--muted);
    font-size: 12px;
    margin-top: 2px;
}
.hero-card-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.section {
    padding: 30px 0;
}
.section-soft {
    background: linear-gradient(
        180deg,
        rgba(255, 250, 241, 0.55),
        rgba(255, 250, 241, 0.25)
    );
    border-top: 1px solid rgba(34, 40, 24, 0.08);
    border-bottom: 1px solid rgba(34, 40, 24, 0.08);
}
.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.section-filter-row {
    flex-basis: 100%;
    margin-bottom: 14px;
}
.section-filter-row .section-actions {
    justify-content: flex-start;
}
.section-title {
    margin: 0;
    font-family: Fraunces, serif;
    font-size: 26px;
    letter-spacing: 0.2px;
}
.section-desc {
    margin: 8px 0 0;
    color: var(--muted);
    max-width: 70ch;
}
.section-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}
.card {
    border-radius: var(--radius);
    border: 1px solid rgba(34, 40, 24, 0.1);
    background: rgba(255, 250, 241, 0.8);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.09);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
.card-media {
    width: 100%;
    height: 160px;
    border: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 250, 241, 0.82),
        rgba(242, 235, 219, 0.82)
    );
    display: grid;
    place-items: center;
    overflow: hidden;
}
.card-media-button {
    padding: 0;
    cursor: pointer;
}
.card-media-button:focus-visible {
    outline: 3px solid rgba(47, 58, 32, 0.35);
    outline-offset: -3px;
}
.card-media-fallback {
    background: radial-gradient(
            700px 220px at 30% 0%,
            rgba(255, 255, 255, 0.65),
            transparent 55%
        ),
        linear-gradient(
            180deg,
            rgba(202, 166, 106, 0.45),
            rgba(47, 58, 32, 0.12)
        );
}
.card-image,
.card-image-fallback {
    width: 100%;
    height: 100%;
    display: block;
}
.card-image {
    object-fit: contain;
    object-position: center;
    background: linear-gradient(
        180deg,
        rgba(255, 250, 241, 0.65),
        rgba(242, 235, 219, 0.75)
    );
}
.card-image-fallback {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.card-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.card-title {
    font-weight: 800;
    line-height: 1.15;
}


.star-wrap {
    display: flex;
    align-items: center;
}

.single-star {
    font-size: 20px;
    line-height: 1;
    display: inline-block;
    background: linear-gradient(to right, gold var(--fill), #ddd var(--fill));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.card-desc {
    margin: 0;
    min-height: 34px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.price {
    color: var(--brand);
    font-weight: 900;
}
.sold {
    color: var(--muted);
    font-size: 12px;
}
.card-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.tag {
    font-size: 12px;
    font-weight: 700;
    color: rgba(47, 58, 32, 0.9);
    background: rgba(108, 122, 59, 0.12);
    border: 1px solid rgba(34, 40, 24, 0.1);
    padding: 5px 9px;
    border-radius: 999px;
}
.tag.alt {
    background: rgba(202, 166, 106, 0.16);
}
.card-actions {
    margin-top: auto;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.btn-block {
    width: 100%;
}
.card-empty .card-body {
    justify-content: center;
    min-height: 140px;
}

.about {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 14px;
    align-items: stretch;
}
.about-card {
    border-radius: var(--radius);
    border: 1px solid rgba(34, 40, 24, 0.1);
    background: rgba(255, 250, 241, 0.78);
    padding: 16px;
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.08);
}
.feature-list {
    display: grid;
    gap: 10px;
    margin: 14px 0;
}
.feature {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 10px;
    border-radius: 14px;
    border: 1px solid rgba(34, 40, 24, 0.1);
    background: rgba(246, 241, 231, 0.52);
}
.feature-icon {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(180deg, var(--brand-2), var(--brand));
    flex: 0 0 auto;
    font-weight: 900;
}
.feature-title {
    font-weight: 800;
}
.feature-desc {
    color: var(--muted);
    font-size: 13px;
    margin-top: 2px;
}

.about-media {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(34, 40, 24, 0.1);
    background: linear-gradient(
        180deg,
        rgba(108, 122, 59, 0.16),
        rgba(202, 166, 106, 0.12)
    );
    box-shadow: var(--shadow);
    min-height: 320px;
}
.about-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(
            900px 500px at 20% 20%,
            rgba(202, 166, 106, 0.32),
            transparent 55%
        ),
        radial-gradient(
            700px 540px at 80% 80%,
            rgba(108, 122, 59, 0.3),
            transparent 52%
        );
}
.media-card {
    position: absolute;
    inset: 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 250, 241, 0.76);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 14px;
    z-index: 2;
}
.media-title {
    font-weight: 900;
    color: var(--brand);
    margin-bottom: 8px;
}
.chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.chip {
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid rgba(34, 40, 24, 0.1);
    background: rgba(246, 241, 231, 0.55);
    font-weight: 700;
    font-size: 12px;
}
.media-divider {
    height: 1px;
    background: rgba(34, 40, 24, 0.1);
    margin: 12px 0;
}
.values {
    display: grid;
    gap: 8px;
    color: rgba(30, 33, 26, 0.85);
    font-weight: 600;
}
.value {
    display: flex;
    gap: 10px;
    align-items: center;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--accent), var(--accent-2));
    border: 1px solid rgba(34, 40, 24, 0.16);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.blog-card {
    border-radius: var(--radius);
    border: 1px solid rgba(34, 40, 24, 0.1);
    background: rgba(255, 250, 241, 0.8);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.09);
    display: flex;
    flex-direction: column;
}
.blog-media {
    height: 150px;
    background: radial-gradient(
            700px 220px at 30% 0%,
            rgba(255, 255, 255, 0.65),
            transparent 55%
        ),
        linear-gradient(
            180deg,
            rgba(108, 122, 59, 0.45),
            rgba(202, 166, 106, 0.14)
        );
    border-bottom: 1px solid rgba(34, 40, 24, 0.1);
}
.blog-body {
    padding: 12px;
}
.blog-title {
    margin: 0;
    font-weight: 900;
    line-height: 1.15;
}
.blog-desc {
    margin: 6px 0 10px;
    color: var(--muted);
}
.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(91, 96, 77, 0.95);
    font-size: 12px;
    font-weight: 600;
}

.footer {
    background: linear-gradient(
        180deg,
        rgba(47, 58, 32, 0.88),
        rgba(25, 30, 16, 0.96)
    );
    color: rgba(255, 250, 241, 0.95);
    margin-top: 14px;
}
.footer-top {
    padding: 26px 0;
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 18px;
    align-items: start;
}
.brand-footer .brand-mark {
    color: rgba(255, 250, 241, 0.95);
    background: linear-gradient(
        180deg,
        rgba(202, 166, 106, 0.22),
        rgba(255, 250, 241, 0.06)
    );
    border-color: rgba(255, 255, 255, 0.16);
}
.brand-footer .brand-sub {
    color: rgba(255, 250, 241, 0.72);
}
.footer-desc {
    color: rgba(255, 250, 241, 0.76);
    margin: 12px 0 0;
    max-width: 48ch;
}
.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.footer-title {
    font-weight: 900;
    margin-bottom: 10px;
}
.footer-link {
    display: block;
    padding: 6px 0;
    color: rgba(255, 250, 241, 0.82);
}
.footer-link:hover {
    color: rgba(255, 250, 241, 1);
}
.subscribe {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}
.subscribe input {
    flex: 1 1 180px;
    padding: 11px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 250, 241, 0.1);
    color: rgba(255, 250, 241, 0.95);
    outline: none;
}
.subscribe input::placeholder {
    color: rgba(255, 250, 241, 0.62);
}
.footer-note {
    margin: 10px 0 0;
    color: rgba(255, 250, 241, 0.78);
    font-size: 13px;
}
.social {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}
.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 250, 241, 0.1);
    display: grid;
    place-items: center;
}
.social-btn:hover {
    background: rgba(255, 250, 241, 0.18);
}
.social-btn svg {
    width: 20px;
    height: 20px;
    color: rgba(255, 250, 241, 0.92);
}

.footer-bottom {
    padding: 14px 0 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    color: rgba(255, 250, 241, 0.74);
}
.footer-mini {
    color: rgba(255, 250, 241, 0.74);
}
.footer-mini:hover {
    color: rgba(255, 250, 241, 0.95);
}
.footer-bottom-links {
    display: flex;
    gap: 12px;
}

.toast {
    position: fixed;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    z-index: 90;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(34, 40, 24, 0.14);
    background: rgba(255, 250, 241, 0.92);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.16);
    font-weight: 700;
    color: rgba(30, 33, 26, 0.92);
    max-width: min(680px, calc(100% - 30px));
    text-align: center;
}

.product-modal[hidden] {
    display: none;
}
.product-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 24px;
}
.product-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(30, 33, 26, 0.48);
    backdrop-filter: blur(6px);
}
.product-modal-panel {
    position: relative;
    width: min(880px, 100%);
    max-height: min(760px, calc(100vh - 48px));
    overflow: auto;
    display: grid;
    grid-template-columns: minmax(260px, 1.05fr) minmax(260px, 0.95fr);
    gap: 22px;
    padding: 22px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.52);
    background: rgba(255, 250, 241, 0.96);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}
.product-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(34, 40, 24, 0.14);
    background: rgba(255, 250, 241, 0.9);
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
}
.product-modal-media {
    min-height: 360px;
    border-radius: 16px;
    overflow: hidden;
    display: grid;
    place-items: center;
    background: linear-gradient(
        180deg,
        rgba(255, 250, 241, 0.82),
        rgba(242, 235, 219, 0.82)
    );
    border: 1px solid rgba(34, 40, 24, 0.1);
}
.product-modal-image,
.product-modal-fallback {
    width: 100%;
    height: 100%;
    min-height: 360px;
}
.product-modal-image {
    object-fit: contain;
}
.product-modal-fallback {
    background: radial-gradient(
            700px 240px at 30% 0%,
            rgba(255, 255, 255, 0.68),
            transparent 55%
        ),
        linear-gradient(
            180deg,
            rgba(202, 166, 106, 0.45),
            rgba(47, 58, 32, 0.14)
        );
}
.product-modal-copy {
    align-self: center;
    padding-right: 22px;
}
.product-modal-title {
    margin: 0 0 10px;
    font-family: Fraunces, serif;
    font-size: 32px;
    line-height: 1.1;
}
.product-modal-price {
    margin-bottom: 14px;
    color: var(--brand);
    font-size: 22px;
    font-weight: 900;
}
.product-modal-caption {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
}

.cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    justify-content: flex-end;
}
.cart-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
}
.cart-content {
    position: relative;
    width: min(400px, 100%);
    background: var(--paper);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.3s ease;
}
@keyframes slideIn {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}
.cart-header {
    padding: 20px;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}
.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--line);
    background: white;
}
.cart-total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 18px;
}

/* Kuliner Section Styles */
.kuliner-header {
    margin-bottom: 40px;
    text-align: center;
}

.kuliner-title {
    font-family: "Fraunces", serif;
    font-size: clamp(32px, 5vw, 48px);
    color: var(--brand);
    margin-bottom: 16px;
}

.kuliner-description {
    color: var(--muted);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.article-card {
    position: relative;
    height: auto;
    padding: 0;
    overflow: hidden;
    border-radius: 24px;
    background: var(--paper);
    border: 1px solid var(--line);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.article-image {
    height: 200px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.article-content {
    padding: 24px;
}

.article-title {
    font-family: "Fraunces", serif;
    font-size: 20px;
    color: var(--brand);
    margin-bottom: 8px;
}

.article-excerpt {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-full {
    width: 100%;
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    background: var(--paper);
    border-radius: var(--radius);
    border: 1px dashed var(--line);
}

@media (max-width: 980px) {
    .nav {
        display: none;
    }
    .hamburger {
        display: grid;
    }
    .search {
        min-width: min(420px, 56vw);
    }
    .section-search {
        min-width: min(420px, 100%);
    }
    .hero-inner {
        grid-template-columns: 1fr;
    }
    .hero-art {
        min-height: 280px;
    }
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .about {
        grid-template-columns: 1fr;
    }
    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .product-modal-panel {
        grid-template-columns: 1fr;
    }
    .product-modal-copy {
        padding-right: 0;
    }
    .footer-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(var(--container), calc(100% - 28px));
    }
    .header-actions .search {
        display: none;
    }
    .section-search {
        display: flex;
        width: 100%;
        min-width: 0;
        margin-left: 0;
        transform: none;
    }
    .hero-copy {
        padding: 16px 6px;
    }
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .section-actions {
        justify-content: flex-start;
    }
    .product-grid {
        grid-template-columns: 1fr;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .card-media {
        height: 170px;
    }
    .footer-cols {
        grid-template-columns: 1fr;
    }
    .product-modal {
        padding: 14px;
    }
    .product-modal-panel {
        padding: 14px;
        gap: 14px;
    }
    .product-modal-media,
    .product-modal-image,
    .product-modal-fallback {
        min-height: 260px;
    }
    .product-modal-title {
        font-size: 26px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }
}
