/* ==== ZOOM UNIVERSAL (COPY SAJA) ==== */
.zoom {
    border-radius: 20px;
    cursor: pointer;
    transition: transform .45s ease, box-shadow .45s ease;
    will-change: transform;
    transform-origin: center;
}

/* Desktop */
@media (hover: hover) {
    .zoom:hover {
        transform: scale(1.05);
        box-shadow: 0 25px 60px rgba(0, 0, 0, .18);
        z-index: 1;
    }
}

/* Mobile */
@media (hover: none) {
    .zoom:active {
        transform: scale(1.04);
        box-shadow: 0 20px 40px rgba(0, 0, 0, .18);
    }
}






/* ==== untuk navbar ==== */
.topbar {
    background: #fff7e1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #2c2c2c;
}

.logo-text span {
    color: #d4af37;
}

.nav-link {
    color: #555 !important;
    font-weight: 500;
}

.nav-link:hover {
    color: #d4af37 !important;
}


/* == untuk hero */
.hero-section {
    background:
        radial-gradient(circle at 70% 40%, rgba(212, 175, 55, .08), transparent 60%),
        linear-gradient(180deg, #fdf8ec, #fbf2dd);
    min-height: 90vh;
    display: flex;
    align-items: start;

}


/* =====================
   TYPOGRAPHY
===================== */
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.75rem;
    /* 3rem → 3.75rem */
    font-weight: 700;
    line-height: 1.25;
    color: #2c2c2c;
}

.hero-title span {
    color: #d4af37;
}

.hero-desc {
    color: #666;
    max-width: 650px;
    /* 520 → 650 */
    font-size: 1.05rem;
    line-height: 1.9;
}

/* =====================
   BADGE
===================== */
.badge-pill {
    background: #f3e6b5;
    color: #a8872c;
    padding: 10px 22px;
    /* lebih besar */
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
}

/* =====================
   BUTTON
===================== */
.btn-gold {
    background: #d4af37;
    color: #fff;
    padding: 15px 34px;
    /* 12x26 → 15x34 */
    border-radius: 12px;
    font-size: 1rem;
}

.btn-gold:hover {
    background: #c49d2e;
    color: #fff;
}

.btn-outline-gold {
    border: 2px solid #d4af37;
    color: #d4af37;
    padding: 15px 34px;
    border-radius: 12px;
    font-size: 1rem;
}

/* =====================
   INFO + STATS
===================== */
.hero-info span {
    margin-right: 18px;
    font-size: 15px;
    /* 14 → 15 */
    color: #888;
}

.hero-stats {
    display: flex;
    gap: 56px;
    /* 40 → 56 */
    margin-top: 26px;
}

.hero-stats strong {
    font-size: 1.75rem;
    /* 1.4 → 1.75 */
    display: block;
    color: #d4af37;
}

.hero-stats span {
    font-size: 15px;
    color: #777;
}

/* =====================
   IMAGE AREA
===================== */
.image-wrapper {
    position: relative;
    transform: scale(1.12);
    /* visual balance kanan */
}

.price-badge {
    position: absolute;
    top: -16px;
    left: -16px;
    background: #d4af37;
    color: #fff;
    padding: 14px 20px;
    /* lebih besar */
    border-radius: 16px;
    font-size: 15px;
    z-index: 2;
}

/* MOBILE */
@media (max-width: 640px) {
    .price-badge {
        left: 5px;
        /* geser ke tengah dikit */
    }
}

.img-main {
    width: 900%;
    border-radius: 20px;
    /* 20 → 24 */
    box-shadow: 0 28px 56px rgba(0, 0, 0, .14);
}

.img-ratio-16x9 {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 20px;
}

.img-ratio-16x9 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    /* 12 → 16 */
    margin-top: 20px;
}

.img-grid img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, .12);
}


/* Untuk Koleksi */
.collection-section {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.pill {
    display: inline-block;
    background: #f7edd2;
    color: #d4af37;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    margin-bottom: 14px;
}

h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

h2 span {
    color: #d4af37;
}

.subtitle {
    max-width: 600px;
    margin: 0 auto 50px;
    color: #666;
    font-size: 16px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    position: relative;
    text-align: left;
}

.card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #d4af37;
    color: #fff;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 999px;
}

.card-body {
    padding: 18px;
}

.card-body h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.card-body p {
    font-size: 14px;
    color: #666;
    margin-bottom: 14px;
}

.price {
    color: #d4af37;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-primary {
    display: inline-block;
    margin-top: 50px;
    background: #d4af37;
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
}

/* MOBILE */
@media (max-width: 900px) {
    .card-grid {
        grid-template-columns: 1fr;
    }

    h2 {
        font-size: 28px;
    }
}