/* Pastikan konten tidak nempel navbar melayang */
.content {
    max-width: 1000px;
    width: 95%;
    /* margin: 120px auto 80px; */
    background: none !important;
    padding: 0px !important;
    /* atas menyesuaikan navbar fixed */
}

/* ========== UTILITIES ========== */
.section {
    background: var(--glass-card);
    backdrop-filter: var(--blur);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px 26px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.section:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    border-color: rgba(255, 255, 255, 0.18);
}

.section h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    letter-spacing: .3px;
}

/* Override for "Tentang Kami" heading in About section */
.about.section h2 {
    color: var(--accent);
}

.section p {
    color: var(--muted);
    line-height: 1.65;
}


@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.hero p {
    color: var(--muted);
    margin-bottom: 18px;
}

/* ========== BUTTONS ========== */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: .2px;
    transition: transform var(--transition), filter var(--transition), box-shadow var(--transition);
    will-change: transform;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #000;
    box-shadow: 0 8px 18px rgba(255, 213, 79, 0.35);
}

.btn-primary:hover {
    transform: translateY(-1px);
    filter: brightness(0.95);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-secondary:hover {
    transform: translateY(-1px);
}

/* ========== GRID STACK HOME ========== */
.about,
.best-seller,
.promo,
.location {
    margin-top: 22px;
}

.about.section,
.best-seller.section,
.promo.section,
.location.section {}

/* Kalau mau 2 kolom di desktop untuk beberapa section */
@media (min-width: 900px) {
    .grid-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 22px;
    }
}

/* ========== BEST SELLER LIST ========== */
.best-seller ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 18px;
    display: grid;
    gap: 10px;
}

.best-seller li {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
}

/* .best-seller li::before {
    content: "★";
    color: var(--accent);
    filter: drop-shadow(0 2px 6px rgba(255, 213, 79, 0.4));
} */

/* ========== PROMO BOX ========== */
.promo {
    position: relative;
}

.promo p strong {
    color: var(--accent);
}

.promo::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(120deg, rgba(255, 213, 79, 0.12), rgba(255, 255, 255, 0));
    pointer-events: none;
}

/* ========== LOCATION ========== */
.location a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.35);
    padding-bottom: 1px;
}

.location a:hover {
    color: var(--accent);
    border-color: var(--accent);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .content {
        margin: 0px auto 70px;
    }

    .section {
        padding: 22px 18px;
    }

    .hero {
        padding: 34px 20px;
    }
}

/* ========== OPTIONAL: ANIMASI MASUK ========== */
.reveal {
    opacity: 0;
    transform: translateY(10px);
    animation: revealUp .5s var(--transition) forwards;
}

.hero.reveal {
    animation-delay: .05s;
}

.about.reveal {
    animation-delay: .12s;
}

.best-seller.reveal {
    animation-delay: .18s;
}

.promo.reveal {
    animation-delay: .24s;
}

.location.reveal {
    animation-delay: .3s;
}

@keyframes revealUp {
    to {
        opacity: 1;
        transform: none;
    }
}