/* ============================================
   ROOT VARIABLES
   ============================================ */
:root {
    --login-required-overlay: rgba(0, 0, 0, 0.6);
    --login-required-bg: #ffffff;
    --login-required-border: #f3f4f6;
    --login-required-text: #1f2937;
    --login-required-muted: #6b7280;
    --login-required-primary: #D32F2F;
    --login-required-primary-alt: #E63946;
    --login-required-gold: #f59e0b;
    --login-required-blue: #3b82f6;
    --login-required-purple: #8b5cf6;
}

/* ============================================
   FORM VALIDATION NOTIFICATION STYLES
   ============================================ */
.validation-notification {
    position: absolute;
    background: #ffffff;
    color: #dc2626;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.2);
    z-index: 10000;
    max-width: 280px;
    word-wrap: break-word;
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    border: 2px solid #dc2626;
}

.validation-notification.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.validation-notification::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #dc2626;
    filter: drop-shadow(0 2px 4px rgba(220, 38, 38, 0.3));
}

.validation-notification .notification-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #dc2626;
    color: white;
    border-radius: 50%;
    margin-right: 8px;
    font-size: 12px;
}

.validation-notification .notification-text {
    display: inline-block;
    vertical-align: middle;
}

/* Success notification */
.validation-notification.success {
    background: #ffffff;
    color: #B91C1C;
    border: 2px solid #B91C1C;
    box-shadow: 0 8px 25px rgba(185, 28, 28, 0.2);
}

.validation-notification.success::before {
    border-top-color: #B91C1C;
}

.validation-notification.success .notification-icon {
    background: #B91C1C;
    color: white;
}

/* Warning notification */
.validation-notification.warning {
    background: #ffffff;
    color: #d97706;
    border: 2px solid #d97706;
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.2);
}

.validation-notification.warning::before {
    border-top-color: #d97706;
}

.validation-notification.warning .notification-icon {
    background: #d97706;
    color: white;
}

/* ============================================
   LOGIN REQUIRED MODAL STYLES
   ============================================ */
.login-required-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--login-required-overlay);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    padding: 20px;
}

.login-required-dialog {
    background: var(--login-required-bg);
    border-radius: 20px;
    width: 90%;
    max-width: 520px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.4s ease-out;
}

.login-required-header {
    padding: 24px 28px 18px;
    text-align: center;
    border-bottom: 1px solid var(--login-required-border);
}

.login-required-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.login-required-icon i {
    font-size: 28px;
    color: var(--login-required-gold);
}

.login-required-header h3 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--login-required-text);
}

.login-required-header p {
    margin: 0;
    font-size: 15px;
    color: var(--login-required-muted);
    line-height: 1.6;
}

.login-required-body {
    padding: 18px 28px 24px;
}

.login-required-benefits {
    margin-bottom: 28px;
}

.login-required-benefits h4 {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.login-required-benefits h4 i {
    color: var(--login-required-gold);
    font-size: 14px;
}

.login-required-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.login-required-benefit-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid var(--login-required-primary);
    font-size: 14px;
    color: #374151;
    font-weight: 500;
}

.login-required-benefit-card i {
    font-size: 16px;
    width: 20px;
}

.login-benefit-green {
    border-color: var(--login-required-primary-alt);
}

.login-benefit-green i {
    color: var(--login-required-primary-alt);
}

.login-benefit-blue {
    border-color: var(--login-required-blue);
}

.login-benefit-blue i {
    color: var(--login-required-blue);
}

.login-benefit-purple {
    border-color: var(--login-required-purple);
}

.login-benefit-purple i {
    color: var(--login-required-purple);
}

.login-benefit-gold {
    border-color: var(--login-required-gold);
}

.login-benefit-gold i {
    color: var(--login-required-gold);
}

.login-required-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.login-required-primary-btn,
.login-required-secondary-btn {
    width: 100%;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.login-required-primary-btn {
    padding: 16px 24px;
    border: none;
    color: white;
    background: linear-gradient(135deg, var(--login-required-primary) 0%, var(--login-required-primary-alt) 100%);
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.login-required-primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

.login-required-secondary-btn {
    padding: 14px 24px;
    background: transparent;
    color: var(--login-required-muted);
    border: 2px solid #e5e7eb;
}

.login-required-secondary-btn:hover {
    border-color: #d1d5db;
    color: #374151;
}

.login-required-register {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--login-required-border);
}

.login-required-register p {
    margin: 0;
    font-size: 14px;
    color: var(--login-required-muted);
}

.login-required-register a {
    color: var(--login-required-primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.login-required-register a:hover {
    color: #005a35;
    text-decoration: underline;
}

@media (max-width: 600px) {
    .login-required-header {
        padding: 20px 20px 16px;
    }
    
    .login-required-icon {
        width: 50px;
        height: 50px;
    }
    
    .login-required-icon i {
        font-size: 22px;
    }
    
    .login-required-header h3 {
        font-size: 18px;
    }
    
    .login-required-header p {
        font-size: 13px;
    }
    
    .login-required-body {
        padding: 16px 20px 20px;
    }
    
    .login-required-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .login-required-primary-btn,
    .login-required-secondary-btn {
        font-size: 14px;
    }
}

/* ============================================
   SUCCESS NOTIFICATION STYLES (Floating)
   ============================================ */
.success-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FF6B7A 0%, #FF4757 50%, #FF3838 100%);
    color: white;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.4);
    z-index: 10001;
    max-width: 350px;
    word-wrap: break-word;
    opacity: 0;
    transform: translateX(100%) scale(0.9);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.success-notification.show {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}

.success-notification .success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-right: 12px;
    font-size: 14px;
    animation: successPulse 2s ease-in-out infinite;
    color: white !important;
}

.success-notification .success-icon i.fas.fa-check {
    color: white !important;
}

.success-notification .success-icon i {
    color: white !important;
}

.success-notification .success-content {
    display: flex;
    align-items: center;
    flex: 1;
}

.success-notification .success-text {
    flex: 1;
}

.success-notification .success-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    display: block;
    color: white;
}

.success-notification .success-message {
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.4;
    color: white;
}

/* Animation untuk success icon */
@keyframes successPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
    }
}

/* Slide out animation */
@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateX(100%) scale(0.9);
    }
}

.success-notification.hide {
    animation: slideOutRight 0.3s ease-in-out forwards;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Mobile responsive untuk notifikasi */
@media (max-width: 768px) {
    .success-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        padding: 14px 16px;
        font-size: 13px;
    }
    
    .success-notification .success-icon i.fas.fa-check {
        color: white !important;
    }
    
    .success-notification .success-icon i {
        color: white !important;
    }
    
    .success-notification .success-title {
        font-size: 14px;
    }
    
    .success-notification .success-message {
        font-size: 12px;
    }
    
    .validation-notification {
        max-width: 250px;
        padding: 10px 14px;
        font-size: 12px;
    }
    
    .validation-notification .notification-icon {
        width: 18px;
        height: 18px;
        font-size: 11px;
    }
}

/* Tablet responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .success-notification {
        max-width: 320px;
        padding: 15px 18px;
    }
    
    .validation-notification {
        max-width: 260px;
    }
}

/* ============================================
   ADDITIONAL KEYFRAMES
   ============================================ */

/* Slide in animation untuk notifikasi */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slide out animation untuk notifikasi */
@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100px);
    }
}

/* Modal animations */
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes modalSlideOut {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
}

/* File items animation */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   PRODUCT PAGE SPECIFIC STYLES
   ============================================ */

/* Product Image Navigation Buttons */
.product-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

/* Share Button Animations */
.share-btn-product {
    font-family: inherit;
}

.share-btn-product:active {
    transform: scale(0.9);
}

.share-btn-product i {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Force Font Awesome Icons to Display */
.fab, .fas {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}


/* Hover effect untuk upload area */
.upload-area:hover {
    border-color: #D32F2F !important;
    background: #f0fdf4 !important;
}

/* Tab buttons hover effect */
.upload-tab-button:hover {
    background: #e5e7eb !important;
}

.upload-tab-button.active:hover {
    background: #ffffff !important;
}

.upload-tab-button:not(.active):hover {
    background: #e5e7eb !important;
    color: #6b7280 !important;
}

/* File and link list animations */
#fileListContainer > div,
#linkListContainer > div {
    animation: slideIn 0.3s ease-out;
}

/* Link item hover effect */
#linkListContainer > div a:hover {
    text-decoration: underline !important;
}



/* ============================================
   FORM GRID & LAYOUT RESPONSIVE
   ============================================ */

/* Responsive untuk Form Grid Section */
@media (max-width: 768px) {
    .form-grid-section {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    /* Tetap pertahankan layout 2 kolom untuk form di dalam grid */
    .form-grid-section .form-row {
        flex-direction: row !important;
        gap: 8px !important;
    }
    
    .form-grid-section .form-group {
        width: calc(50% - 4px) !important;
        margin-bottom: 12px !important;
    }
    
    /* Sembunyikan total pesanan di samping tombol order di mobile */
    .order-summary-desktop {
        display: none !important;
    }
    
    /* Tampilkan total pesanan di bawah form di mobile */
    .total-pesanan-mobile {
        display: block !important;
    }
    
    .upload-area {
        padding: 20px !important;
    }
    
    .upload-area i {
        font-size: 36px !important;
    }
    
    
    .upload-tab-header {
        flex-direction: column !important;
    }
    
    .product-nav-btn {
        width: 35px !important;
        height: 35px !important;
    }
    
    .product-nav-btn i {
        font-size: 14px !important;
    }
    
    .product-image-indicators {
        bottom: 10px !important;
    }
    
    /* Hide 3 Langkah di mobile */
    .three-steps-section {
        display: none !important;
    }
    
    /* Form Actions responsive */
    .form-actions {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .form-actions button {
        width: 100% !important;
        justify-content: center !important;
    }
    
    /* Login Required Modal Mobile */
    #loginRequiredModal > div {
        width: 95% !important;
        margin: 20px !important;
        border-radius: 16px !important;
    }
    
    #loginRequiredModal .modal-header {
        padding: 24px 20px 16px 20px !important;
    }
    
    #loginRequiredModal .modal-content {
        padding: 20px !important;
    }
    
    #loginRequiredModal h3 {
        font-size: 20px !important;
    }
    
    #loginRequiredModal p {
        font-size: 14px !important;
    }
}

/* Desktop: Sembunyikan total pesanan di bawah form */
@media (min-width: 769px) {
    .total-pesanan-mobile {
        display: none !important;
    }
    
    .order-summary-desktop {
        display: block !important;
    }
}

/* ============================================
   MOBILE SPESIFIKASI PRODUK STYLES
   ============================================ */

/* Product Description */
.product-description {
    font-size: 12px;
    line-height: 1.8;
    color: #666;
}

.deskripsi-list {
    margin: 0;
    padding-left: 20px;
    list-style: none;
}

.deskripsi-item {
    position: relative;
    padding-left: 0;
    margin-bottom: 6px;
}

.deskripsi-bullet {
    font-size: 6px;
    color: #D32F2F;
    margin-right: 10px;
    vertical-align: middle;
}

.deskripsi-text {
    font-size: 13px;
    line-height: 1.8;
    color: #666;
}

/* Button Lihat Semua */
.btn-tampilkan-selengkapnya {
    background: none;
    border: none;
    color: #0066cc;
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
    padding: 4px 0;
    margin-top: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-tampilkan-selengkapnya:hover {
    color: #004499;
}

/* Mobile Only - Hide items after 2nd */
@media (max-width: 768px) {
    .deskripsi-item-hidden,
    .disclaimer-warna-hidden {
        display: none;
    }
    
    .deskripsi-item-hidden.show,
    .disclaimer-warna-hidden.show {
        display: block;
    }
    
    /* Kurangi margin bawah disclaimer di mobile */
    .disclaimer-warna-hidden {
        margin-bottom: 10px !important;
    }
    
    .disclaimer-warna-hidden.show {
        margin-bottom: 10px !important;
    }
    
    /* Kurangi ruang kosong hanya untuk container form di mobile */
    .container[style*="max-width: 1250px"] {
        margin: 10px auto !important;
        padding: 0 20px !important;
    }
    
    /* Kurangi margin section 3 langkah di mobile */
    .three-steps-section {
        margin: 15px 0 !important;
        padding: 15px 0 !important;
    }
    
    /* Kurangi margin container form di mobile */
    .form-grid-section {
        margin-top: 10px !important;
    }
    
    /* Kurangi margin produk details di mobile */
    .product-details {
        margin-bottom: 5px !important;
    }
    
    /* Kurangi margin setelah disclaimer di mobile */
    .product-details > div:last-child {
        margin-bottom: 5px !important;
    }
    
    /* Kurangi jarak button di mobile */
    .btn-tampilkan-selengkapnya {
        padding: 2px 0 !important;
        margin-top: 2px !important;
        margin-bottom: 5px !important;
    }
    
    /* Kurangi jarak setelah button Lihat Semua */
    div[style*="text-align: center; margin-top: 4px;"] {
        margin-bottom: 5px !important;
    }
    
    /* Kurangi margin untuk separator di container form */
    .container[style*="max-width: 1250px"] > div:first-child {
        margin: 10px 0 !important;
    }
    
    /* Kurangi jarak antara Lihat Semua dengan Form Order */
    .product-details + .form-grid-section {
        margin-top: 5px !important;
    }
    
    /* Kurangi margin bawah product details di mobile */
    .product-details {
        margin-bottom: 0 !important;
        padding-bottom: 5px !important;
    }
    
    /* Kurangi jarak setelah semua elemen dalam product details */
    .product-details * {
        margin-bottom: 2px !important;
    }
    
    /* Khusus untuk div terakhir di product details */
    .product-details > div:last-child {
        margin-bottom: 0 !important;
    }
    
    /* Kurangi margin separator di mobile - yang paling penting */
    div[style*="margin: 30px 0;"][style*="background: linear-gradient"] {
        margin: 5px 0 !important;
    }
    
    /* Target langsung separator dengan height 1px */
    div[style*="height: 1px"][style*="margin: 30px 0"] {
        margin: 5px 0 !important;
    }
    
    /* Target container yang berisi separator */
    .container[style*="max-width: 1250px"][style*="margin: 30px auto"] {
        margin: 5px auto !important;
    }
    
    /* Kurangi margin container form di mobile */
    .container[style*="max-width: 1250px"] {
        margin: 5px auto !important;
    }
    
    /* Target spesifik untuk separator yang ada di antara product details dan form */
    .container > div:first-child + div[style*="margin: 30px 0;"] {
        margin: 5px 0 !important;
    }
    
    /* Kurangi semua margin di dalam product details section */
    .product-details {
        margin: 0 !important;
        padding: 0 0 5px 0 !important;
    }
    
    /* Kurangi margin untuk semua child elements di product details */
    .product-details > * {
        margin: 2px 0 !important;
    }
    
    /* Khusus untuk button container */
    .product-details div[style*="text-align: center"] {
        margin: 2px 0 !important;
    }
    
    /* Override semua margin yang mungkin mengganggu di mobile */
    *[style*="margin: 30px 0"] {
        margin: 5px 0 !important;
    }
    
    *[style*="margin: 30px auto"] {
        margin: 5px auto !important;
    }
    
    /* Target semua div dengan margin 30px */
    div[style*="margin: 30px"] {
        margin: 5px !important;
    }
    
    /* Target spesifik untuk setiap elemen dengan margin 30px */
    .container[style*="margin: 30px auto; padding: 0 20px;"] {
        margin: 5px auto !important;
        padding: 0 20px !important;
    }
    
    .three-steps-section[style*="margin: 30px 0;"] {
        margin: 5px 0 !important;
    }
    
    /* Target separator yang tepat */
    div[style*="width: 100%; height: 1px;"][style*="margin: 30px 0;"] {
        margin: 5px 0 !important;
    }
    
    /* CSS dengan specificity tinggi untuk mobile */
    body .container[style*="margin: 30px auto"] {
        margin: 5px auto !important;
    }
    
    body div[style*="margin: 30px 0"] {
        margin: 5px 0 !important;
    }
    
    /* Force override dengan CSS yang sangat spesifik */
    html body .container[style*="max-width: 1250px"][style*="margin: 30px auto"][style*="padding: 0 20px"] {
        margin: 5px auto !important;
    }
    
    html body div[style*="width: 100%"][style*="height: 1px"][style*="margin: 30px 0"] {
        margin: 5px 0 !important;
    }
    
    /* ============================================
       MOBILE SPACING ADJUSTMENTS
       ============================================ */
    
    /* Tambah jarak antara rating dengan bagikan */
    .rating-section {
        margin-bottom: 15px !important;
    }
    
    /* Tambah jarak antara bagikan dengan spesifikasi produk */
    .share-section {
        margin-bottom: 15px !important;
    }
    
    /* Target spesifik untuk elemen rating */
    div[style*="display: flex"][style*="align-items: center"][style*="gap: 12px"] {
        margin-bottom: 15px !important;
    }
    
    /* Target untuk section bagikan */
    div[style*="display: flex"][style*="align-items: center"][style*="gap: 8px"]:has(span[style*="color: #666"]) {
        margin-bottom: 15px !important;
    }
    
    /* Target spesifik untuk rating section di mobile */
    .product-rating-display[style*="margin-bottom: 15px"] {
        margin-bottom: 8px !important;
    }
    
    /* Target spesifik untuk share section di mobile */
    .share-product[style*="margin-bottom: 20px"] {
        margin-bottom: 8px !important;
    }
    
    /* Target untuk elemen yang ada di dalam product details */
    .product-details .product-rating-display {
        margin-bottom: 8px !important;
    }
    
    .product-details .share-product {
        margin-bottom: 8px !important;
    }
    
    
    /* Kecilkan ikon share di mobile */
    .share-btn-product {
        width: 28px !important;
        height: 28px !important;
    }
    
    .share-btn-product img {
        width: 14px !important;
        height: 14px !important;
    }
    
    .share-btn-product i {
        font-size: 14px !important;
    }
    
    
    /* ============================================
       UPLOAD DESAIN MOBILE STYLES
       ============================================ */
    
    /* Upload tab header tetap side by side di mobile */
    div[style*="display: flex; gap: 8px; background: #f3f4f6; padding: 4px; border-radius: 10px;"] {
        display: flex !important;
        flex-direction: row !important;
        gap: 4px !important;
        width: 100% !important;
    }
    
    button[data-upload-tab] {
        flex: 1 !important;
        width: 50% !important;
        padding: 8px 12px !important;
        font-size: 12px !important;
        display: block !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }
    
    /* Force horizontal layout untuk upload tab */
    .upload-tab-container > div {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
    }
    
    .upload-tab-container button {
        flex: 1 !important;
        min-width: 0 !important;
    }
    
    /* Override any CSS that might cause vertical stacking */
    .upload-tab-container,
    .upload-tab-container * {
        display: flex !important;
        flex-direction: row !important;
    }
    
    .upload-tab-container button {
        display: inline-flex !important;
        flex: 1 !important;
        width: 50% !important;
        min-width: 50% !important;
        max-width: 50% !important;
    }
    
    /* Active state untuk Link Desain button */
    button[data-upload-tab="link-upload"] {
        background: transparent !important;
        color: #6b7280 !important;
    }
    
    /* Active state ketika Link Desain diklik */
    button[data-upload-tab="link-upload"].active {
        background: #ffffff !important;
        color: #D32F2F !important;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1) !important;
    }
    
    /* Hover state untuk Link Desain button */
    button[data-upload-tab="link-upload"]:hover:not(.active) {
        background: #e5e7eb !important;
        color: #6b7280 !important;
        box-shadow: none !important;
    }
    
    button[data-upload-tab="link-upload"].active:hover {
        background: #ffffff !important;
        color: #D32F2F !important;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1) !important;
    }
}

/* Desktop - Hover Link Desain */
@media (min-width: 769px) {
    /* Hover state untuk Link Desain button di desktop */
    button[data-upload-tab="link-upload"]:hover:not(.active) {
        background: #e5e7eb !important;
        color: #6b7280 !important;
        box-shadow: none !important;
    }
    
    button[data-upload-tab="link-upload"].active:hover {
        background: #ffffff !important;
        color: #D32F2F !important;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1) !important;
    }
    
    /* Force text color untuk hover Link Desain di desktop */
    button[data-upload-tab="link-upload"]:hover:not(.active) * {
        color: #6b7280 !important;
    }
    
    button[data-upload-tab="link-upload"].active:hover * {
        color: #D32F2F !important;
    }
    
    /* Ensure Upload File button juga konsisten */
    button[data-upload-tab="file-upload"] {
        background: transparent !important;
        color: #6b7280 !important;
        box-shadow: none !important;
    }
    
    button[data-upload-tab="file-upload"].active {
        background: #ffffff !important;
        color: #D32F2F !important;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1) !important;
    }
    
    button[data-upload-tab="file-upload"][style*="background: transparent"] {
        background: transparent !important;
        color: #6b7280 !important;
        box-shadow: none !important;
    }
    
    /* Ensure container takes full width */
    .upload-tab-container {
        width: 100% !important;
    }
    
    .upload-tab-container > div {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Upload area lebih proportional di mobile */
    .upload-area {
        min-height: 120px !important;
        padding: 15px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .upload-area .fas.fa-cloud-upload-alt {
        font-size: 20px !important;
        margin-bottom: 6px !important;
    }
    
    .upload-area h5 {
        font-size: 12px !important;
        margin-bottom: 4px !important;
    }
    
    .upload-area p {
        font-size: 11px !important;
        margin-bottom: 8px !important;
    }
    
    .upload-area div[style*="background: #D32F2F"] {
        padding: 4px 12px !important;
        font-size: 11px !important;
    }
    
    /* Icon folder lebih kecil */
    .upload-area .fas.fa-folder-open {
        font-size: 12px !important;
    }
    
    /* Upload area and tips container di mobile */
    .upload-area-and-tips {
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
    }
    
    /* Upload area container full width */
    .upload-area-and-tips > div:first-child {
        width: 100% !important;
        flex: none !important;
    }
    
    /* Tips section di mobile */
    .upload-area-and-tips > div:last-child {
        padding: 12px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .upload-area-and-tips > div:last-child h6 {
        font-size: 13px !important;
        margin-bottom: 8px !important;
    }
    
    .upload-area-and-tips > div:last-child ul {
        margin: 0 !important;
        padding-left: 16px !important;
        width: 100% !important;
    }
    
    .upload-area-and-tips > div:last-child li {
        font-size: 11px !important;
        margin-bottom: 4px !important;
    }
    
    /* Ensure tips section container full width */
    div[style*="flex: 1; padding: 15px; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 8px; border-left: 4px solid #D32F2F;"] {
        width: 100% !important;
        flex: none !important;
        box-sizing: border-box !important;
    }
    
    /* Total pesanan checkout mobile - tampilkan di mobile */
    .total-pesanan-checkout-mobile {
        display: block !important;
    }
    
    /* ============================================
       PRODUCT GALLERY MOBILE STYLES
       ============================================ */
    
    /* Arrow navigation lebih kecil di mobile */
    .product-nav-btn {
        width: 30px !important;
        height: 30px !important;
    }
    
    .product-nav-prev {
        left: 10px !important;
    }
    
    .product-nav-next {
        right: 10px !important;
    }
    
    .product-nav-btn .fas {
        font-size: 12px !important;
    }
    
    /* Indicator dots lebih kecil di mobile */
    .product-image-indicators {
        bottom: 10px !important;
        gap: 6px !important;
    }
    
    .indicator-dot {
        width: 6px !important;
        height: 6px !important;
    }
}

/* Desktop - Show all items */
@media (min-width: 769px) {
    .deskripsi-item-hidden,
    .disclaimer-warna-hidden {
        display: block !important;
    }
    
    .btn-tampilkan-selengkapnya {
        display: none !important;
    }
    
    /* Total pesanan checkout mobile - sembunyikan di desktop */
    .total-pesanan-checkout-mobile {
        display: none !important;
    }
}

/* ============================================
   PRODUCT INFO SECTION STYLES
   ============================================ */

.product-info-section {
    margin-bottom: 15px;
}

.product-info-grid {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 20px;
}

/* Product Gallery */
.product-gallery {
    position: relative;
}

.main-image {
    overflow: hidden;
    border-radius: 16px;
    position: relative;
}

.main-product-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 16px;
    border: 2px solid #e9ecef;
    transition: opacity 0.3s ease;
}

/* Navigation Buttons */
.product-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    z-index: 10;
}

.product-nav-prev {
    left: 15px;
}

.product-nav-next {
    right: 15px;
}

.product-nav-btn i {
    color: #D32F2F;
    font-size: 16px;
    transition: color 0.3s ease;
}

.product-nav-btn:hover {
    background: rgba(211, 47, 47, 0.95);
}

.product-nav-btn:hover i {
    color: #fff;
}

/* Indicator Dots */
.product-image-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.indicator-dot.active {
    background: #D32F2F;
}

/* Product Details */
.product-details h5 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

/* Rating Display */
.product-rating-display {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-stars i {
    font-size: 14px;
}

.rating-stars .fas {
    color: #ffc107;
}

.rating-stars .far {
    color: #ddd;
}

.rating-number {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.rating-separator {
    font-size: 12px;
    color: #999;
}

.rating-link {
    font-size: 12px;
    color: #666;
    font-weight: 500;
    cursor: pointer;
    text-decoration: underline;
}

/* Share Product */
.share-product {
    margin-bottom: 20px;
}

.share-product-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.share-label {
    font-size: 13px;
    font-weight: 600;
    color: #666;
}

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

.share-btn-product {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.share-btn-product i {
    font-size: 18px;
    transition: color 0.3s ease;
    font-weight: 400 !important;
}

.share-btn-product img {
    width: 18px;
    height: 18px;
    transition: filter 0.3s ease;
}

/* WhatsApp Share Button */
.share-whatsapp .fa-whatsapp {
    color: #25D366;
    font-family: 'Font Awesome 6 Brands' !important;
    font-weight: 400 !important;
}

.share-whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
}

.share-whatsapp:hover .fa-whatsapp {
    color: #fff;
}

/* Instagram Share Button */
.share-instagram .fa-instagram {
    color: #E1306C;
    font-family: 'Font Awesome 6 Brands' !important;
    font-weight: 400 !important;
}

.share-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #E1306C;
}

.share-instagram:hover .fa-instagram {
    color: #fff;
}

/* TikTok Share Button */
.share-tiktok .fa-tiktok {
    color: #000;
    font-family: 'Font Awesome 6 Brands' !important;
    font-weight: 400 !important;
}

.share-tiktok:hover {
    background: #000;
    border-color: #000;
}

.share-tiktok:hover .fa-tiktok {
    color: #fff;
}

/* Facebook Share Button */
.share-facebook .fa-facebook {
    color: #1877F2;
    font-family: 'Font Awesome 6 Brands' !important;
    font-weight: 400 !important;
}

.share-facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
}

.share-facebook:hover .fa-facebook {
    color: #fff;
}

/* Twitter/X Share Button */
.share-twitter img {
    width: 18px;
    height: 18px;
    transition: filter 0.3s ease;
}

.share-twitter:hover {
    background: #000000;
    border-color: #000000;
}

.share-twitter:hover img {
    filter: brightness(0) invert(1);
}

/* Copy Link Button */
.share-link .fa-link {
    color: #D32F2F;
    font-size: 16px;
    font-weight: 900 !important;
    font-family: 'Font Awesome 6 Free' !important;
}

.share-link:hover {
    background: #D32F2F;
    border-color: #D32F2F;
}

.share-link:hover .fa-link {
    color: #fff;
}

/* Description Header */
.description-header {
    margin-bottom: 12px;
}

.description-header h6 {
    font-size: 14px;
    font-weight: 700;
    color: #D32F2F;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.description-header i {
    font-size: 14px;
}

/* Disclaimer Warna */
.disclaimer-warna {
    margin-top: 20px;
    padding: 16px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-left: 4px solid #0284c7;
    border-radius: 8px;
}

.disclaimer-warna-container {
    display: flex;
    gap: 12px;
}

.disclaimer-warna-icon {
    flex-shrink: 0;
}

.disclaimer-warna-icon i {
    font-size: 20px;
    color: #0284c7;
}

.disclaimer-warna-content h6 {
    font-size: 13px;
    font-weight: 700;
    color: #0369a1;
    margin: 0 0 8px 0;
}

.disclaimer-warna-content p {
    font-size: 12px;
    line-height: 1.7;
    color: #475569;
    margin: 0;
}

.disclaimer-warna-highlight {
    display: block;
    margin-top: 8px;
    color: #D32F2F;
    font-weight: 600;
}

.disclaimer-warna-highlight i {
    font-size: 11px;
    margin-right: 4px;
}

/* Button Container */
.button-container {
    text-align: center;
    margin-top: 4px;
}

/* Mobile Responsive untuk Product Info */
@media (max-width: 768px) {
    .product-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .main-product-image {
        height: 300px;
    }
    
    .product-nav-btn {
        width: 35px;
        height: 35px;
    }
    
    .product-nav-btn i {
        font-size: 14px;
    }
    
    .product-image-indicators {
        bottom: 10px;
    }
    
    .indicator-dot {
        width: 6px;
        height: 6px;
    }
    
    .share-btn-product {
        width: 28px;
        height: 28px;
    }
    
    .share-btn-product i {
        font-size: 14px;
    }
    
    .share-btn-product img {
        width: 14px;
        height: 14px;
    }
}

/* ============================================
   FORM SECTION STYLES
   ============================================ */


/* Form Section */
.form-section {
    margin-bottom: 20px;
}

/* Form Row */
.form-row {
    display: flex !important;
    gap: 10px !important;
    margin-bottom: 8px !important;
}

.form-row-three {
    flex-wrap: wrap;
}

.form-group-third {
    width: calc(33.333% - 7px) !important;
}

.cover-section {
    position: relative;
    border: 1.5px solid #d1d5db;
    border-radius: 18px;
    padding: 28px 20px 20px;
    margin: 28px 0 20px;
    background: #fdfdfd;
}

.isi-section {
    margin-top: 18px;
}

.cover-section-header {
    position: absolute;
    top: -12px;
    left: 24px;
    background: #fdfdfd;
    padding: 0 12px;
}

.cover-section-header h6 {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.cover-section-body {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cover-type-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cover-type-option {
    flex: 1;
    min-width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 18px;
    border: 1.5px solid #d1d5db;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    color: #111827;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    background: white;
}

.cover-type-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.cover-type-option span {
    pointer-events: none;
}

.cover-type-option:has(input:checked) {
    background: linear-gradient(135deg, #D32F2F, #E63946);
    border-color: #D32F2F;
    color: #fff;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.25);
}

.cover-type-option:hover {
    border-color: #9ca3af;
}

.cover-select-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.cover-select-item.full-width {
    grid-column: span 2;
}

.cover-select-item.full-width.cover-laminasi-hidden {
    display: none;
}

.cover-select-item .form-label {
    margin-bottom: 6px;
}

/* Form Group */
.form-group {
    flex: 1 !important;
    width: calc(50% - 5px) !important;
    margin-bottom: 8px !important;
}

.form-group.full-width {
    width: 100% !important;
}

.form-group.no-margin {
    margin-bottom: 0px !important;
}

/* Form Label */
.form-label {
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.form-label i {
    margin-right: 8px;
    color: #6b7280;
}

.required {
    color: #dc2626;
    margin-left: 2px;
}

/* Info Link */
.info-link {
    color: #0066cc;
    margin-left: 15px;
    font-size: 11px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
}

.info-link:hover {
    color: #004499;
    text-decoration: underline;
}

.info-link i {
    font-size: 12px;
}

/* Form Grid Section */
.form-grid-section {
    display: grid !important;
    grid-template-columns: 50% 50%;
    gap: 20px;
    margin: 30px 0;
    visibility: visible !important;
    opacity: 1 !important;
}

.order-form-container {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Mobile: Remove card styling for form order */
@media (max-width: 768px) {
    .order-form-container {
        background: transparent !important;
        border-radius: 0 !important;
        padding: 0 !important;
        box-shadow: none !important;
        margin: 0 !important;
    }
}

.upload-form-container {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Mobile: Remove card styling for upload form */
@media (max-width: 768px) {
    .upload-form-container {
        background: transparent !important;
        border-radius: 0 !important;
        padding: 0 !important;
        box-shadow: none !important;
        margin: 0 !important;
    }
}

/* Form content untuk produk page - tidak mengoverride modal login */
.product-order-page .form-content {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Form Controls */
.form-control,
.form-select {
    width: 100% !important;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px; /* Border radius normal, bukan setengah lingkaran */
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: #fff;
}

.form-control:focus,
.form-select:focus {
    outline: none;
    border-color: #D32F2F;
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

/* Textarea tetap menggunakan border-radius normal */
.form-control[type="textarea"],
textarea.form-control,
textarea {
    border-radius: 8px !important;
}

.form-control::placeholder {
    color: #9ca3af;
}

/* Price Display */
.price-display {
    background-color: #f9fafb;
    color: #374151;
    font-weight: 600;
    cursor: not-allowed;
}

/* Separator */
.separator {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e5e7eb 20%, #e5e7eb 80%, transparent 100%);
    margin: 20px 0;
}

/* Laminasi Section */
.laminasi-section {
    margin-top: 15px;
}

/* Tab Container */
.tab-container {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.tab-header {
    display: flex;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.tab-button {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background: transparent;
    color: #6b7280;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tab-button:hover {
    background: #f3f4f6;
    color: #374151;
}

.tab-button.active {
    background: #fff;
    color: #D32F2F;
    border-bottom: 2px solid #D32F2F;
}

.tab-button i {
    font-size: 14px;
}

/* Tab Content */
.tab-content {
    display: none;
    padding: 20px;
}

.tab-content.active {
    display: block;
}

/* Total Pesanan Mobile */
.total-pesanan-mobile {
    margin-top: 15px;
}

.total-pesanan-container {
    background: rgba(211, 47, 47, 0.08);
    padding: 10px 12px;
    border-radius: 8px;
    border-left: 4px solid #D32F2F;
}

.total-pesanan-label {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 2px;
}

.total-pesanan-amount {
    font-size: 16px;
    font-weight: 700;
    color: #D32F2F;
}

/* Mobile Responsive untuk Form Elements */
@media (max-width: 768px) {
    .form-group.full-width {
        width: 100% !important;
    }
    
    .form-row-three .form-group,
    .form-group-third {
        width: 100% !important;
    }
    
    .form-group.no-margin {
        margin-bottom: 0 !important;
    }
    
    .tab-button {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .tab-content {
        padding: 15px;
    }
    
    .form-control,
    .form-select {
        padding: 10px 8px;
        font-size: 14px;
    }
    
    .form-label {
        font-size: 12px;
        margin-bottom: 6px;
    }
    
    .form-label i {
        font-size: 12px;
        margin-right: 6px;
    }
    
    /* File Upload Buttons - Kecilkan icon di mobile */
    .file-action-btn i {
        font-size: 10px !important;
        margin-right: 3px !important;
    }
    
    .file-action-btn {
        padding: 5px 8px !important;
        font-size: 11px !important;
    }
    
    /* Link Remove Button - Kecilkan icon di mobile */
    .link-remove-btn i {
        font-size: 10px !important;
        margin-right: 3px !important;
    }
    
    .link-remove-btn {
        padding: 5px 8px !important;
        font-size: 11px !important;
    }
}

/* ============================================
   LOGIN REQUIRED MODAL STYLES
   ============================================ */

/* Login Required Modal - Desktop */
#loginRequiredModal {
    z-index: 10000 !important;
}

/* Desktop styles - lebih lebar dan font lebih kecil */
@media (min-width: 769px) {
    #loginRequiredModal > div {
        max-width: 520px !important;
        max-height: 85vh !important;
        border-radius: 20px !important;
    }
    
    #loginRequiredModal > div > div:first-child {
        padding: 24px 28px 18px 28px !important;
    }
    
    #loginRequiredModal > div > div:first-child > div:first-child {
        width: 60px !important;
        height: 60px !important;
        margin-bottom: 16px !important;
    }
    
    #loginRequiredModal > div > div:first-child > div:first-child i {
        font-size: 28px !important;
    }
    
    #loginRequiredModal > div > div:first-child h3 {
        font-size: 20px !important;
        margin-bottom: 10px !important;
    }
    
    #loginRequiredModal > div > div:first-child p {
        font-size: 15px !important;
    }
    
    #loginRequiredModal > div > div:last-child {
        padding: 18px 28px 24px 28px !important;
    }
    
    /* Benefits section font sizes */
    #loginRequiredModal > div > div:last-child > div:first-child h4 {
        font-size: 15px !important;
        margin-bottom: 14px !important;
    }
    
    #loginRequiredModal > div > div:last-child > div:first-child > div > div > div span {
        font-size: 13px !important;
    }
    
    /* Button sizes */
    #loginRequiredModal > div > div:last-child > div:nth-child(2) > button:first-child {
        font-size: 15px !important;
        padding: 14px 20px !important;
    }
    
    #loginRequiredModal > div > div:last-child > div:nth-child(2) > button:last-child {
        font-size: 14px !important;
        padding: 12px 20px !important;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    #loginRequiredModal > div {
        max-width: 95% !important;
        max-height: 90vh !important;
        border-radius: 16px !important;
    }
    
    /* Modal Header - Mobile */
    #loginRequiredModal > div > div:first-child {
        padding: 20px 20px 16px 20px !important;
    }
    
    /* Icon Container - Mobile */
    #loginRequiredModal > div > div:first-child > div:first-child {
        width: 60px !important;
        height: 60px !important;
        margin-bottom: 12px !important;
    }

    /* Icon - Mobile */
    #loginRequiredModal > div > div:first-child > div:first-child i {
        font-size: 24px !important;
    }

    /* Title - Mobile */
    #loginRequiredModal > div > div:first-child h3 {
        font-size: 18px !important;
        margin-bottom: 8px !important;
    }

    /* Description - Mobile */
    #loginRequiredModal > div > div:first-child p {
        font-size: 13px !important;
        line-height: 1.4 !important;
    }

    /* Modal Content - Mobile */
    #loginRequiredModal > div > div:last-child {
        padding: 16px 20px 20px 20px !important;
    }

    /* Benefits Section - Mobile */
    #loginRequiredModal > div > div:last-child > div:first-child {
        margin-bottom: 20px !important;
    }

    /* Benefits Title - Mobile */
    #loginRequiredModal > div > div:last-child > div:first-child h4 {
        font-size: 14px !important;
        margin-bottom: 12px !important;
    }

    #loginRequiredModal > div > div:last-child > div:first-child h4 i {
        font-size: 12px !important;
    }

    /* Benefits Grid - Mobile */
    #loginRequiredModal > div > div:last-child > div:first-child > div {
        gap: 8px !important;
    }

    /* Benefits Rows - Mobile */
    #loginRequiredModal > div > div:last-child > div:first-child > div > div {
        gap: 8px !important;
    }

    /* Benefit Cards - Mobile */
    #loginRequiredModal > div > div:last-child > div:first-child > div > div > div {
        padding: 8px !important;
        border-radius: 8px !important;
        gap: 8px !important;
    }

    /* Benefit Icons - Mobile */
    #loginRequiredModal > div > div:last-child > div:first-child > div > div > div i {
        font-size: 12px !important;
        width: 16px !important;
    }

    /* Benefit Text - Mobile */
    #loginRequiredModal > div > div:last-child > div:first-child > div > div > div span {
        font-size: 11px !important;
    }

    /* Action Buttons Container - Mobile */
    #loginRequiredModal > div > div:last-child > div:nth-child(2) {
        gap: 8px !important;
    }

    /* Primary Button - Mobile */
    #loginRequiredModal > div > div:last-child > div:nth-child(2) > button:first-child {
        padding: 12px 16px !important;
        font-size: 14px !important;
        border-radius: 10px !important;
        gap: 6px !important;
    }

    /* Secondary Button - Mobile */
    #loginRequiredModal > div > div:last-child > div:nth-child(2) > button:last-child {
        padding: 10px 16px !important;
        font-size: 13px !important;
        border-radius: 10px !important;
    }

    /* Register Link Section - Mobile */
    #loginRequiredModal > div > div:last-child > div:last-child {
        margin-top: 16px !important;
        padding-top: 16px !important;
    }

    #loginRequiredModal > div > div:last-child > div:last-child p {
        font-size: 12px !important;
    }

    #loginRequiredModal > div > div:last-child > div:last-child a {
        font-size: 12px !important;
    }
}

/* Extra Small Mobile (480px and below) */
@media (max-width: 480px) {
    #loginRequiredModal > div {
        max-width: 98% !important;
        max-height: 95vh !important;
        border-radius: 12px !important;
    }
    
    #loginRequiredModal > div > div:first-child {
        padding: 16px 16px 12px 16px !important;
    }
    
    #loginRequiredModal > div > div:first-child > div:first-child {
        width: 50px !important;
        height: 50px !important;
        margin-bottom: 10px !important;
    }
    
    #loginRequiredModal > div > div:first-child > div:first-child i {
        font-size: 20px !important;
    }
    
    #loginRequiredModal > div > div:first-child h3 {
        font-size: 16px !important;
        margin-bottom: 6px !important;
    }
    
    #loginRequiredModal > div > div:first-child p {
        font-size: 12px !important;
    }
    
    #loginRequiredModal > div > div:last-child {
        padding: 12px 16px 16px 16px !important;
    }
    
    #loginRequiredModal > div > div:last-child > div:first-child {
        margin-bottom: 16px !important;
    }
    
    #loginRequiredModal > div > div:last-child > div:first-child h4 {
        font-size: 13px !important;
        margin-bottom: 10px !important;
    }
    
    #loginRequiredModal > div > div:last-child > div:first-child h4 i {
        font-size: 11px !important;
    }
    
    #loginRequiredModal > div > div:last-child > div:first-child > div {
        gap: 6px !important;
    }
    
    #loginRequiredModal > div > div:last-child > div:first-child > div > div {
        gap: 6px !important;
    }
    
    #loginRequiredModal > div > div:last-child > div:first-child > div > div > div {
        padding: 6px !important;
        border-radius: 6px !important;
        gap: 6px !important;
    }
    
    #loginRequiredModal > div > div:last-child > div:first-child > div > div > div i {
        font-size: 10px !important;
        width: 14px !important;
    }
    
    #loginRequiredModal > div > div:last-child > div:first-child > div > div > div span {
        font-size: 10px !important;
    }
    
    #loginRequiredModal > div > div:last-child > div:nth-child(2) {
        gap: 6px !important;
    }
    
    #loginRequiredModal > div > div:last-child > div:nth-child(2) > button:first-child {
        padding: 10px 14px !important;
        font-size: 13px !important;
        border-radius: 8px !important;
        gap: 4px !important;
    }
    
    #loginRequiredModal > div > div:last-child > div:nth-child(2) > button:last-child {
        padding: 8px 14px !important;
        font-size: 12px !important;
        border-radius: 8px !important;
    }
    
    #loginRequiredModal > div > div:last-child > div:last-child {
        margin-top: 12px !important;
        padding-top: 12px !important;
    }
    
    #loginRequiredModal > div > div:last-child > div:last-child p {
        font-size: 11px !important;
    }
    
    #loginRequiredModal > div > div:last-child > div:last-child a {
        font-size: 11px !important;
    }
}

/* ============================================
   UPLOAD FORM SECTION STYLES
   ============================================ */

/* Upload Form Container - styling sudah didefinisikan di atas */

.upload-form-container h6 {
    font-size: 16px;
    font-weight: 700;
    color: #D32F2F;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid #D32F2F;
    padding-bottom: 10px;
}

/* Pastikan tips title tidak mewarisi border dari parent */
.upload-tips-section h6 {
    border-bottom: none !important;
    padding-bottom: 0 !important;
    font-size: 13px !important;
}

/* Override untuk tips title secara spesifik */
.upload-tips-section .upload-tips-title {
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

/* Override untuk tips title secara spesifik */
.upload-tips-section .upload-tips-title {
    border-bottom: none !important;
    padding-bottom: 0 !important;
    font-size: 13px !important;
}

/* Override untuk link tips title secara spesifik */
.link-tips-section h6 {
    border-bottom: none !important;
    padding-bottom: 0 !important;
    font-size: 13px !important;
}

.link-tips-section .link-tips-title {
    border-bottom: none !important;
    padding-bottom: 0 !important;
    font-size: 13px !important;
}

/* Override untuk platform info title secara spesifik */
.platform-info-box h6 {
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

.platform-info-box .platform-info-title {
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

/* Override untuk platform info section */
.platform-info-box h6 {
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

/* Override untuk platform info section */
.platform-info-box h6 {
    border-bottom: none !important;
    padding-bottom: 0 !important;
    font-size: 13px !important;
}

/* Upload Tab Container */
.upload-tab-container {
    margin-bottom: 20px;
}

.upload-tab-header {
    display: flex;
    gap: 8px;
    background: #f3f4f6;
    padding: 4px;
    border-radius: 10px;
}

.upload-tab-button {
    flex: 1;
    padding: 10px 16px;
    background: transparent;
    color: #6b7280;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.upload-tab-button.active {
    background: #ffffff;
    color: #D32F2F;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.upload-tab-button i {
    margin-right: 6px;
}

/* Upload Tab Content */
.upload-tab-content {
    display: none;
}

.upload-tab-content.active {
    display: block;
}

/* Default state untuk tab content */
#upload-tab-file-upload {
    display: block;
}

#upload-tab-link-upload {
    display: none;
}

/* Upload Area and Tips Container */
.upload-area-and-tips {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

/* Upload Area */
.upload-area {
    flex: 1;
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    padding: 23px;
    text-align: center;
    background: #f9fafb;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 180px;
}

.upload-area:hover {
    border-color: #D32F2F;
    background: #f0fdf4;
}

/* Upload Default UI */
.upload-default {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* Default state untuk upload default */
#uploadDefault {
    display: flex;
}

.upload-icon {
    margin-bottom: 12px;
}

.upload-icon i {
    font-size: 36px;
    color: #D32F2F;
    opacity: 0.7;
}

.upload-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.upload-subtitle {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 12px;
}

.upload-cta {
    display: inline-block;
    padding: 6px 16px;
    background: #D32F2F;
    color: white;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.upload-cta i {
    margin-right: 4px;
}

/* File Preview */
.file-preview {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.file-preview.show {
    display: flex;
}

/* Default state untuk file preview */
#filePreview {
    display: none;
}

.preview-icon {
    margin-bottom: 12px;
}

.preview-icon i {
    font-size: 36px;
    color: #D32F2F;
    opacity: 0.7;
}

.file-name {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
    text-align: center;
    word-break: break-all;
}

.file-status {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 12px;
}

.file-actions {
    display: flex;
    gap: 8px;
}

/* Upload Tips Section */
.upload-tips-section {
    flex: 1;
    padding: 15px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 8px;
    border-left: 4px solid #D32F2F;
}

.upload-tips-title {
    font-size: 13px !important;
    font-weight: 600;
    color: #D32F2F;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

.upload-tips-list {
    font-size: 12px;
    color: #374151;
    line-height: 1.8;
    margin: 0;
    padding-left: 20px;
}

/* File Info Section */
.file-info-section {
    margin-top: 15px;
    padding: 12px;
    background: #f3f4f6;
    border-radius: 8px;
    font-size: 12px;
    color: #6b7280;
    position: relative;
}

.file-info-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.file-info-main {
    flex: 1;
}

.file-info-title {
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.file-info-title i {
    color: #D32F2F;
}

.file-info-details {
    padding-left: 22px;
}

.file-info-note {
    font-size: 11px;
    font-style: italic;
}

.file-size-info {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.file-size-info i {
    color: #D32F2F;
}

/* Link Upload Section */
.link-upload-section {
    margin-bottom: 15px;
}

.link-upload-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.link-upload-label i {
    margin-right: 6px;
    color: #D32F2F;
}

.link-upload-input {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 13px;
    transition: all 0.3s ease;
}

.link-upload-input:focus {
    outline: none;
    border-color: #D32F2F;
    background: #f0fdf4;
}

/* Platform Info Box */
.platform-info-box {
    margin-top: 15px;
    padding: 12px;
    background: #eff6ff;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.platform-info-title {
    font-size: 13px !important;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

.platform-info-content {
    font-size: 12px;
    color: #374151;
    line-height: 1.8;
}

.platform-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.platform-item i {
    font-size: 16px;
    width: 16px;
}

.platform-item .fab.fa-google {
    font-family: 'Font Awesome 6 Brands' !important;
    color: #4285f4;
    font-weight: 400 !important;
}

.platform-item .fas.fa-palette {
    font-family: 'Font Awesome 6 Free' !important;
    color: #00c4cc;
    font-weight: 900 !important;
}

.platform-item:last-child {
    margin-bottom: 0;
}

/* Design Links List */
.design-links-list {
    margin-top: 15px;
    display: none;
}

.design-links-list.show {
    display: block;
}

/* Default state untuk design links list */
#designLinksList {
    display: none;
}

.links-list-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.link-list-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Link Tips Section */
.link-tips-section {
    margin-top: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
}

.link-tips-title {
    font-size: 13px !important;
    font-weight: 600;
    color: #92400e;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

.link-tips-list {
    font-size: 12px;
    color: #78350f;
    line-height: 1.8;
    margin: 0;
    padding-left: 20px;
}

/* Checkout Section */
.checkout-section {
    margin-top: 25px;
}

.checkout-title {
    font-size: 16px;
    font-weight: 700;
    color: #D32F2F;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid #D32F2F;
    padding-bottom: 10px;
}

/* Total Pesanan Checkout Mobile */
.total-pesanan-checkout-mobile {
    margin-bottom: 15px;
    padding: 12px;
    background: rgba(211, 47, 47, 0.08);
    border-radius: 8px;
    border-left: 4px solid #D32F2F;
    display: none;
}

/* Mobile: Tampilkan total pesanan checkout */
@media (max-width: 768px) {
    .total-pesanan-checkout-mobile {
        display: block !important;
    }
    
    .order-summary-desktop {
        display: none !important;
    }
}

.total-pesanan-checkout-label {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 2px;
}

.total-pesanan-checkout-amount {
    font-size: 18px;
    font-weight: 700;
    color: #D32F2F;
}

.total-pesanan-checkout-note {
    font-size: 11px;
    color: #6b7280;
    margin-top: 4px;
}

/* Order Summary Container */
.order-summary-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-summary-desktop {
    flex: 1;
    display: block;
}

.order-summary-label {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 2px;
}

.order-summary-amount {
    font-size: 18px;
    font-weight: 700;
    color: #D32F2F;
}

.order-summary-note {
    font-size: 11px;
    color: #6b7280;
    line-height: 1.4;
}

/* Order Buttons */
.order-buttons {
    flex: 0 0 auto;
    display: flex;
    gap: 8px;
}

/* Default state untuk order buttons */
.order-buttons {
    display: flex;
}

/* Default state untuk order buttons */
.order-buttons {
    display: flex;
}

.btn-add-cart {
    padding: 8px 16px;
    background: #f3f4f6;
    color: #374151;
    border: 2px solid #d1d5db;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 120px;
    justify-content: center;
}

.btn-add-cart:hover {
    background: #e5e7eb;
    border-color: #9ca3af;
}

.btn-pay-now {
    padding: 8px 16px;
    background: #E63946;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 120px;
    justify-content: center;
}

.btn-pay-now:hover {
    background: #B91C1C;
}

/* Mobile Responsive untuk Upload Form */
@media (max-width: 768px) {
    /* Upload Tab Container - Full Width di Mobile */
    .upload-tab-container {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Upload Tab Header - Full Width di Mobile */
    .upload-tab-header {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: row !important;
        gap: 4px !important;
    }
    
    .upload-tab-button {
        flex: 1 !important;
        width: 50% !important;
        min-width: 50% !important;
        max-width: 50% !important;
        padding: 8px 12px !important;
        font-size: 12px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
        margin: 0 !important;
    }
    
    .upload-area-and-tips {
        flex-direction: column;
        gap: 10px;
    }
    
    .upload-area {
        min-height: 120px;
        padding: 15px;
    }
    
    .upload-icon i {
        font-size: 24px;
    }
    
    .upload-title {
        font-size: 13px;
    }
    
    .upload-subtitle {
        font-size: 11px;
    }
    
    .upload-cta {
        padding: 4px 12px;
        font-size: 11px;
    }
    
    .upload-tips-section {
        padding: 12px;
    }
    
    .upload-tips-title {
        font-size: 12px;
    }
    
    .upload-tips-list {
        font-size: 11px;
    }
    
    .file-info-section {
        padding: 10px;
    }
    
    .file-info-content {
        flex-direction: column;
        gap: 8px;
    }
    
    .link-upload-input {
        padding: 8px 10px;
        font-size: 14px; /* Kecilkan font size */
    }
    
    /* Sembunyikan section "Penting untuk Diperhatikan" di mobile */
    .link-tips-section {
        display: none !important;
    }
    
    /* Kecilkan label dan form elements di mobile */
    .link-upload-label {
        font-size: 12px !important;
    }
    
    .link-upload-input::placeholder {
        font-size: 12px !important;
    }
    
    /* Kecilkan platform info box di mobile */
    .platform-info-box {
        padding: 10px !important;
    }
    
    .platform-info-title {
        font-size: 12px !important;
    }
    
    .platform-info-content {
        font-size: 11px !important;
    }
    
    .order-buttons {
        flex-direction: row !important;
        gap: 8px;
        width: 100% !important;
        justify-content: stretch !important;
    }
    
    .btn-add-cart,
    .btn-pay-now {
        flex: 1 !important;
        width: auto !important;
        min-width: 0 !important;
        padding: 8px 4px;
        font-size: 11px;
        white-space: nowrap !important;
        overflow: hidden;
        text-overflow: ellipsis;
        box-sizing: border-box !important;
    }
    
    .btn-add-cart {
        flex: 1.3 !important;
    }
    
    .btn-pay-now {
        flex: 1 !important;
    }
    
    /* Pastikan text tidak wrap */
    .btn-add-cart span,
    .btn-pay-now span {
        white-space: nowrap !important;
    }
    
    /* Total pesanan checkout mobile - tampilkan di mobile */
    .total-pesanan-checkout-mobile {
        display: block !important;
    }
    
    /* Order summary desktop - sembunyikan di mobile */
    .order-summary-desktop {
        display: none !important;
    }
}

/* ============================================
   THREE STEPS SECTION STYLES
   ============================================ */

.three-steps-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 20px 0;
    margin: 30px 0;
}

.three-steps-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
}

.three-steps-content {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.three-steps-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.three-steps-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #D32F2F;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 3px 10px rgba(0,122,71,0.3);
    flex-shrink: 0;
}

.three-steps-text {
    display: flex;
    flex-direction: column;
}

.three-steps-title {
    font-size: 13px;
    font-weight: 600;
    color: #166534;
}

.three-steps-subtitle {
    font-size: 11px;
    color: #4b5563;
}

.three-steps-arrow {
    color: #22c55e;
    font-size: 24px;
    font-weight: 700;
}

/* Mobile responsive untuk three steps */
@media (max-width: 768px) {
    .three-steps-section {
        margin: 15px 0;
        padding: 15px 0;
    }
    
    .three-steps-content {
        gap: 20px;
    }
    
    .three-steps-number {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .three-steps-title {
        font-size: 12px;
    }
    
    .three-steps-subtitle {
        font-size: 10px;
    }
    
    .three-steps-arrow {
        font-size: 20px;
    }
}

/* ============================================
   RATING MODAL STYLES
   ============================================ */

/* Rating Modal */
.rating-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.rating-modal-content {
    background-color: #fff;
    margin: 0;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease-out;
    transform: translateY(0);
}

/* Rating Modal Header */
.rating-modal-header {
    padding: 24px 24px 16px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rating-modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.rating-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.rating-modal-close:hover {
    background: #f5f5f5;
    color: #666;
}

/* Rating Modal Body */
.rating-modal-body {
    padding: 24px;
    max-height: calc(90vh - 120px);
    overflow-y: auto;
}

/* Rating Summary */
.rating-summary {
    display: flex;
    gap: 40px;
    margin-bottom: 24px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
}

.rating-score {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rating-score .rating-display {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating-score .rating-display i {
    color: #ffc107;
    font-size: 32px;
}

.rating-score .rating-number {
    font-size: 32px;
    font-weight: 800;
    color: #333;
    line-height: 1;
}

.rating-score .rating-max {
    font-size: 16px;
    color: #999;
}

.rating-score .satisfaction-text {
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

.rating-score .total-text {
    font-size: 12px;
    color: #666;
}

/* Star Breakdown */
.star-breakdown {
    flex: 1;
    min-width: 200px;
}

.star-breakdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.star-breakdown-icon {
    color: #ffc107;
    font-size: 12px;
    width: 16px;
}

.star-breakdown-number {
    font-size: 12px;
    color: #333;
    width: 20px;
}

.star-breakdown-bar {
    flex: 1;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.star-breakdown-fill {
    height: 100%;
    background: #D32F2F;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.star-breakdown-count {
    font-size: 11px;
    color: #666;
    width: 35px;
    text-align: right;
}

/* Filter Rating */
.filter-section {
    margin-bottom: 16px;
}

.filter-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.filter-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.filter-btn {
    padding: 6px 12px;
    border: 1px solid #ddd;
    background: #fff;
    color: #666;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #D32F2F;
    color: #fff;
}

/* Rating Items Container */
.rating-items-container {
    max-height: 350px;
    overflow-y: auto;
}

/* Rating Item */
.rating-item {
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}

.rating-item-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.rating-stars-small {
    flex-shrink: 0;
}

.rating-stars-small i {
    font-size: 14px;
}

.rating-stars-small .fas {
    color: #ffc107;
}

.rating-stars-small .far {
    color: #ddd;
}

.rating-content {
    flex: 1;
}

.rating-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.rating-name {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.rating-date {
    font-size: 12px;
    color: #999;
}

.rating-comment {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    margin-top: 4px;
    margin-bottom: 8px;
}

/* Balasan Section */
.balasan-section {
    margin-top: 8px;
}

.btn-lihat-balasan {
    background: none;
    border: none;
    color: #D32F2F;
    font-size: 12px;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
}

.balasan-box {
    display: none;
    margin-top: 8px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #D32F2F;
}

.balasan-label {
    font-size: 12px;
    font-weight: 600;
    color: #D32F2F;
    margin-bottom: 4px;
}

.balasan-text {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

/* Info Section */
.rating-info {
    text-align: center;
    padding: 16px;
    color: #666;
    font-size: 13px;
}

.load-all-btn {
    background: none;
    border: none;
    color: #D32F2F;
    cursor: pointer;
    text-decoration: underline;
    font-size: 13px;
}

/* Empty State */
.rating-empty {
    text-align: center;
    padding: 40px 20px;
    color: #999;
}

.rating-empty-icon {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 16px;
}

.rating-empty-title {
    font-size: 16px;
    margin-bottom: 8px;
}

.rating-empty-subtitle {
    font-size: 14px;
}

/* Scrollbar Styling */
.rating-modal-body::-webkit-scrollbar,
.rating-items-container::-webkit-scrollbar {
    width: 6px;
}

.rating-modal-body::-webkit-scrollbar-track,
.rating-items-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.rating-modal-body::-webkit-scrollbar-thumb,
.rating-items-container::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.rating-modal-body::-webkit-scrollbar-thumb:hover,
.rating-items-container::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .rating-modal-content {
        width: 95%;
        margin: 0;
        max-height: 85vh;
    }
    
    .rating-modal-header {
        padding: 20px 20px 16px;
    }
    
    .rating-modal-header h3 {
        font-size: 18px;
    }
    
    .rating-modal-body {
        padding: 20px;
    }
    
    .rating-summary {
        flex-direction: column;
        gap: 20px;
        padding: 16px;
    }
    
    .star-breakdown {
        min-width: auto;
    }
    
    .filter-buttons {
        gap: 6px;
    }
    
    .filter-btn {
        padding: 5px 10px;
        font-size: 11px;
    }
    
    .rating-items-container {
        max-height: 300px;
    }
}

/* Modal Info Bahan Styles */
#bahanModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

#bahanModal .modal-container {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

#bahanModal .modal-header {
    padding: 24px 28px;
    border-bottom: 2px solid #f3f4f6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
    border-radius: 16px 16px 0 0;
}

#bahanModal .modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #D32F2F;
    display: flex;
    align-items: center;
    gap: 10px;
}

#bahanModal .modal-close-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: #fee2e2;
    color: #dc2626;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

#bahanModal .modal-close-btn:hover {
    background: #fecaca;
}

#bahanModal .modal-close-btn i {
    font-size: 18px;
}

#bahanModal .modal-content {
    padding: 28px;
}

#bahanModal .material-section {
    margin-bottom: 24px;
    padding: 20px;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

#bahanModal .material-section:last-child {
    margin-bottom: 0;
}

#bahanModal .material-header {
    margin: 0 0 12px 0;
    font-size: 16px;
    font-weight: 700;
    color: #D32F2F;
    display: flex;
    align-items: center;
    gap: 8px;
}

#bahanModal .material-number {
    width: 30px;
    height: 30px;
    background: #D32F2F;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

#bahanModal .material-content {
    font-size: 13px;
    line-height: 1.8;
    color: #475569;
}

#bahanModal .material-content p {
    margin: 0 0 12px 0;
}

#bahanModal .material-content p:last-child {
    margin: 0 0 8px 0;
}

#bahanModal .material-content ul {
    margin: 0 0 12px 20px;
    padding: 0;
}

#bahanModal .material-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

#bahanModal .material-badge {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
}

/* Mobile Responsive Styles for Modal */
@media (max-width: 768px) {
    #bahanModal .modal-header {
        padding: 16px 20px;
    }
    
    #bahanModal .modal-header h3 {
        font-size: 16px;
    }
    
    #bahanModal .modal-content {
        padding: 16px;
    }
    
    #bahanModal .material-header {
        font-size: 14px;
    }
    
    #bahanModal .material-number {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
    
    #bahanModal .material-content {
        font-size: 11px;
        line-height: 1.6;
    }
    
    #bahanModal .material-badge {
        font-size: 9px;
        padding: 3px 8px;
    }
}

/* ============================================
   BEAUTIFUL FILE ACTION BUTTONS STYLES
   ============================================ */

/* File Action Buttons Container */
.file-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

/* Base File Action Button Styles */
.file-action-btn {
    padding: 5px 10px;
    border: none;
    border-radius: 16px;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    min-width: 70px;
}

/* File Action Button Icons */
.file-action-btn i {
    font-size: 9px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}

/* Ganti File Button - Beautiful Blue Gradient */
.file-change-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border: 2px solid transparent;
}

.file-change-btn:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    border-color: #3b82f6;
}

.file-change-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* Hapus Button - Beautiful Red Gradient */
.file-delete-btn {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border: 2px solid transparent;
}

.file-delete-btn:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
    border-color: #ef4444;
}

.file-delete-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

/* Button Text and Icons */
.file-action-btn span,
.file-action-btn {
    position: relative;
    z-index: 3;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Icon Animations - Simplified */
.file-action-btn:hover i {
    transform: scale(1.05);
}


/* Ripple Effect */
.file-action-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 1;
}

.file-action-btn:active::after {
    width: 300px;
    height: 300px;
}

/* Mobile Responsive for File Action Buttons */
@media (max-width: 768px) {
    .file-actions {
        gap: 8px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .file-action-btn {
        flex: 1;
        padding: 6px 8px;
        font-size: 9px;
        min-width: auto;
        max-width: 48%;
        gap: 3px;
        letter-spacing: 0.1px;
    }
    
    .file-action-btn i {
        font-size: 8px;
    }
    
    /* Smaller hover effects on mobile */
    .file-action-btn:hover {
        transform: translateY(-1px);
    }
    
    .file-change-btn:hover {
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    }
    
    .file-delete-btn:hover {
        box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
    }
}

/* Extra Small Mobile (480px and below) */
@media (max-width: 480px) {
    .file-actions {
        gap: 8px;
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
    }
    
    .file-action-btn {
        flex: 1;
        padding: 6px 8px;
        font-size: 9px;
        min-width: auto;
        max-width: 48%;
    }
    
    .file-action-btn i {
        font-size: 8px;
    }
}

/* Focus States for Accessibility */
.file-action-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

.file-delete-btn:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.3);
}

/* Disabled State */
.file-action-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.file-action-btn:disabled:hover {
    transform: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    .file-action-btn {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    
    .file-change-btn:hover {
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
    }
    
    .file-delete-btn:hover {
        box-shadow: 0 8px 25px rgba(239, 68, 68, 0.6);
    }
}

/* File Size Alert Modal Styles */
.file-size-alert-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fileSizeModalFadeIn 0.3s ease;
}

.file-size-alert-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.file-size-alert-modal-content {
    background-color: #fff;
    margin: auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: fileSizeModalSlideIn 0.3s ease;
    overflow: hidden;
}

.file-size-alert-modal-header {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
}

.file-size-alert-modal-header .alert-icon {
    font-size: 32px;
    margin-bottom: 8px;
    animation: fileSizeModalBounce 0.6s ease;
}

.file-size-alert-modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

.file-size-alert-modal-body {
    padding: 25px;
    text-align: center;
}

.file-size-alert-modal-body p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.file-size-info-modal {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    border-left: 4px solid #ff6b6b;
}

.file-size-info-modal .file-name {
    font-weight: bold;
    color: #333;
    font-size: 14px;
    margin-bottom: 8px;
}

.file-size-info-modal .file-size {
    color: #ff6b6b;
    font-size: 13px;
    font-weight: bold;
}

.file-size-alert-modal-footer {
    padding: 15px 25px;
    text-align: center;
    background: #f8f9fa;
}

.btn-file-size-modal {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn-file-size-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.btn-file-size-modal:active {
    transform: translateY(0);
}

.close-file-size-modal {
    position: absolute;
    top: 12px;
    right: 15px;
    color: white;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.close-file-size-modal:hover {
    opacity: 1;
}

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

@keyframes fileSizeModalSlideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fileSizeModalBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Loading Overlay Styles */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    backdrop-filter: blur(5px);
}

.loading-content {
    background: white;
    border-radius: 20px;
    padding: 40px 50px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
}

.loading-spinner {
    font-size: 50px;
    color: #D32F2F;
    margin-bottom: 20px;
}

.loading-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}

.progress-container {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #D32F2F 0%, #E63946 100%);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 10px;
}

.loading-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.loading-percentage {
    font-size: 20px;
    font-weight: 700;
    color: #D32F2F;
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 768px) {
    .loading-content {
        padding: 30px 30px;
        max-width: 90%;
    }
    
    .loading-spinner {
        font-size: 40px;
    }
    
    .loading-title {
        font-size: 20px;
    }
}

/* ============================================
   MODAL BAHAN STYLES (A3BW)
   ============================================ */

/* Modal bahan container */
.bahan-modal-container {
    display: none !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0,0,0,0.6) !important;
    z-index: 9999 !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bahan-modal-container.show {
    display: flex !important;
    opacity: 1 !important;
}

.bahan-modal-content {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.bahan-modal-container.show .bahan-modal-content {
    transform: scale(1);
}

.bahan-modal-header {
    padding: 24px 28px;
    border-bottom: 2px solid #f3f4f6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
    border-radius: 16px 16px 0 0;
}

.bahan-modal-title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #D32F2F;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bahan-modal-close-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: #fee2e2;
    color: #dc2626;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.bahan-modal-close-btn:hover {
    background: #fecaca;
}

.bahan-modal-close-btn i {
    font-size: 18px;
}

.bahan-modal-body {
    padding: 28px;
}

.bahan-item {
    margin-bottom: 24px;
    padding: 20px;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.bahan-item:last-child {
    margin-bottom: 0;
}

.bahan-item-header {
    margin: 0 0 12px 0;
    font-size: 16px;
    font-weight: 700;
    color: #D32F2F;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bahan-item-number {
    width: 30px;
    height: 30px;
    background: #D32F2F;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.bahan-item-content {
    font-size: 13px;
    line-height: 1.8;
    color: #475569;
}

.bahan-description {
    margin: 0 0 12px 0;
}

.bahan-description strong {
    font-weight: 700;
}

.bahan-kegunaan-title {
    margin: 0 0 8px 0;
    font-weight: 700;
}

.bahan-kegunaan-list {
    margin: 0 0 12px 20px;
    padding: 0;
}

.bahan-kegunaan-list li {
    margin-bottom: 4px;
}

.bahan-keunggulan-container {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.bahan-keunggulan-badge {
    background: #dcfce7;
    color: #166534;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    margin: 2px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.bahan-modal-empty {
    text-align: center;
    padding: 40px;
    color: #6b7280;
}

.bahan-modal-empty i {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.bahan-modal-empty p {
    margin: 0;
    font-size: 16px;
}

/* Mobile responsive untuk modal bahan */
@media (max-width: 768px) {
    .bahan-modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .bahan-modal-header {
        padding: 16px 20px;
    }
    
    .bahan-modal-title {
        font-size: 16px;
    }
    
    .bahan-modal-body {
        padding: 16px;
    }
    
    .bahan-item {
        padding: 16px;
    }
    
    .bahan-item-header {
        font-size: 14px;
    }
    
    .bahan-item-number {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
    
    .bahan-item-content {
        font-size: 11px;
        line-height: 1.6;
    }
    
    .bahan-keunggulan-badge {
        font-size: 9px;
        padding: 3px 8px;
    }
}

@media (max-width: 480px) {
    .bahan-modal-content {
        width: 98%;
        max-height: 95vh;
    }
    
    .bahan-modal-header {
        padding: 12px 16px;
    }
    
    .bahan-modal-title {
        font-size: 14px;
    }
    
    .bahan-modal-body {
        padding: 12px;
    }
    
    .bahan-item {
        padding: 12px;
    }
    
    .bahan-item-header {
        font-size: 13px;
    }
    
    .bahan-item-content {
        font-size: 10px;
    }
}

/* ============================================
   LOGIN REQUIRED MODAL BODY STYLES (Kartu Nama)
   ============================================ */

.login-required-modal-body {
    padding: 18px 28px 24px 28px;
}

.login-required-benefits-section {
    margin-bottom: 28px;
}

.login-required-benefits-title {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.login-required-benefits-title i {
    color: #f59e0b;
    font-size: 14px;
}

.login-required-benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.login-required-benefits-row {
    display: flex;
    gap: 12px;
}

.login-required-benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 10px;
    flex: 1;
}

.login-required-benefit-item.login-benefit-red {
    border-left: 4px solid #D32F2F;
}

.login-required-benefit-item.login-benefit-red i {
    color: #D32F2F;
    font-size: 16px;
    width: 20px;
}

.login-required-benefit-item.login-benefit-blue {
    border-left: 4px solid #3b82f6;
}

.login-required-benefit-item.login-benefit-blue i {
    color: #3b82f6;
    font-size: 16px;
    width: 20px;
}

.login-required-benefit-item.login-benefit-purple {
    border-left: 4px solid #8b5cf6;
}

.login-required-benefit-item.login-benefit-purple i {
    color: #8b5cf6;
    font-size: 16px;
    width: 20px;
}

.login-required-benefit-item.login-benefit-gold {
    border-left: 4px solid #f59e0b;
}

.login-required-benefit-item.login-benefit-gold i {
    color: #f59e0b;
    font-size: 16px;
    width: 20px;
}

.login-required-benefit-text {
    font-size: 14px;
    color: #374151;
    font-weight: 500;
}

.login-required-actions-container {
    display: flex;
    gap: 12px;
    flex-direction: column;
}

.login-required-primary-button {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #D32F2F 0%, #E63946 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.login-required-primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

.login-required-secondary-button {
    width: 100%;
    padding: 14px 24px;
    background: transparent;
    color: #6b7280;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-required-secondary-button:hover {
    border-color: #d1d5db;
    color: #374151;
}

.login-required-register-section {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f3f4f6;
}

.login-required-register-text {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
}

.login-required-register-link {
    color: #D32F2F;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.login-required-register-link:hover {
    color: #B91C1C;
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .login-required-modal-body {
        padding: 16px 20px 20px 20px;
    }
    
    .login-required-benefits-section {
        margin-bottom: 20px;
    }
    
    .login-required-benefits-title {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .login-required-benefits-grid {
        gap: 8px;
    }
    
    .login-required-benefits-row {
        flex-direction: column;
        gap: 8px;
    }
    
    .login-required-benefit-item {
        padding: 8px;
    }
    
    .login-required-benefit-text {
        font-size: 12px;
    }
    
    .login-required-primary-button {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .login-required-secondary-button {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .login-required-register-section {
        margin-top: 16px;
        padding-top: 16px;
    }
    
    .login-required-register-text {
        font-size: 12px;
    }
    
    .login-required-register-link {
        font-size: 12px;
    }
}

/* ============================================
   MAIN TAB STYLES (MMT)
   ============================================ */

/* CSS untuk tab switching - menampilkan hanya tab aktif */
.main-tab-content {
    display: none;
    padding: 8px;
    overflow: visible !important;
}

.main-tab-content.active {
    display: block;
    overflow: visible !important;
}

/* Styling untuk main tab buttons yang lebih cantik */
.main-tab-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.main-tab-header {
    display: flex;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-bottom: 1px solid #e2e8f0;
    padding: 2px;
}

.main-tab-button {
    flex: 1;
    padding: 8px 12px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 6px;
    margin: 0 1px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-transform: none;
    letter-spacing: 0;
}

.main-tab-button i {
    font-size: 13px;
    transition: all 0.3s ease;
}

.main-tab-button:hover:not(.active) {
    background: rgba(211, 47, 47, 0.08);
    color: #D32F2F;
    transform: translateY(-1px);
}

.main-tab-button.active {
    background: linear-gradient(135deg, #D32F2F 0%, #E63946 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
    transform: translateY(-1px);
}

.main-tab-button.active i {
    color: white;
}

.main-tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: #D32F2F;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(211, 47, 47, 0.3);
}

/* Hover effect untuk semua tombol */
.main-tab-button:active {
    transform: translateY(0);
}

/* Responsive design untuk mobile */
@media (max-width: 768px) {
    .main-tab-button {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .main-tab-button i {
        font-size: 12px;
    }
}

/* CSS khusus untuk separator di semua halaman product-order-page - override separator umum dan style.css */
.product-order-page .separator {
    background: transparent !important;
    background-image: none !important;
    background-color: transparent !important;
    border: none !important;
    border-top: 2px dotted #dee2e6 !important;
    border-width: 2px !important;
    border-style: dotted !important;
    border-color: #dee2e6 !important;
    margin: 15px 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 0 !important;
    padding-top: 0 !important;
    position: relative !important;
    height: 0 !important;
    min-height: 0 !important;
    max-height: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: visible !important;
    line-height: 0 !important;
}

/* CSS khusus untuk semua separator - tampilkan teks "TAMBAHAN" di separator dengan garis panjang */
.product-order-page .separator::after {
    content: "TAMBAHAN" !important;
    position: absolute !important;
    top: -9px !important;
    left: 0 !important;
    background: white !important;
    background-color: white !important;
    padding: 0 10px 0 0 !important;
    margin: 0 !important;
    color: #D32F2F !important;
    font-weight: 600 !important;
    font-size: 12px !important;
    white-space: nowrap !important;
    z-index: 2 !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: auto !important;
    max-width: none !important;
    line-height: 1 !important;
    transform: none !important;
}

/* CSS khusus untuk menyembunyikan disclaimer warna di mobile */
@media (max-width: 768px) {
    .disclaimer-warna-hidden {
        display: none !important;
    }
}

/* CSS untuk mengecilkan font spesifikasi produk dan catatan warna hanya untuk desktop MMT */
/* Hanya berlaku untuk halaman yang memiliki main-tab-content (hanya ada di MMT) */
@media (min-width: 769px) {
    /* CSS untuk mengecilkan font deskripsi HTML produk - hanya untuk MMT */
    .product-order-page .main-tab-content .deskripsi-html {
        font-size: 10px !important;
    }
    
    .product-order-page .main-tab-content .deskripsi-html p {
        font-size: 10px !important;
    }
    
    .product-order-page .main-tab-content .deskripsi-html li {
        font-size: 10px !important;
    }
    
    .product-order-page .main-tab-content .deskripsi-html h1 { font-size: 14px !important; }
    .product-order-page .main-tab-content .deskripsi-html h2 { font-size: 13px !important; }
    .product-order-page .main-tab-content .deskripsi-html h3 { font-size: 12px !important; }
    .product-order-page .main-tab-content .deskripsi-html h4 { font-size: 11px !important; }
    .product-order-page .main-tab-content .deskripsi-html h5 { font-size: 10px !important; }
    .product-order-page .main-tab-content .deskripsi-html h6 { font-size: 9px !important; }
    
    /* CSS untuk mengecilkan font spesifikasi produk dan catatan warna - hanya untuk MMT */
    .product-order-page .main-tab-content .disclaimer-warna-content h6 {
        font-size: 12px !important;
    }
    
    .product-order-page .main-tab-content .disclaimer-warna-content p {
        font-size: 11px !important;
    }
    
    .product-order-page .main-tab-content .disclaimer-warna-highlight {
        font-size: 11px !important;
    }
    
    .product-order-page .main-tab-content .disclaimer-warna-highlight i {
        font-size: 10px !important;
    }
}

/* CSS untuk memastikan tab switching upload desain bekerja dengan benar */
.upload-tab-button.active {
    background: #ffffff !important;
    color: #D32F2F !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1) !important;
}

.upload-tab-button:not(.active) {
    background: transparent !important;
    color: #6b7280 !important;
    box-shadow: none !important;
}

/* Upload Tab Content Styles */
.upload-tab-content {
    display: none;
}

.upload-tab-content.active {
    display: block;
}

/* ============================================
   LEBARMAX MODAL STYLES (MMT)
   ============================================ */

/* Modal Lebarmax Styling sesuai tema */
.lebarmax-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lebarmax-modal-overlay.show {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.lebarmax-modal-container {
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lebarmax-modal-overlay.show .lebarmax-modal-container {
    transform: scale(1) translateY(0);
}

.lebarmax-modal-content {
    background: linear-gradient(145deg, #ffffff 0%, #f8fffe 100%);
    border-radius: 20px;
    width: 90vw;
    max-width: 480px;
    box-shadow: 
        0 25px 50px rgba(211, 47, 47, 0.15),
        0 10px 25px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.9);
    overflow: hidden;
    border: 2px solid rgba(211, 47, 47, 0.1);
}

/* Modal Header */
.lebarmax-modal-header {
    display: flex;
    align-items: center;
    padding: 24px 28px 20px;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-bottom: 1px solid rgba(239, 68, 68, 0.1);
    position: relative;
}

.lebarmax-modal-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
    border: 3px solid #fca5a5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

.lebarmax-modal-icon i {
    font-size: 22px;
    color: #dc2626;
}

.lebarmax-modal-title-section {
    flex: 1;
}

.lebarmax-modal-title {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 700;
    color: #dc2626;
    line-height: 1.3;
}

.lebarmax-modal-subtitle {
    margin: 0;
    font-size: 11px;
    color: #991b1b;
    opacity: 0.8;
    font-weight: 500;
}

.lebarmax-modal-close {
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.8);
    color: #dc2626;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

.lebarmax-modal-close:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.05);
}

/* Modal Body */
.lebarmax-modal-body {
    padding: 24px 28px;
}

.lebarmax-modal-message {
    color: #374151;
    line-height: 1.6;
    font-size: 13px;
}

.lebarmax-modal-message strong {
    color: #dc2626;
    font-weight: 700;
}

.lebarmax-modal-message p {
    font-size: 13px;
    margin-bottom: 12px;
}

/* Modal Footer */
.lebarmax-modal-footer {
    padding: 16px 28px 24px;
    text-align: center;
    background: linear-gradient(135deg, #f8fffe 0%, #f0fdf4 100%);
    border-top: 1px solid rgba(211, 47, 47, 0.1);
}

.lebarmax-modal-button {
    background: linear-gradient(135deg, #D32F2F 0%, #E63946 100%);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
    min-width: 100px;
    justify-content: center;
}

.lebarmax-modal-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.4);
    background: linear-gradient(135deg, #E63946 0%, #B91C1C 100%);
}

.lebarmax-modal-button:active {
    transform: translateY(0);
}

.lebarmax-modal-button i {
    font-size: 12px;
}

.lebarmax-modal-button-primary {
    background: linear-gradient(135deg, #D32F2F 0%, #E63946 100%);
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

.lebarmax-modal-button-primary:hover {
    background: linear-gradient(135deg, #E63946 0%, #B91C1C 100%);
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .lebarmax-modal-content {
        width: 95vw;
        max-width: 400px;
    }
    
    .lebarmax-modal-header {
        padding: 20px 24px 16px;
    }
    
    .lebarmax-modal-icon {
        width: 44px;
        height: 44px;
        margin-right: 12px;
    }
    
    .lebarmax-modal-icon i {
        font-size: 20px;
    }
    
    .lebarmax-modal-title {
        font-size: 14px;
    }
    
    .lebarmax-modal-subtitle {
        font-size: 10px;
    }
    
    .lebarmax-modal-body {
        padding: 20px 24px;
    }
    
    .lebarmax-modal-message {
        font-size: 12px;
    }
    
    .lebarmax-modal-message p {
        font-size: 12px;
    }
    
    .lebarmax-modal-footer {
        padding: 16px 24px 20px;
    }
    
    .lebarmax-modal-button {
        padding: 8px 20px;
        font-size: 12px;
        min-width: 90px;
    }
}

/* ============================================
   MAP.PHP SPECIFIC STYLES
   ============================================ */

/* Bahan Modal Mobile Styles */
@media (max-width: 768px) {
    #bahanModal h3 {
        font-size: 16px !important;
    }
    #bahanModal h4 {
        font-size: 14px !important;
    }
    #bahanModal .modal-content-text {
        font-size: 11px !important;
        line-height: 1.6 !important;
    }
    #bahanModal .modal-badge {
        font-size: 9px !important;
        padding: 3px 8px !important;
    }
    #bahanModal .modal-number {
        width: 24px !important;
        height: 24px !important;
        font-size: 12px !important;
    }
    #bahanModal .modal-padding {
        padding: 16px !important;
    }
    #bahanModal .modal-header-padding {
        padding: 16px 20px !important;
    }
}

/* Tab Styles for Map */
.order-form-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
}

.form-order-title {
    font-size: 16px;
    font-weight: 700;
    color: #D32F2F;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid #D32F2F;
    padding-bottom: 10px;
}

.form-order-title i {
    color: #D32F2F;
}

.order-speed-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 30px;
    padding: 6px;
}

.order-speed-tab {
    border: none;
    background: transparent;
    padding: 12px 16px;
    border-radius: 0;
    font-weight: 600;
    font-size: 14px;
    color: #dc2626;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-align: center;
    transition: all 0.2s ease;
}

.order-speed-tab:first-child {
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.order-speed-tab:last-child {
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

.order-speed-tab.active {
    background: #dc2626;
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(220, 38, 38, 0.25);
}

.order-speed-content {
    display: none;
    animation: fadeTabs 0.25s ease;
}

.order-speed-content.active {
    display: block;
}

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

@media (max-width: 768px) {
    .order-speed-tab {
        font-size: 13px;
        padding: 10px 12px;
    }
}

/* Hide TAMBAHAN text - semua kemungkinan */
.tambahan-section-title,
h6.tambahan-section-title,
.form-section .tambahan-section-title,
.form-section h6:first-child,
.form-section:before {
    display: none !important;
    visibility: hidden !important;
    content: none !important;
    opacity: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 0 !important;
    line-height: 0 !important;
}

/* ============================================
   CETAK SISI BUTTON STYLES
   ============================================ */
.cetak-sisi-group {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    padding: 4px;
    background: transparent;
    border-radius: 12px;
}

.cetak-sisi-btn {
    flex: 1;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #374151;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cetak-sisi-btn:hover {
    border-color: #d1d5db;
    background: #f9fafb;
}

.cetak-sisi-btn.active {
    background: #D32F2F;
    color: #ffffff;
    border-color: #D32F2F;
    box-shadow: 0 2px 8px rgba(211, 47, 47, 0.25);
}

.cetak-sisi-btn.active:hover {
    background: #E63946;
    border-color: #E63946;
}

/* Mobile responsive untuk cetak sisi button */
@media (max-width: 768px) {
    .cetak-sisi-btn {
        padding: 6px 10px;
        font-size: 13px;
    }
}

/* Price Loading Spinner Styles */
.price-input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.price-loading-spinner {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #007A47;
    font-size: 16px;
    z-index: 10;
    background: white;
    padding: 2px 4px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.price-loading-spinner i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Disable input when loading */
.price-input-container.loading .form-control {
    opacity: 0.7;
    background-color: #f8f9fa;
}

/* Mobile responsive for price loading spinner */
@media (max-width: 768px) {
    .price-loading-spinner {
        right: 8px;
        font-size: 14px;
    }
}

/* Loading Overlay for Map (override existing if needed) */
.map-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    backdrop-filter: blur(5px);
}

.map-loading-content {
    background: white;
    border-radius: 20px;
    padding: 40px 50px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
}

.map-loading-spinner {
    font-size: 50px;
    color: #D32F2F;
    margin-bottom: 20px;
}

.map-loading-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}

.map-progress-container {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.map-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #D32F2F 0%, #E63946 100%);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 10px;
}

.map-loading-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.map-loading-percentage {
    font-size: 20px;
    font-weight: 700;
    color: #D32F2F;
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 768px) {
    .map-loading-content {
        padding: 30px 30px;
        max-width: 90%;
    }
    
    .map-loading-spinner {
        font-size: 40px;
    }
    
    .map-loading-title {
        font-size: 20px;
    }
}

/* Waktu Produksi Modal */
.waktu-produksi-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.waktu-produksi-modal-content {
    background: white;
    border-radius: 24px;
    width: 90%;
    max-width: 700px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    animation: modalSlideIn 0.3s ease-out;
    overflow: hidden;
}

.waktu-produksi-modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.waktu-produksi-modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 10px;
}

.waktu-produksi-modal-header h3 i {
    color: #007A47;
    font-size: 20px;
}

.waktu-produksi-modal-close {
    background: #f3f4f6;
    border: none;
    font-size: 18px;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.waktu-produksi-modal-close:hover {
    background: #e5e7eb;
    color: #111827;
}

.waktu-produksi-modal-body {
    padding: 24px;
}

.waktu-produksi-modal-body p {
    margin: 0 0 24px 0;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    text-align: center;
}

.waktu-produksi-options {
    display: flex;
    gap: 16px;
    flex-direction: row;
}

.waktu-produksi-btn {
    flex: 1;
    padding: 24px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    background: white;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.waktu-produksi-btn:hover {
    border-color: #007A47;
    background: #f0fdf4;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 122, 71, 0.12);
}

.waktu-produksi-btn.active {
    border-color: #007A47;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    box-shadow: 0 8px 24px rgba(0, 122, 71, 0.15);
}

.waktu-produksi-btn-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.waktu-produksi-btn-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.waktu-produksi-btn-title {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.3px;
}

.best-price-badge {
    position: absolute;
    top: 28px;
    right: -33px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 8px 30px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
    transform: rotate(45deg);
    transform-origin: center;
    z-index: 10;
    white-space: nowrap;
    width: 150px;
    text-align: center;
    line-height: 1.4;
    height: auto;
    display: inline-block;
}

.waktu-produksi-btn-price {
    font-size: 22px;
    font-weight: 700;
    color: #007A47;
    margin-top: 4px;
}

.waktu-produksi-btn-desc {
    font-size: 12px;
    color: #9ca3af;
    margin-top: -4px;
}

@media (max-width: 768px) {
    .waktu-produksi-modal-content {
        width: 95%;
        max-width: none;
    }
    
    .waktu-produksi-modal-header,
    .waktu-produksi-modal-body {
        padding: 20px;
    }
    
    .waktu-produksi-options {
        flex-direction: column;
        gap: 12px;
    }
    
    .waktu-produksi-btn {
        width: 100%;
    }
    
    .waktu-produksi-btn-price {
        font-size: 20px;
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Modal Validasi Folio */
.folio-validation-modal-content {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    animation: modalSlideIn 0.3s ease-out;
    overflow: hidden;
}

.folio-validation-modal-header {
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
}

.folio-validation-modal-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 8px;
}

.folio-validation-modal-header h3 i {
    color: #dc2626;
    font-size: 18px;
}

.folio-validation-modal-close {
    background: #f3f4f6;
    border: none;
    font-size: 16px;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.folio-validation-modal-close:hover {
    background: #e5e7eb;
    color: #374151;
}

.folio-validation-modal-body {
    padding: 20px;
}

.btn-folio-mengerti {
    padding: 10px 35px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    background-color: #dc2626;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-folio-mengerti:hover {
    background-color: #b91c1c;
    transform: scale(1.05);
}

.btn-folio-mengerti:active {
    transform: scale(0.95);
}

/* ============================================
   MOBILE SELECT MODAL STYLES
   ============================================ */

/* Mobile Select Modal Overlay */
.mobile-select-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99999 !important; /* Paling atas, menutupi footer dan semua elemen */
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-select-modal-overlay.show {
    display: flex;
    opacity: 1;
}

/* Mobile Select Modal Container */
.mobile-select-modal-container {
    background: white;
    border-radius: 12px;
    width: 92%;
    max-width: 360px;
    max-height: 75vh;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: scale(0.95) translateY(15px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.mobile-select-modal-overlay.show .mobile-select-modal-container {
    transform: scale(1) translateY(0);
}

/* Mobile Select Modal Header */
.mobile-select-modal-header {
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
    flex-shrink: 0;
}

.mobile-select-modal-title {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #D32F2F;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-select-modal-title i {
    font-size: 14px;
}

.mobile-select-modal-close {
    width: 28px;
    height: 28px;
    border: none;
    background: #fee2e2;
    color: #dc2626;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.mobile-select-modal-close:hover {
    background: #fecaca;
    transform: scale(1.05);
}

.mobile-select-modal-close i {
    font-size: 12px;
}

/* Mobile Select Modal Body */
.mobile-select-modal-body {
    padding: 12px;
    overflow-y: auto;
    flex: 1;
}

.mobile-select-options {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mobile-select-option {
    padding: 10px 12px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.mobile-select-option::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #D32F2F;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.mobile-select-option:hover {
    border-color: #D32F2F;
    background: #fef2f2;
    transform: translateX(4px);
}

.mobile-select-option:hover::before {
    transform: scaleY(1);
}

.mobile-select-option.selected {
    border-color: #D32F2F;
    background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.15);
}

.mobile-select-option.selected::before {
    transform: scaleY(1);
}

.mobile-select-option-text {
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    flex: 1;
    line-height: 1.4;
}

.mobile-select-option.selected .mobile-select-option-text {
    color: #D32F2F;
    font-weight: 600;
}

.mobile-select-option-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #D32F2F;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 8px;
}

.mobile-select-option.selected .mobile-select-option-icon {
    opacity: 1;
    transform: scale(1);
}

.mobile-select-option-icon i {
    color: white;
    font-size: 10px;
}

/* Mobile Select Button (replaces select on mobile) - SAMA PERSIS DENGAN FORM-CONTROL */
.mobile-select-button {
    width: 100% !important;
    padding: 10px 12px !important;
    border: 1px solid #d1d5db !important;
    border-radius: 8px !important; /* Sama dengan form-control */
    font-size: 12px !important; /* Lebih kecil untuk mobile */
    line-height: 1.5 !important; /* Sama dengan form-control */
    background-color: #fff !important; /* Sama dengan form-control */
    color: #374151 !important;
    cursor: pointer;
    transition: all 0.3s ease !important; /* Sama dengan form-control */
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    text-align: left !important;
    font-weight: 400 !important;
    box-sizing: border-box !important;
    font-family: inherit !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 !important;
    vertical-align: middle !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
}

.mobile-select-button:hover {
    border-color: #D32F2F;
}

.mobile-select-button:focus {
    outline: none;
    border-color: #D32F2F;
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

.mobile-select-button:active {
    transform: scale(0.98);
}

.mobile-select-button-text {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 12px !important; /* Lebih kecil untuk mobile */
    font-weight: 400 !important;
    color: #374151 !important;
    line-height: 1.2 !important; /* Kurangi line-height agar tinggi sama */
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    height: auto;
}

.mobile-select-button-icon {
    margin-left: 8px !important;
    color: #6b7280;
    font-size: 12px !important;
    flex-shrink: 0 !important;
    transition: transform 0.3s ease, color 0.3s ease;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
}

.mobile-select-button:hover .mobile-select-button-icon,
.mobile-select-button:focus .mobile-select-button-icon {
    color: #D32F2F;
}

.mobile-select-button.active .mobile-select-button-icon {
    transform: rotate(180deg);
    color: #D32F2F;
}

/* Hide original select on mobile */
@media (max-width: 768px) {
    .form-select {
        display: none !important;
    }
    
    .mobile-select-button {
        display: flex !important;
    }
}

/* Show original select on desktop */
@media (min-width: 769px) {
    .mobile-select-button {
        display: none !important;
    }
    
    .form-select {
        display: block !important;
    }
}

/* Mobile specific adjustments untuk modal select */
@media (max-width: 768px) {
    .mobile-select-modal-container {
        width: 94%;
        max-width: 340px;
        max-height: 70vh;
        border-radius: 10px;
    }
    
    .mobile-select-modal-header {
        padding: 10px 14px;
    }
    
    .mobile-select-modal-title {
        font-size: 13px;
        gap: 6px;
    }
    
    .mobile-select-modal-title i {
        font-size: 13px;
    }
    
    .mobile-select-modal-close {
        width: 26px;
        height: 26px;
        border-radius: 5px;
    }
    
    .mobile-select-modal-close i {
        font-size: 11px;
    }
    
    .mobile-select-modal-body {
        padding: 10px;
    }
    
    .mobile-select-options {
        gap: 5px;
    }
    
    .mobile-select-option {
        padding: 9px 11px;
        border-radius: 6px;
        border-width: 1px;
    }
    
    .mobile-select-option-text {
        font-size: 13px;
    }
    
    .mobile-select-option-icon {
        width: 18px;
        height: 18px;
        margin-left: 6px;
    }
    
    .mobile-select-option-icon i {
        font-size: 9px;
    }
    
    /* Button select sama persis dengan form-control di mobile */
    .mobile-select-button {
        padding: 7px 8px !important; /* Kurangi padding atas-bawah agar tinggi sama dengan form-control */
        font-size: 12px !important; /* Lebih kecil untuk mobile */
        line-height: 1.2 !important; /* Kurangi line-height agar tinggi sama dengan form-control */
        border-radius: 8px !important; /* Sama dengan form-control (bukan setengah lingkaran) */
        border: 1px solid #d1d5db !important; /* Sama dengan form-control */
        background-color: #fff !important; /* Sama dengan form-control */
        transition: all 0.3s ease !important; /* Sama dengan form-control */
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        display: flex !important;
        align-items: center !important;
        box-sizing: border-box !important;
        font-weight: 400 !important;
        width: 100% !important;
    }
    
    /* Pastikan button text dan icon tidak menambah tinggi */
    .mobile-select-button-text {
        font-size: 12px !important; /* Lebih kecil untuk mobile */
        font-weight: 400 !important;
        line-height: 1.2 !important; /* Kurangi line-height agar tinggi sama */
        height: auto !important;
        padding: 0 !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
    }
    
    .mobile-select-button-icon {
        line-height: 1 !important;
        height: auto !important;
        padding: 0 !important;
        margin: 0 0 0 6px !important;
        font-size: 12px !important;
    }
    
    .mobile-select-button-icon {
        font-size: 12px !important;
        margin-left: 6px !important;
        line-height: 1 !important;
    }
    
    .mobile-select-empty {
        padding: 24px 12px;
    }
    
    .mobile-select-empty i {
        font-size: 32px;
        margin-bottom: 10px;
    }
    
    .mobile-select-empty p {
        font-size: 11px;
    }
}

/* Extra small mobile (480px and below) */
@media (max-width: 480px) {
    .mobile-select-modal-container {
        width: 96%;
        max-width: none;
        max-height: 65vh;
    }
    
    .mobile-select-modal-header {
        padding: 8px 12px;
    }
    
    .mobile-select-modal-title {
        font-size: 12px;
        gap: 5px;
    }
    
    .mobile-select-modal-title i {
        font-size: 12px;
    }
    
    .mobile-select-modal-close {
        width: 24px;
        height: 24px;
    }
    
    .mobile-select-modal-body {
        padding: 8px;
    }
    
    .mobile-select-option {
        padding: 8px 10px;
    }
    
    .mobile-select-option-text {
        font-size: 12px;
    }
}

/* Mobile Select Modal Footer (optional) */
.mobile-select-modal-footer {
    padding: 16px 24px;
    border-top: 1px solid #f0f0f0;
    background: #f9fafb;
    flex-shrink: 0;
    display: flex;
    gap: 12px;
}

.mobile-select-modal-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mobile-select-modal-btn-primary {
    background: linear-gradient(135deg, #D32F2F 0%, #E63946 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

.mobile-select-modal-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

.mobile-select-modal-btn-secondary {
    background: white;
    color: #6b7280;
    border: 2px solid #e5e7eb;
}

.mobile-select-modal-btn-secondary:hover {
    border-color: #d1d5db;
    background: #f9fafb;
}

/* Scrollbar styling untuk modal body */
.mobile-select-modal-body::-webkit-scrollbar {
    width: 6px;
}

.mobile-select-modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.mobile-select-modal-body::-webkit-scrollbar-thumb {
    background: #D32F2F;
    border-radius: 3px;
}

.mobile-select-modal-body::-webkit-scrollbar-thumb:hover {
    background: #B91C1C;
}

/* Empty state */
.mobile-select-empty {
    text-align: center;
    padding: 30px 16px;
    color: #9ca3af;
}

.mobile-select-empty i {
    font-size: 36px;
    margin-bottom: 12px;
    opacity: 0.5;
}

.mobile-select-empty p {
    margin: 0;
    font-size: 12px;
}

/* ============================================
   WAKTU PRODUKSI MODAL STYLES (Sticker Branding)
   ============================================ */

/* Info Icon Button - Ikon Tanda Tanya */
.info-icon-btn {
    background: #f97316 !important;
    color: white !important;
    border: none !important;
    border-radius: 50% !important;
    width: 18px !important;
    height: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    font-size: 10px !important;
    padding: 0 !important;
    transition: all 0.2s ease !important;
    flex-shrink: 0 !important;
}

.info-icon-btn i {
    font-size: 10px !important;
}

.info-icon-btn:hover {
    background: #ea580c !important;
    transform: scale(1.1) !important;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3) !important;
}

.info-icon-btn:active {
    transform: scale(0.95) !important;
}

/* Modal Waktu Produksi Overlay */
.waktu-produksi-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.waktu-produksi-modal-overlay.show {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.waktu-produksi-modal-container {
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.waktu-produksi-modal-overlay.show .waktu-produksi-modal-container {
    transform: scale(1) translateY(0);
}

.waktu-produksi-modal-content {
    background: linear-gradient(145deg, #ffffff 0%, #f8fffe 100%);
    border-radius: 20px;
    width: 90vw;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 
        0 25px 50px rgba(211, 47, 47, 0.15),
        0 10px 25px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.9);
    overflow: hidden;
    border: 2px solid rgba(211, 47, 47, 0.1);
}

/* Modal Header */
.waktu-produksi-modal-header {
    display: flex;
    align-items: center;
    padding: 24px 28px 20px;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-bottom: 1px solid rgba(211, 47, 47, 0.1);
    position: relative;
}

.waktu-produksi-modal-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
    border: 3px solid #fca5a5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.2);
}

.waktu-produksi-modal-icon i {
    font-size: 22px;
    color: #D32F2F;
}

.waktu-produksi-modal-title-section {
    flex: 1;
}

.waktu-produksi-modal-title {
    margin: 0 0 4px 0;
    font-size: 18px;
    font-weight: 700;
    color: #D32F2F;
    line-height: 1.3;
}

.waktu-produksi-modal-subtitle {
    margin: 0;
    font-size: 12px;
    color: #991b1b;
    opacity: 0.8;
    font-weight: 500;
}

.waktu-produksi-modal-close {
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.8);
    color: #D32F2F;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

.waktu-produksi-modal-close:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.05);
}

/* Modal Body */
.waktu-produksi-modal-body {
    padding: 24px 28px;
}

.waktu-produksi-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.waktu-produksi-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.waktu-produksi-card:hover {
    border-color: #D32F2F;
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.1);
    transform: translateY(-2px);
}

.waktu-produksi-card.express-card {
    border-color: #D32F2F;
}

.waktu-produksi-card.express-card:hover {
    border-color: #E63946;
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.2);
}

.waktu-produksi-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    position: relative;
}

.waktu-produksi-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.waktu-produksi-card-icon.standart {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    color: #0369a1;
}

.waktu-produksi-card-icon.express {
    background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
    color: #D32F2F;
}

.waktu-produksi-card-title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    flex: 1;
}

.waktu-produksi-badge {
    background: linear-gradient(135deg, #D32F2F 0%, #E63946 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.waktu-produksi-card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.waktu-produksi-time {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: #f9fafb;
    border-radius: 8px;
}

.waktu-produksi-time i {
    color: #D32F2F;
    font-size: 18px;
}

.waktu-produksi-duration {
    font-size: 20px;
    font-weight: 700;
    color: #D32F2F;
}

.waktu-produksi-description {
    margin: 0;
    font-size: 13px;
    color: #4b5563;
    line-height: 1.6;
}

.waktu-produksi-description strong {
    color: #1f2937;
    font-weight: 700;
}

.waktu-produksi-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 10px;
    background: #f0fdf4;
    border-radius: 8px;
    font-size: 11px;
    color: #166534;
    line-height: 1.5;
}

.waktu-produksi-note i {
    margin-top: 2px;
    flex-shrink: 0;
}

.waktu-produksi-note.express-note {
    background: #fef2f2;
    color: #991b1b;
}

.waktu-produksi-important-note {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-radius: 12px;
    border-left: 4px solid #D32F2F;
}

.waktu-produksi-important-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 2px solid #fca5a5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #D32F2F;
    font-size: 18px;
}

.waktu-produksi-important-content {
    flex: 1;
}

.waktu-produksi-important-content h5 {
    margin: 0 0 12px 0;
    font-size: 14px;
    font-weight: 700;
    color: #991b1b;
    padding-left: 0;
}

.waktu-produksi-important-content ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.waktu-produksi-important-content ul li {
    margin-bottom: 8px;
    font-size: 12px;
    color: #7f1d1d;
    line-height: 1.6;
    position: relative;
    padding-left: 18px;
    text-indent: 0;
}

.waktu-produksi-important-content ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #D32F2F;
    font-weight: 700;
    font-size: 16px;
}

.waktu-produksi-important-content ul li strong {
    color: #991b1b;
    font-weight: 700;
}

/* Modal Footer */
.waktu-produksi-modal-footer {
    padding: 16px 28px 24px;
    text-align: center;
    background: linear-gradient(135deg, #f8fffe 0%, #f0fdf4 100%);
    border-top: 1px solid rgba(211, 47, 47, 0.1);
}

.waktu-produksi-modal-button {
    background: linear-gradient(135deg, #D32F2F 0%, #E63946 100%);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
    min-width: 100px;
    justify-content: center;
}

.waktu-produksi-modal-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.4);
    background: linear-gradient(135deg, #E63946 0%, #B91C1C 100%);
}

.waktu-produksi-modal-button:active {
    transform: translateY(0);
}

.waktu-produksi-modal-button i {
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .waktu-produksi-modal-content {
        width: 95vw;
        max-width: 500px;
    }
    
    .waktu-produksi-modal-header {
        padding: 20px 24px 16px;
    }
    
    .waktu-produksi-modal-icon {
        width: 44px;
        height: 44px;
        margin-right: 12px;
    }
    
    .waktu-produksi-modal-icon i {
        font-size: 20px;
    }
    
    .waktu-produksi-modal-title {
        font-size: 16px;
    }
    
    .waktu-produksi-modal-subtitle {
        font-size: 11px;
    }
    
    .waktu-produksi-modal-body {
        padding: 20px 24px;
    }
    
    .waktu-produksi-info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .waktu-produksi-card {
        padding: 16px;
    }
    
    .waktu-produksi-important-note {
        padding: 16px;
        flex-direction: column;
        gap: 12px;
    }
    
    .waktu-produksi-modal-footer {
        padding: 16px 24px 20px;
    }
    
    .waktu-produksi-modal-button {
        padding: 8px 20px;
        font-size: 12px;
        min-width: 90px;
    }
    
    .info-icon-btn {
        width: 16px !important;
        height: 16px !important;
        font-size: 9px !important;
    }
    
    .info-icon-btn i {
        font-size: 9px !important;
    }
}

