/* =====================================================
   PujaLaptop — Main Stylesheet
   Inspired by Apple.com — minimalist, premium, metalic.
   ===================================================== */

:root {
    --primary: #D4A017;
    --primary-dark: #A8780C;
    --primary-light: #F5C84A;
    --secondary: #0A4DA6;
    --secondary-light: #1E6FD9;
    --dark: #0E0E10;
    --dark-2: #1C1C1F;
    --light: #FAFAFA;
    --light-2: #F0F0F2;
    --gray: #6E6E73;
    --gray-2: #86868B;
    --border: #E6E6E8;
    --success: #1B9E4B;
    --danger: #D6253B;
    --warning: #E59500;

    --gradient-gold: linear-gradient(135deg, #F5C84A 0%, #D4A017 50%, #A8780C 100%);
    --gradient-blue: linear-gradient(135deg, #1E6FD9 0%, #0A4DA6 100%);
    --gradient-dark: linear-gradient(135deg, #1C1C1F 0%, #0E0E10 100%);

    --shadow-sm: 0 1px 2px rgba(0,0,0,.06);
    --shadow: 0 4px 14px rgba(0,0,0,.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
    --shadow-gold: 0 8px 24px rgba(212,160,23,.35);

    --radius: 14px;
    --radius-sm: 8px;
    --radius-lg: 22px;

    --transition: 220ms cubic-bezier(.4,0,.2,1);

    --container: 1240px;
    --font: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font);
    color: var(--dark);
    background: var(--light);
    line-height: 1.55;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
ul, ol { list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
    white-space: nowrap;
    text-align: center;
    border: 1px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
    background: var(--gradient-gold);
    color: #fff;
    box-shadow: var(--shadow-gold);
    text-shadow: 0 1px 2px rgba(0,0,0,.2);
}
.btn-primary:hover { box-shadow: 0 12px 30px rgba(212,160,23,.45); color:#fff; }

.btn-secondary {
    background: var(--gradient-blue);
    color: #fff;
    box-shadow: 0 6px 18px rgba(10,77,166,.3);
}
.btn-secondary:hover { box-shadow: 0 10px 26px rgba(10,77,166,.4); color:#fff; }

.btn-dark {
    background: var(--gradient-dark);
    color: #fff;
}
.btn-dark:hover { color: var(--primary-light); }

.btn-outline {
    background: transparent;
    border-color: var(--dark);
    color: var(--dark);
}
.btn-outline:hover { background: var(--dark); color: #fff; }

.btn-danger {
    background: var(--danger);
    color: #fff;
}
.btn-block { display: flex; width: 100%; }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ===== Header ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.85);
    backdrop-filter: saturate(180%) blur(18px);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
    border-bottom: 1px solid var(--border);
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 16px;
}
.brand {
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.02em;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.main-nav { display: flex; gap: 28px; }
.main-nav a {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--dark);
    transition: color var(--transition);
    position: relative;
}
.main-nav a:hover { color: var(--primary-dark); }
.main-nav a::after {
    content: "";
    position: absolute;
    left: 0; bottom: -6px;
    width: 0; height: 2px;
    background: var(--gradient-gold);
    transition: width var(--transition);
}
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.search-form {
    display: flex;
    align-items: center;
    background: var(--light-2);
    border-radius: 999px;
    padding: 6px 14px;
    transition: box-shadow var(--transition);
    border: 1px solid transparent;
}
.search-form:focus-within { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(212,160,23,.15); }
.search-form input {
    border: none;
    background: transparent;
    padding: 4px 8px;
    width: 180px;
    outline: none;
}
.search-form button { padding: 4px 8px; color: var(--gray); }

.cart-link {
    position: relative;
    font-size: 1.2rem;
    color: var(--dark);
}
.cart-badge {
    position: absolute;
    top: -8px; right: -10px;
    background: var(--gradient-gold);
    color: #fff;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    box-shadow: 0 2px 6px rgba(212,160,23,.5);
}

.menu-toggle { display: none; font-size: 1.4rem; }

/* ===== Hero ===== */
.hero {
    background: linear-gradient(180deg, var(--light-2) 0%, var(--light) 100%);
    padding: 96px 0 80px;
    text-align: center;
    overflow: hidden;
}
.hero h1 {
    font-size: clamp(2.4rem, 6vw, 4.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 18px;
}
.hero h1 .grad {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero p {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: var(--gray);
    max-width: 640px;
    margin: 0 auto 32px;
}
.hero .cta-row { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero-image {
    margin: 56px auto 0;
    max-width: 880px;
    aspect-ratio: 16/9;
    border-radius: var(--radius-lg);
    background: var(--gradient-dark);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    position: relative;
    overflow: hidden;
}
.hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(245,200,74,.18), transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(30,111,217,.18), transparent 50%);
}

/* ===== Sections ===== */
.section { padding: 80px 0; }
.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    text-align: center;
    margin-bottom: 12px;
}
.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto 48px;
}

/* ===== Product Grid ===== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
@media (max-width: 1024px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 480px)  { .product-grid { grid-template-columns: 1fr; } }

.product-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.product-card .img-wrap {
    aspect-ratio: 1/1;
    background: var(--light-2);
    overflow: hidden;
    position: relative;
}
.product-card .img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 380ms ease;
}
.product-card:hover .img-wrap img { transform: scale(1.06); }
.product-card .img-placeholder {
    width: 100%; height: 100%;
    background: var(--gradient-dark);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-light);
    font-weight: 700;
    font-size: 1rem;
}
.discount-badge {
    position: absolute;
    top: 10px; left: 10px;
    background: var(--gradient-gold);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
}
.product-card .body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-card .cat { font-size: 0.8rem; color: var(--gray); }
.product-card .name {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6em;
}
.product-card .prices { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-top: auto; }
.product-card .price { font-size: 1.05rem; font-weight: 700; color: var(--dark); }
.product-card .price-old {
    font-size: 0.85rem;
    color: var(--gray-2);
    text-decoration: line-through;
}
.product-card .stock-out { color: var(--danger); font-weight: 600; font-size: 0.85rem; }
.product-card .btn { margin-top: 10px; }

/* ===== Categories ===== */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}
@media (max-width: 1024px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px)  { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
.cat-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 16px;
    text-align: center;
    transition: all var(--transition);
}
.cat-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
    color: var(--primary-dark);
}
.cat-card .icon {
    width: 56px; height: 56px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    box-shadow: var(--shadow-gold);
}
.cat-card .title { font-weight: 600; font-size: 1rem; }

/* ===== Footer ===== */
.site-footer {
    background: var(--gradient-dark);
    color: #C7C7CC;
    padding: 60px 0 24px;
    margin-top: 80px;
}
.site-footer .grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}
@media (max-width: 768px) { .site-footer .grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .site-footer .grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; margin-bottom: 16px; font-size: 1rem; }
.site-footer .brand { font-size: 1.6rem; margin-bottom: 12px; }
.site-footer p, .site-footer li { font-size: 0.9rem; line-height: 1.8; }
.site-footer a { color: #C7C7CC; }
.site-footer a:hover { color: var(--primary-light); }
.site-footer .copyright {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 20px; margin-top: 40px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-2);
}

/* ===== Shop / Filters ===== */
.shop-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 32px;
}
@media (max-width: 768px) { .shop-layout { grid-template-columns: 1fr; } }

.filter-sidebar {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    height: fit-content;
    position: sticky;
    top: 90px;
}
.filter-sidebar h3 { font-size: 0.95rem; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gray); }
.filter-sidebar ul { display: flex; flex-direction: column; gap: 6px; margin-bottom: 24px; }
.filter-sidebar a {
    display: block;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    transition: all var(--transition);
}
.filter-sidebar a:hover, .filter-sidebar a.active {
    background: var(--light-2);
    color: var(--primary-dark);
    font-weight: 600;
}

.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 12px;
    flex-wrap: wrap;
}
.shop-toolbar select {
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: #fff;
}

/* ===== Pagination ===== */
.pagination {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}
.pagination a, .pagination span {
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: #fff;
    font-size: 0.9rem;
    transition: all var(--transition);
}
.pagination a:hover { border-color: var(--primary); }
.pagination .active {
    background: var(--gradient-gold);
    color: #fff;
    border-color: transparent;
    font-weight: 700;
}

/* ===== Product detail ===== */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    margin-bottom: 60px;
}
@media (max-width: 768px) { .product-detail { grid-template-columns: 1fr; gap: 32px; } }

.product-gallery .main-image {
    width: 100%;
    aspect-ratio: 1/1;
    background: var(--light-2);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
}
.product-gallery .main-image img { width: 100%; height: 100%; object-fit: cover; }
.thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.thumbs img {
    width: 72px; height: 72px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    background: var(--light-2);
    transition: border var(--transition);
}
.thumbs img.active, .thumbs img:hover { border-color: var(--primary); }

.product-info h1 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}
.product-info .cat { color: var(--secondary); font-weight: 500; margin-bottom: 8px; }
.product-info .price-row {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin: 18px 0;
    flex-wrap: wrap;
}
.product-info .price-final { font-size: 2rem; font-weight: 800; color: var(--dark); }
.product-info .price-old { font-size: 1.05rem; color: var(--gray-2); text-decoration: line-through; }
.product-info .badge-disc {
    background: var(--gradient-gold);
    color: #fff;
    padding: 4px 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
}
.stock-info { font-size: 0.95rem; margin-bottom: 16px; }
.stock-available { color: var(--success); font-weight: 600; }
.stock-empty { color: var(--danger); font-weight: 600; }
.product-desc { color: var(--gray); margin: 20px 0; line-height: 1.75; }

.qty-row {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 20px;
}
.qty-control {
    display: inline-flex; align-items: center;
    border: 1px solid var(--border);
    border-radius: 999px;
    overflow: hidden;
}
.qty-control button { padding: 8px 16px; font-size: 1.1rem; color: var(--dark); }
.qty-control input {
    width: 50px;
    text-align: center;
    border: none;
    outline: none;
    font-weight: 600;
}
.product-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}
.spec-table th, .spec-table td {
    text-align: left;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}
.spec-table th { color: var(--gray); font-weight: 500; width: 40%; }

/* ===== Cart ===== */
.cart-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.cart-table th, .cart-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border);
    text-align: left;
}
.cart-table th { background: var(--light-2); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; }
.cart-table img { width: 64px; height: 64px; object-fit: cover; border-radius: var(--radius-sm); }
.cart-summary {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-top: 24px;
    text-align: right;
}
.cart-summary .total { font-size: 1.6rem; font-weight: 800; margin: 8px 0 16px; }
.cart-actions { display: flex; gap: 12px; justify-content: flex-end; flex-wrap: wrap; }

@media (max-width: 768px) {
    .cart-table thead { display: none; }
    .cart-table, .cart-table tbody, .cart-table tr, .cart-table td { display: block; width: 100%; }
    .cart-table tr { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; padding: 12px; }
    .cart-table td { border: none; padding: 6px 0; }
    .cart-table td::before { content: attr(data-label); font-weight: 600; display: block; color: var(--gray); font-size: 0.85rem; }
}

/* ===== Forms ===== */
.form-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 500; margin-bottom: 6px; font-size: 0.9rem; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: #fff;
    transition: border var(--transition), box-shadow var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212,160,23,.15);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.form-group .help { font-size: 0.82rem; color: var(--gray); margin-top: 4px; }
.form-error {
    background: #FEE;
    border: 1px solid #F8C5C5;
    color: var(--danger);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    font-size: 0.9rem;
}
.form-success {
    background: #E5FBE9;
    border: 1px solid #A6E5B3;
    color: var(--success);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    font-size: 0.9rem;
}

/* ===== Checkout ===== */
.checkout-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    align-items: start;
}
@media (max-width: 768px) { .checkout-grid { grid-template-columns: 1fr; } }

.payment-list { display: flex; flex-direction: column; gap: 10px; }
.payment-list label {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
}
.payment-list label:hover { border-color: var(--primary); }
.payment-list input[type="radio"]:checked + .payment-info {
    color: var(--primary-dark);
    font-weight: 600;
}
.payment-list label:has(input:checked) {
    border-color: var(--primary);
    background: rgba(212,160,23,.06);
}
.payment-info { flex: 1; }
.payment-info .name { font-weight: 600; }
.payment-info .acc { font-size: 0.85rem; color: var(--gray); }

.contact-channel { display: flex; gap: 10px; margin-top: 12px; }

/* ===== Order Success ===== */
.success-card {
    text-align: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 60px 32px;
    max-width: 560px;
    margin: 60px auto;
}
.success-card .icon {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: var(--gradient-gold);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 18px;
    box-shadow: var(--shadow-gold);
}
.success-card h1 { font-size: 1.8rem; margin-bottom: 8px; }
.success-card .order-number {
    font-family: monospace;
    background: var(--light-2);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    display: inline-block;
    margin: 12px 0 24px;
    font-weight: 700;
    font-size: 1.05rem;
}

/* ===== Mobile Nav ===== */
@media (max-width: 768px) {
    .menu-toggle { display: inline-flex; }
    .main-nav {
        display: none;
        position: absolute;
        top: 68px; left: 0; right: 0;
        background: #fff;
        flex-direction: column;
        padding: 16px;
        gap: 12px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
    }
    .main-nav.open { display: flex; }
    .search-form input { width: 100px; }
}

/* ===== Animations ===== */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 600ms ease, transform 600ms ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ===== Empty state ===== */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--gray);
}
.empty-state h3 { font-size: 1.4rem; color: var(--dark); margin-bottom: 8px; }

/* ===== Misc ===== */
.text-center { text-align: center; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }
.flex { display: flex; }
.gap-2 { gap: 12px; }
.flex-wrap { flex-wrap: wrap; }

/* ===== Banner Slider ===== */
.banner-slider {
    margin: 56px auto 0;
    max-width: 1200px;
    width: 100%;
    aspect-ratio: 8 / 3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    background: var(--gradient-dark);
    box-shadow: var(--shadow-lg);
}
.banner-track {
    position: absolute;
    inset: 0;
}
.banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 600ms ease;
    pointer-events: none;
}
.banner-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}
.banner-slide img,
.banner-slide a {
    width: 100%;
    height: 100%;
    display: block;
}
.banner-slide img {
    object-fit: cover;
    object-position: center;
}
.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 200ms ease;
}
.banner-nav:hover { background: rgba(0, 0, 0, 0.7); }
.banner-nav.prev { left: 14px; }
.banner-nav.next { right: 14px; }
.banner-dots {
    position: absolute;
    bottom: 14px;
    left: 0;
    right: 0;
    z-index: 3;
    display: flex;
    justify-content: center;
    gap: 8px;
}
.banner-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.5);
    padding: 0;
    transition: background 200ms ease, transform 200ms ease;
}
.banner-dots .dot.is-active {
    background: #fff;
    transform: scale(1.2);
}
@media (max-width: 640px) {
    .banner-slider {
        margin-top: 32px;
        aspect-ratio: 4 / 3;
        border-radius: var(--radius-md);
    }
    .banner-nav { width: 34px; height: 34px; font-size: 1rem; }
    .banner-nav.prev { left: 8px; }
    .banner-nav.next { right: 8px; }
}

/* ===== Google Maps embed ===== */
.map-embed {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--light-2);
    margin-top: 18px;
}
.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.map-embed-actions {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
