/* Location Page Styles - Flower Moment */

* {
    font-family: 'Outfit';
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8B9D83;
    --secondary-color: #99BC76;
    --hero-bg: #E0EBE3;
    --text-dark: #4A5568;
    --text-light: #6B7F71;
    --bg-light: #F8FAF6;
    --white: #FFFFFF;
    --border-color: #E5EDE0;
    --max-width: 1400px;
    --container-padding: 40px; /* Padding sesuai desain Canva */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit';
    overflow-x: hidden;
    background: #F2F3F7;
}

/* ========================================
   CONTAINER 1440px - GLOBAL (DIPERBAIKI)
   ======================================== */
.container-1440 {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
    background: #F2F3F7;
}

/* Untuk Bootstrap container yang sudah ada */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ===============================
   HERO SECTION
================================ */
.hero-section {
    background:
        linear-gradient(180deg,
            rgba(224, 235, 227, 0.08) 0%,
            rgba(224, 235, 227, 0.54) 20%,
            rgba(224, 235, 227, 1) 58%,
            rgba(224, 235, 227, 1) 67%,
            rgba(224, 235, 227, 0.08) 100%
        ),
        #E0EBE3;
    padding: 90px 0 0 0;
    min-height: 500px;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}
.hero-gradient {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
    transparent 0%,
    #E0EBE3 25%,
    #E0EBE3 75%,
    transparent 100%
);
    pointer-events: none;
    z-index: 0;
}
.hero-grid {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.7;
    -webkit-mask-image: linear-gradient(to right, black 0%, black 20%, transparent 50%, black 80%, black 100%);
    mask-image: linear-gradient(to right, black 0%, black 20%, transparent 50%, black 80%, black 100%);
}

.hero-breadcrumb {
    margin-bottom: 24px;
}

.hero-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.hero-breadcrumb .breadcrumb-item {
    font-size: 14px;
    font-weight: 500;
}

.hero-breadcrumb .breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-breadcrumb .breadcrumb-item a:hover {
    color: #7A8C73;
}

.hero-breadcrumb .breadcrumb-item.active {
    color: var(--text-light);
}

.hero-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    color: var(--text-light);
}

.hero-content {
    padding-right: 40px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-hero {
    background-color: #659A71;
    border: none;
    padding: 5px 10px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    color: var(--white);
}

.btn-hero:hover {
    background-color: #7A8C73;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 157, 131, 0.3);
}

.hero-image {
    position: relative;
    width: 50%;
    height: 200px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    z-index: 1;
    overflow: visible;
}

.hero-image img {
    position: absolute;
    width: auto;
    height: auto;
    height: 200px;
    object-fit: contain;
    object-position: bottom right;
    bottom: -90px;
    transform: scale(2.3);
    right: -185px;
}

@media (max-width: 1440px) {
    .hero-image {
        right: 5%;
        bottom: 65%;
        width: 45%;
        transform: scale(1.1);
    }
}

/* ========================================
   PERBAIKAN UNTUK ZOOM 110% KE ATAS
   ======================================== */
@media screen and (min-width: 768px) {
    /* Zoom 110% - 125% */
    @media (min-width: 1101px) and (max-width: 1300px) {
        .hero-image img {
            transform: scale(2.1);
            right: -165px;
            
        }
    }
    
    /* Zoom 125% - 150% */
    @media (min-width: 1001px) and (max-width: 1100px) {
        .hero-image img {
            transform: scale(1.9);
            right: -145px;
        }
    }
    
    /* Zoom 150% - 175% */
    @media (min-width: 901px) and (max-width: 1000px) {
        .hero-image img {
            transform: scale(1.7);
            right: -125px;
        }
    }
    
    /* Zoom 175% - 200% */
    @media (min-width: 801px) and (max-width: 900px) {
        .hero-image img {
            transform: scale(1.5);
            right: -105px;
        }
    }
    
    /* Zoom 200% ke atas */
    @media (max-width: 800px) {
        .hero-image img {
            transform: scale(1.3);
            right: -85px;
        }
    }
}

@media screen and (min-width: 768px) {
    /* Zoom 110% - 125% */
    @media (min-width: 1101px) and (max-width: 1300px) {
        .hero-image img {
            -webkit-transform: scale(2.1);
            transform: scale(2.1);
            right: -165px;
        }
    }
    
    /* Zoom 125% - 150% */
    @media (min-width: 1001px) and (max-width: 1100px) {
        .hero-image img {
            -webkit-transform: scale(1.9);
            transform: scale(1.9);
            right: -145px;
            bottom: -140px;
        }
    }
    
    /* Zoom 150% - 175% */
    @media (min-width: 901px) and (max-width: 1000px) {
        .hero-image img {
            -webkit-transform: scale(1.7);
            transform: scale(1.7);
            right: -125px;
        }
    }
    
    /* Zoom 175% - 200% */
    @media (min-width: 801px) and (max-width: 900px) {
        .hero-image img {
            -webkit-transform: scale(1.5);
            transform: scale(1.5);
            right: -105px;
        }
    }
    
    /* Zoom 200% ke atas */
    @media (max-width: 800px) {
        .hero-image img {
            -webkit-transform: scale(1.3);
            transform: scale(1.3);
            right: -85px;
        }
    }
}

/* Left Decoration Image */
.hero-decoration-left {
    position: absolute;
    width: 300px;
    height: 320px;
    left: -60px;
    top: -2px;
    z-index: 1;
    transform: rotate(15deg);
}

.hero-decoration-left img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-decoration-left-top {
    position: absolute;
    width: 195px;
    height: 167px;
    left: -88px;
    top: -56px;
    z-index: 2;
    transform: rotate(45deg);
}

.hero-decoration-left-top img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ========================================
   FEATURES SECTION - Location (SESUAI DESAIN)
   ======================================== */

/* Wrapper untuk border full layar */
.features-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #99BC76; /* TETAP HIJAU seperti desain location */
    border-width: 1px 0px;
    border-style: dashed;
    border-color: #A5A8C0;
    padding: 0;
}

/* Container untuk membatasi width konten */
.features-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.features-section {
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px; /* Mengikuti home */
    padding: 20px 0; /* Mengikuti home */
    width: 100%;
    height: auto;
    background: transparent;
    border: none;
    margin: 0;
}

/* Feature Card - Mengikuti struktur home */
.feature-card {
    display: flex;
    flex-direction: row;
    align-items: center; /* Center secara vertikal */
    padding: 0;
    gap: 12px; /* Mengikuti home */
    width: 100%;
    height: auto;
    background: transparent;
}

.feature-icon {
    width: 34px;
    height: 34px;
    flex: none;
    flex-shrink: 0;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF; /* TETAP PUTIH */
}

.feature-icon svg {
    width: 34px;
    height: 34px;
    stroke-width: 1.5;
    display: block;
    stroke: #FFFFFF; /* TETAP PUTIH untuk stroke */
}

/* Untuk icon kedua (fill) */
.feature-card:nth-child(2) svg path {
    fill: #FFFFFF !important; /* TETAP PUTIH */
    stroke: none !important;
}

.feature-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    height: auto;
    flex: 1;
    width: 100%;
}

.feature-text h3 {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 135%;
    color: #FFFFFF; /* TETAP PUTIH */
    margin: 0 0 4px 0;
    align-self: stretch;
}

.feature-text p {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    text-transform: capitalize;
    color: #FFFFFF; /* TETAP PUTIH */
    opacity: 0.9; /* Sedikit transparan */
    margin: 0;
    align-self: stretch;
}

/* ========================================
   RESPONSIVE FEATURES - MOBILE (2x2 GRID)
   ======================================== */
@media (max-width: 1024px) {
    .features-section {
        gap: 16px;
    }

    .feature-card {
        gap: 10px;
    }

    .feature-icon {
        width: 30px;
        height: 30px;
    }

    .feature-icon svg {
        width: 26px;
        height: 26px;
    }

    .feature-text h3 {
        font-size: 14px;
    }

    .feature-text p {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .features-wrapper {
        background: #99BC76 !important;
    }

    .features-section {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px 12px !important;
        padding: 20px 0 !important;
    }

    .features-container {
        padding: 0 20px;
    }

    .feature-card {
        gap: 8px !important;
        justify-content: flex-start !important; /* Rata kiri di mobile */
    }

    .feature-icon {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
    }

    .feature-icon svg {
        width: 18px !important;
        height: 18px !important;
    }

    .feature-icon svg path {
        stroke: #FFFFFF !important; /* TETAP PUTIH */
    }

    .feature-card:nth-child(2) svg path {
        fill: #FFFFFF !important; /* TETAP PUTIH */
        stroke: none !important;
    }

    .feature-text h3 {
        font-size: 11px !important;
        line-height: 1.2 !important;
        margin-bottom: 2px !important;
        color: #FFFFFF !important; /* TETAP PUTIH */
    }

    .feature-text p {
        font-size: 9px !important;
        line-height: 1.2 !important;
        color: #FFFFFF !important; /* TETAP PUTIH */
        opacity: 0.9 !important;
    }
}

@media (max-width: 430px) {
    .features-section {
        padding: 15px 0 !important;
    }
}

/* ========================================
   RESPONSIVE FEATURES - MOBILE (2x2 GRID)
   ======================================== */
@media (max-width: 1024px) {
    .features-section {
        gap: 16px;
    }

    .feature-icon {
        width: 30px;
        height: 30px;
    }

    .feature-text h3 {
        font-size: 14px;
    }

    .feature-text p {
        font-size: 12px;
    }
}

@media (max-width: 767px) {
    .features-wrapper {
        background: #99BC76 !important;
    }

    .features-section {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px 12px !important;
        padding: 20px 0 !important;
    }

    .feature-card {
        gap: 8px !important;
        justify-content: flex-start !important; /* Rata kiri di mobile */
    }

    .feature-icon {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
    }

    .feature-icon svg {
        width: 18px !important;
        height: 18px !important;
    }

    .feature-text h3 {
        font-size: 11px !important;
        line-height: 1.2 !important;
        margin-bottom: 2px !important;
    }

    .feature-text p {
        font-size: 9px !important;
        line-height: 1.2 !important;
    }
}

@media (max-width: 430px) {
    .features-section {
        padding: 15px 0 !important;
    }

    .features-container {
        padding: 0 20px;
    }
}
/* ===============================
   FILTER SECTION
================================ */
.filter-section {
    padding: 40px 0;
    background-color: transparent !important;
    width: 100%;
}

.filter-box {
    background-color: transparent !important;
    padding: 24px 0;
    border: 1px solid #E5E7EB;
    display: flex;
    gap: 32px;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
}

/* HEADER FILTER KOTA */
.filter-left-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    margin-bottom: 16px;
    border-bottom: 1px solid #E5E7EB;
}

.filter-left-header .filter-title {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

.filter-left-header .btn-reset {
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: #EF4444;
    cursor: pointer;
}

.filter-left-header .btn-reset:hover {
    text-decoration: underline;
}

/* ===============================
   LEFT SIDE - FILTER KOTA
================================ */
.filter-left {
    width: 350px;
    flex-shrink: 0;
    background-color: transparent !important;
    border: 1px solid #E5E7EB;
    padding: 20px;
    margin-left: 25px;
}

.filter-title {
    font-size: 22px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 16px;
}

/* GRID 2 - 1 */
.filter-buttons-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.btn-filter {
    padding: 8px 18px;
    font-size: 11px;
    font-weight: 600;
    background-color: transparent !important;
    border: 2px solid #D1D5DB;
    color: #6B7280;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-filter.active {
    background-color: #E6F2E6;
    border-color: #7BAE7F;
    color: #4F7F5F;
}

/* MOMENT FULL WIDTH */
.btn-filter:nth-child(3) {
    grid-column: span 2;
}

.filter-info-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #6B7280;
}

/* ===============================
   RIGHT SIDE
================================ */
.filter-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

/* Reset Filter */
.btn-reset {
    align-self: flex-end;
    background: none;
    border: none;
    color: #EF4444;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

/* ===============================
   OCCASION TABS
================================ */
.occasions-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 12px;
    padding-top: 16px;
    padding-bottom: 1px;
    margin-bottom: none;
    border-bottom: 1px solid #E5E7EB;
}

.occasion-tab {
    background: none;
    border: none;
    padding: 0;
    color: #9CA3AF;
    font-weight: 500;
    cursor: pointer;
}

.occasion-tab.active {
    color: #6B7280;
    font-weight: 600;
}

/* ===============================
   ALPHABET FILTER
================================ */
.alphabet-filter-section {
    padding-top: 1px;
}

.alphabet-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.alphabet-btn {
    width: 32px;
    height: 32px;
    border: 1px solid transparent;
    background-color: transparent;
    font-size: 12px;
    font-weight: 600;
    color: #6B7280;
    cursor: pointer;
    transition: all 0.2s ease;
}

.alphabet-btn.active {
    background-color: #E6F2E6;
    border-color: #7BAE7F;
    color: #4F7F5F;
}

/* ===============================
   SEARCH BAR
================================ */
.search-bar-wrapper {
    width: 100%;
}

.search-input-group {
    position: relative;
    width: 100%;
}

.search-input-group svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9CA3AF;
}

.search-input {
    width: 100%;
    padding: 12px 16px 12px 44px;
    font-size: 14px;
    border: 1px solid #E5E7EB;
    background-color: transparent !important;
}

.search-input::placeholder {
    color: #9CA3AF;
}

.search-input:focus {
    outline: none;
    border-color: #7BAE7F;
}

/* ===============================
   CITY DETAIL SECTION
================================ */
.city-detail-section {
    padding: 60px 0;
    background-color: var(--white);
}

.city-detail-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
    background-color: var(--white);
    border: 2px solid #E5E5E5;
    margin-bottom: 40px;
}

.city-detail-image {
    width: 400px;
    height: 400px;
    flex-shrink: 0;
}

.city-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.city-detail-info {
    flex: 1;
}

.city-detail-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background-color: #F3F4F6;
    font-size: 14px;
    font-weight: 600;
    color: #6B7280;
    margin-bottom: 12px;
}

.city-detail-badge svg {
    width: 18px;
    height: 18px;
}

.city-detail-name {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

/* ===============================
   CITIES LIST SECTION (Grid)
================================ */
.cities-section {
    padding: 60px 0;
    background-color: #F2F3F7;
}

.cities-list-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

/* ===============================
   PRODUCT CARD
================================ */
.product-card {
    background-color: var(--white);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.product-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.product-info {
    padding: 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.4;
}

.product-category {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 10px;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.product-info .btn {
    margin-top: auto;
    width: 100%;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

/* ===============================
   CITY CARD
================================ */
.cities-section .city-card {
    display: block;
    background-color: transparent !important;
    border: 1px solid #E5E7EB;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cities-section .city-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.cities-section .city-card .card-body {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    padding: 14px !important;
    gap: 16px !important;
    min-height: 88px;
}

.cities-section .city-card .card-body>img {
    width: 56px !important;
    height: 56px !important;
    object-fit: contain;
    flex-shrink: 0;
    margin: 0 !important;
}

.cities-section .city-card .text-start {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cities-section .city-card .text-success {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 500;
    color: #6B7F71 !important;
    margin-bottom: 4px;
    line-height: 1;
    white-space: nowrap;
}

.cities-section .city-card .text-success img {
    width: 14px !important;
    height: 14px !important;
    object-fit: contain;
    flex: none;
}

.cities-section .city-card h6 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ===============================
   UTILITIES
================================ */
.alert-info {
    background-color: #E3F2FD;
    border-color: #90CAF9;
    color: #1565C0;
    padding: 20px;
}

/* 5 kolom sejajar */
.col-five {
    flex: 0 0 20%;
    max-width: 20%;
}

/* ===============================
   EMPTY STATE - CENTERED (PERBAIKAN)
   ================================ */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 60px 20px;
    min-height: 300px;
}

.empty-state img,
.empty-state svg {
    width: 200px;
    height: auto;
    max-height: 200px;
    margin-bottom: 20px;
    display: block;
    object-fit: contain;
}

.empty-state h3 {
    font-size: 18px;
    font-weight: 600;
    color: #6B7280;
    margin-bottom: 8px;
}

.empty-state p {
    font-size: 14px;
    color: #9CA3AF;
}

.empty-state-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 60px 20px;
}

/* ================================
   MOBILE EMPTY STATE
   ================================ */
@media (max-width: 768px) {
    .empty-state {
        padding: 40px 16px;
        min-height: 250px;
    }

    .empty-state img,
    .empty-state svg {
        width: 160px;
        max-height: 160px;
    }

    .empty-state h3 {
        font-size: 16px;
    }

    .empty-state p {
        font-size: 13px;
    }
}

/* ========================================
   TABLET PORTRAIT - 768px - 834px
   ======================================== */
@media (min-width: 768px) and (max-width: 834px) {

    /* Container Padding */
    .container,
    .container-1440 {
        padding: 0 40px;
    }

    /* Hero Section */
    .hero-section {
        padding: 20px 0 60px 0;
        min-height: auto;
    }

    .hero-content {
        padding-right: 30px;
        padding-top: 40px;
        max-height: 250px;
    }

    .hero-title {
        font-size: 30px;
        margin-bottom: 18px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 24px;
        max-width: 400px;
    }

    .btn-hero {
        padding: 12px 24px;
        font-size: 15px;
    }

    .hero-image {
        width: 48%;
    }

    .hero-image img {
        bottom: -150px;
        right: 0;
        transform: scale(1.1);
    }

    .hero-decoration-left {
        width: 250px;
        height: 270px;
        left: -50px;
    }

    .hero-decoration-left-top {
        width: 165px;
        height: 140px;
        left: -70px;
        top: -45px;
    }

    /* Features Section */
    .features-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 25px 0;
    }

    .feature-card {
        gap: 14px;
    }

    .feature-icon {
        width: 30px;
        height: 30px;
    }

    .feature-icon svg {
        width: 26px;
        height: 26px;
    }

    .feature-text h3 {
        font-size: 13px;
    }

    .feature-text p {
        font-size: 13px;
    }

    /* Filter Section */
    .filter-section {
        padding: 35px 0;
    }

    .filter-box {
        padding: 20px;
        gap: 24px;
    }

    .filter-left {
        width: 280px;
        padding: 18px;
        margin: 0;
        margin-left: 0;
    }

    .filter-title {
        font-size: 20px;
    }

    .btn-filter {
        font-size: 11px;
        padding: 10px 16px;
    }

    .occasions-tabs {
        gap: 14px;
        font-size: 11px;
    }

    .alphabet-btn {
        width: 30px;
        height: 30px;
        font-size: 11px;
    }

    .search-input {
        font-size: 13px;
        padding: 11px 14px 11px 42px;
    }

    /* City Detail Section */
    .city-detail-section {
        padding: 50px 0;
    }

    .city-detail-card {
        padding: 28px;
        gap: 20px;
    }

    .city-detail-image {
        width: 140px;
        height: 140px;
    }

    .city-detail-name {
        font-size: 32px;
    }

    /* Cities Section - 4 KOLOM */
    .cities-section {
        padding: 50px 0;
    }

    .cities-list-title {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .cities-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 16px;
    }

    /* City Card Tablet */
    .cities-section .city-card .card-body {
        flex-direction: row!important;
        text-align: center;
        padding: 12px !important;
        gap: 10px !important;
        min-height: 110px;
    }

    .cities-section .city-card .card-body > img {
        width: 50px !important;
        height: 50px !important;
        margin: 0 auto !important;
    }

    .cities-section .city-card .text-success {
        justify-content: left;
        font-size: 10px;
    }

    .cities-section .city-card h6 {
        font-size: 14px;
        white-space: normal;
        text-align: center;
    }

    /* Product Card */
    .product-image {
        height: 200px;
    }

    .product-info {
        padding: 14px;
    }

    .product-name {
        font-size: 15px;
    }

    .product-price {
        font-size: 17px;
    }
}

/* ========================================
   TABLET LANDSCAPE / iPAD - 900px - 1024px
   ======================================== */
@media (min-width: 900px) and (max-width: 1024px) {

    /* Container Padding */
    .container,
    .container-1440 {
        padding: 0 40px;
    }

    /* Hero Section */
    .hero-section {
        padding: 80px 0 70px 0;
        min-height: 460px;
    }

    .hero-content {
        padding-right: 35px;
    }

    .hero-title {
        font-size: 33px;
        margin-bottom: 18px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .btn-hero {
        padding: 12px 26px;
        font-size: 15px;
    }

    .hero-image {
        width: 48%;
    }

    .hero-image img {
        bottom: -180px;
        right: -130px;
        transform: scale(2.2);
    }

    .hero-decoration-left {
        width: auto;
        height: 200px;
        left: -45px;
    }

    .hero-decoration-left-top {
        width: 180px;
        height: 154px;
        left: -80px;
        top: -50px;
    }

    /* Features Section */
    .features-section {
        padding: 12px 0;
    }

    .feature-card {
        gap: 11px;
        padding: 6px;
    }

    .feature-icon {
        width: 54px;
        height: 54px;
    }

    .feature-icon svg {
        width: 27px;
        height: 27px;
    }

    .feature-text h3 {
        font-size: 15px;
    }

    .feature-text p {
        font-size: 13px;
    }

    /* Filter Section */
    .filter-section {
        padding: 38px 0;
    }

    .filter-box {
        padding: 22px;
        gap: 28px;
    }

    .filter-left {
        width: 320px;
        padding: 19px;
        margin-left: 0;
        margin: 0;
    }

    .filter-title {
        font-size: 21px;
    }

    .btn-filter {
        font-size: 11px;
        padding: 9px 17px;
    }

    .occasions-tabs {
        gap: 16px;
        font-size: 12px;
    }

    .alphabet-btn {
        width: 31px;
        height: 31px;
        font-size: 12px;
    }

    .search-input {
        font-size: 14px;
        padding: 11px 15px 11px 43px;
    }

    /* City Detail Section */
    .city-detail-section {
        padding: 55px 0;
    }

    .city-detail-card {
        padding: 30px;
        gap: 22px;
    }

    .city-detail-image {
        width: 150px;
        height: 150px;
    }

    .city-detail-name {
        font-size: 34px;
    }

    /* Cities Section - 4 KOLOM */
    .cities-section {
        padding: 55px 0;
    }

    .cities-list-title {
        font-size: 30px;
        margin-bottom: 36px;
    }

    .cities-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 18px;
    }

    /* City Card Tablet Landscape */
    .cities-section .city-card .card-body {
        flex-direction: row !important;
        text-align: left;
        padding: 13px !important;
        gap: 11px !important;
        min-height: 115px;
    }

    .cities-section .city-card .card-body > img {
        width: 52px !important;
        height: 52px !important;
        margin: 0 auto !important;
    }

    .cities-section .city-card .text-success {
        justify-content: left;
        font-size: 10px;
    }

    .cities-section .city-card h6 {
        font-size: 14px;
        white-space: normal;
        text-align: center;
    }

    /* Product Card */
    .product-image {
        height: 210px;
    }

    .product-info {
        padding: 15px;
    }

    .product-name {
        font-size: 15px;
    }

    .product-price {
        font-size: 17px;
    }
}

/* ========================================
   MOBILE STYLES - MAX WIDTH 430px
   ======================================== */
@media (max-width: 430px) {

    /* ===============================
       FILTER SECTION - MOBILE (PERBAIKAN SPACING)
    ================================ */
    .filter-section {
        padding: 25px 0 !important;
    }

    .filter-box {
        flex-direction: column;
        gap: 20px;
        padding: 16px 16px !important;
        border: none !important;
    }

    .filter-left {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .filter-left-header {
        margin-bottom: 16px !important;
    }

    .filter-title {
        font-size: 18px !important;
        margin-bottom: 12px !important;
    }

    .filter-buttons-group {
        gap: 10px !important;
    }

    .btn-filter {
        padding: 12px 14px !important;
        font-size: 12px !important;
    }

    .filter-info-text {
        margin-top: 12px !important;
    }

    .filter-right {
        width: 100% !important;
        gap: 16px !important;
        padding: 16px !important;
    }

    .occasions-tabs {
        gap: 10px !important;
        padding-bottom: 12px !important;
    }

    .alphabet-filter-section {
        padding-top: 8px !important;
    }

    .alphabet-buttons {
        gap: 6px !important;
    }

    .alphabet-btn {
        width: 28px !important;
        height: 28px !important;
    }

    .search-bar-wrapper {
        margin-top: 8px !important;
    }

    /* ===============================
       HERO SECTION - MOBILE
    ================================ */
    .hero-section {
        padding: 60px 0 40px 0;
        min-height: auto;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .hero-breadcrumb {
        justify-content: center;
        margin-bottom: 20px;
    }

    .hero-breadcrumb .breadcrumb {
        justify-content: center;
    }

    .hero-title {
        font-size: 32px;
        margin-bottom: 16px;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
        text-align: center;
    }

    .btn-hero {
        display: inline-flex;
        margin: 0 auto 30px auto;
        padding: 12px 24px;
        font-size: 14px;
    }

    .hero-image {
        position: relative;
        width: 100%;
        height: 150px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }

    .hero-image img {
        position: relative;
        width: auto;
        height: 180px;
        max-width: 220px;
        max-height: 280px;
        object-fit: contain;
        bottom: 0;
        right: 0;
        left: 0;
        transform: scale(1.2);
    }

    .hero-decoration-left,
    .hero-decoration-left-top {
        display: none;
    }

    /* ===============================
       FEATURES SECTION - MOBILE (2×2 GRID)
    ================================ */
    .features-wrapper {
        border-width: 1px 0;
        background-color: #99BC76;
    }

    .features-container{
        padding: 0 20px;
    }

    .features-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 20px 0;
    }

    .features-section .row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 9px;
        row-gap: 1px;
        column-gap: 5px;
    }

    .features-section .col-md-3,
    .features-section .col-7,
    .features-section .col-6 {
        max-width: 100%;
        flex: none;
        width: auto;
    }

    .feature-card {
        flex-direction: row;
        gap: 12px;
        width: 100%;
    }

    .feature-icon {
        width: 28px;
        height: 28px;
    }

    .feature-text h3 {
        font-size: 14px;
        line-height: 130%;
        margin-bottom: 2px;
        color: white;
    }

    .feature-text p {
        font-size: 12px;
        color: white;
    }

    /* ===============================
       CITY DETAIL SECTION - MOBILE
    ================================ */
    .city-detail-section {
        padding: 40px 0;
    }

    .city-detail-card {
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        text-align: center;
    }

    .city-detail-image {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }

    .city-detail-badge {
        justify-content: center;
        font-size: 12px;
    }

    .city-detail-name {
        font-size: 28px;
    }

    /* ===============================
       CITIES SECTION - MOBILE (3 KOLOM) ✅ DIPERBAIKI
    ================================ */
    .cities-section {
        padding: 40px 0;
    }

    .cities-list-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    /* PERBAIKAN: Force 3 kolom dengan !important */
    .cities-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1px !important;
    }


    /* ===============================
       CITY CARD - MOBILE
    ================================ */
    cities-section .city-card {
    display: block !important;
    width: 100% !important;
}

.cities-section .city-card .card-body {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important; /* Rata kiri */
    text-align: left !important; /* Rata kiri */
    padding: 12px !important;
    gap: 8px !important;
    min-height: 100px;
}

.cities-section .city-card .card-body > img {
    width: 48px !important;
    height: 48px !important;
    margin: 0 !important; /* Hapus margin auto */
    flex-shrink: 0; /* Pastikan gambar tidak mengecil */
}

.cities-section .city-card .text-success {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important; /* Ubah dari center ke flex-start */
    font-size: 10px;
    gap: 4px;
    text-align: left !important;
    width: 100%;
}

.cities-section .city-card .text-success img {
    margin: 0 !important;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.cities-section .city-card h6 {
    font-size: 13px;
    font-weight: 600;
    white-space: normal;
    text-align: left !important; /* Rata kiri */
    margin: 0;
    width: 100%;
    word-wrap: break-word;
}

.cities-section .city-card .text-start {
    text-align: left !important;
    width: 100%;
    flex: 1;
}

    /* ===============================
       PRODUCT CARD - MOBILE
    ================================ */
    .product-card {
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    }

    .product-image {
        height: 180px;
    }

    .product-info {
        padding: 12px;
    }

    .product-name {
        font-size: 14px;
    }

    .product-category {
        font-size: 12px;
    }

    .product-price {
        font-size: 16px;
    }

    .product-info .btn {
        padding: 8px;
        font-size: 13px;
    }

    /* ===============================
       CONTAINER PADDING MOBILE
    ================================ */
    .container,
    .container-1440 {
        padding: 0 var(--container-padding);
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 20px;
    }
}

/* ========================================
   MOBILE PRODUCT GRID REFINEMENTS (2 Columns)
   ======================================== */
@media (max-width: 576px) {
    .product-image {
        height: auto !important;
        aspect-ratio: 1 / 1.22 !important;
    }

    .product-info {
        padding: 8px !important;
    }

    .product-name {
        font-size: 13px !important;
        margin-bottom: 4px !important;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        height: auto !important;
        min-height: 36px;
    }

    .product-category {
        font-size: 11px !important;
        margin-bottom: 4px !important;
    }

    .product-price {
        font-size: 15px !important;
        margin-bottom: 8px !important;
    }

    .product-info .btn {
        padding: 6px !important;
        font-size: 12px !important;
        width: 100%;
    }
}
/* ========================================
   PERBAIKAN JARAK ANTAR SECTION - LOCATION PAGE
   ======================================== */

/* Hero Section - kurangi padding */
.hero-section {
    padding: 40px 0 0 0 !important; /* dari 90px jadi 40px */
    min-height: 500px !important; /* dari 500px jadi auto */
    margin-bottom: 0 !important;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 30px 0 0 0 !important;
    }
}

.hero-content {
    padding-top: 20px !important;
}

.hero-title {
    font-size: 42px !important; /* dari 48px jadi 42px */
    margin-bottom: 15px !important; /* dari 20px jadi 15px */
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px !important;
        margin-bottom: 12px !important;
    }
}

.hero-subtitle {
    margin-bottom: 20px !important; /* dari 30px jadi 20px */
}

/* Features Section - kurangi padding dan gap */
.features-wrapper {
    margin-top: 0 !important;
}

.features-section {
    padding: 15px 0 !important; /* dari 30px jadi 15px */
    gap: 20px !important; /* dari 25px jadi 20px */
}

@media (max-width: 768px) {
    .features-section {
        padding: 10px 0 !important;
        gap: 15px !important;
    }
}

.feature-card {
    gap: 12px !important; /* dari 16px jadi 12px */
}

/* Filter Section - kurangi padding */
.filter-section {
    padding: 20px 0 !important; /* dari 40px jadi 20px */
}

.filter-box {
    padding: 15px 0 !important; /* dari 24px jadi 15px */
    gap: 24px !important; /* dari 32px jadi 24px */
}

@media (max-width: 768px) {
    .filter-section {
        padding: 15px 0 !important;
    }

    .filter-box {
        padding: 10px 0 !important;
        gap: 20px !important;
    }
}

.filter-left {
    padding: 15px !important; /* dari 20px jadi 15px */
}

.filter-left-header {
    padding-bottom: 8px !important; /* dari 12px jadi 8px */
    margin-bottom: 12px !important; /* dari 16px jadi 12px */
}

.filter-title {
    font-size: 20px !important; /* dari 22px jadi 20px */
    margin-bottom: 12px !important; /* dari 16px jadi 12px */
}

.filter-buttons-group {
    gap: 12px !important; /* dari 16px jadi 12px */
    margin-bottom: 12px !important; /* dari 16px jadi 12px */
}

/* Occasion Tabs - kurangi jarak */
.occasions-tabs {
    padding-top: 10px !important; /* dari 16px jadi 10px */
    gap: 14px !important; /* dari 18px jadi 14px */
}

@media (max-width: 768px) {
    .occasions-tabs {
        gap: 10px !important;
        padding-top: 8px !important;
    }
}

/* Alphabet Filter - kurangi jarak */
.alphabet-buttons {
    gap: 6px !important; /* dari 8px jadi 6px */
}

.alphabet-btn {
    width: 30px !important; /* dari 32px jadi 30px */
    height: 30px !important; /* dari 32px jadi 30px */
}

/* City Detail Section - kurangi padding */
.city-detail-section {
    padding: 30px 0 !important; /* dari 60px jadi 30px */
}

.city-detail-card {
    padding: 24px !important; /* dari 32px jadi 24px */
    gap: 20px !important; /* dari 24px jadi 20px */
    margin-bottom: 30px !important; /* dari 40px jadi 30px */
}

@media (max-width: 768px) {
    .city-detail-section {
        padding: 25px 0 !important;
    }

    .city-detail-card {
        padding: 20px !important;
        gap: 16px !important;
        margin-bottom: 25px !important;
    }
}

.city-detail-image {
    width: 300px !important; /* dari 400px jadi 300px */
    height: 300px !important; /* dari 400px jadi 300px */
}

@media (max-width: 768px) {
    .city-detail-image {
        width: 200px !important;
        height: 200px !important;
    }
}

.city-detail-name {
    font-size: 32px !important; /* dari 36px jadi 32px */
}

/* Cities Section - kurangi padding */
.cities-section {
    padding: 30px 0 !important; /* dari 60px jadi 30px */
}

.cities-list-title {
    font-size: 28px !important; /* dari 32px jadi 28px */
    margin-bottom: 25px !important; /* dari 40px jadi 25px */
}

@media (max-width: 768px) {
    .cities-section {
        padding: 25px 0 !important;
    }

    .cities-list-title {
        font-size: 24px !important;
        margin-bottom: 20px !important;
    }
}

.cities-grid {
    gap: 15px !important; /* dari 20px jadi 15px */
}

@media (max-width: 768px) {
    .cities-grid {
        gap: 10px !important;
    }
}

/* City Card - kurangi padding internal */
.cities-section .city-card .card-body {
    padding: 10px !important; /* dari 14px jadi 10px */
    gap: 12px !important; /* dari 16px jadi 12px */
    min-height: 80px !important; /* dari 88px jadi 80px */
}

@media (max-width: 768px) {
    .cities-section .city-card .card-body {
        padding: 8px !important;
        gap: 8px !important;
        min-height: 70px !important;
    }
}

.cities-section .city-card .card-body > img {
    width: 50px !important; /* dari 56px jadi 50px */
    height: 50px !important; /* dari 56px jadi 50px */
}

@media (max-width: 768px) {
    .cities-section .city-card .card-body > img {
        width: 40px !important;
        height: 40px !important;
    }
}

.cities-section .city-card h6 {
    font-size: 14px !important; /* dari 15px jadi 14px */
}

/* Product Card - kurangi padding dan jarak */
.product-card {
    margin-bottom: 0 !important;
}

.product-info {
    padding: 12px !important; /* dari 16px jadi 12px */
}

@media (max-width: 768px) {
    .product-info {
        padding: 10px !important;
    }
}

.product-name {
    font-size: 15px !important; /* dari 16px jadi 15px */
    margin-bottom: 4px !important; /* dari 6px jadi 4px */
}

.product-category {
    font-size: 12px !important; /* dari 13px jadi 12px */
    margin-bottom: 8px !important; /* dari 10px jadi 8px */
}

.product-price {
    font-size: 16px !important; /* dari 18px jadi 16px */
    margin-bottom: 10px !important; /* dari 14px jadi 10px */
}

/* Empty State - kurangi padding */
.empty-state {
    padding: 40px 20px !important; /* dari 60px jadi 40px */
    min-height: 250px !important; /* dari 300px jadi 250px */
}

.empty-state img,
.empty-state svg {
    width: 150px !important; /* dari 200px jadi 150px */
    max-height: 150px !important; /* dari 200px jadi 150px */
}

@media (max-width: 768px) {
    .empty-state {
        padding: 30px 16px !important;
        min-height: 200px !important;
    }

    .empty-state img,
    .empty-state svg {
        width: 120px !important;
        max-height: 120px !important;
    }
}

/* ========================================
   RESPONSIVE UNTUK TABLET
   ======================================== */
@media (min-width: 768px) and (max-width: 834px) {
    .hero-section {
        padding: 20px 0 40px 0 !important;
    }

    .features-section {
        padding: 20px 0 !important;
    }

    .filter-section {
        padding: 25px 0 !important;
    }

    .city-detail-section {
        padding: 40px 0 !important;
    }

    .cities-section {
        padding: 40px 0 !important;
    }

    .cities-grid {
        gap: 12px !important;
    }
}

@media (min-width: 900px) and (max-width: 1024px) {
    .hero-section {
        padding: 40px 0 50px 0 !important;
    }

    .features-section {
        padding: 10px 0 !important;
    }

    .filter-section {
        padding: 30px 0 !important;
    }

    .city-detail-section {
        padding: 45px 0 !important;
    }

    .cities-section {
        padding: 45px 0 !important;
    }
}

/* ========================================
   RESPONSIVE UNTUK MOBILE KECIL
   ======================================== */
@media (max-width: 430px) {
    .hero-section {
        padding: 30px 0 20px 0 !important;
    }

    .features-section {
        padding: 15px 0 !important;
    }

    .filter-section {
        padding: 20px 0 !important;
    }

    .city-detail-section {
        padding: 25px 0 !important;
    }

    .cities-section {
        padding: 25px 0 !important;
    }

    .cities-list-title {
        font-size: 22px !important;
        margin-bottom: 15px !important;
    }
}

/* ========================================
   SAFARI MAC COMPATIBILITY - LOCATION PAGE
   ======================================== */

/* Pastikan semua transform dan animasi memiliki prefix webkit */
@supports (-webkit-touch-callout: none) {
    
    /* Hero section - stabil */
    .hero-section {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    /* Hero image - stabil */
    .hero-image img {
        -webkit-transform: scale(2.3);
        transform: scale(2.3);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    /* Zoom 110% - 125% */
    @media (min-width: 1101px) and (max-width: 1300px) {
        .hero-image img {
            -webkit-transform: scale(2.1) !important;
            transform: scale(2.1) !important;
        }
    }
    
    /* Zoom 125% - 150% */
    @media (min-width: 1001px) and (max-width: 1100px) {
        .hero-image img {
            -webkit-transform: scale(1.9) !important;
            transform: scale(1.9) !important;
        }
    }
    
    /* Zoom 150% - 175% */
    @media (min-width: 901px) and (max-width: 1000px) {
        .hero-image img {
            -webkit-transform: scale(1.7) !important;
            transform: scale(1.7) !important;
        }
    }
    
    /* Zoom 175% - 200% */
    @media (min-width: 801px) and (max-width: 900px) {
        .hero-image img {
            -webkit-transform: scale(1.5) !important;
            transform: scale(1.5) !important;
        }
    }
    
    /* Zoom 200% ke atas */
    @media (max-width: 800px) {
        .hero-image img {
            -webkit-transform: scale(1.3) !important;
            transform: scale(1.3) !important;
        }
    }
    
    /* Features section - stabil */
    .features-wrapper {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .feature-card {
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    /* Filter section */
    .btn-filter,
    .alphabet-btn,
    .occasion-tab {
        -webkit-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }
    
    /* City cards */
    .cities-section .city-card {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    .cities-section .city-card:hover {
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px);
    }
    
    /* Product cards */
    .product-card {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    .product-card:hover {
        -webkit-transform: translateY(-4px);
        transform: translateY(-4px);
    }
    
    /* Grid dan flexbox */
    .features-section,
    .cities-grid,
    .filter-buttons-group {
        -webkit-box-align: stretch;
        align-items: stretch;
    }
    
    /* Text rendering */
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }
    
    /* Mask image */
    .hero-grid {
        -webkit-mask-image: linear-gradient(to right, black 0%, black 20%, transparent 50%, black 80%, black 100%);
        mask-image: linear-gradient(to right, black 0%, black 20%, transparent 50%, black 80%, black 100%);
    }
    
    /* Object fit */
    .hero-image img,
    .city-detail-image img,
    .product-image,
    .cities-section .city-card .card-body > img {
        -webkit-object-fit: contain;
        object-fit: contain;
    }
    
    .product-image {
        -webkit-object-fit: cover;
        object-fit: cover;
    }
    
    /* Backdrop filter */
    .city-badge {
        -webkit-backdrop-filter: blur(3px);
        backdrop-filter: blur(3px);
    }
    
    /* Scrollbar hiding */
    .category-buttons-wrapper::-webkit-scrollbar,
    .testimonials-scroll-wrapper::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }
    
    /* Fix untuk overflow text */
    .product-name,
    .city-detail-name,
    .hero-title,
    .hero-subtitle {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* ========================================
   STABILKAN POSISI HERO IMAGE DI SEMUA ZOOM
   ======================================== */
.hero-image img {
    will-change: transform;
}

/* Pastikan features wrapper menempel */
.features-wrapper {
    margin-top: 0;
    position: relative;
    z-index: 5;
}

