
/* ========================================
   ROOT VARIABLES & GLOBAL STYLES
   ======================================== */
:root {
    --primary-sage: #6a9c78;
    --dark-sage: #588565;
    --text-dark: #2d3a4b;
    --text-gray: #64748b;
    --max-width: 1400px;
    --container-padding: 40px;
}

/* ========================================
   GLOBAL RESET
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Outfit";
    overflow-x: hidden;
    background: #f2f3f7;
}

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

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

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 460px;
    padding: 80px 0 0 0;
    background: linear-gradient(
        180deg,
        rgba(224, 235, 227, 0.08) 0%,
        rgba(242, 243, 247, 0.54) 20%,
        rgba(242, 243, 247, 1) 58%,
        rgba(242, 243, 247, 1) 67%,
        rgba(242, 243, 247, 0.08) 100%
    );
    overflow: visible;
    margin-bottom: 0 !important;
}

.hero-section + section,
.hero-section + .city-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.hero-section .container {
    max-width: var(--max-width);
    padding-left: 60px;
    padding-right: 60px;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(224, 235, 227, 0.08) 0%,
        #e0ebe3 0%,
        #e0ebe3 52.52%,
        rgba(224, 235, 227, 0.08) 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-decoration-left {
    position: absolute;
    bottom: 0;
    left: calc((100vw - 1400px) / 2 + -50px);
    width: auto;
    max-width: 16%;
    transform: scale(1.9) translate(10px, 10px);
    transform-origin: bottom left;
    z-index: 2;
}

.hero-main-image {
    position: absolute;
    right: var(--container-padding);
    bottom: 0;
    height: auto; /* UBAH dari 211% ke auto */
    width: auto;
    max-width: 45%; /* UBAH dari 50% ke 45% biar lebih proporsional */
    max-height: 450px; /* TAMBAHKAN batasan tinggi maksimal */
    z-index: 2;
    object-fit: contain;
    object-position: bottom right;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 73px;
    max-width: var(--max-width);
}

.hero-section .hero-title {
    font-family: "Outfit";
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 100%;
    color: #3f425a;
    margin-bottom: 24px;
    max-width: var(--max-width);
}

.hero-subtitle {
    font-family: "Outfit";
    font-size: 16px;
    line-height: 160%;
    color: #3f425a;
    margin-bottom: 24px;
    max-width: var(--max-width);
}

.page-hero {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}
.hero-title {
    font-size: 36px;
    line-height: 1.2;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    gap: 12px;
    background: #659a71;
    color: #ffffff;
    border: none;
    border-radius: 0;
    font-family: "Outfit";
    font-weight: 500;
    font-size: 16px;
    line-height: 135%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background: #5a8965;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-hero svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn-sage {
    background-color: var(--primary-sage) !important;
    color: white !important;
    font-weight: 600;
    border-radius: 0;
    padding: 12px 25px;
    transition: 0.3s;
    border: none !important;
}

.btn-sage:hover {
    background-color: var(--dark-sage) !important;
    color: white !important;
    transform: translateY(-2px);
}

.btn-pill-outline {
    border: 1px solid #e2e8f0;
    border-radius: 0;
    color: var(--text-gray);
    padding: 8px 20px;
    font-size: 0.9rem;
    background: transparent;
    transition: 0.3s;
}

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

.city-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(6px);
    border-radius: 0;
    text-decoration: none;
    transition: 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.city-btn:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: translateY(-2px);
}

/* ========================================
   CITY SECTION - NO GAP WITH HERO
   ======================================== */
.city-section {
    width: 100%;
    background: #F2F3F7;
    margin-top: 0 !important;
    padding-top: 0 !important;
    margin-bottom: -59px !important;
}

.city-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.city-wrapper {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    padding: 0;
    width: 100%;
    min-height: 210px;
}

.left-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 40px 40px 60px;
    gap: 40px;
    width: 417px;
    height: 219px;
    background: #ffffff;
    flex-shrink: 0;
}

.left-content h4 {
    width: 317px;
    font-family: "Outfit";
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
    color: #3f425a;
    margin: 0;
}

.explore-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 8px;
    width: 317px;
}

.explore-label {
    font-family: "Outfit";
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 135%;
    color: #3f425a;
    flex-shrink: 0;
}

.divider {
    width: 1px;
    height: 28px;
    background: #a5a8c0;
    flex-shrink: 0;
}

.explore-desc {
    width: 216px;
    font-family: "Outfit";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    text-transform: capitalize;
    color: #3f425a;
    margin: 0;
}

.cards-container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    padding: 0;
    flex: 1;
    min-height: 219px;
    min-width: 0;
}

.city-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 14px;
    gap: 10px;
    width: 341px;
    min-height: 219px;
    background: #f0f1f5;
    flex: 1;
    position: relative;
    overflow: hidden;
}

.city-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.city-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.city-placeholder-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.city-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 2;
}

.city-badge-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 8px;
    position: relative;
    z-index: 3;
}

.city-badge {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 6px 12px;
    gap: 6px;
    background: rgba(255, 255, 255, 0.34);
    border: 1.2px solid #a5a8c0;
    backdrop-filter: blur(3px);
    border-radius: 0;
    height: 32px;
    transition: all 0.3s ease;
}

.city-badge span {
    font-family: "Outfit";
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 160%;
    color: #ffffff;
    transition: color 0.3s ease;
}

.icon-location {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.icon-location-white {
    display: block;
}

.icon-location-green {
    display: none;
}

.arrow-btn {
    display: none;
    justify-content: center;
    align-items: center;
    padding: 6px;
    width: 32px;
    height: 32px;
    background: #ffffff;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.city-card:hover .city-badge {
    background: #ffffff;
    border: 1px solid transparent;
}

.city-card:hover .city-badge span {
    color: #3f425a;
}

.city-card:hover .icon-location-white {
    display: none;
}

.city-card:hover .icon-location-green {
    display: block;
}

.city-card:hover .arrow-btn {
    display: flex;
}

/* ========================================
   BENTO GRID SECTION - PERBAIKAN
   ======================================== */
.bento-section {
    padding: 60px 0;
    background: #f2f3f7;
    width: 100%;
}

.bento-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    background: transparent;
    width: 100%;
}

.bento-grid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 20px;
    width: 100%;
    max-width: 100%;
}

.bento-row-1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 20px;
    width: 100%;
    height: 240px;
}

.bento-row-2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 20px;
    width: 100%;
    height: 222px;
}

.bento-item {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 10px;
    background: #e1e2ea;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.bento-item:hover {
    transform: translateY(-5px);
}

.bento-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: 1;
}

.bento-item.large {
    width: 650px;
    flex: none;
}

.bento-item.small {
    width: 315px;
    flex: none;
}

.bento-item.bouquet {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: 20px;
    gap: 10px;
    width: 650px;
    height: 240px;
    background: #f2f3f7;
}

.bouquet .bento-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 0;
    gap: 24px;
    width: 610px;
    z-index: 10;
    position: relative;
}

.bouquet .bento-text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 0;
    gap: 4px;
    width: 610px;
}

.bouquet h3 {
    width: 610px;
    font-family: "Outfit";
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    text-align: right;
    color: #3f425a;
    margin: 0;
}

.bouquet p {
    width: 610px;
    font-family: "Outfit";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    text-align: right;
    text-transform: capitalize;
    color: #3f425a;
    margin: 0;
}

.bento-item.ucapan {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px;
    gap: 10px;
    width: 315px;
    height: 240px;
    background: #e1e2ea;
}

.ucapan .bento-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    gap: 4px;
    width: 275px;
    z-index: 10;
    position: relative;
}

.ucapan h3 {
    width: 275px;
    font-family: "Outfit";
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    text-align: center;
    color: #3f425a;
    margin: 0;
}

.ucapan p {
    width: 275px;
    font-family: "Outfit";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    text-align: center;
    text-transform: capitalize;
    color: #3f425a;
    margin: 0;
}

.bento-item.standing {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px;
    gap: 10px;
    width: 315px;
    height: 240px;
    background: #e1e2ea;
}

.standing .bento-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 0;
    gap: 4px;
    width: 275px;
    z-index: 10;
    position: relative;
}

.standing h3 {
    width: 275px;
    font-family: "Outfit";
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    text-align: center;
    color: #3f425a;
    margin: 0;
}

.standing p {
    width: 275px;
    font-family: "Outfit";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    text-align: center;
    text-transform: capitalize;
    color: #3f425a;
    margin: 0;
}

.bento-item.meja {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px;
    gap: 10px;
    width: 315px;
    height: 222px;
}

.meja h3 {
    width: 172px;
    font-family: "Outfit";
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    color: #3f425a;
    transform: rotate(-90deg);
    margin: 0;
    z-index: 10;
    position: relative;
    right: 50px;
}

.bento-item.pernikahan {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    gap: 10px;
    width: 315px;
    height: 222px;
}

.pernikahan .bento-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    gap: 4px;
    width: 275px;
    z-index: 10;
    position: relative;
}

.pernikahan h3 {
    width: 275px;
    font-family: "Outfit";
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    text-align: center;
    color: #3f425a;
    margin: 0;
}

.pernikahan p {
    width: 275px;
    font-family: "Outfit";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    text-align: center;
    text-transform: capitalize;
    color: #3f425a;
    margin: 0;
}

.bento-item.acrylic {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    gap: 10px;
    width: 650px;
    height: 222px;
}

.acrylic .bento-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
    gap: 24px;
    width: 610px;
    z-index: 10;
    position: relative;
}

.acrylic .bento-text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 0;
    gap: 4px;
    width: 610px;
}

.acrylic h3 {
    width: 610px;
    font-family: "Outfit";
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    color: #3f425a;
    margin: 0;
}

.acrylic p {
    width: 610px;
    font-family: "Outfit";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    text-transform: capitalize;
    color: #3f425a;
    margin: 0;
}

.btn-shop-now {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 0;
    gap: 12px;
    width: 104px;
    height: 38px;
    border: none;
    border-bottom: 1px dashed #696f96;
    background: transparent;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-shop-now:hover {
    border-bottom: 2px solid #283e2d;
}

.btn-shop-now span {
    font-family: "Outfit";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 135%;
    color: #283e2d;
}

.btn-shop-now svg {
    width: 20px;
    height: 20px;
}

/* Wrapper untuk border full layar */
.features-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #F2F3F7;
    border-top: 1px dashed #a5a8c0;
    border-bottom: 1px dashed #a5a8c0;
}

.features-section {
    padding: 20px 0;
    background: #F2F3F7;
}

.features-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.feature-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: transparent;
}

.feature-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
}

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

.feature-content h3 {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 135%;
    color: #3f425a;
    margin: 0 0 4px 0;
}

.feature-content p {
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    text-transform: capitalize;
    color: #507c5b;
    margin: 0;
}

@media (max-width: 576px) {
    .features-wrapper {
        background: transparent;
        border-top: 1px dashed #a5a8c0;
        border-bottom: 1px dashed #a5a8c0;
    }

    .features-section {
        background: transparent !important;
        padding: 20px 0 !important;
        margin-top: 0px !important;
        position: relative !important;
        z-index: 10 !important;
        width: 100% !important;
        max-width: none !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        min-height: auto !important;
        display: flex !important;
        align-items: center !important;
        box-sizing: border-box !important;
    }

    .features-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 20px 12px !important;
        padding: 0 20px !important;
        width: 100% !important;
        max-width: var(--max-width);
        margin: 0 auto;
    }

    .feature-card {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 8px !important;
        width: 100% !important;
    }

    .feature-icon {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        border-radius: 6px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: transparent !important;
    }

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

    .feature-icon svg path {
        stroke: #507c5b !important;
    }

    /* Khusus untuk icon kedua (fresh) yang menggunakan fill */
    .feature-card:nth-child(2) .feature-icon svg path {
        fill: #507c5b !important;
        stroke: none !important;
    }

    .feature-content {
        text-align: left !important;
        flex: 1 !important;
    }

    .feature-content h3 {
        font-size: 11px !important;
        font-weight: 700 !important;
        line-height: 1.2 !important;
        margin-bottom: 2px !important;
        color: #507c5b !important;
        font-family: "Outfit", sans-serif !important;
    }

    .feature-content p {
        font-size: 9px !important;
        line-height: 1.2 !important;
        margin-bottom: 0 !important;
        color: #507c5b !important;
        opacity: 0.9 !important;
        font-family: "Outfit", sans-serif !important;
    }
}

/* Untuk layar sangat kecil (di bawah 375px) */
@media (max-width: 375px) {
    .features-grid {
        gap: 15px 8px !important;
        padding: 0 15px !important;
    }

    .feature-card {
        gap: 6px !important;
    }

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

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

    .feature-content h3 {
        font-size: 10px !important;
    }

    .feature-content p {
        font-size: 8px !important;
    }
}

/* ========================================
   CATALOG SECTION - TEKS RATA KIRI
   ======================================== */
.catalog-section {
    padding: 60px 0;
    background: #f2f3f7;
    width: 100%;
}

.catalog-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

.catalog-header {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
    width: 100%;
}

.catalog-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    text-align: left; /* Pastikan teks rata kiri */
}

.catalog-title {
    font-family: "Outfit";
    font-weight: 600;
    font-size: 36px;
    line-height: 120%;
    color: #3f425a;
    margin: 0;
    text-align: left; /* Teks rata kiri */
    width: 100%;
}

.catalog-subtitle {
    font-family: "Outfit";
    font-weight: 400;
    font-size: 15px;
    line-height: 135%;
    color: #696f96;
    margin: 0;
    text-align: left; /* Teks rata kiri */
    width: 100%;
}

.catalog-filter-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
}

.catalog-filter-inner {
    display: flex;
    flex-direction: row;
    justify-content: flex-end; /* Ini membuat filter berada di kanan */
    align-items: center;
    gap: 24px;
    width: 100%;
}

.category-buttons-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap; /* Agar bisa wrap di layar kecil */
}

/* Styling untuk button kategori */
.btn-category {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
    background: transparent;
    border: 1px solid #a5a8c0;
    border-radius: 90px;
    font-family: "Outfit";
    font-weight: 400;
    font-size: 12px;
    line-height: 135%;
    color: #696f96;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
}

.btn-category.active {
    background: #507c5b;
    border-color: #507c5b;
    color: #ffffff;
    font-weight: 500;
}

.btn-category:hover {
    background: #507c5b;
    border-color: #507c5b;
    color: #ffffff;
}

.divider-line {
    flex-grow: 1;
    height: 0;
    border-top: 1px solid #c3c5d5;
    min-width: 100px;
}

.btn-all-categories {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
    gap: 2px;
    border: 1px solid #a5a8c0;
    border-radius: 90px;
    font-family: "Outfit";
    font-weight: 400;
    font-size: 12px;
    line-height: 135%;
    color: #696f96;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
}

.btn-all-categories:hover {
    background: #f8f9fa;
    color: #3f425a;
}

.btn-all-categories svg {
    width: 18px;
    height: 18px;
}

/* Products Grid */
.products-grid-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.products-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.product-card-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: calc((100% - 80px) / 5);
    margin: 0;
}

.product-card-link {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

.product-image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    aspect-ratio: 315 / 384;
    background: #f0f1f5;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left; /* Teks product di tengah */
    gap: 6px;
    width: 100%;
    padding-top: 10px;
}

.product-name {
    font-family: "Outfit";
    font-weight: 500;
    font-size: 16px;
    line-height: 135%;
    text-align: left; /* Nama product di tengah */
    color: #3f425a;
    margin: 0;
    width: 100%;
}

.product-price-wrapper {
    display: flex;
    justify-content: left;
    align-items: left;
    width: 100%;
}

.product-price {
    font-family: "Outfit";
    font-weight: 700;
    font-size: 16px;
    line-height: 135%;
    color: #3f425a;
    margin: 0;
    text-align: left; /* Harga di tengah */
}

.empty-state {
    width: 100%;
    text-align: center;
    padding: 60px 0;
    color: #696f96;
}

/* Responsive untuk Catalog Section */
@media (max-width: 1200px) {
    .product-card-wrapper {
        width: calc((100% - 60px) / 4);
    }
}

@media (max-width: 992px) {
    .catalog-title {
        font-size: 32px;
    }

    .catalog-subtitle {
        font-size: 14px;
    }

    .product-card-wrapper {
        width: calc((100% - 40px) / 3);
    }
}

@media (max-width: 768px) {
    .catalog-filter-inner {
        flex-direction: column;
        align-items: flex-start; /* Ubah ke kiri untuk mobile */
        gap: 16px;
    }

    .category-buttons-wrapper {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        justify-content: flex-start; /* Pastikan di kiri */
    }

    .category-buttons-wrapper::-webkit-scrollbar {
        display: none;
    }

    .divider-line {
        display: none; /* Sembunyikan divider di mobile */
    }

    .btn-all-categories {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        box-sizing: border-box;
        overflow: hidden;
    }

    .catalog-filter-inner {
        width: 100%;
        overflow: hidden;
    }

    .product-card-wrapper {
        width: calc((100% - 20px) / 2);
    }
}

@media (max-width: 576px) {
    .catalog-section {
        padding: 40px 0;
    }

    .catalog-header {
        gap: 20px;
        margin-bottom: 30px;
    }

    .catalog-title {
        font-size: 28px;
    }

    .catalog-subtitle {
        font-size: 13px;
    }

    .product-card-wrapper {
        width: calc(50% - 6px);
        gap: 10px;
    }

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

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

@media (max-width: 375px) {
    .catalog-title {
        font-size: 24px;
    }

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

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

/* ========================================
   TESTIMONIAL SECTION - PERBAIKAN
   ======================================== */
.testimonial-section {
    padding: 60px 0;
    background: #f2f3f7;
    width: 100%;
}

.testimonial-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
    position: relative; /* Added for absolute navigation positioning */
}

.testimonial-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 49px;
    width: 100%;
}

.testimonial-image-wrapper {
    width: 315px;
    height: 446px;
    flex: none;
    order: 0;
    flex-grow: 0;
    background: #f0f1f5;
    overflow: hidden;
}

.testimonial-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   FIX TESTIMONIAL TEKS OVERFLOW SAAT ZOOM
   ======================================== */

.testimonial-content-wrapper {
    /* Pastikan flex bisa membesar dan menyusut */
    flex: 1 1 0%;

    /* 🔥 KUNCI UTAMA: Memaksa flex item untuk tidak melebih parent-nya */
    min-width: 0;

    width: 100%;
    box-sizing: border-box;
    /* Tambahkan padding kanan jika dirasa terlalu mepet dengan batas */
    padding-right: 15px;
}

/* Pastikan teks di dalamnya bisa turun ke baris baru (wrap) dan tidak bablas */
.testimonial-text-block,
.testimonial-quote,
.testimonial-author {
    width: 100%;
    max-width: 100%;
    white-space: normal; /* Jangan gunakan nowrap */
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.testimonial-content-inner {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.testimonial-text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin: 0 auto;
    flex: 1;
    max-width: 100%;
    padding-right: 120px; /* Safe zone for the absolute navigation on the right */
}

@media (max-width: 1024px) {
    .testimonial-text-content {
        padding-right: 0;
    }
}

.testimonial-text-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 60px;
    width: 100%;
}

.testimonial-label {
    font-family: "Outfit";
    font-weight: 400;
    font-size: 16px;
    line-height: 135%;
    color: #3f425a;
    margin: 0;
}

.testimonial-content-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
}

.testimonial-stars {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
    flex: none;
}

.testimonial-quote {
    font-family: "Outfit";
    font-weight: 500;
    font-size: 32px;
    line-height: 125%;
    color: #3f425a;
    margin: 0;
    width: 100%;
}

.testimonial-author {
    font-family: "Nunito", sans-serif;
    font-style: italic;
    font-weight: 600;
    font-size: 16px;
    line-height: 135%;
    color: #3f425a;
    margin: 0;
    width: 100%;
}

.testimonial-navigation {
    position: absolute;
    top: 50%;
    right: 40px; /* Aligned with right container margin */
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.testimonial-nav-btn {
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #3f425a;
}

.testimonial-nav-btn:hover {
    color: #507c5b;
    transform: scale(1.1);
}

.testimonial-nav-btn svg {
    width: 32px;
    height: 32px;
}

.testimonial-dots {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 6px;
    height: auto;
    flex: none;
}

.testimonial-dot {
    width: 4px;
    height: 4px;
    background: #a5a8c0;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    flex: none;
}

.testimonial-dot.active {
    background: #3f425a;
}

/* ========================================
   PARTNERS SECTION - PERBAIKAN FINAL
   ======================================== */
.partners-section {
    padding: 60px 0;
    background: #f2f3f7;
    width: 100%;
    overflow: hidden;
}

/* Container untuk teks partners - mengikuti padding global */
.partners-section .container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
    margin-bottom: 30px;
}

.partners-text {
    width: 100%;
}

.partners-text h3 {
    font-family: "Outfit";
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    color: #3f425a;
    margin: 0;
}

/* Wrapper untuk slider - full width tapi konten tetap di tengah */
.partners-slider-wrapper {
    width: 100%;
    position: relative;
    left: 0;
    overflow: hidden;
}

.partners-slider {
    width: 100%;
    overflow: hidden;
    height: 100px;
    position: relative;
}

.slide-track {
    display: inline-flex;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
    align-items: center;
    gap: 40px;
    padding: 0 20px; /* Sedikit padding untuk keamanan */
}

.slide-track:hover {
    animation-play-state: paused;
}

.partner-logo {
    height: 100px;
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.partner-logo img {
    width: auto;
    height: 60px;
    max-width: 160px;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

.partner-logo img:hover {
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Sesuaikan dengan total lebar konten */
        transform: translateX(calc(-50% - 20px));
    }
}

/* Responsive untuk partners section */
@media (max-width: 768px) {
    .partners-section {
        padding: 40px 0;
    }

    .partners-text h3 {
        font-size: 20px;
    }

    .partners-slider {
        height: 80px;
    }

    .partner-logo {
        height: 80px;
    }

    .partner-logo img {
        height: 50px;
        max-width: 120px;
    }

    .slide-track {
        gap: 30px;
        animation: scroll 25s linear infinite;
    }
}

@media (max-width: 576px) {
    .partners-section {
        padding: 30px 0;
    }

    .partners-text h3 {
        font-size: 18px;
    }

    .partners-slider {
        height: 70px;
    }

    .partner-logo {
        height: 70px;
    }

    .partner-logo img {
        height: 40px;
        max-width: 100px;
    }

    .slide-track {
        gap: 20px;
        animation: scroll-mobile 20s linear infinite;
    }

    @keyframes scroll-mobile {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-50% - 10px));
        }
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media screen and (min-width: 1920px) {
    .container,
    .container-1440 {
        max-width: 1600px;  /* perlebar container */
    }

    .hero-main-image {
       right: calc((100vw - 1520px) / 2); /* tambah jadi 60px */
        height: 400px;
    }

    .hero-decoration-left {
        left: calc((100vw - 1600px) / 2 - 30px);
        transform: scale(2.2);
    }
}

@media (max-width: 1400px) {
    .hero-section .container {
        padding-left: 40px;
        padding-right: 40px;
    }
    .hero-main-image {
        right: var(--container-padding);
    }
    .hero-decoration-left {
        left: -25px;
        transform: scale(2.2);
    }

    .testimonial-content-inner {
        gap: 60px;
    }
}

@media (max-width: 1200px) {
    .hero-section .container {
        padding-left: 40px;
        padding-right: 40px;
    }

    .hero-main-image {
        right: var(--container-padding);
    }

    .hero-decoration-left {
        left: -65px;
        transform: scale(1.6) translate(10px, 10px);
    }

    .hero-section .hero-title {
        font-size: 42px;
    }

    .product-card-wrapper {
        width: calc((100% - 60px) / 4);
    }

    .testimonial-content-inner {
        gap: 60px;
    }
}

@media (max-width: 1024px) {
    .testimonial-content-inner {
        gap: 40px;
    }

    .testimonial-quote {
        font-size: 28px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .hero-section .container {
        padding-left: 40px;
        padding-right: 40px;
    }

    .hero-section {
        min-height: 650px;
        padding: 60px 0 0;
    }

    .hero-content {
        padding: 20px 0 50px;
        max-width: 400px;
    }

    .hero-section .hero-title {
        font-size: 28px;
        line-height: 105%;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 12px;
        line-height: 155%;
    }

    .hero-main-image {
        right: var(--container-padding);
        bottom: 0;
        height: 130px;
        object-position: bottom center;
        max-width: 45%;
    }

    .hero-decoration-left {
        left: -40px;
        transform: scale(3.7) translate(8px, 8px);
    }

    .city-wrapper {
        flex-direction: row;
        min-height: 200px;
    }

    .left-content {
        width: 350px;
        padding: 30px 30px 30px 40px;
        gap: 30px;
    }

    .left-content h4 {
        width: 100%;
        font-size: 22px;
    }

    .explore-info {
        width: 100%;
        flex-direction: row;
    }

    .explore-desc {
        width: auto;
        flex: 1;
    }

    .divider {
        display: block;
    }

    .cards-container {
        flex-direction: row;
        padding: 0;
    }

    .city-card {
        width: auto;
        flex: 1;
        min-height: 200px;
    }

    .bento-section {
        padding: 50px 0;
    }

    .bento-row-1,
    .bento-row-2 {
        flex-direction: row;
        gap: 15px;
    }

    .bento-row-1 {
        height: 220px;
    }

    .bento-row-2 {
        height: 200px;
    }

    .bento-item.bouquet {
        width: 55%;
        height: 220px;
    }

    .bouquet .bento-content {
        width: 90%;
        gap: 20px;
    }

    .bouquet .bento-text {
        width: 100%;
    }

    .bouquet h3,
    .bouquet p {
        width: 100%;
        font-size: 22px;
    }

    .bouquet p {
        font-size: 13px;
    }

    .bento-item.ucapan,
    .bento-item.standing {
        width: 22.5%;
        height: 220px;
    }

    .ucapan .bento-content,
    .standing .bento-content {
        width: 90%;
    }

    .ucapan h3,
    .ucapan p,
    .standing h3,
    .standing p {
        width: 100%;
        font-size: 20px;
    }

    .ucapan p,
    .standing p {
        font-size: 13px;
    }

    .bento-item.meja {
        width: 22.5%;
        height: 200px;
    }

    .meja h3 {
        font-size: 20px;
        transform: rotate(-90deg);
        right: 40px;
    }

    .bento-item.pernikahan {
        width: 22.5%;
        height: 200px;
    }

    .pernikahan .bento-content {
        width: 90%;
    }

    .pernikahan h3,
    .pernikahan p {
        width: 100%;
        font-size: 20px;
    }

    .pernikahan p {
        font-size: 13px;
    }

    .bento-item.acrylic {
        width: 55%;
        height: 200px;
    }

    .acrylic .bento-content {
        width: 90%;
        gap: 20px;
    }

    .acrylic .bento-text {
        width: 100%;
    }

    .acrylic h3,
    .acrylic p {
        width: 100%;
        font-size: 22px;
    }

    .acrylic p {
        font-size: 13px;
    }

    .features-section {
        padding: 20px 0;
        gap: 50px;
        height: auto;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .feature-item {
        width: calc(50% - 25px);
        gap: 10px;
    }

    .feature-item:nth-child(1),
    .feature-item:nth-child(2),
    .feature-item:nth-child(3),
    .feature-item:nth-child(4) {
        width: calc(50% - 25px);
    }

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

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

    .feature-title {
        font-size: 15px;
    }

    .feature-desc {
        font-size: 13px;
    }

    .catalog-section {
        padding: 40px 0;
    }

    .catalog-header {
        gap: 24px;
        margin-bottom: 20px;
    }

    .catalog-title {
        font-size: 32px;
    }

    .catalog-subtitle {
        font-size: 14px;
    }

    .catalog-filter-inner {
        flex-direction: row;
        gap: 20px;
    }

    .category-buttons-wrapper {
        flex-wrap: wrap;
    }

    .divider-line {
        display: block;
        min-width: 50px;
    }

    .btn-category,
    .btn-all-categories {
        font-size: 12px;
        padding: 10px 16px;
    }

    .products-grid {
        gap: 16px;
    }

    .product-card-wrapper {
        width: calc((100% - 32px) / 3);
        gap: 10px;
    }

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

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

    .testimonial-section {
        padding: 60px 0;
    }

    .testimonial-wrapper {
        flex-direction: row;
        gap: 35px;
    }

    .testimonial-image-wrapper {
        width: 280px;
        height: 400px;
    }

    .testimonial-content-wrapper {
        width: auto;
        flex: 1;
    }

    .testimonial-content-inner {
        flex-direction: row;
        gap: 40px;
    }

    .testimonial-text-block {
        gap: 45px;
    }

    .testimonial-label {
        font-size: 15px;
    }

    .testimonial-content-block {
        gap: 18px;
    }

    .testimonial-stars {
        gap: 16px;
    }

    .testimonial-stars svg {
        width: 28px;
        height: 28px;
    }

    .testimonial-quote {
        font-size: 28px;
        line-height: 125%;
    }

    .testimonial-author {
        font-size: 15px;
    }

    .testimonial-navigation {
        flex-direction: column;
        width: 34px;
        height: auto;
    }

    .testimonial-dots {
        flex-direction: column;
        width: 6px;
        height: auto;
    }

    .partners-section {
        padding: 30px 0;
    }

    .partner-logo {
        height: 80px;
    }

    .partner-logo img {
        height: 50px;
    }
}

@media (max-width: 768px) {
    .testimonial-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .testimonial-content-inner {
        flex-direction: column;
        gap: 30px;
    }

    .testimonial-image-wrapper {
        width: 100%;
        height: 350px;
    }

    .testimonial-content-wrapper {
        width: 100%;
    }

    .testimonial-navigation {
        position: static;
        transform: none;
        flex-direction: row;
        width: 100%;
        height: auto;
        justify-content: center;
        margin-top: 24px;
        order: 3;
    }

    .testimonial-dots {
        flex-direction: row;
        width: auto;
        height: auto;
        gap: 8px;
    }
}

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

    .hero-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-section {
        min-height: auto;
        padding: 40px 0 0;
        display: flex;
        flex-direction: column;
        margin-bottom: 0 !important;
    }

    .hero-content {
        padding: 0;
        text-align: center;
        margin-bottom: 25px;
        order: 1;
    }

    .hero-section .hero-title {
        font-size: 28px;
        line-height: 115%;
        margin-bottom: 12px;
        max-width: 100%;
    }

    .hero-subtitle {
        font-size: 14px;
        line-height: 150%;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .hero-section .row {
        display: flex;
        flex-direction: column;
    }

    .hero-section .col-lg-7 {
        order: 1;
    }

    .hero-main-image {
        position: relative;
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: 320px;
        margin: 0 auto; /* ini yang bikin ketengah */
        bottom: 0;
        object-fit: contain;
        object-position: center; /* center aja biar pas di tengah */
        display: block; /* pastikan display block */
        left: 0; /* reset left */
        right: 0; /* reset right */
        order: 2;
    }

    .hero-decoration-left {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 200px;
        height: auto;
        transform: scale(1) translate(0, 0);
        z-index: 3;
    }

    .btn-hero {
        font-size: 14px;
        padding: 8px 14px;
        gap: 8px;
    }

    .city-section {
        background: white;
        margin-top: 0 !important;
        padding-top: 0 !important;
        margin-bottom: -20px !important;
    }

    .city-wrapper {
        flex-direction: column;
        height: auto;
    }

    .left-content {
        width: 100%;
        height: auto;
        padding: 30px 20px;
        text-align: center;
    }

    .left-content h4 {
        width: 100%;
        height: auto;
        font-size: 20px;
        margin-bottom: 16px;
    }

    .explore-info {
        width: 100%;
        height: auto;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .divider {
        display: none;
    }

    .explore-label {
        font-size: 13px;
    }

    .explore-desc {
        width: 100%;
        font-size: 13px;
    }

    .cards-container {
        flex-direction: column;
        width: 100%;
        height: auto;
        padding: 0 20px 20px;
    }

    .city-card {
        width: 100%;
        height: 180px;
        margin-bottom: 12px;
    }

    .city-card:last-child {
        margin-bottom: 0;
    }

    .bento-section {
        padding: 40px 0;
    }

    .bento-grid {
        gap: 12px;
    }

    .bento-row-1,
    .bento-row-2 {
        flex-direction: column;
        height: auto;
        gap: 12px;
    }

    .bento-item {
        width: 100% !important;
        height: 200px;
    }

    .bento-item.large,
    .bento-item.small {
        width: 100% !important;
    }

    .bouquet .bento-content {
        width: 100%;
        align-items: center;
        gap: 16px;
    }

    .bouquet .bento-text {
        width: 100%;
        align-items: center;
    }

    .bouquet h3,
    .bouquet p {
        width: 100%;
        text-align: center;
        font-size: 20px;
    }

    .bouquet p {
        font-size: 13px;
    }

    .ucapan .bento-content,
    .standing .bento-content {
        width: 100%;
    }

    .ucapan h3,
    .ucapan p,
    .standing h3,
    .standing p {
        width: 100%;
        font-size: 20px;
    }

    .ucapan p,
    .standing p {
        font-size: 13px;
    }

    .meja h3 {
        font-size: 20px;
        transform: rotate(0deg);
        width: 100%;
        text-align: center;
        right: 0;
    }

    .pernikahan .bento-content {
        width: 100%;
    }

    .pernikahan h3,
    .pernikahan p {
        width: 100%;
        font-size: 20px;
    }

    .pernikahan p {
        font-size: 13px;
    }

    .acrylic .bento-content {
        width: 100%;
        align-items: center;
        gap: 16px;
    }

    .acrylic .bento-text {
        width: 100%;
        align-items: center;
    }

    .acrylic h3,
    .acrylic p {
        width: 100%;
        text-align: center;
        font-size: 20px;
    }

    .acrylic p {
        font-size: 13px;
    }

    .features-section {
        padding: 20px 0;
        height: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        border-width: 1px 0;
    }

    .feature-item {
        width: 100%;
        height: auto;
        gap: 8px;
    }

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

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

    .feature-content {
        height: auto;
    }

    .feature-title {
        font-size: 14px;
    }

    .feature-desc {
        font-size: 12px;
    }

    .catalog-section {
        padding: 40px 0;
    }

    .catalog-header {
        gap: 16px;
        margin-bottom: 20px;
    }

    .catalog-title {
        font-size: 22px;
        line-height: 120%;
    }

    .catalog-subtitle {
        font-size: 13px;
        line-height: 140%;
    }

    .catalog-filter-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .category-buttons-wrapper {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .category-buttons-wrapper::-webkit-scrollbar {
        display: none;
    }

    .btn-category {
        font-size: 13px;
        padding: 8px 16px;
        flex-shrink: 0;
    }

    .btn-category.active {
        font-size: 13px;
    }

    .divider-line {
        display: none;
    }

    .btn-all-categories {
        width: 100%;
        font-size: 13px;
        padding: 8px 16px;
    }

    .btn-all-categories svg {
        width: 16px;
        height: 16px;
    }

    .products-grid {
        gap: 12px;
    }

    .product-card-wrapper {
        width: calc(50% - 6px);
        gap: 10px;
    }

    .product-image-wrapper {
        border-radius: 6px;
        margin-bottom: 8px;
    }

    .product-info {
        gap: 4px;
    }

    .product-name {
        font-size: 13px;
        line-height: 140%;
    }

    .product-price {
        font-size: 15px;
        font-weight: 700;
    }

    .testimonial-section {
        padding: 40px 0;
    }

    .testimonial-wrapper {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .testimonial-label {
        font-size: 14px;
        order: 1 !important;
        width: 100%;
        margin-bottom: 10px;
        display: block !important;
    }

    .testimonial-image-wrapper {
        width: 100%;
        height: 280px;
        order: 1 !important;
    }

    .testimonial-content-wrapper {
        width: 100%;
        order: 2 !important;
        display: flex;
        flex-direction: column;
    }

    .testimonial-content-inner {
        flex-direction: column;
        gap: 20px;
        display: flex;
        flex-direction: column;
    }

    .testimonial-text-content {
        max-width: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .testimonial-text-block {
        gap: 16px;
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .testimonial-stars {
        order: 1;
        gap: 8px;
        margin: 0;
        display: flex;
    }

    .testimonial-stars svg {
        width: 24px;
        height: 24px;
    }

    .testimonial-quote {
        order: 2;
        font-size: 22px;
        line-height: 130%;
        margin: 0;
    }

    .testimonial-author {
        order: 3;
        font-size: 14px;
        margin: 0;
    }

    .testimonial-navigation {
        position: static !important;
        transform: none !important;
        flex-direction: row;
        width: 100%;
        height: auto;
        gap: 16px;
        order: 3 !important;
        margin-top: 20px;
        justify-content: center;
        display: flex;
    }

    .testimonial-nav-btn svg {
        width: 28px;
        height: 28px;
    }

    .testimonial-dots {
        flex-direction: row;
        width: auto;
        height: 6px;
        gap: 8px;
    }

    .testimonial-content-wrapper,
    .testimonial-content-inner,
    .testimonial-text-content,
    .testimonial-text-block {
        display: flex !important;
        flex-direction: column !important;
    }

    .partners-section {
        padding: 32px 0;
    }

    .partners-text h3 {
        font-size: 20px;
    }

    .partners-slider {
        height: 60px;
    }

    .partner-logo {
        height: 60px;
    }

    .partner-logo img {
        height: 40px;
        max-width: 120px;
    }

    .slide-track {
        gap: 20px;
        animation: scroll-mobile 20s linear infinite;
    }

    @keyframes scroll-mobile {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }

    body {
        overflow-x: hidden;
    }

    .container,
    .container-fluid {
        max-width: 100vw;
        overflow-x: hidden;
    }

    section {
        overflow-x: hidden;
        max-width: 100vw;
    }

    .row {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 430px) {
    .catalog-title {
        font-size: 24px;
    }

    .btn-category,
    .btn-all-categories {
        font-size: 14px;
        padding: 10px 16px;
    }

    .testimonial-image-wrapper {
        height: 300px;
    }

    .testimonial-quote {
        font-size: 18px;
    }

    .testimonial-stars {
        gap: 12px;
    }

    .testimonial-stars svg {
        width: 24px;
        height: 24px;
    }
}

@media (min-width: 577px) and (max-width: 767px) {
    .container-1440,
    .container {
        padding: 0 20px;
    }

    .hero-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-section {
        min-height: auto;
        padding: 40px 0 0;
        display: flex;
        flex-direction: column;
        margin-bottom: 0 !important;
    }

    .hero-content {
        padding: 0;
        text-align: center;
        margin-bottom: 25px;
        order: 1;
    }

    .hero-section .hero-title {
        font-size: 32px;
        line-height: 115%;
        margin-bottom: 12px;
        max-width: 100%;
    }

    .hero-subtitle {
        font-size: 15px;
        line-height: 150%;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .hero-section .row {
        display: flex;
        flex-direction: column;
    }

    .hero-section .col-lg-7 {
        order: 1;
    }

    .hero-main-image {
        position: relative;
        height: 300px;
        margin-top: 0;
        bottom: 0;
        object-fit: contain;
        object-position: bottom center;
        order: 2;
    }

    .hero-decoration-left {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 220px;
        height: auto;
        transform: scale(1) translate(0, 0);
        z-index: 3;
    }

    .btn-hero {
        font-size: 15px;
        padding: 10px 16px;
        gap: 8px;
    }

    .city-section {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .city-wrapper {
        flex-direction: column;
        height: auto;
    }

    .left-content {
        width: 100%;
        height: auto;
        padding: 30px 24px;
        text-align: center;
    }

    .left-content h4 {
        width: 100%;
        font-size: 22px;
    }

    .explore-info {
        width: 100%;
        flex-direction: row;
    }

    .explore-desc {
        width: auto;
        flex: 1;
    }

    .cards-container {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 0 20px 20px;
        gap: 12px;
    }

    .city-card {
        width: calc(50% - 6px);
        height: 180px;
    }

    .bento-section {
        padding: 40px 0;
    }

    .bento-grid {
        gap: 12px;
    }

    .bento-row-1,
    .bento-row-2 {
        flex-direction: row;
        flex-wrap: wrap;
        height: auto;
        gap: 12px;
    }

    .bento-item {
        height: 200px;
    }

    .bento-item.bouquet {
        width: 100%;
        height: 220px;
    }

    .bento-item.ucapan,
    .bento-item.standing {
        width: calc(50% - 6px);
        height: 200px;
    }

    .bento-item.meja {
        width: calc(50% - 6px);
        height: 200px;
    }

    .bento-item.pernikahan {
        width: calc(50% - 6px);
        height: 200px;
    }

    .bento-item.acrylic {
        width: 100%;
        height: 200px;
    }

    .bouquet .bento-content,
    .acrylic .bento-content {
        width: 90%;
        gap: 16px;
    }

    .bouquet h3,
    .bouquet p,
    .acrylic h3,
    .acrylic p {
        width: 100%;
        font-size: 22px;
    }

    .bouquet p,
    .acrylic p {
        font-size: 13px;
    }

    .ucapan .bento-content,
    .standing .bento-content,
    .pernikahan .bento-content {
        width: 90%;
    }

    .ucapan h3,
    .ucapan p,
    .standing h3,
    .standing p,
    .pernikahan h3,
    .pernikahan p {
        width: 100%;
        font-size: 18px;
    }

    .ucapan p,
    .standing p,
    .pernikahan p {
        font-size: 12px;
    }

    .meja h3 {
        font-size: 18px;
        transform: rotate(-90deg);
    }

    .features-section {
        padding: 20px 0;
        height: auto;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 24px;
    }

    .feature-item {
        width: calc(50% - 12px);
        height: auto;
        gap: 8px;
    }

    .feature-item:nth-child(1),
    .feature-item:nth-child(2),
    .feature-item:nth-child(3),
    .feature-item:nth-child(4) {
        width: calc(50% - 12px);
    }

    .feature-item:nth-child(1) .feature-content,
    .feature-item:nth-child(2) .feature-content,
    .feature-item:nth-child(3) .feature-content,
    .feature-item:nth-child(4) .feature-content {
        width: 100%;
    }

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

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

    .feature-title {
        font-size: 15px;
    }

    .feature-desc {
        font-size: 13px;
    }

    .catalog-section {
        padding: 40px 0;
    }

    .catalog-header {
        gap: 20px;
        margin-bottom: 20px;
    }

    .catalog-title {
        font-size: 28px;
    }

    .catalog-subtitle {
        font-size: 14px;
    }

    .catalog-filter-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .category-buttons-wrapper {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .category-buttons-wrapper::-webkit-scrollbar {
        display: none;
    }

    .btn-category {
        font-size: 13px;
        padding: 8px 16px;
        flex-shrink: 0;
    }

    .divider-line {
        display: none;
    }

    .btn-all-categories {
        width: 100%;
        font-size: 13px;
        padding: 8px 16px;
    }

    .products-grid {
        gap: 16px;
    }

    .product-card-wrapper {
        width: calc(50% - 8px);
        gap: 10px;
    }

    .product-image-wrapper {
        border-radius: 6px;
    }

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

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

    .testimonial-section {
        padding: 40px 0;
    }

    .testimonial-wrapper {
        width: 100%;
        flex-direction: column;
        gap: 24px;
    }

    .testimonial-image-wrapper {
        width: 100%;
        height: 280px;
        order: 1; /* Image first on mobile */
    }

    .testimonial-content-wrapper {
        width: 100%;
        order: 2; /* Content second */
        display: flex;
        flex-direction: column;
    }

    .testimonial-content-inner {
        flex-direction: column;
        gap: 20px;
    }

    .testimonial-text-content {
        max-width: 100%;
        order: 0;
        width: 100%;
    }

    .testimonial-quote {
        font-size: 24px;
        line-height: 130%;
    }

    .testimonial-navigation {
        position: static; /* Reverting absolute position */
        transform: none;
        flex-direction: row;
        width: 100%;
        height: auto;
        gap: 16px;
        order: 3; /* Navigation last */
        margin-top: 24px;
        justify-content: center; /* Center horizontally */
        pointer-events: auto;
    }

    .testimonial-nav-btn {
        width: 34px;
        height: 34px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: opacity 0.3s ease;
        flex: none;
        color: inherit;
    }

    .testimonial-nav-btn:hover {
        opacity: 0.7;
        transform: none;
        background: transparent;
    }

    .testimonial-nav-btn svg {
        width: 34px;
        height: 34px;
    }

    .testimonial-dots {
        display: flex;
        flex-direction: row;
        width: auto;
        height: 6px;
        gap: 8px;
    }

    .partners-section {
        padding: 32px 0;
    }

    .partners-slider {
        height: 60px;
    }

    .partner-logo {
        height: 60px;
    }

    .partner-logo img {
        height: 40px;
        max-width: 120px;
    }

    body {
        overflow-x: hidden;
    }

    .container,
    .container-fluid {
        max-width: 100vw;
        overflow-x: hidden;
    }

    section {
        overflow-x: hidden;
        max-width: 100vw;
    }
}

@media (min-width: 835px) and (max-width: 899px) {
    .container-1440,
    .container {
        padding: 0 30px;
    }

    .hero-section .container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .hero-section {
        min-height: 420px;
        padding: 60px 0 0;
    }

    .hero-content {
        padding: 20px 0 50px;
        max-width: 380px;
    }

    .hero-section .hero-title {
        font-size: 28px;
    }

    .hero-main-image {
        right: var(--container-padding);
        bottom: 0;
        height: 250px;
        max-width: 45%;
    }

    .hero-decoration-left {
        left: -40px;
        transform: scale(3.5) translate(8px, 8px);
    }

    .city-wrapper {
        flex-direction: row;
        min-height: 200px;
    }

    .left-content {
        width: 320px;
        padding: 30px;
    }

    .cards-container {
        flex-direction: row;
    }

    .city-card {
        flex: 1;
        min-height: 200px;
    }

    .bento-row-1,
    .bento-row-2 {
        flex-direction: row;
        gap: 15px;
    }

    .bento-row-1 {
        height: 220px;
    }
    .bento-row-2 {
        height: 200px;
    }

    .bento-item.bouquet {
        width: 55%;
    }
    .bento-item.ucapan,
    .bento-item.standing {
        width: 22.5%;
    }
    .bento-item.meja {
        width: 22.5%;
    }
    .bento-item.pernikahan {
        width: 22.5%;
    }
    .bento-item.acrylic {
        width: 55%;
    }

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

    .feature-item {
        width: 100%;
    }

    .catalog-filter-inner {
        flex-direction: row;
        gap: 20px;
    }

    .category-buttons-wrapper {
        flex-wrap: wrap;
    }

    .product-card-wrapper {
        width: calc((100% - 32px) / 3);
    }

    .testimonial-wrapper {
        flex-direction: row;
        gap: 35px;
    }

    .testimonial-image-wrapper {
        width: 260px;
        height: 380px;
    }

    .testimonial-navigation {
        flex-direction: column;
        width: 34px;
    }

    .testimonial-dots {
        flex-direction: column;
        width: 6px;
    }

    .partner-logo {
        height: 80px;
    }

    .partner-logo img {
        height: 50px;
    }
}

@media (min-width: 900px) and (max-width: 1024px) {
    .hero-section .container {
        padding-left: 45px;
        padding-right: 45px;
    }

    .hero-section {
        min-height: 420px;
        padding: 60px 0 0;
    }

    .hero-content {
        padding: 20px 0 50px;
        max-width: 400px;
    }

    .hero-section .hero-title {
        font-size: 28px;
        line-height: 105%;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 12px;
        line-height: 155%;
    }

    .hero-main-image {
        right: var(--container-padding);
        height: 450px;
        max-width: 45%;
    }

    .hero-decoration-left {
        left: -40px;
        transform: scale(3.7) translate(8px, 8px);
    }

    .city-wrapper {
        flex-direction: row;
        min-height: 200px;
    }

    .left-content {
        width: 350px;
        padding: 30px 30px 30px 40px;
        gap: 30px;
    }

    .left-content h4 {
        width: 100%;
        font-size: 22px;
    }

    .explore-info {
        width: 100%;
        flex-direction: row;
    }

    .explore-desc {
        width: auto;
        flex: 1;
    }

    .divider {
        display: block;
    }

    .cards-container {
        flex-direction: row;
        padding: 0;
    }

    .city-card {
        width: auto;
        flex: 1;
        min-height: 200px;
    }

    .bento-section {
        padding: 50px 0;
    }

    .bento-row-1,
    .bento-row-2 {
        flex-direction: row;
        gap: 15px;
    }

    .bento-row-1 {
        height: 220px;
    }

    .bento-row-2 {
        height: 200px;
    }

    .bento-item.bouquet {
        width: 55%;
        height: 220px;
    }

    .bouquet .bento-content {
        width: 90%;
        gap: 20px;
    }

    .bouquet .bento-text {
        width: 100%;
    }

    .bouquet h3,
    .bouquet p {
        width: 100%;
        font-size: 22px;
    }

    .bouquet p {
        font-size: 13px;
    }

    .bento-item.ucapan,
    .bento-item.standing {
        width: 22.5%;
        height: 220px;
    }

    .ucapan .bento-content,
    .standing .bento-content {
        width: 90%;
    }

    .ucapan h3,
    .ucapan p,
    .standing h3,
    .standing p {
        width: 100%;
        font-size: 20px;
    }

    .ucapan p,
    .standing p {
        font-size: 13px;
    }

    .bento-item.meja {
        width: 22.5%;
        height: 200px;
    }

    .meja h3 {
        font-size: 20px;
        transform: rotate(-90deg);
        right: 40px;
    }

    .bento-item.pernikahan {
        width: 22.5%;
        height: 200px;
    }

    .pernikahan .bento-content {
        width: 90%;
    }

    .pernikahan h3,
    .pernikahan p {
        width: 100%;
        font-size: 20px;
    }

    .pernikahan p {
        font-size: 13px;
    }

    .bento-item.acrylic {
        width: 55%;
        height: 200px;
    }

    .acrylic .bento-content {
        width: 90%;
        gap: 20px;
    }

    .acrylic .bento-text {
        width: 100%;
    }

    .acrylic h3,
    .acrylic p {
        width: 100%;
        font-size: 22px;
    }

    .acrylic p {
        font-size: 13px;
    }

    .features-section {
        padding: 20px 0;
        gap: 50px;
        height: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
    }

    .feature-item {
        width: 100%;
        gap: 10px;
    }

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

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

    .feature-title {
        font-size: 15px;
    }

    .feature-desc {
        font-size: 13px;
    }

    .catalog-section {
        padding: 40px 0;
    }

    .catalog-header {
        gap: 24px;
        margin-bottom: 20px;
    }

    .catalog-title {
        font-size: 32px;
    }

    .catalog-subtitle {
        font-size: 14px;
    }

    .catalog-filter-inner {
        flex-direction: row;
        gap: 20px;
    }

    .category-buttons-wrapper {
        flex-wrap: wrap;
    }

    .divider-line {
        display: block;
        min-width: 50px;
    }

    .btn-category,
    .btn-all-categories {
        font-size: 12px;
        padding: 10px 16px;
    }

    .products-grid {
        gap: 16px;
    }

    .product-card-wrapper {
        width: calc((100% - 32px) / 3);
        gap: 10px;
    }

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

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

    .testimonial-section {
        padding: 60px 0;
    }

    .testimonial-wrapper {
        flex-direction: row;
        gap: 35px;
    }

    .testimonial-image-wrapper {
        width: 280px;
        height: 400px;
    }

    .testimonial-content-wrapper {
        width: auto;
        flex: 1;
    }

    .testimonial-content-inner {
        flex-direction: column; /* Center content on tablet as well */
        gap: 20px;
    }

    .testimonial-text-block {
        gap: 45px;
    }

    .testimonial-label {
        font-size: 15px;
    }

    .testimonial-content-block {
        gap: 18px;
    }

    .testimonial-stars {
        gap: 16px;
    }

    .testimonial-stars svg {
        width: 28px;
        height: 28px;
    }

    .testimonial-quote {
        font-size: 28px;
        line-height: 125%;
    }

    .testimonial-author {
        font-size: 15px;
    }

    .testimonial-navigation {
        flex-direction: row; /* Keep horizontal and centered */
        width: 100%;
        height: auto;
        justify-content: center;
        margin-top: 24px;
    }

    .testimonial-dots {
        flex-direction: row;
        width: auto;
        height: auto;
    }

    .partners-section {
        padding: 30px 0;
    }

    .partner-logo {
        height: 80px;
    }

    .partner-logo img {
        height: 50px;
        max-width: 140px;
    }
}
/* ========================================
   TAMBAHAN UNTUK SAFARI MAC COMPATIBILITY - PRODUCTS.CSS
   ======================================== */

/* 1. TAMBAHKAN PREFIX WEBKIT UNTUK 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%
    );
}

/* 2. TAMBAHKAN BACKFACE-VISIBILITY UNTUK SEMUA ELEMEN YANG DI-HOVER */
.bento-item,
.city-card,
.product-card-link,
.btn-hero,
.btn-sage,
.btn-category,
.btn-all-categories,
.testimonial-nav-btn,
.partner-logo img {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* 3. TAMBAHKAN PREFIX UNTUK OBJECT-FIT */
.hero-main-image,
.city-bg-img,
.testimonial-image,
.product-image-wrapper img,
.bento-item img {
    -webkit-object-fit: cover;
    object-fit: cover;
}

/* 4. TAMBAHKAN PREFIX UNTUK BACKDROP-FILTER */
.city-badge {
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}

/* 5. TAMBAHKAN PREFIX UNTUK ANIMASI SCROLL */
.slide-track {
    -webkit-animation: scroll 30s linear infinite;
    animation: scroll 30s linear infinite;
}

.slide-track:hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

@-webkit-keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(calc(-50% - 20px));
        transform: translateX(calc(-50% - 20px));
    }
}

@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(calc(-50% - 20px));
        transform: translateX(calc(-50% - 20px));
    }
}

/* 6. TAMBAHKAN UNTUK MOBILE ANIMATION */
@media (max-width: 576px) {
    @-webkit-keyframes scroll-mobile {
        0% {
            -webkit-transform: translateX(0);
            transform: translateX(0);
        }
        100% {
            -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
        }
    }
    
    .slide-track {
        -webkit-animation: scroll-mobile 20s linear infinite;
        animation: scroll-mobile 20s linear infinite;
    }
}

/* 7. TAMBAHKAN UNTUK TEXT RENDERING DI SAFARI */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* 8. TAMBAHKAN UNTUK SAFARI - FIX OVERFLOW PADA TESTIMONIAL TEXT */
.testimonial-quote,
.testimonial-author,
.testimonial-label,
.product-name,
.product-price {
    word-wrap: break-word;
    overflow-wrap: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
}

/* 9. TAMBAHKAN UNTUK SAFARI - FIX FLEXBOX PADA GRID */
.bento-grid,
.products-grid,
.features-grid {
    -webkit-box-align: stretch;
    align-items: stretch;
}

/* 10. TAMBAHKAN UNTUK SAFARI - FIX TRANSFORM PADA HOVER */
.bento-item:hover,
.city-card:hover,
.product-card-link:hover,
.btn-hero:hover,
.btn-sage:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}

/* 11. TAMBAHKAN UNTUK SAFARI - FIX BACKDROP-FILTER PADA MOBILE */
@media (max-width: 768px) {
    .city-badge {
        -webkit-backdrop-filter: blur(3px);
        backdrop-filter: blur(3px);
    }
}

/* 12. TAMBAHKAN UNTUK SAFARI - FIX CLAMP PADA FONT SIZE */
.catalog-title,
.hero-section .hero-title,
.testimonial-quote,
.bouquet h3,
.acrylic h3 {
    font-size: clamp(24px, 5vw, 36px);
}

/* 13. TAMBAHKAN UNTUK SAFARI - FIX SCROLLBAR HIDING */
.category-buttons-wrapper::-webkit-scrollbar,
.testimonials-scroll-wrapper::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.category-buttons-wrapper,
.testimonials-scroll-wrapper {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* 14. TAMBAHKAN UNTUK SAFARI - FIX POSITION STICKY ATAU RELATIVE */
.hero-section,
.city-section,
.bento-section,
.catalog-section,
.testimonial-section,
.partners-section {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* 15. TAMBAHKAN UNTUK SAFARI - FIX NEGATIVE MARGIN PADA HERO DECORATION */
.hero-decoration-left {
    -webkit-transform: scale(1.9) translate(10px, 10px);
    transform: scale(1.9) translate(10px, 10px);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}

/* 16. TAMBAHKAN UNTUK SAFARI - FIX FLEX GAP PADA WRAPPER */
.category-buttons-wrapper {
    gap: 12px;
}

/* 17. TAMBAHKAN UNTUK SAFARI - FIX ASPECT-RATIO (SAFARI 15+ SUPPORT) */
.product-image-wrapper {
    aspect-ratio: 315 / 384;
}

/* Fallback untuk Safari versi lama yang tidak support aspect-ratio */
@supports not (aspect-ratio: 1/1) {
    .product-image-wrapper {
        height: auto;
        padding-bottom: 121.9%; /* (384/315)*100 = 121.9% */
        position: relative;
    }
    
    .product-image-wrapper img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        -webkit-object-fit: cover;
        object-fit: cover;
    }
}

/* 18. TAMBAHKAN UNTUK SAFARI - FIX BACKFACE-VISIBILITY PADA ELEMEN ROTATE */
.meja h3 {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* 19. TAMBAHKAN UNTUK SAFARI - FIX TRANSITION PADA SVG */
.btn-shop-now svg,
.testimonial-nav-btn svg,
.feature-icon svg {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

/* 20. TAMBAHKAN UNTUK SAFARI - FIX OBJECT-POSITION */
.hero-main-image {
    -webkit-object-position: bottom right;
    object-position: bottom right;
}

/* 21. TAMBAHKAN UNTUK SAFARI - FIX TEXT-ALIGN PADA MOBILE */
@media (max-width: 576px) {
    .product-name,
    .product-price {
        text-align: left;
    }
    
    .testimonial-quote {
        text-align: left;
    }
    
    .testimonial-author {
        text-align: left;
    }
}

/* 22. TAMBAHKAN UNTUK SAFARI - FIX HOVER PADA ELEMEN DENGAN BACKDROP-FILTER */
.city-badge {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.city-card:hover .city-badge {
    background: #ffffff;
    border: 1px solid transparent;
}

.city-card:hover .city-badge span {
    color: #3f425a;
}

/* 23. TAMBAHKAN UNTUK SAFARI - FIX ICON SWITCH PADA HOVER */
.icon-location-white,
.icon-location-green {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

/* 24. TAMBAHKAN UNTUK SAFARI - FIX ZOOM 125% PADA TESTIMONIAL */
@media screen and (min-width: 1025px) {
    .testimonial-content-wrapper {
        min-width: 0;
        flex: 1 1 0%;
    }
    
    .testimonial-quote {
        font-size: clamp(24px, 2.5vw, 32px);
        line-height: 1.25;
    }
}

/* 25. TAMBAHKAN KHUSUS UNTUK SAFARI MAC DENGAN MEDIA QUERY */
@supports (-webkit-touch-callout: none) {
    /* Safari specific fixes */
    .hero-section {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .bento-item,
    .city-card,
    .product-card-wrapper {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    /* Fix untuk overflow pada testimonial di Safari */
    .testimonial-text-content {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .testimonial-quote {
        word-break: break-word;
    }
    
    /* Fix untuk backdrop-filter blur di Safari */
    .city-badge {
        -webkit-backdrop-filter: blur(3px);
        backdrop-filter: blur(3px);
    }
    
    /* Fix untuk aspect-ratio fallback di Safari lama */
    @supports not (aspect-ratio: 1/1) {
        .product-image-wrapper {
            padding-bottom: 121.9%;
        }
    }
}

/* ==========================================================================
   CROSS-PLATFORM COMPATIBILITY FIXES (Safari, Windows, Android, iOS)
   Tambahkan di baris paling bawah file products.css
   ========================================================================== */

/* --- 1. GLOBAL & WINDOWS FIXES --- */
body {
    /* Fix rendering font di Safari Mac/iOS agar lebih tajam dan tidak terlalu tebal */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Menyediakan font fallback (cadangan) untuk Windows jika font "Outfit" lambat dimuat */
    font-family: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

/* Fix masalah horizontal scrollbar (Bug 100vw) di Windows */
.features-wrapper {
    width: 100% !important;
    max-width: 100vw;
}


/* --- 2. SAFARI MAC & iOS FIXES --- */
/* Menambahkan vendor prefix wajib untuk efek glassmorphism di Safari */
.city-btn, 
.city-badge {
    -webkit-backdrop-filter: blur(6px) !important;
    backdrop-filter: blur(6px) !important;
}


/* --- 3. ANDROID FIXES (Mencegah Teks Terpotong) --- */
/* Mengubah fixed height menjadi auto + min-height agar fleksibel mengikuti isi konten */
.bento-row-1,
.bento-item,
.left-content {
    height: auto !important;
    min-height: 240px; 
}


/* --- 4. iOS / TOUCHSCREEN STICKY HOVER FIX --- */
/* Menonaktifkan paksa efek hover di perangkat layar sentuh agar tidak "tersangkut" */
@media (hover: none) {
    .city-card:hover .city-badge span {
        color: inherit !important; 
    }
    
    .btn-hero:hover {
        transform: none !important; 
    }

    /* Anda bisa menambahkan elemen lain di sini jika ada hover yang masih tersangkut di HP */
}
