* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #fff7fb;
    color: #1f2937;
}

a {
    text-decoration: none;
}

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

/* ================= HEADER ================= */

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #f3d7e5;
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #be185d;
    min-width: 240px;
}

.brand-icon {
    font-size: 34px;
}

.brand strong {
    display: block;
    font-size: 18px;
}

.brand small {
    display: block;
    font-size: 12px;
    color: #6b7280;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: auto;
}

.nav-menu a {
    color: #374151;
    font-weight: 700;
    font-size: 14px;
}

.nav-menu a:hover {
    color: #be185d;
}

.search-form {
    display: flex;
    gap: 8px;
}

.search-form input {
    width: 180px;
    border: 1px solid #f0bad3;
    border-radius: 999px;
    padding: 10px 14px;
    outline: none;
}

.search-form button {
    border: 0;
    border-radius: 999px;
    background: #be185d;
    color: #ffffff;
    padding: 10px 16px;
    cursor: pointer;
    font-weight: 700;
}

/* ================= HERO ================= */

.hero {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, #fce7f3, transparent 35%),
        linear-gradient(135deg, #fff7fb, #ffffff);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 36px;
    align-items: center;
}

.badge {
    display: inline-block;
    background: #fce7f3;
    color: #be185d;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 700;
    margin-bottom: 14px;
}

.hero h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 78px;
    font-weight: normal;
    line-height: 1.1;
    color: #831843;
    margin: 0 0 16px;
    text-shadow: 0 4px 18px rgba(255,255,255,0.45);
}

.hero p {
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.btn-primary,
.btn-secondary,
.btn-order {
    display: inline-block;
    border-radius: 12px;
    font-weight: 700;
}

.btn-primary {
    background: #be185d;
    color: #ffffff;
    padding: 14px 22px;
}

.btn-secondary {
    background: #ffffff;
    color: #be185d;
    border: 1px solid #f0bad3;
    padding: 13px 22px;
}

.hero-card {
    background: #ffffffc0;
    border: 1px solid #f3d7e5;
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 18px 45px rgba(190, 24, 93, 0.12);
    text-align: center;
}

.hero-flower {
    font-size: 80px;
    margin-bottom: 12px;
}

.hero-card h2 {
    color: #be185d;
    margin-bottom: 8px;
}

/* ================= SECTION ================= */

.section {
     padding: 32px 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 28px;
}

.section-heading h2 {
    color: #831843;
    font-size: 32px;
    margin: 0 0 8px;
}

.section-heading p {
    color: #6b7280;
    margin: 0;
}


/* ================= FOOTER BUTTON ================= */

.katalog-footer {
    display: flex;
    justify-content: flex-end;

    margin-top: 24px;
}

.lihat-semua-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    height: 52px;

    padding: 0 22px;

    border-radius: 999px;

    background: #ffffff;

    color: #be185d;

    border: 1px solid #f3d7e5;

    font-weight: 800;

    transition: 0.22s ease;
}

.lihat-semua-btn:hover {
    background: #fff1f7;

    transform: translateY(-2px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 700px) {

    .product-grid {
        grid-template-columns: 1fr;
    }

}

/* ================= REKENING ================= */

.rekening-section {
    padding-top: 0;
    background: #ffffff;
}

.rekening-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.rekening-card {
    background: #ffffff;
    border: 1px solid #f3d7e5;
    border-radius: 22px;
    padding: 22px;
    display: flex;
    gap: 18px;
    align-items: center;
    box-shadow: 0 12px 32px rgba(190, 24, 93, 0.08);
}

.rekening-logo {
    width: 74px;
    height: 74px;
    border-radius: 18px;
    background: #fce7f3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.rekening-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.rekening-logo span {
    font-size: 28px;
    font-weight: 900;
    color: #be185d;
}

.rekening-info h3 {
    margin: 0 0 6px;
    color: #831843;
}

.rekening-info p {
    margin: 4px 0;
    color: #6b7280;
}

.rekening-number {
    font-size: 20px;
    font-weight: 900;
    color: #be185d !important;
    letter-spacing: 1px;
}

/* ================= FOOTER ================= */

.site-footer {
    background: #ffffff;
    color: #1f2937;
    padding-top: 60px;
    margin-top: 70px;
    border-top: 1px solid #f3d7e5;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.footer-grid > div {
    background: #fff7fb;
    border: 1px solid #f3d7e5;
    border-radius: 24px;
    padding: 28px;
    transition: 0.25s ease;
}

.footer-grid > div:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(190, 24, 93, 0.08);
}

.site-footer h3 {
    margin-top: 0;
    margin-bottom: 16px;
    color: #831843;
    font-size: 22px;
}

.site-footer p {
    color: #4b5563;
    line-height: 1.8;
    margin: 0;
}

.maps-box {
    margin-top: 30px;
}

.maps-box iframe {
    width: 100%;
    height: 340px;
    border: 0;
    border-radius: 24px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.footer-bottom {
    margin-top: 38px;
    padding: 22px;
    text-align: center;
    border-top: 1px solid #f3d7e5;
    background: #fff7fb;
}

.footer-bottom p {
    margin: 0;
    color: #6b7280;
}

/* ================= FLOATING WA ================= */

.floating-wa {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.132);
    z-index: 100;
}

/* ================= EMPTY ================= */

.empty-box {
    grid-column: 1 / -1;
    background: #ffffff;
    border: 1px dashed #f0bad3;
    padding: 28px;
    border-radius: 18px;
    text-align: center;
    color: #6b7280;
}

/* ================= PAGE HERO ================= */

.page-hero {
    padding: 64px 0;
    background:
        radial-gradient(circle at top left, #fce7f3, transparent 35%),
        linear-gradient(135deg, #fff7fb, #ffffff);
    border-bottom: 1px solid #f3d7e5;
    text-align: center;
}

.page-hero h1 {
    margin: 0 0 10px;
    color: #831843;
    font-size: 42px;
}

.page-hero p {
    margin: 0;
    color: #6b7280;
    font-size: 17px;
}

/* ================= KATALOG SEARCH ================= */

.katalog-search-box {
    margin-bottom: 26px;
}

.katalog-search-form {
    display: flex;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #f3d7e5;
    border-radius: 20px;
    padding: 14px;
    box-shadow: 0 12px 32px rgba(190, 24, 93, 0.08);
}

.katalog-search-form input {
    flex: 1;
    border: 1px solid #f0bad3;
    border-radius: 14px;
    padding: 13px 16px;
    outline: none;
}

.katalog-search-form button {
    border: 0;
    border-radius: 14px;
    background: #be185d;
    color: #ffffff;
    padding: 13px 22px;
    font-weight: 700;
    cursor: pointer;
}

.search-result-text {
    margin-bottom: 20px;
    color: #6b7280;
}

/* ================= DETAIL PRODUK ================= */

.detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 38px;
    align-items: center;
}

.detail-image {
    background: #ffffff;
    border: 1px solid #f3d7e5;
    border-radius: 28px;
    min-height: 420px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 45px rgba(190, 24, 93, 0.10);
}

.detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-image span {
    font-size: 110px;
}

.detail-info h1 {
    color: #831843;
    font-size: 42px;
    margin: 14px 0 12px;
}

.detail-price {
    color: #be185d;
    font-size: 28px;
    font-weight: 900;
    margin: 0 0 18px;
}

.detail-desc {
    color: #4b5563;
    line-height: 1.8;
    font-size: 17px;
}

.detail-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 26px;
}

@media (max-width: 900px) {
    .detail-wrapper {
        grid-template-columns: 1fr;
    }

    .katalog-search-form {
        flex-direction: column;
    }

    .page-hero h1,
    .detail-info h1 {
        font-size: 32px;
    }
}
/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .header-inner {
        flex-wrap: wrap;
        padding: 14px 0;
    }

    .brand {
        min-width: 0;
    }

    .nav-menu {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }

    .search-form {
        width: 100%;
    }

    .search-form input {
        width: 100%;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 48px;
    }

    .product-grid,
    .footer-grid,
    .rekening-grid {
        grid-template-columns: 1fr;
    }

    .katalog-footer {
        justify-content: center;
    }
}

/* ================= DETAIL GALLERY ================= */

.detail-gallery {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.detail-main-image {
    background: #ffffff;
    border: 1px solid #f3d7e5;
    border-radius: 28px;
    overflow: hidden;
    height: 520px;

    box-shadow: 0 18px 45px rgba(190, 24, 93, 0.10);
}

.detail-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-no-image {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 120px;
}

.detail-thumbnails {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.detail-thumb {
    width: 92px;
    height: 92px;

    border-radius: 18px;
    overflow: hidden;

    border: 2px solid #f3d7e5;

    cursor: pointer;

    transition: 0.2s ease;
}

.detail-thumb:hover {
    transform: translateY(-4px);
    border-color: #be185d;
}

.detail-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-payment-slider {
    position: relative;
    min-height: 118px;
}

.footer-payment-slide {
    display: none;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    border: 1px solid #f3d7e5;
    border-radius: 18px;
    padding: 14px;
    animation: fadePayment 0.4s ease;
}

.footer-payment-slide.active {
    display: flex;
}

.footer-payment-logo {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: #fff7fb;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.footer-payment-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 7px;
}

.footer-payment-logo span {
    font-size: 24px;
    font-weight: 900;
    color: #be185d;
}

.footer-payment-info strong {
    display: block;
    color: #831843;
    margin-bottom: 5px;
}

.footer-payment-info p {
    margin: 0;
    font-size: 18px;
    font-weight: 900;
    color: #374151;
}

.footer-payment-info small {
    color: #6b7280;
}

.payment-warning {
    margin-top: 12px !important;
    font-size: 13px;
    color: #be185d !important;
    font-weight: 700;
}

@keyframes fadePayment {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-showcase-section {
    padding-top: 5px;
}

.category-product-block {
    margin-top: 34px;
}

.category-product-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.category-product-header h3 {
    margin: 0 0 6px;
    color: #831843;
    font-size: 28px;
}

.category-product-header p {
    margin: 0;
    color: #6b7280;
}

.modern-see-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #be185d;
    background: #ffffff;
    border: 1px solid #f3d7e5;
    border-radius: 999px;
    padding: 11px 18px;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(190, 24, 93, 0.08);
    transition: 0.22s ease;
}

.modern-see-all-btn b {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #be185d;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.22s ease;
}

.modern-see-all-btn:hover {
    transform: translateY(-3px);
    border-color: #be185d;
    box-shadow: 0 16px 34px rgba(190, 24, 93, 0.16);
}

.modern-see-all-btn:hover b {
    transform: translateX(3px);
}

@media (max-width: 900px) {
    .category-product-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .modern-see-all-btn {
        width: 100%;
        justify-content: space-between;
    }
}

.katalog-filter-box {
    margin-bottom: 18px;
}

.katalog-filter-form {
    display: grid;
    grid-template-columns: 1fr 240px auto auto;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #f3d7e5;
    border-radius: 22px;
    padding: 14px;
    box-shadow: 0 12px 32px rgba(190, 24, 93, 0.08);
}

.katalog-filter-form input,
.katalog-filter-form select {
    border: 1px solid #f0bad3;
    border-radius: 14px;
    padding: 13px 16px;
    outline: none;
    background: #ffffff;
}

.katalog-filter-form button,
.reset-filter-btn {
    border: 0;
    border-radius: 14px;
    background: #be185d;
    color: #ffffff;
    padding: 13px 20px;
    font-weight: 800;
    cursor: pointer;
    text-align: center;
}

.reset-filter-btn {
    background: #ffffff;
    color: #be185d;
    border: 1px solid #f0bad3;
}

.katalog-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.katalog-tabs a {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 10px 16px;
    background: #ffffff;
    border: 1px solid #f3d7e5;
    color: #831843;
    font-weight: 800;
}

.katalog-tabs a.active,
.katalog-tabs a:hover {
    background: #be185d;
    color: #ffffff;
    border-color: #be185d;
}

.product-category-badge {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #fce7f3;
    color: #be185d;
    font-size: 12px;
    font-weight: 800;
}

@media (max-width: 900px) {
    .katalog-filter-form {
        grid-template-columns: 1fr;
    }
}

/* ================= KONTAK ================= */

.contact-page-section {
    padding-top: 36px;
}

.contact-map-large {
    background: #ffffff;
    border: 1px solid #f3d7e5;
    border-radius: 30px;
    overflow: hidden;
    min-height: 520px;
    box-shadow: 0 18px 45px rgba(190, 24, 93, 0.10);
}

.contact-map-large iframe {
    width: 100%;
    height: 520px;
    border: 0;
    display: block;
}

.contact-map-empty {
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    background: #fff7fb;
}

.contact-info-bottom {
    margin-top: 22px;
    background: #ffffff;
    border: 1px solid #f3d7e5;
    border-radius: 26px;
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 12px 32px rgba(190, 24, 93, 0.08);
}

.contact-info-bottom span {
    display: block;
    color: #be185d;
    font-weight: 900;
    margin-bottom: 8px;
}

.contact-info-bottom h2 {
    margin: 0;
    color: #831843;
    font-size: 26px;
    line-height: 1.5;
}

.contact-bottom-actions {
    text-align: right;
    flex-shrink: 0;
}

.contact-bottom-actions p {
    margin: 0 0 12px;
    color: #374151;
    font-size: 18px;
    font-weight: 900;
}

.contact-email-line {
    margin-top: 14px;
    text-align: center;
    color: #6b7280;
    font-weight: 700;
}

@media (max-width: 900px) {
    .contact-map-large,
    .contact-map-large iframe,
    .contact-map-empty {
        min-height: 360px;
        height: 360px;
    }

    .contact-info-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-bottom-actions {
        text-align: left;
    }

    .contact-info-bottom h2 {
        font-size: 22px;
    }
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #be185d;
    min-width: 240px;
}

.site-logo {
    width: 54px !important;
    height: 54px !important;
    max-width: 54px !important;
    max-height: 54px !important;
    object-fit: contain;
    border-radius: 14px;
    display: block;
    flex-shrink: 0;
}

.site-brand-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: #fff7fb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.site-brand strong {
    display: block;
    font-size: 18px;
    color: #831843;
}

.site-brand small {
    display: block;
    font-size: 12px;
    color: #6b7280;
}

.hero-logo-box {
    width: 250px;
    height: 150px;
    margin: 0 auto 18px;
    border-radius: 30px;
    background: #fff7fb;
    border: 1px solid #f3d7e5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 14px;
}

.hero-logo-box span {
    font-size: 80px;
}

.ornament-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.ornament-title span {
    color: #be185d;
    font-size: 28px;
    line-height: 1;
}

.ornament-title::before,
.ornament-title::after {
    content: "";
    width: 70px;
    height: 1px;
    background: linear-gradient(to right, transparent, #be185d, transparent);
}

.pagination-wrapper {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 38px;
    flex-wrap: wrap;
}

.pagination-btn {
    width: 48px;
    height: 48px;

    border-radius: 16px;

    background: #ffffff;

    border: 1px solid #f3d7e5;

    color: #831843;

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 800;

    transition: 0.2s ease;
}

.pagination-btn:hover {
    transform: translateY(-3px);
    border-color: #be185d;
}

.pagination-btn.active {
    background: #be185d;
    color: #ffffff;
    border-color: #be185d;
}

img {
    max-width: 100%;
}

.product-image img,
.detail-main-image img,
.detail-thumb img,
.admin-product-thumb img {
    display: block;
}

/* ================= SEO AREA ================= */

.seo-area-hero {
    padding: 96px 0;
    background:
        radial-gradient(circle at top left, #fce7f3, transparent 35%),
        linear-gradient(135deg, #fff7fb, #ffffff);
    border-bottom: 1px solid #f3d7e5;
}

.seo-area-hero-inner {
    max-width: 760px;
}

.seo-area-hero h1 {
    font-size: 54px;
    color: #831843;
    margin: 14px 0;
}

.seo-area-hero p {
    font-size: 18px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 26px;
}

.seo-area-content {
    background: #ffffff;
    border: 1px solid #f3d7e5;
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 12px 32px rgba(190, 24, 93, 0.08);
}

.seo-area-content h2 {
    color: #831843;
    margin-top: 0;
}

.seo-area-text {
    color: #4b5563;
    line-height: 1.9;
    font-size: 17px;
}

.seo-area-cta {
    text-align: center;
    background: #ffffff;
    border: 1px solid #f3d7e5;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 18px 45px rgba(190, 24, 93, 0.10);
}

.seo-area-cta h2 {
    color: #831843;
    margin-top: 0;
}

.seo-area-cta p {
    color: #6b7280;
    margin-bottom: 22px;
}

@media (max-width: 900px) {
    .seo-area-hero h1 {
        font-size: 36px;
    }
}

/* ================= FOOTER AREA ================= */

.footer-area-links {
    margin: 0;
    padding: 0;

    list-style: none;

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 10px 24px;
}

.footer-area-links li::before {
    content: "❦";
    color: #f9a8d4;
    margin-right: 8px;
}

.footer-area-links a {
    color: #000000;
    opacity: 0.88;

    transition: 0.2s ease;

    font-size: 15px;
    line-height: 1.6;
}

.footer-area-links a:hover {
    opacity: 1;
    color: #ff0000;
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .footer-area-links {
        grid-template-columns: 1fr;
    }
}

/* ================= AREA PAGE ================= */

.area-page-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
}

.area-page-intro h2 {
    margin-top: 0;
    color: #831843;
}

.area-page-intro p {
    color: #6b7280;
    line-height: 1.8;
}

.area-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.area-page-card {
    display: block;
}

.area-page-card-inner {
    background: #ffffff;

    border: 1px solid #f3d7e5;

    border-radius: 28px;

    padding: 30px;

    height: 100%;

    transition: 0.25s ease;

    box-shadow: 0 14px 34px rgba(190, 24, 93, 0.08);
}

.area-page-card:hover .area-page-card-inner {
    transform: translateY(-6px);
    border-color: #be185d;
}

.area-page-card h3 {
    color: #831843;
    margin: 14px 0 12px;
}

.area-page-card p {
    color: #6b7280;
    line-height: 1.7;
}

.area-page-link {
    display: inline-flex;
    margin-top: 18px;
    color: #be185d;
    font-weight: 700;
}

@media (max-width: 900px) {

    .area-page-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .area-page-grid {
        grid-template-columns: 1fr;
    }

}

/* ================= BLOG ================= */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: #ffffff;
    border: 1px solid #f3d7e5;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(190, 24, 93, 0.08);
    transition: 0.25s ease;
    color: inherit;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(190, 24, 93, 0.14);
}

.blog-card-image {
    height: 230px;
    background: #fff7fb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-image span {
    font-size: 70px;
}

.blog-card-body {
    padding: 22px;
}

.blog-card-body h2 {
    margin: 8px 0 10px;
    color: #831843;
    font-size: 22px;
    line-height: 1.35;
}

.blog-card-body p {
    color: #6b7280;
    line-height: 1.7;
}

.blog-card-body small {
    color: #be185d;
    font-weight: 800;
}

/* DETAIL BLOG */

.blog-detail-hero {
    padding: 70px 0;
    background:
        radial-gradient(circle at top left, #fce7f3, transparent 35%),
        linear-gradient(135deg, #fff7fb, #ffffff);
    border-bottom: 1px solid #f3d7e5;
}

.blog-detail-hero-inner {
    max-width: 850px;
}

.blog-detail-hero h1 {
    color: #831843;
    font-size: 48px;
    line-height: 1.2;
    margin: 16px 0;
}

.blog-detail-hero p {
    color: #6b7280;
    margin-bottom: 22px;
}

.blog-detail-layout {
    display: grid;
    grid-template-columns: 1fr 330px;
    gap: 30px;
    align-items: start;
}

.blog-detail-article,
.blog-sidebar-card {
    background: #ffffff;
    border: 1px solid #f3d7e5;
    border-radius: 28px;
    box-shadow: 0 12px 32px rgba(190, 24, 93, 0.08);
}

.blog-detail-article {
    overflow: hidden;
}

.blog-detail-main-image {
    height: 430px;
    background: #fff7fb;
}

.blog-detail-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-content {
    padding: 32px;
    color: #374151;
    line-height: 1.9;
    font-size: 17px;
}

.blog-photo-grid {
    padding: 0 32px 32px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.blog-photo-grid img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 20px;
}

.blog-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: sticky;
    top: 100px;
}

.blog-sidebar-card {
    padding: 24px;
}

.blog-sidebar-card h3 {
    margin-top: 0;
    color: #831843;
}

.blog-sidebar-card p {
    color: #6b7280;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .blog-grid,
    .blog-detail-layout,
    .blog-photo-grid {
        grid-template-columns: 1fr;
    }

    .blog-detail-hero h1 {
        font-size: 34px;
    }

    .blog-detail-main-image {
        height: 320px;
    }

    .blog-detail-sidebar {
        position: static;
    }
}

/* ================= HOME BLOG ================= */

.home-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.home-blog-card {
    background: #ffffff;

    border: 1px solid #f3d7e5;

    border-radius: 28px;

    overflow: hidden;

    box-shadow: 0 12px 32px rgba(190, 24, 93, 0.08);

    transition: 0.25s ease;

    color: inherit;
}

.home-blog-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 18px 40px rgba(190, 24, 93, 0.14);
}

.home-blog-image {
    height: 240px;

    background: #fff7fb;

    display: flex;
    align-items: center;
    justify-content: center;
}

.home-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-blog-image span {
    font-size: 70px;
}

.home-blog-body {
    padding: 24px;
}

.home-blog-body h3 {
    margin: 12px 0;

    color: #831843;

    font-size: 22px;

    line-height: 1.35;
}

.home-blog-body p {
    color: #6b7280;

    line-height: 1.7;
}

.home-blog-link {
    display: inline-flex;

    margin-top: 18px;

    color: #be185d;

    font-weight: 700;
}

@media (max-width: 900px) {

    .home-blog-grid {
        grid-template-columns: 1fr;
    }

}

/* ================= HOME BLOG HEADING ================= */

.home-blog-heading {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 28px;
}

.home-blog-heading > div {
    text-align: center;
}

.home-blog-heading .modern-see-all-btn {
    position: absolute;
    right: 0;
    top: 50%;

    transform: translateY(-50%);
}

@media (max-width: 768px) {

    .home-blog-heading {
        display: block;
        text-align: center;
    }

    .home-blog-heading .modern-see-all-btn {
        position: static;
        transform: none;
        margin-top: 18px;
        display: inline-flex;
    }

}



/* ================= TRUST SECTION ================= */

.trust-section {
    padding: 18px 0 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 16px;
}

.trust-item {
    background: #ffffff;

    border: 1px solid #f5d7e5;

    border-radius: 20px;

    padding: 18px;

    display: flex;
    align-items: center;
    gap: 14px;

    transition: 0.22s ease;

    box-shadow: 0 8px 22px rgba(190, 24, 93, 0.05);
}

.trust-item:hover {
    transform: translateY(-3px);

    border-color: #ec4899;

    box-shadow: 0 14px 30px rgba(190, 24, 93, 0.10);
}

.trust-icon {
    min-width: 58px;
    width: 58px;
    height: 58px;

    border-radius: 16px;

    background: linear-gradient(135deg, #ec489a6d, #be185d4a);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 26px;

    color: #ffffff;

    box-shadow: 0 8px 18px rgba(236, 72, 153, 0.18);
}

.trust-item h3 {
    margin: 0 0 4px;

    color: #831843;

    font-size: 18px;

    line-height: 1.3;
}

.trust-item p {
    margin: 0;

    color: #6b7280;

    line-height: 1.5;

    font-size: 14px;
}

@media (max-width: 1100px) {

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 700px) {

    .trust-grid {
        grid-template-columns: 1fr;
    }

}

/* ================= CARA PESAN ================= */

.cara-pesan-section {
    background:
        radial-gradient(circle at top left, #fdf2f8, transparent 30%),
        linear-gradient(180deg, #ffffff, #fff8fb);
}

.cara-pesan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.cara-card {
    background: #ffffff;

    border: 1px solid #f5d7e5;

    border-radius: 22px;

    padding: 24px 20px;

    text-align: center;

    transition: 0.22s ease;

    box-shadow: 0 10px 24px rgba(190, 24, 93, 0.05);
}

.cara-card:hover {
    transform: translateY(-4px);

    box-shadow: 0 16px 34px rgba(190, 24, 93, 0.10);

    border-color: #ec4899;
}

.cara-icon {
    width: 58px;
    height: 58px;

    margin: 0 auto 16px;

    border-radius: 16px;

    background: linear-gradient(135deg, #ec489a46, #be185d77);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 26px;

    color: #ffffff;

    box-shadow: 0 8px 18px rgba(236, 72, 153, 0.18);
}

.cara-card h3 {
    margin-bottom: 10px;

    color: #831843;

    font-size: 21px;

    line-height: 1.35;
}

.cara-card p {
    color: #6b7280;

    line-height: 1.7;

    font-size: 15px;
}

/* Smooth Scroll */

html {
    scroll-behavior: smooth;
}

@media (max-width: 900px) {

    .cara-pesan-grid {
        grid-template-columns: 1fr;
    }

}

/* ================= FAQ ACCORDION ================= */

.faq-section {
    padding-top: 34px;
}

.faq-accordion {
    max-width: 900px;
}

.faq-accordion-item {
    background: #ffffff;
    border: 1px solid #f3d7e5;
    border-radius: 20px;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(190, 24, 93, 0.06);
}

.faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 20px 22px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;

    text-align: left;
    color: #831843;
    font-size: 17px;
    font-weight: 800;
}

.faq-question b {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fce7f3;
    color: #be185d;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    flex-shrink: 0;
}

.faq-answer {
    display: none;
    padding: 0 22px 20px;
}

.faq-answer p {
    margin: 0;
    color: #4b5563;
    line-height: 1.8;
}

.faq-accordion-item.active {
    border-color: #ec4899;
}

.faq-accordion-item.active .faq-answer {
    display: block;
}

.faq-accordion-item.active .faq-question b {
    background: #be185d;
    color: #ffffff;
}

.faq-accordion-item.active .faq-question b::before {
    content: "−";
}

.faq-accordion-item.active .faq-question b {
    font-size: 0;
}

.faq-accordion-item.active .faq-question b::before {
    font-size: 20px;
}

/* ================= CUSTOM ORDER CTA ================= */

.custom-order-section {
    padding-top: 10px;
}

.custom-order-box {
    background:
        linear-gradient(
            135deg,
            rgba(190,24,93,0.95),
            rgba(236,72,153,0.92)
        );

    border-radius: 34px;

    padding: 42px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    color: #ffffff;

    position: relative;

    overflow: hidden;

    box-shadow: 0 20px 50px rgba(190, 24, 93, 0.18);
}

.custom-order-box::before {
    content: "";

    position: absolute;

    top: -100px;
    right: -100px;

    width: 260px;
    height: 260px;

    border-radius: 50%;

    background: rgba(255,255,255,0.08);
}

.custom-order-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.custom-order-content h2 {
    margin: 14px 0 16px;

    font-size: 42px;

    line-height: 1.2;

    color: #ffffff;
}

.custom-order-content p {
    margin: 0;

    font-size: 18px;

    line-height: 1.9;

    color: rgba(255,255,255,0.92);
}

.custom-order-action {
    position: relative;
    z-index: 2;
}

.custom-order-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 18px 30px;

    border-radius: 999px;

    background: #ffffff;

    color: #be185d;

    font-weight: 800;

    font-size: 17px;

    transition: 0.25s ease;

    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.custom-order-btn:hover {
    transform: translateY(-4px) scale(1.02);

    background: #fff1f7;
}

@media (max-width: 900px) {

    .custom-order-box {
        padding: 32px 26px;

        flex-direction: column;
        align-items: flex-start;
    }

    .custom-order-content h2 {
        font-size: 30px;
    }

}

/* ================= RELATED HEADING ================= */

.related-heading {
    text-align: center;
    margin-bottom: 30px;
}

.related-heading p {
    margin-top: 10px;
    color: #6b7280;
}

.related-heading {
    text-align: center;
    margin-bottom: 30px;
}

.related-heading .ornament-title {
    justify-content: center;
}

.related-heading p {
    margin-top: 10px;
    color: #6b7280;

    text-align: center;
}

/* ================= RELATED BLOG ================= */

.related-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.related-blog-grid .blog-card {
    border-radius: 22px;
}

.related-blog-grid .blog-card-image {
    height: 180px;
}

.related-blog-grid .blog-card-body {
    padding: 18px;
}

.related-blog-grid .blog-card-body h2 {
    font-size: 19px;

    margin: 10px 0 8px;

    line-height: 1.4;
}

.related-blog-grid .blog-card-body p {
    font-size: 14px;

    line-height: 1.7;
}

@media (max-width: 900px) {

    .related-blog-grid {
        grid-template-columns: 1fr;
    }

}

.auto-link {
    color: #be185d;
    font-weight: 800;
    border-bottom: 1px dashed #f9a8d4;
}

.auto-link:hover {
    color: #831843;
    border-bottom-color: #831843;
}

/* ================= BREADCRUMB ================= */

.breadcrumb {
    padding: 18px 0 0;
}

.breadcrumb-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #6b7280;
}

.breadcrumb-inner a {
    color: #be185d;
    font-weight: 700;
}

.breadcrumb-inner span {
    color: #9ca3af;
}

.breadcrumb-current {
    color: #374151;
    font-weight: 700;
}

/* ================= FOOTER PARTNER ================= */

.footer-partner-links {
    margin: 0;
    padding-left: 18px;

    display: flex;
    flex-direction: column;

    gap: 10px;
}

.footer-partner-links li {
    color: rgba(0, 0, 0, 0.72);
}

.footer-partner-links a {
    color: rgba(0, 0, 0, 0.82);

    transition: 0.22s ease;
}

.footer-partner-links a:hover {
    color: #ff0000;

    padding-left: 4px;
}

.footer-empty {
    color: rgba(255,255,255,0.72);
}

/* ================= AREA SECTION ================= */

.area-section {
    padding-top: 10px;
}

.area-chip-wrap {
    display: flex;
    flex-wrap: wrap;

    justify-content: center;

    gap: 14px;
}

.area-chip {
    height: 50px;

    padding: 0 22px;

    border-radius: 999px;

    background: #ffffff;

    border: 1px solid #f3d7e5;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #831843;

    font-weight: 700;

    transition: 0.22s ease;

    box-shadow: 0 8px 20px rgba(190, 24, 93, 0.05);
}

.area-chip span {
    font-size: 18px;
}

.area-chip:hover {
    transform: translateY(-3px);

    border-color: #ec4899;

    background: #fff7fb;

    box-shadow: 0 14px 30px rgba(190, 24, 93, 0.10);
}

.area-more-wrap {
    margin-top: 30px;

    text-align: center;
}

/* ================= PROMO MODAL ================= */

.promo-modal-overlay {
    position: fixed;
    inset: 0;

    z-index: 999999;

    background: rgba(15, 23, 42, 0.55);

    backdrop-filter: blur(8px);

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 20px;
}

.promo-modal-box {
    width: 100%;

    background: transparent;

    border-radius: 28px;

    overflow: hidden;

    position: relative;

    box-shadow: 0 30px 80px rgba(0,0,0,0.25);

    animation: promoPop 0.28s ease;
}

/* ================= TYPE ================= */

.promo-square {
    max-width: 420px;
}

.promo-landscape {
    max-width: 720px;
}

.promo-portrait {
    max-width: 420px;
}

/* ================= IMAGE ================= */

.promo-modal-image-link {
    display: block;

    background: #ffffff;
}

.promo-modal-image {
    width: 100%;

    display: block;

    object-fit: contain;

    background: #ffffff;
}

/* square */

.promo-square .promo-modal-image {
    aspect-ratio: 1 / 1;
}

/* landscape */

.promo-landscape .promo-modal-image {
    aspect-ratio: 16 / 9;
}

/* portrait */

.promo-portrait .promo-modal-image {
    aspect-ratio: 4 / 5;
}

/* ================= CLOSE BUTTON ================= */

.promo-modal-close {
    position: absolute;

    top: 14px;
    right: 14px;

    width: 42px;
    height: 42px;

    border: none;

    border-radius: 50%;

    background: rgba(255,255,255,0.94);

    color: #831843;

    font-size: 28px;

    cursor: pointer;

    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 8px 20px rgba(0,0,0,0.16);

    transition: 0.22s ease;
}

.promo-modal-close:hover {
    transform: scale(1.08);

    background: #ffffff;
}

/* ================= ANIMATION ================= */

@keyframes promoPop {

    from {
        opacity: 0;
        transform: scale(0.94);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }

}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .promo-landscape {
        max-width: 95%;
    }

    .promo-square,
    .promo-portrait {
        max-width: 360px;
    }

}

@media (max-width: 480px) {

    .promo-modal-overlay {
        padding: 14px;
    }

    .promo-square,
    .promo-portrait {
        max-width: 100%;
    }

    .promo-modal-close {
        width: 38px;
        height: 38px;

        font-size: 24px;
    }

}

.product-image {
    position: relative;
}

.discount-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;

    background: #be185d;
    color: #ffffff;

    padding: 7px 12px;
    border-radius: 999px;

    font-size: 13px;
    font-weight: 900;

    box-shadow: 0 8px 20px rgba(190, 24, 93, 0.25);
}

.stock-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;

    padding: 7px 12px;
    border-radius: 999px;

    font-size: 12px;
    font-weight: 900;

    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.stock-badge.ready {
    color: #15803d;
}

.stock-badge.habis {
    color: #dc2626;
}

.product-body {
    padding: 18px;
}

.product-body h3 {
    margin-bottom: 10px;
}

.price {
    margin-bottom: 14px !important;
}

.btn-order {
    width: 100%;
}

/* ================= PRODUCT CARD FINAL ================= */

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    align-items: stretch;
}

.product-card-link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.product-card {
    height: 100%;
    display: flex;
    flex-direction: column;

    background: #ffffff;

    border: 1px solid #ececec;

    border-radius: 10px;

    overflow: visible;

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.product-image {
    position: relative;

    width: 100%;
    height: 300px;


    background: #f8f8f8;

    border-radius: 10px 10px 0 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.product-image span {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    background: #fff7fb;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.discount-badge,
.stock-badge {
    position: absolute;
    top: -8px;
    z-index: 5;
    min-width: 54px;
    height: 54px;
    padding: 0 8px;
    border-radius: 999px;
    background: #2c02ff;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.1;
}

.discount-badge {
    left: -8px;
}

.stock-badge {
    right: -8px;
}

.stock-badge.ready {
    background: #bc0083;
    color: #ffffff;
}

.stock-badge.habis {
    background: #991b1b;
    color: #ffffff;
}

.product-body {
    flex: 1;

    display: flex;
    flex-direction: column;

    padding: 14px 12px 8px;
}

.product-category-badge {
    display: none;
}

.product-body h3 {
    margin: 0 0 6px;

    color: #111827;

    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;

    text-align: center;
}

.price,
.product-price {
    margin: 0 !important;
}

.product-bottom {
    margin-top: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;
    flex-wrap: wrap;

    text-align: center;
}

.product-normal-price {
    color: #555555;
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
}

.btn-detail,
.btn-order {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 999px;
    background: #026144;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
}

.product-card:hover {
    transform: translateY(-4px) scale(1.015);

    border-color: #ff00aa;

    box-shadow:
        0 10px 24px rgba(0,0,0,0.08);
}

.product-card:hover .product-image img {
    transform: none;
}

@media (max-width: 1100px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-image {
        height: 260px;
    }
}

@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 280px;
    }
}

.florist-indonesia-wrap {
    margin-top: 34px;
}

.province-block {
    background: #ffffff;
    border: 1px solid rgba(120, 86, 55, 0.14);
    border-radius: 22px;
    padding: 28px;
    margin-bottom: 26px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.045);
}

.province-heading {
    border-bottom: 1px solid rgba(120, 86, 55, 0.14);
    margin-bottom: 22px;
    padding-bottom: 14px;
}

.province-heading h2 {
    margin: 0;
    font-size: 24px;
    color: #4b2f22;
    letter-spacing: 0.3px;
}

.city-link-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px 18px;
}

.city-link-item {
    display: block;
    padding: 12px 14px;
    border-radius: 14px;
    background: #fffaf5;
    border: 1px solid rgba(120, 86, 55, 0.12);
    color: #5a3828;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s ease;
}

.city-link-item:hover {
    background: #f3e2d2;
    color: #3a2016;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .city-link-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .province-block {
        padding: 22px;
        border-radius: 18px;
    }

    .city-link-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .province-heading h2 {
        font-size: 21px;
    }

    .city-link-item {
        padding: 11px 12px;
        font-size: 14px;
    }
}

@media (max-width: 420px) {
    .city-link-grid {
        grid-template-columns: 1fr;
    }
}

.province-banner {
    margin-bottom: 22px;
    border-radius: 18px;
    overflow: hidden;
}

.province-banner img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.province-main-banner {
    margin-bottom: 28px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.08);
}

.province-main-banner img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.city-link-item small {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    font-weight: 500;
    opacity: 0.75;
}

@media (max-width: 768px) {
    .province-main-banner img {
        height: 240px;
    }
}

.province-top-links {
    margin-top: 15px;
    text-align: center;
    line-height: 2;
}

.province-top-links a {
    color: #5a3828;
    text-decoration: none;
    font-weight: 600;
    margin: 0 10px;
}

.province-top-links a:hover {
    text-decoration: underline;
}

.image-modal{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.92);
    z-index:99999;
}

.image-modal-wrapper{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    width:95%;
}

.image-modal-content{
    max-width:90%;
    max-height:75vh;
    border-radius:12px;
    display:block;
    margin:0 auto;
}

.modal-buy-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;

    margin-top:20px;
    padding:12px 28px;

    background:#25D366;
    color:#fff;

    text-decoration:none;
    font-weight:700;
    font-size:15px;

    border-radius:999px;

    transition:.25s;
}

.modal-buy-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(37,211,102,.35);
}

.modal-buy-btn i{
    font-size:18px;
}

.floating-action-stack{
    position:fixed;
    right:22px;
    bottom:22px;
    z-index:9999;

    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:10px;
}

.floating-action-stack .floating-wa{
    position:static;
}

.floating-moment-btn{
    display:flex;
    align-items:center;
    gap:8px;

    padding:10px 16px;
    background:#ffffff;
    color:#2b2b2b;

    border-radius:999px;
    text-decoration:none;
    font-size:14px;
    font-weight:700;

    box-shadow:0 8px 24px rgba(0,0,0,.16);
    border:1px solid rgba(0,0,0,.08);

    transition:.25s;
}

.floating-moment-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 30px rgba(0,0,0,.22);
}

.floating-moment-icon{
    font-size:18px;
    line-height:1;
}

@media(max-width:600px){
    .floating-action-stack{
        right:16px;
        bottom:16px;
    }

    .floating-moment-btn{
        font-size:13px;
        padding:9px 13px;
    }
}

.image-modal-close{
    position:fixed;
    top:18px;
    right:24px;
    z-index:100001;

    width:44px;
    height:44px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(0,0,0,.55);
    color:#fff;

    border-radius:50%;
    font-size:34px;
    line-height:1;
    font-weight:400;

    cursor:pointer;
}

.kategori-page-hero{
    min-height:320px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.kategori-page-hero h1{
    color:#831843;
    text-shadow:0 4px 18px rgba(255,255,255,.95);
}

.kategori-page-hero p{
    max-width:760px;
    margin-left:auto;
    margin-right:auto;
    color:#374151;
    font-weight:600;
    text-shadow:0 3px 12px rgba(255,255,255,.95);
}


/* ================= MAF KATALOG HERO CUSTOM ================= */

.maf-katalog-hero{
    min-height:230px;
    padding:72px 0 0;

    display:flex;
    align-items:flex-end;

    text-align:center;

    border-bottom:1px solid #f3d7e5;

    position:relative;
    overflow:visible;
}

.maf-katalog-hero-inner{
    width:min(1180px, 92%);
    margin:0 auto;
}

.maf-katalog-hero-title{
    margin:0 0 10px;

    color:#831843;

    font-size:54px;
    font-weight:900;

    text-shadow:0 4px 18px rgba(255,255,255,.95);
}

.maf-katalog-hero-subtitle{
    margin:0 0 20px;

    color:#374151;

    font-size:17px;
    font-weight:700;

    text-shadow:0 3px 12px rgba(255,255,255,.95);
}

.maf-katalog-category-label{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:7px;

    margin-bottom:0;

    background:#ffffff;
    color:#374151;

    padding:13px 30px;

    border-radius:18px 18px 0 0;

    font-size:16px;
    font-weight:800;

    box-shadow:0 -8px 26px rgba(0,0,0,.08);
    border:1px solid rgba(243,215,229,.9);
    border-bottom:0;
}

.maf-katalog-category-label strong{
    color:#be185d;
}

.maf-katalog-search-box{
    width:min(980px, 100%);
    margin:0 auto;

    transform:translateY(50%);
}

.maf-katalog-search-form{
    display:grid;
    grid-template-columns:1fr 260px auto auto;
    gap:10px;

    background:#ffffff;

    border:1px solid #f3d7e5;
    border-radius:24px;

    padding:14px;

    box-shadow:0 18px 40px rgba(190,24,93,.14);
}

.maf-katalog-search-form input,
.maf-katalog-search-form select{
    width:100%;

    border:1px solid #f0bad3;
    border-radius:16px;

    padding:14px 17px;

    outline:none;
    background:#ffffff;

    font-size:14px;
}

.maf-katalog-search-form button{
    border:0;
    border-radius:16px;

    background:#be185d;
    color:#ffffff;

    padding:0 26px;

    font-weight:900;
    cursor:pointer;
}

.maf-katalog-reset-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    border-radius:16px;

    background:#ffffff;
    color:#be185d;

    border:1px solid #f0bad3;

    padding:0 22px;

    font-weight:900;
}

.maf-katalog-content{
    padding-top:72px;
}

.maf-katalog-tabs-wrap{
    margin-bottom:18px;
}

.maf-katalog-tabs{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.maf-katalog-tabs a{
    display:inline-flex;
    align-items:center;

    border-radius:999px;

    padding:11px 18px;

    background:#ffffff;
    border:1px solid #f3d7e5;

    color:#831843;

    font-weight:900;

    box-shadow:0 8px 20px rgba(190,24,93,.05);
}

.maf-katalog-tabs a.active,
.maf-katalog-tabs a:hover{
    background:#be185d;
    color:#ffffff;
    border-color:#be185d;
}

.maf-katalog-result-text{
    margin-bottom:14px;

    color:#6b7280;

    font-size:15px;
}

.maf-katalog-result-text strong{
    color:#374151;
}

/* MOBILE */
@media(max-width:900px){
    .maf-katalog-hero{
        min-height:520px;
        padding-top:54px;
    }

    .maf-katalog-hero-title{
        font-size:38px;
    }

    .maf-katalog-search-box{
        transform:translateY(42%);
    }

    .maf-katalog-search-form{
        grid-template-columns:1fr;
    }

    .maf-katalog-search-form button,
    .maf-katalog-reset-btn{
        min-height:48px;
    }

    .maf-katalog-content{
        padding-top:115px;
    }
}

/* ================= MAF HOME PREMIUM HERO ================= */

.maf-home-katalog-style-hero{
    min-height:auto;
    padding:0 0 28px;
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;
    background-size:cover !important;
    background-position:center !important;
    background-repeat:no-repeat !important;
}

.maf-home-katalog-style-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at top, rgba(255,255,255,.92), rgba(255,247,251,.70) 45%, rgba(255,255,255,.52)),
        linear-gradient(135deg, rgba(255,255,255,.72), rgba(252,231,243,.54));
    backdrop-filter:blur(1px);
}

.maf-home-katalog-style-inner{
    position:relative;
    z-index:2;
    text-align:center;
}

.maf-home-katalog-brand{
    max-width:880px;
    margin:0 auto;
}

.maf-home-katalog-brand img{
    width:150px;
    max-height:96px;
    object-fit:contain;
    display:block;
    margin:0 auto 18px;
    padding:12px;
    background:rgba(255,255,255,.72);
    border:1px solid rgba(255,255,255,.9);
    border-radius:26px;
    box-shadow:0 18px 50px rgba(131,24,67,.12);
}

.maf-home-katalog-brand span{
    display:inline-flex;
    padding:9px 18px;
    border-radius:999px;
    background:rgba(255,255,255,.72);
    color:#be185d;
    border:1px solid #f3d7e5;
    font-size:13px;
    font-weight:900;
    letter-spacing:.3px;
    box-shadow:0 10px 28px rgba(190,24,93,.08);
}

.maf-home-katalog-brand h1{
    margin:14px 0 12px;
    font-family:'Great Vibes', cursive;
    font-size:78px;
    font-weight:400;
    line-height:1;
    color:#831843;
    text-shadow:0 6px 24px rgba(255,255,255,.95);
}

.maf-home-katalog-desc{
    max-width:760px;

    margin:18px auto 0;

    color:#4b5563;

    font-size:18px;
    line-height:1.9;

    font-weight:400;

    letter-spacing:.2px;
}

.maf-home-katalog-desc strong{
    color:#831843;
}

@media(max-width:900px){
    .maf-home-katalog-desc{
        font-size:16px;
        line-height:1.8;
    }
}

.maf-home-katalog-trust{
    max-width:860px;
    margin:26px auto 0;
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:12px;
}

.maf-home-katalog-trust div{
    background:rgba(255,255,255,.72);
    border:1px solid rgba(255,255,255,.85);
    border-radius:999px;
    padding:12px 14px;
    box-shadow:0 12px 34px rgba(131,24,67,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    backdrop-filter:blur(10px);
}

.maf-home-katalog-trust span{
    width:34px;
    height:34px;
    border-radius:50%;
    background:#fce7f3;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:17px;
}

.maf-home-katalog-trust strong{
    color:#831843;
    font-size:13px;
    font-weight:900;
    white-space:nowrap;
}

.maf-home-katalog-search{
    max-width:840px;
    margin:18px auto 0;
}

.maf-home-katalog-search form{
    display:grid;
    grid-template-columns:1fr auto;
    gap:10px;
    padding:10px;
    background:rgba(255,255,255,.86);
    border:1px solid rgba(255,255,255,.95);
    border-radius:999px;
    box-shadow:0 22px 55px rgba(131,24,67,.14);
    backdrop-filter:blur(12px);
}

.maf-home-katalog-search input{
    width:100%;
    border:0;
    border-radius:999px;
    padding:16px 22px;
    outline:none;
    background:#ffffff;
    color:#374151;
    font-size:15px;
}

.maf-home-katalog-search button{
    border:0;
    border-radius:999px;
    background:linear-gradient(135deg, #be185d, #ec4899);
    color:#ffffff;
    padding:0 34px;
    font-weight:900;
    cursor:pointer;
    box-shadow:0 12px 28px rgba(190,24,93,.24);
}

.maf-home-katalog-actions{
    margin-top:20px;
    display:flex;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
}


.maf-home-katalog-primary,
.maf-home-katalog-secondary{
    min-height:48px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:0 26px;
    border-radius:999px;
    font-size:15px;
    font-weight:900;
    transition:.22s ease;
}

.maf-home-katalog-primary{
    background:#831843;
    color:#ffffff;
    box-shadow:0 14px 34px rgba(131,24,67,.22);
}

.maf-home-katalog-secondary{
    background:rgba(255,255,255,.78);
    color:#831843;
    border:1px solid #f3d7e5;
}

.maf-home-katalog-primary:hover,
.maf-home-katalog-secondary:hover{
    transform:translateY(-3px);
}

@media(max-width:900px){
    .maf-home-katalog-style-hero{
        min-height:auto;
        padding:46px 0 58px;
    }

    .maf-home-katalog-brand h1{
        font-size:52px;
    }

    .maf-home-katalog-trust{
        grid-template-columns:repeat(2, 1fr);
    }

    .maf-home-katalog-search form{
        grid-template-columns:1fr;
        border-radius:28px;
    }

    .maf-home-katalog-search button{
        min-height:48px;
    }
}

@media(max-width:520px){
    .maf-home-katalog-trust{
        grid-template-columns:1fr;
    }

    .maf-home-katalog-brand img{
        width:135px;
    }
}