
/* =============================================
   BERANDA STYLES - Scoped to #brd-jst
   ============================================= */

/* === HERO SECTION === */
#brd-jst .hero-section {
    background: linear-gradient(135deg, #fff5f8 0%, #ffffff 50%, #fef5f8 100%);
    position: relative;
    overflow: hidden;
    padding: 60px 0 80px;
    margin-top: 152px; /* Fix untuk navbar fixed */
}

@media (max-width: 992px) {
    #brd-jst .hero-section {
        margin-top: 60px; /* Mobile navbar height */
        padding: 40px 0 60px;
    }
}

#brd-jst .hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(229, 38, 87, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-bg 8s ease-in-out infinite;
}

#brd-jst .hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 222, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-bg 6s ease-in-out infinite reverse;
}

@keyframes pulse-bg {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

#brd-jst .hero-content {
    position: relative;
    z-index: 2;
}

#brd-jst .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #e52657, #ff6b8a);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(229, 38, 87, 0.3);
    animation: float-badge 3s ease-in-out infinite;
}

@keyframes float-badge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

#brd-jst .hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #e52657;
    margin-bottom: 20px;
    line-height: 1.2;
}

#brd-jst .hero-title span {
    background: linear-gradient(135deg, #e52657, #ff6b8a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#brd-jst .hero-desc {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.7;
}

#brd-jst .hero-image {
    position: relative;
    z-index: 2;
}

#brd-jst .hero-image img {
    filter: drop-shadow(0 20px 40px rgba(229, 38, 87, 0.2));
    animation: float-img 4s ease-in-out infinite;
}

@keyframes float-img {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Search/Tracking Form */
#brd-jst .tracking-form {
    background: white;
    border-radius: 60px;
    padding: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

#brd-jst .tracking-form:focus-within {
    border-color: #e52657;
    box-shadow: 0 10px 40px rgba(229, 38, 87, 0.15);
}

#brd-jst .tracking-input {
    border: none;
    padding: 15px 25px;
    font-size: 16px;
    background: transparent;
    flex: 1;
}

#brd-jst .tracking-input:focus {
    outline: none;
    box-shadow: none;
}

#brd-jst .tracking-input::placeholder {
    color: #adb5bd;
}

#brd-jst .tracking-btn {
    background: linear-gradient(135deg, #e52657, #ff6b8a);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

#brd-jst .tracking-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 38, 87, 0.4);
    background: linear-gradient(135deg, #d91e4c, #e52657);
}

/* === FEATURES SECTION === */
#brd-jst .features-section {
    padding: 60px 0;
    background: white;
}

#brd-jst .feature-card {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

#brd-jst .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e52657, #ff9eb7);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

#brd-jst .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(229, 38, 87, 0.15);
    border-color: transparent;
}

#brd-jst .feature-card:hover::before {
    transform: scaleX(1);
}

#brd-jst .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e52657, #ff6b8a);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    transition: all 0.4s ease;
}

#brd-jst .feature-icon::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #ff6b8a, #e52657);
}

#brd-jst .feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(229, 38, 87, 0.3);
}

#brd-jst .feature-icon i {
    font-size: 32px;
    color: white;
}

#brd-jst .feature-title {
    font-size: 16px;
    font-weight: 700;
    color: #e52657;
    margin-bottom: 8px;
}

#brd-jst .feature-desc {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* === SECTION HEADER - IMPROVED === */
#brd-jst .section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

#brd-jst .section-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(229, 38, 87, 0.3) 20%, rgba(229, 38, 87, 0.3) 80%, transparent 100%);
    transform: translateY(-50%);
    z-index: 1;
}

#brd-jst .section-title-wrapper {
    display: inline-block;
    background: linear-gradient(180deg, #fff5f8 0%, #ffffff 100%);
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

#brd-jst .section-subtitle {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ff6b8a;
    margin-bottom: 8px;
}

#brd-jst .section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #e52657;
    margin: 0;
    position: relative;
}

#brd-jst .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #e52657, #ff9eb7);
    border-radius: 2px;
    margin: 15px auto 0;
}

/* === PRODUCTS CAROUSEL === */
#brd-jst .products-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #fff5f8 0%, #ffffff 100%);
}

#brd-jst .products-section .section-title-wrapper {
    background: linear-gradient(180deg, #fff5f8 0%, #fff5f8 100%);
}

/* Carousel Navigation - IMPROVED */
#brd-jst .carousel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

#brd-jst .carousel-nav {
    display: flex;
    gap: 12px;
}

#brd-jst .carousel-nav-btn {
    width: 48px;
    height: 48px;
    background: white;
    border: 2px solid #e52657;
    border-radius: 14px;
    color: #e52657;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

#brd-jst .carousel-nav-btn:hover {
    background: #e52657;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(229, 38, 87, 0.3);
}

#brd-jst .carousel-nav-btn:active {
    transform: translateY(-1px);
}

/* Product Cards */
#brd-jst .produk-card {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

#brd-jst .produk-card:hover {
    border-color: #e52657;
    box-shadow: 0 15px 40px rgba(229, 38, 87, 0.15);
    transform: translateY(-8px);
}

#brd-jst .produk-img-wrapper {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

#brd-jst .produk-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f8f9fa;
}

#brd-jst .produk-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

#brd-jst .produk-card:hover .produk-img img {
    transform: scale(1.1);
}

#brd-jst .stock-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 5;
}

#brd-jst .stock-tersedia {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
}

#brd-jst .stock-terbatas {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: white;
}

#brd-jst .stock-habis {
    background: linear-gradient(135deg, #ef4444, #f87171);
    color: white;
}

#brd-jst .produk-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

#brd-jst .category-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 8px;
    background: linear-gradient(135deg, #e52657, #ff6b8a);
    color: white;
    margin-bottom: 12px;
    width: fit-content;
    flex-shrink: 0;
}

/* FIXED: Product name - 1 line with ellipsis */
#brd-jst .produk-name {
    font-size: 15px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 0;
}

#brd-jst .produk-desc {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
    min-height: 39px;
    flex-shrink: 0;
}

#brd-jst .produk-price {
    font-size: 18px;
    font-weight: 800;
    color: #e52657;
    margin-bottom: 15px;
    flex-shrink: 0;
}

#brd-jst .produk-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
    flex-shrink: 0;
}

#brd-jst .btn-detail {
    width: 45px;
    height: 45px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
}

#brd-jst .btn-detail:hover {
    border-color: #e52657;
    color: #e52657;
    background: #fff5f8;
}

#brd-jst .btn-pesan {
    flex: 1;
    background: linear-gradient(135deg, #e52657, #ff6b8a);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

#brd-jst .btn-pesan:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 38, 87, 0.4);
}

#brd-jst .btn-pesan:disabled {
    background: #d1d5db;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

#brd-jst .out-of-stock .produk-img img {
    filter: grayscale(80%);
    opacity: 0.6;
}

#brd-jst .produk-empty {
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
}

#brd-jst .produk-empty i {
    font-size: 60px;
    color: #e52657;
    margin-bottom: 20px;
    opacity: 0.5;
}

#brd-jst .btn-view-all {
    background: linear-gradient(135deg, #e52657, #ff6b8a);
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

#brd-jst .btn-view-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(229, 38, 87, 0.4);
    color: white;
}

/* === SHIPPING INFO SECTION === */
#brd-jst .shipping-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #fff5f8 0%, #ffffff 100%);
}

#brd-jst .shipping-section .section-title-wrapper {
    background: linear-gradient(180deg, #fff5f8 0%, #fff5f8 100%);
}

#brd-jst .shipping-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
    height: 100%;
}

#brd-jst .shipping-card:hover {
    box-shadow: 0 20px 50px rgba(229, 38, 87, 0.12);
    border-color: #e52657;
    transform: translateY(-5px);
}

#brd-jst .shipping-header {
    background: linear-gradient(135deg, #e52657, #ff6b8a);
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

#brd-jst .shipping-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#brd-jst .shipping-icon i {
    font-size: 28px;
    color: white;
}

#brd-jst .shipping-header-text h4 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 5px;
}

#brd-jst .shipping-header-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    margin: 0;
}

#brd-jst .shipping-body {
    padding: 25px;
}

#brd-jst .shipping-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f5f5f5;
}

#brd-jst .shipping-item:last-child {
    border-bottom: none;
}

#brd-jst .shipping-item-icon {
    width: 40px;
    height: 40px;
    background: #fff5f8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#brd-jst .shipping-item-icon i {
    color: #e52657;
    font-size: 16px;
}

#brd-jst .shipping-item-text h6 {
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 4px;
}

#brd-jst .shipping-item-text p {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

#brd-jst .shipping-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

#brd-jst .btn-shipping-primary {
    flex: 1;
    background: linear-gradient(135deg, #e52657, #ff6b8a);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

#brd-jst .btn-shipping-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 38, 87, 0.3);
    color: white;
}

#brd-jst .btn-shipping-outline {
    flex: 1;
    background: white;
    color: #e52657;
    border: 2px solid #e52657;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

#brd-jst .btn-shipping-outline:hover {
    background: #e52657;
    color: white;
}

/* === BANNER/CTA SECTION === */
#brd-jst .cta-section {
    background: linear-gradient(135deg, #ffde00 0%, #ffeaa7 100%);
    position: relative;
    overflow: hidden;
}

#brd-jst .cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(229, 38, 87, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

#brd-jst .cta-content {
    position: relative;
    z-index: 2;
    padding: 50px 0;
}

#brd-jst .cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #e52657, #ff6b8a);
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

#brd-jst .cta-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #e52657;
    margin-bottom: 15px;
    line-height: 1.3;
}

#brd-jst .cta-desc {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 25px;
    line-height: 1.7;
}

#brd-jst .cta-btn {
    background: white;
    color: #e52657;
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

#brd-jst .cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    background: #fff5f8;
}

#brd-jst .cta-image {
    position: absolute;
    z-index: 2;
    bottom:0px;
    
}

#brd-jst .cta-image img {
    max-height: 320px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

/* === OWL CAROUSEL CUSTOMIZATION === */
#brd-jst .owl-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

#brd-jst .owl-carousel .owl-item {
    display: flex;
}

#brd-jst .owl-carousel .item {
    width: 100%;
    padding: 10px;
    display: flex;
}

#brd-jst .owl-carousel .item .produk-card {
    width: 100%;
}

/* Hide owl nav */
#brd-jst .owl-nav {
    display: none !important;
}

#brd-jst .owl-dots {
    text-align: center;
    margin-top: 25px;
}

#brd-jst .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 5px;
}

#brd-jst .owl-dots .owl-dot span {
    display: block;
    width: 10px;
    height: 10px;
    background: #e0e0e0;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#brd-jst .owl-dots .owl-dot.active span {
    background: #e52657;
    width: 30px;
    border-radius: 10px;
}

#brd-jst .owl-dots .owl-dot:hover span {
    background: #ff6b8a;
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
    #brd-jst .hero-title {
        font-size: 2rem;
    }
    
    #brd-jst .hero-desc {
        font-size: 1rem;
    }
    
    #brd-jst .section-title {
        font-size: 1.5rem;
    }
    
    #brd-jst .shipping-actions {
        flex-direction: column;
    }
    
    #brd-jst .cta-title {
        font-size: 1.5rem;
    }
    
    #brd-jst .carousel-header {
        flex-direction: column;
        gap: 20px;
    }
    
    #brd-jst .carousel-nav-btn {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 767px) {
    #brd-jst .hero-section {
        padding: 30px 0 50px;
        text-align: center;
    }
    
    #brd-jst .hero-section::before,
    #brd-jst .hero-section::after {
        display: none;
    }
    
    #brd-jst .hero-title {
        font-size: 1.6rem;
    }
    
    #brd-jst .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    #brd-jst .hero-desc {
        font-size: 0.95rem;
    }
    
    #brd-jst .hero-image {
        margin-bottom: 0px;
    }
    
    #brd-jst .hero-image img {
        max-width: 250px;
    }
    
    #brd-jst .tracking-form {
        flex-direction: column;
        border-radius: 20px;
        padding: 15px;
    }
    
    #brd-jst .tracking-input {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }
    
    #brd-jst .tracking-btn {
        width: 100%;
        margin-top: 10px;
    }
    
    #brd-jst .features-section {
        padding: 40px 0;
    }
    
    #brd-jst .feature-card {
        padding: 20px 15px;
        margin-bottom: 15px;
    }
    
    #brd-jst .feature-icon {
        width: 60px;
        height: 60px;
        border-radius: 15px;
    }
    
    #brd-jst .feature-icon::after {
        width: 12px;
        height: 12px;
        bottom: -6px;
    }
    
    #brd-jst .feature-icon i {
        font-size: 24px;
    }
    
    #brd-jst .feature-title {
        font-size: 14px;
    }
    
    #brd-jst .feature-desc {
        font-size: 12px;
    }
    
    #brd-jst .products-section,
    #brd-jst .shipping-section {
        padding: 40px 0;
    }
    
    #brd-jst .section-title {
        font-size: 1.3rem;
    }
    
    #brd-jst .section-title-wrapper {
        padding: 0 20px;
    }
    
    #brd-jst .section-subtitle {
        font-size: 10px;
        letter-spacing: 2px;
    }
    
    #brd-jst .section-title::after {
        width: 40px;
        height: 3px;
        margin-top: 10px;
    }
    
    #brd-jst .shipping-card {
        margin-bottom: 20px;
    }
    
    #brd-jst .shipping-header {
        padding: 20px;
    }
    
    #brd-jst .shipping-header-text h4 {
        font-size: 1.1rem;
    }
    
    #brd-jst .cta-content {
        padding: 40px 0;
        text-align: center;
    }
    
    #brd-jst .cta-title {
        font-size: 1.3rem;
    }
    
    #brd-jst .cta-desc {
        font-size: 14px;
    }
    
    #brd-jst .cta-image {
        margin-bottom: 30px;
    }
    
    #brd-jst .cta-image img {
        max-height: 200px;
    }
    
    /* Mobile Product Cards - FIXED */
    #brd-jst .produk-img {
        height: 180px;
    }
    
    #brd-jst .produk-body {
        padding: 15px;
    }
    
    #brd-jst .category-badge {
        font-size: 10px;
        padding: 4px 10px;
        margin-bottom: 10px;
    }
    
    /* FIXED: Mobile - 1 line name */
    #brd-jst .produk-name {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    #brd-jst .produk-desc {
        font-size: 12px;
        min-height: 36px;
        margin-bottom: 10px;
        -webkit-line-clamp: 2;
    }
    
    #brd-jst .produk-price {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    #brd-jst .produk-actions {
        gap: 8px;
    }
    
    #brd-jst .btn-detail {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    
    #brd-jst .btn-pesan {
        padding: 10px 15px;
        font-size: 13px;
        border-radius: 10px;
    }
    
    #brd-jst .carousel-nav {
        gap: 10px;
    }
    
    #brd-jst .carousel-nav-btn {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        font-size: 16px;
    }
    
    /* Extra small mobile cards - FIXED */
    #brd-jst .produk-img {
        height: 210px;
    }
}

@media (max-width: 575px) {
    #brd-jst .feature-card {
        padding: 15px 10px;
    }
    
    #brd-jst .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    #brd-jst .feature-icon i {
        font-size: 20px;
    }
    
    #brd-jst .feature-icon::after {
        width: 10px;
        height: 10px;
        bottom: -5px;
    }
    
    #brd-jst .shipping-item {
        padding: 12px 0;
    }
    
    #brd-jst .shipping-item-icon {
        width: 35px;
        height: 35px;
    }
    
    /* Extra small mobile cards - FIXED */
    #brd-jst .produk-img {
        height: 220px;
    }
    
    #brd-jst .produk-body {
        padding: 12px;
    }
    
    /* FIXED: Extra small - 1 line name */
    #brd-jst .produk-name {
        font-size: 13px;
    }
    
    #brd-jst .produk-desc {
        font-size: 11px;
        min-height: 33px;
    }
    
    #brd-jst .produk-price {
        font-size: 15px;
    }
    
    #brd-jst .btn-detail {
        width: 36px;
        height: 36px;
    }
    
    #brd-jst .btn-pesan {
        padding: 8px 12px;
        font-size: 12px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    #brd-jst * {
        animation: none !important;
        transition: none !important;
    }
}


/* =============================================
   VOUCHER CARD STYLES - CLEAN MODERN DESIGN
   Replace promo section styles in beranda.css
   ============================================= */

/* === PROMO/VOUCHER SECTION === */
#brd-jst .promo-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #fff5f8 0%, #ffffff 100%);
    overflow: hidden;
}

#brd-jst .promo-section .section-title-wrapper {
    background: linear-gradient(180deg, #fff5f8 0%, #fff5f8 100%);
}

#brd-jst .promo-swiper-container {
    position: relative;
    padding: 0 50px;
}

#brd-jst .promo-swiper {
    overflow: visible;
    padding: 10px 0 40px;
}

/* === VOUCHER CARD - CLEAN MODERN === */
#brd-jst .promo-card {
    background: linear-gradient(135deg, #e52657 0%, #ff6b8a 100%);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    min-height: 260px;
    display: flex;
    flex-direction: row;
    box-shadow: 0 10px 40px rgba(229, 38, 87, 0.2);
    transition: all 0.4s ease;
}

#brd-jst .promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(229, 38, 87, 0.3);
}

/* Decorative circle - subtle */
#brd-jst .promo-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

#brd-jst .promo-card::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

/* === LEFT SECTION - Discount === */
#brd-jst .voucher-left {
    width: 130px;
    min-width: 130px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 15px;
    position: relative;
    border-right: 2px dashed rgba(255, 255, 255, 0.25);
}

#brd-jst .discount-amount {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
}

#brd-jst .discount-amount span {
    font-size: 1.5rem;
}

#brd-jst .discount-type {
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
}

#brd-jst .discount-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* === RIGHT SECTION - Details === */
#brd-jst .voucher-right {
    flex: 1;
    padding: 25px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

#brd-jst .promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    margin-bottom: 12px;
    width: fit-content;
}

#brd-jst .promo-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffde00;
    margin-bottom: 12px;
    line-height: 1.3;
}

/* Voucher Code - Clean Style */
#brd-jst .voucher-code-display {
    background: linear-gradient(135deg, #ffd5e2 0%, #ffffff 100%);
    padding: 8px 12px;
    border-radius: 10px;
    font-family: "JetBrains Mono", Menlo, Monaco, Consolas, monospace;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #e52657;
    margin-bottom: 15px;
    display: inline-block;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px dotted rgba(229,38,87,0.35);
    text-align:center;
}

/* Voucher Info Tags */
#brd-jst .voucher-info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

#brd-jst .voucher-info-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    padding: 5px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-weight: 500;
}

#brd-jst .voucher-info-item i {
    font-size: 10px;
    opacity: 0.9;
}

/* Promo Meta */
#brd-jst .promo-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

#brd-jst .promo-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

#brd-jst .promo-meta-item i {
    font-size: 11px;
}

/* Description */
#brd-jst .promo-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 15px;
    flex: 1;
}

/* === CLAIM BUTTON === */
#brd-jst .btn-claim-voucher {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #ffde00;
    color: #590000;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: auto;
    font-weight:700;
}

#brd-jst .btn-claim-voucher:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

#brd-jst .btn-claim-voucher.claimed {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    cursor: default;
    box-shadow: none;
}

#brd-jst .btn-claim-voucher.claimed:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.25);
}

/* === SWIPER NAVIGATION === */
#brd-jst .promo-swiper-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: white;
    border: none;
    border-radius: 50%;
    color: #e52657;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(229, 38, 87, 0.2);
}

#brd-jst .promo-swiper-btn:hover {
    background: #e52657;
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(229, 38, 87, 0.35);
}

#brd-jst .promo-swiper-btn.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

#brd-jst .promo-swiper-btn.swiper-button-disabled:hover {
    background: white;
    color: #e52657;
    transform: translateY(-50%);
}

#brd-jst .promo-swiper-prev {
    left: 0;
}

#brd-jst .promo-swiper-next {
    right: 0;
}

/* Swiper Pagination */
#brd-jst .promo-swiper .swiper-pagination {
    bottom: 0;
}

#brd-jst .promo-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ffb3c1;
    opacity: 1;
    transition: all 0.3s ease;
}

#brd-jst .promo-swiper .swiper-pagination-bullet-active {
    background: #e52657;
    width: 25px;
    border-radius: 10px;
}

/* === NO VOUCHER STATE === */
#brd-jst .no-voucher-card {
    background: linear-gradient(135deg, #fff5f8 0%, #ffe8ed 100%);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    border: 2px dashed #ffc0cb;
}

#brd-jst .no-voucher-card i {
    font-size: 45px;
    color: #e52657;
    margin-bottom: 15px;
    opacity: 0.5;
}

#brd-jst .no-voucher-card h4 {
    color: #e52657;
    margin-bottom: 8px;
    font-weight: 700;
}

#brd-jst .no-voucher-card p {
    color: #ff6b8a;
    font-size: 14px;
    margin: 0;
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
    #brd-jst .promo-swiper-container {
        padding: 0 40px;
    }
    
    #brd-jst .promo-swiper-btn {
        width: 40px;
        height: 40px;
    }
    
    #brd-jst .voucher-left {
        width: 110px;
        min-width: 110px;
        padding: 20px 10px;
    }
    
    #brd-jst .discount-amount {
        font-size: 2.5rem;
    }
    
    #brd-jst .promo-title {
        font-size: 1.05rem;
    }
}

@media (max-width: 767px) {
    #brd-jst .promo-section {
        padding: 40px 0;
    }
    
    #brd-jst .promo-swiper-container {
        padding: 0 10px;
    }
    
    #brd-jst .promo-swiper-btn {
        display: none;
    }
    
    /* Stack layout on mobile */
    #brd-jst .promo-card {
        flex-direction: column;
        min-height: auto;
    }
    
    #brd-jst .voucher-left {
        width: 100%;
        min-width: 100%;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 10px;
        padding: 20px;
        border-right: none;
        border-bottom: 2px dashed rgba(255, 255, 255, 0.25);
    }
    
    #brd-jst .discount-amount {
        font-size: 2.8rem;
    }
    
    #brd-jst .discount-type {
        font-size: 14px;
        margin-top: 0;
    }
    
    #brd-jst .discount-label {
        display: none;
    }
    
    #brd-jst .voucher-right {
        padding: 20px;
    }
    
    #brd-jst .promo-title {
        font-size: 1rem;
    }
    
    #brd-jst .voucher-code-display {
        font-size: 14px;
        padding: 5px 8px;
        letter-spacing: 2px;
    }
    
    #brd-jst .btn-claim-voucher {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    #brd-jst .voucher-left {
        padding: 15px;
    }
    
    #brd-jst .discount-amount {
        font-size: 2.2rem;
    }
    
    #brd-jst .voucher-right {
        padding: 15px;
    }
    
    #brd-jst .promo-badge {
        font-size: 9px;
        padding: 5px 10px;
    }
    
    #brd-jst .promo-title {
        font-size: 0.95rem;
    }
    
    #brd-jst .voucher-code-display {
        font-size: 13px;
    }
    
    #brd-jst .voucher-info-item {
        font-size: 10px;
        padding: 4px 10px;
    }
    
    #brd-jst .promo-desc {
        font-size: 12px;
    }
    
    #brd-jst .btn-claim-voucher {
        font-size: 13px;
        padding: 5px 8px;
    }
}

/* =============================================
   SHIPPING SECTION STYLES - Scoped to #brd-shp
   With Mobile Swiper Support
   ============================================= */

/* === SHIPPING INFO SECTION === */
#brd-shp .shipping-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #fff5f8 0%, #ffffff 100%);
    overflow: hidden;
}

/* === SECTION HEADER === */
#brd-shp .section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

#brd-shp .section-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(229, 38, 87, 0.3) 20%, rgba(229, 38, 87, 0.3) 80%, transparent 100%);
    transform: translateY(-50%);
    z-index: 1;
}

#brd-shp .section-title-wrapper {
    display: inline-block;
    background: linear-gradient(180deg, #fff5f8 0%, #fff5f8 100%);
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

#brd-shp .section-subtitle {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ff6b8a;
    margin-bottom: 8px;
}

#brd-shp .section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #e52657;
    margin: 0;
    position: relative;
}

#brd-shp .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #e52657, #ff9eb7);
    border-radius: 2px;
    margin: 15px auto 0;
}

/* === DESKTOP GRID (Hidden on Mobile) === */
#brd-shp .shipping-grid-desktop {
    display: flex;
    gap: 24px;
}

#brd-shp .shipping-grid-desktop .shipping-col {
    flex: 1;
}

/* === MOBILE SWIPER (Hidden on Desktop) === */
#brd-shp .shipping-swiper-container {
    display: none;
    position: relative;
    padding: 0 10px;
}

#brd-shp .shipping-swiper {
    overflow: visible;
    padding: 10px 0 50px;
}

#brd-shp .shipping-swiper .swiper-slide {
    height: auto;
}

/* === SHIPPING CARD === */
#brd-shp .shipping-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

#brd-shp .shipping-card:hover {
    box-shadow: 0 20px 50px rgba(229, 38, 87, 0.12);
    border-color: #e52657;
    transform: translateY(-5px);
}

/* Card Header */
#brd-shp .shipping-header {
    background: linear-gradient(135deg, #e52657, #ff6b8a);
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

#brd-shp .shipping-header::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

#brd-shp .shipping-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

#brd-shp .shipping-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

#brd-shp .shipping-icon i {
    font-size: 28px;
    color: white;
}

#brd-shp .shipping-header-text {
    position: relative;
    z-index: 2;
}

#brd-shp .shipping-header-text h4 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 5px;
}

#brd-shp .shipping-header-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    margin: 0;
}

/* Card Body */
#brd-shp .shipping-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

#brd-shp .shipping-items-list {
    flex: 1;
}

#brd-shp .shipping-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f5f5f5;
}

#brd-shp .shipping-item:last-child {
    border-bottom: none;
}

#brd-shp .shipping-item-icon {
    width: 40px;
    height: 40px;
    background: #fff5f8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

#brd-shp .shipping-item:hover .shipping-item-icon {
    background: #e52657;
}

#brd-shp .shipping-item-icon i {
    color: #e52657;
    font-size: 16px;
    transition: all 0.3s ease;
}

#brd-shp .shipping-item:hover .shipping-item-icon i {
    color: white;
}

#brd-shp .shipping-item-text h6 {
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 4px;
}

#brd-shp .shipping-item-text p {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

/* Action Buttons */
#brd-shp .shipping-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

#brd-shp .btn-shipping-primary {
    flex: 1;
    background: linear-gradient(135deg, #e52657, #ff6b8a);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

#brd-shp .btn-shipping-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 38, 87, 0.3);
    color: white;
}

#brd-shp .btn-shipping-outline {
    flex: 1;
    background: white;
    color: #e52657;
    border: 2px solid #e52657;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

#brd-shp .btn-shipping-outline:hover {
    background: #e52657;
    color: white;
}

/* === SWIPER NAVIGATION === */
#brd-shp .shipping-swiper-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    color: #e52657;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(229, 38, 87, 0.15);
}

#brd-shp .shipping-swiper-btn:hover {
    background: #e52657;
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(229, 38, 87, 0.35);
}

#brd-shp .shipping-swiper-btn.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

#brd-shp .shipping-swiper-btn.swiper-button-disabled:hover {
    background: white;
    color: #e52657;
    transform: translateY(-50%);
}

#brd-shp .shipping-swiper-prev {
    left: -5px;
}

#brd-shp .shipping-swiper-next {
    right: -5px;
}

/* Swiper Pagination */
#brd-shp .shipping-swiper .swiper-pagination {
    bottom: 10px;
}

#brd-shp .shipping-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ffb3c1;
    opacity: 1;
    transition: all 0.3s ease;
}

#brd-shp .shipping-swiper .swiper-pagination-bullet-active {
    background: #e52657;
    width: 25px;
    border-radius: 10px;
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
    #brd-shp .shipping-section {
        padding: 50px 0;
    }
    
    #brd-shp .section-title {
        font-size: 1.6rem;
    }
    
    #brd-shp .shipping-header {
        padding: 20px;
    }
    
    #brd-shp .shipping-header-text h4 {
        font-size: 1.15rem;
    }
    
    #brd-shp .shipping-body {
        padding: 20px;
    }
    
    #brd-shp .shipping-actions {
        flex-direction: column;
    }
}

/* Mobile: Show Swiper, Hide Grid */
@media (max-width: 767px) {
    #brd-shp .shipping-section {
        padding: 40px 0;
    }
    
    #brd-shp .section-header {
        margin-bottom: 30px;
    }
    
    #brd-shp .section-title-wrapper {
        padding: 0 20px;
    }
    
    #brd-shp .section-subtitle {
        font-size: 10px;
        letter-spacing: 2px;
    }
    
    #brd-shp .section-title {
        font-size: 1.3rem;
    }
    
    #brd-shp .section-title::after {
        width: 40px;
        height: 3px;
        margin-top: 10px;
    }
    
    /* Hide desktop grid, show swiper */
    #brd-shp .shipping-grid-desktop {
        display: none;
    }
    
    #brd-shp .shipping-swiper-container {
        display: block;
    }
    
    /* Card adjustments for mobile */
    #brd-shp .shipping-card {
        border-radius: 20px;
    }
    
    #brd-shp .shipping-card:hover {
        transform: none;
    }
    
    #brd-shp .shipping-header {
        padding: 18px;
        gap: 15px;
    }
    
    #brd-shp .shipping-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
    }
    
    #brd-shp .shipping-icon i {
        font-size: 22px;
    }
    
    #brd-shp .shipping-header-text h4 {
        font-size: 1.05rem;
    }
    
    #brd-shp .shipping-header-text p {
        font-size: 12px;
    }
    
    #brd-shp .shipping-body {
        padding: 18px;
    }
    
    #brd-shp .shipping-item {
        padding: 12px 0;
        gap: 12px;
    }
    
    #brd-shp .shipping-item-icon {
        width: 36px;
        height: 36px;
        border-radius: 8px;
    }
    
    #brd-shp .shipping-item-icon i {
        font-size: 14px;
    }
    
    #brd-shp .shipping-item-text h6 {
        font-size: 13px;
    }
    
    #brd-shp .shipping-item-text p {
        font-size: 12px;
    }
    
    #brd-shp .shipping-actions {
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
    }
    
    #brd-shp .btn-shipping-primary,
    #brd-shp .btn-shipping-outline {
        padding: 11px 18px;
        font-size: 13px;
        border-radius: 10px;
    }
    
    /* Swiper navigation hidden on small mobile */
    #brd-shp .shipping-swiper-btn {
        display: none;
    }
}

@media (max-width: 575px) {
    #brd-shp .shipping-section {
        padding: 35px 0;
    }
    
    #brd-shp .shipping-swiper-container {
        padding: 0 5px;
    }
    
    #brd-shp .shipping-header {
        padding: 15px;
        gap: 12px;
    }
    
    #brd-shp .shipping-icon {
        width: 45px;
        height: 45px;
    }
    
    #brd-shp .shipping-icon i {
        font-size: 20px;
    }
    
    #brd-shp .shipping-header-text h4 {
        font-size: 1rem;
    }
    
    #brd-shp .shipping-header-text p {
        font-size: 11px;
    }
    
    #brd-shp .shipping-body {
        padding: 15px;
    }
    
    #brd-shp .shipping-item {
        padding: 10px 0;
        gap: 10px;
    }
    
    #brd-shp .shipping-item-icon {
        width: 32px;
        height: 32px;
    }
    
    #brd-shp .shipping-item-icon i {
        font-size: 12px;
    }
    
    #brd-shp .shipping-item-text h6 {
        font-size: 12px;
        margin-bottom: 2px;
    }
    
    #brd-shp .shipping-item-text p {
        font-size: 11px;
    }
    
    #brd-shp .btn-shipping-primary,
    #brd-shp .btn-shipping-outline {
        padding: 10px 15px;
        font-size: 12px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    #brd-shp * {
        animation: none !important;
        transition: none !important;
    }
}

/* =============================================
   APP INFO SECTION - Google Play Style Swiper
   ============================================= */

#brd-app-info .app-info-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #fef5f8 0%, #fff 100%);
    overflow: hidden;
}

#brd-app-info .section-header {
    text-align: center;
    margin-bottom: 40px;
}

#brd-app-info .section-title-wrapper {
    background:#fef5f8;
}

#brd-app-info .section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #e52657;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

#brd-app-info .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #e52657;
    margin-bottom: 12px;
}

#brd-app-info .section-desc {
    font-size: 1rem;
    color: #64748b;
    max-width: 500px;
    margin: 0 auto;
}

/* Swiper Container */
#brd-app-info .app-info-swiper-container {
    position: relative;
    padding: 0 50px;
}

@media (max-width: 768px) {
    #brd-app-info .app-info-swiper-container {
        padding: 0 15px;
    }
}

#brd-app-info .app-info-swiper {
    padding-bottom: 40px;
    overflow: visible;
}

/* Individual Card */
#brd-app-info .app-info-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

#brd-app-info .app-info-card:hover {
    box-shadow: 0 12px 40px rgba(229, 38, 87, 0.15);
}

/* Image Container */
#brd-app-info .app-info-image {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

#brd-app-info .app-info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content Section */
#brd-app-info .app-info-content {
    padding: 16px;
}

#brd-app-info .app-info-content h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#brd-app-info .app-info-content p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Navigation Buttons */
#brd-app-info .app-info-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: #1f2937;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

#brd-app-info .app-info-nav-btn:hover {
    background: #e52657;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(229, 38, 87, 0.3);
}

#brd-app-info .app-info-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

#brd-app-info .app-info-prev {
    left: 0;
}

#brd-app-info .app-info-next {
    right: 0;
}

@media (max-width: 768px) {
    #brd-app-info .app-info-nav-btn {
        display: none;
    }
}

/* Scrollbar Styling */
#brd-app-info .swiper-scrollbar {
    background: rgba(229, 38, 87, 0.1);
    height: 4px !important;
    border-radius: 4px;
    bottom: 10px !important;
    left: 5% !important;
    width: 90% !important;
}

#brd-app-info .swiper-scrollbar-drag {
    background: linear-gradient(90deg, #e52657, #ff6b8a);
    border-radius: 4px;
    cursor: pointer;
}

/* Slide Sizing */
#brd-app-info .swiper-slide {
    width: 220px;
    height: auto;
}

@media (max-width: 480px) {
    #brd-app-info .swiper-slide {
        width: 200px;
    }
    
    #brd-app-info .app-info-content h4 {
        font-size: 14px;
    }
    
    #brd-app-info .app-info-content p {
        font-size: 12px;
    }
    
    #brd-app-info .section-title {
        font-size: 1.5rem;
    }
}

/* Touch-friendly padding on mobile */
@media (max-width: 768px) {
    #brd-app-info .app-info-section {
        padding: 40px 0;
    }
    
    #brd-app-info .section-header {
        margin-bottom: 30px;
        padding: 0 15px;
    }
}