body {
    background: #f8f9fa;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    padding-top: 70px;
    padding-bottom: 60px;
}

/* Global header styles */
.header-wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: linear-gradient(90deg, #ff5722, #ff7043);
}

/* Top Bar (desktop only) */
.header-top {
    color: #fff;
    font-size: 14px;
    padding: 6px 0;
}

.header-main {
    padding: 15px 0;
    color: #fff;
}

/* Search */
.header-search input {
    border-radius: 5px 0 0 5px;
    border: none;
}

.header-search button {
    border-radius: 0 5px 5px 0;
    background: #ff7043;
    border: 1px solid #fff;
    color: #fff;
}

.header-links a {
    color: #fff;
    text-decoration: none;
    margin-right: 15px;
}
.header-links a:hover {
    text-decoration: underline;
}

/* MOBILE STYLE — LIKE SHOPEE */
@media (max-width: 768px) {

    /* Hide desktop top bar */
    .header-top {
        display: none;
    }

    /* Compact mobile header */
    .header-main {
        padding: 10px 0;
    }

    .shopee-logo {
        font-size: 22px;
    }

    .header-search .input-group {
        height: 32px;
    }

    .header-search input {
        font-size: 13px;
    }

    .header-main .cart-icon {
        font-size: 22px;
    }
}

/* Default: Desktop */
.header-spacer {
    height: 130px;
}

/* Tablet (≤ 992px) */
@media (max-width: 992px) {
    .header-spacer {
        height: 100px;
    }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
    .header-spacer {
        height: 85px;
    }
}

/* Mobile kecil (≤ 576px) */
@media (max-width: 576px) {
    .header-spacer {
        height: 75px;
    }
}

.search-box input {
    border-radius: 20px;
    font-size: 14px;
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #ddd;
    z-index: 999;
}

.bottom-nav a {
    text-decoration: none;
    color: #444;
}

.bottom-nav .nav-link.active {
    color: #ff5722;
}

.page-title {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.store-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: .3s ease;
    border: 1px solid #e7e7e7;
}

.store-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

.store-img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.store-name {
    font-size: 1.15rem;
    font-weight: 600;
    color: #333;
}

.store-description {
    color: #666;
    font-size: 0.92rem;
}

.store-badge {
    background: #f1f3f5;
    color: #333;
    border-radius: 12px;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.store-card {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    height: 100%; /* Biar seragam */
    display: flex;
    flex-direction: column;
}

.store-card img {
    width: 100%;
    height: 150px;          /* Tinggi gambar seragam */
    object-fit: cover;      /* Biar tidak gepeng */
}

.store-card-body {
    padding: 15px;
    flex-grow: 1; /* Isi menyesuaikan, card tetap sama tinggi */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.store-name {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

footer a:hover {
    color: #ff5722 !important;
}