.custom-store-header {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
    margin-bottom: 20px;
}

.custom-store-banner {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.custom-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom-store-info-wrapper {
    padding: 20px 24px;
}

.custom-store-main-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.custom-store-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #f5f5f5;
    flex-shrink: 0;
}

.custom-store-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom-store-details {
    flex: 1;
}

.custom-store-name {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin: 0 0 8px 0;
}

.custom-store-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #757575;
}

.custom-meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.custom-meta-divider {
    color: #d0d0d0;
}

.custom-meta-label {
    color: #757575;
}

.custom-meta-value {
    color: #222;
    font-weight: 500;
}

.custom-location-text {
    color: #757575;
}

.custom-store-actions {
    display: flex;
    gap: 12px;
}

.custom-btn-chat {
    padding: 8px 20px;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: center;
    gap: 6px;
    border: none;
}

.custom-policy-item p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}


/* Reviews Section */

.custom-reviews-section {
    padding: 30px;
}

.custom-reviews-title {
    font-size: 22px;
    font-weight: 600;
    color: #222;
    margin: 0 0 20px 0;
}

.custom-reviews-empty {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.custom-reviews-empty p {
    font-size: 16px;
    margin: 16px 0 8px 0;
}

.custom-reviews-empty small {
    font-size: 14px;
    color: #bbb;
}

.custom-recommend-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* PENTING */
    margin-top: 16px;
}

.custom-product-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* PENTING */
    margin-top: 16px;
}

.custom-product-kategori-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* PENTING */
    margin-top: 16px;
}

.custom-recommend-more i {
    font-size: 12px;
}

.custom-product-more i {
    font-size: 12px;
}

.custom-product-kategori-more i {
    font-size: 12px;
}


/* Responsive */

@media (max-width: 1024px) {
    .custom-section-wrapper {
        grid-template-columns: 200px 1fr;
    }
    .custom-voucher-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .custom-section-wrapper {
        grid-template-columns: 1fr;
    }
    .custom-sidebar {
        display: none;
    }
    .custom-store-main-info {
        flex-direction: column;
        align-items: flex-start;
    }
    .custom-store-actions {
        width: 100%;
    }
    .custom-btn-chat {
        flex: 1;
        justify-content: center;
    }
    .custom-promo-carousel {
        height: 200px;
    }
    .custom-voucher-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .custom-store-banner {
        height: 140px;
    }
    .custom-store-info-wrapper {
        padding: 16px;
    }
    .custom-store-avatar {
        width: 60px;
        height: 60px;
    }
    .custom-store-name {
        font-size: 18px;
    }
    .custom-store-meta {
        flex-wrap: wrap;
        font-size: 12px;
    }
    .custom-promo-carousel {
        height: 160px;
    }
    .custom-voucher-section,
    .custom-recommend-section,
    .custom-product-section,
    .custom-product-kategori-section {
        padding: 12px;
    }
}


/* banner box */

.custom-banner-box-section {
    background-color: #f9f9f9;
    margin-bottom: 20px;
}

.custom-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 0;
}

.custom-section-title i {
    font-size: 28px;
    color: #667eea;
}


/* Main Banner Grid Container */

.custom-banner-grid {
    display: grid;
    gap: 20px;
    width: 100%;
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.custom-banner-grid--full {
    grid-template-columns: repeat(1, 1fr);
}

.custom-banner-grid--full .custom-banner-box__inner {
    padding-bottom: 33.33%;
}

@media (max-width: 1440px) {
    .custom-banner-grid--full .custom-banner-box__inner {
        padding-bottom: 35%;
    }
}

@media (max-width: 1024px) {
    .custom-banner-grid--full .custom-banner-box__inner {
        padding-bottom: 40%;
    }
}

@media (max-width: 768px) {
    .custom-banner-grid--full .custom-banner-box__inner {
        padding-bottom: 45%;
    }
}

@media (max-width: 576px) {
    .custom-banner-grid--full .custom-banner-box__inner {
        padding-bottom: 50%;
    }
}

.custom-banner-grid--two {
    grid-template-columns: repeat(2, 1fr);
}

.custom-banner-grid--two .custom-banner-box__inner {
    padding-bottom: 100%;
}

@media (max-width: 768px) {
    .custom-banner-grid--two {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .custom-banner-grid--two {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.custom-banner-grid--three {
    grid-template-columns: repeat(3, 1fr);
}

.custom-banner-grid--three .custom-banner-box__inner {
    padding-bottom: 100%;
}

@media (max-width: 1024px) {
    .custom-banner-grid--three {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .custom-banner-grid--three {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .custom-banner-grid--three {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.custom-banner-grid--four {
    grid-template-columns: repeat(4, 1fr);
}

.custom-banner-grid--four .custom-banner-box__inner {
    padding-bottom: 100%;
}

@media (max-width: 1440px) {
    .custom-banner-grid--four {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .custom-banner-grid--four {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .custom-banner-grid--four {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .custom-banner-grid--four {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.custom-banner-box {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    animation: slideUp 0.6s ease-out;
}

.custom-banner-box:nth-child(1) {
    animation-delay: 0.1s;
}

.custom-banner-box:nth-child(2) {
    animation-delay: 0.2s;
}

.custom-banner-box:nth-child(3) {
    animation-delay: 0.3s;
}

.custom-banner-box:nth-child(4) {
    animation-delay: 0.4s;
}

.custom-banner-box:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

.custom-banner-box:active {
    transform: scale(0.98);
}

.custom-banner-box__inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.custom-banner-box__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-banner-box:hover .custom-banner-box__image {
    transform: scale(1.15);
}

@media (max-width: 1024px) {
    .custom-banner-box-section {
        padding: 30px 0;
    }
}

@media (max-width: 768px) {
    .custom-banner-box-section {
        padding: 25px 0;
    }
    .custom-section-title {
        font-size: 18px;
        margin-bottom: 20px;
        gap: 8px;
    }
    .custom-section-title i {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .custom-banner-box-section {
        padding: 20px 0;
    }
    .custom-banner-box {
        border-radius: 8px;
    }
    .custom-banner-box:hover {
        transform: translateY(-4px);
    }
    .custom-section-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    .custom-section-title i {
        font-size: 20px;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* text */

.custom-text-section {
    margin-top: 30px;
    margin-bottom: 30px;
}

.custom-text-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.custom-text-description {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.custom-promo-section {
    margin-bottom: 20px;
}
