* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #ffffff;
    color: #1e293b;
    line-height: 1.5;
}

/* Prevent right click and inspect */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Navbar */
.navbar {
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 20px;
}

.navbar.scrolled .nav-container {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 60px;
    padding: 12px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.nav-left .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
}

.logo-image {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.hamburger-menu {
    background: none;
    border: none;
    font-size: 1.6rem;
    color: #334155;
    cursor: pointer;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.hamburger-menu:hover {
    background-color: #f8fafc;
}

/* Sidebar */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(4px);
    z-index: 1001;
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -380px;
    width: 100%;
    max-width: 340px;
    height: 100vh;
    background-color: #ffffff;
    z-index: 1002;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.03);
    overflow-y: auto;
}

.sidebar.active {
    right: 0;
}

.sidebar-header {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f1f5f9;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-logo-image {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.sidebar-logo span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0f172a;
}

.close-sidebar {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #94a3b8;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.close-sidebar:hover {
    background-color: #f1f5f9;
    color: #475569;
}

.sidebar-menu {
    padding: 16px 0;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    color: #334155;
    text-decoration: none;
    transition: background-color 0.2s;
    font-size: 0.95rem;
    cursor: pointer;
}

.menu-item i {
    width: 20px;
    color: #64748b;
    font-size: 1rem;
}

.menu-item:hover {
    background-color: #f8fafc;
}

.menu-divider {
    height: 1px;
    background-color: #f1f5f9;
    margin: 16px 0;
}

.menu-category {
    margin-bottom: 8px;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 24px;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.3px;
}

.category-title i {
    width: 20px;
    font-size: 0.85rem;
}

.category-items {
    margin-left: 20px;
}

.menu-item.sub-item {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 400px);
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.dashboard-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Slider */
.slider-wrapper {
    max-width: 1000px;
    margin: 0 auto 70px;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.slider-container {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
}

.slider {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #f1f5f9;
}

.slide {
    position: relative;
    width: 100%;
    display: none;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}

.slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.2s;
}

.dot.active {
    background-color: #ffffff;
    transform: scale(1.2);
}

/* Responsive Slider */
@media (min-width: 1025px) {
    .slider {
        aspect-ratio: 1920 / 544;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .slider-wrapper {
        padding: 0 20px;
        margin-bottom: 60px;
    }
    
    .slider {
        aspect-ratio: 1920 / 544;
    }
    
    .slide img {
        border-radius: 20px;
    }
    
    .slider-container {
        border-radius: 20px;
    }
}

@media (max-width: 768px) {
    .slider-wrapper {
        padding: 0 15px;
        margin-bottom: 50px;
    }
    
    .slider {
        aspect-ratio: auto;
    }
    
    .slide img {
        border-radius: 18px;
    }
    
    .slider-container {
        border-radius: 18px;
    }
    
    .slider-dots {
        bottom: 12px;
    }
    
    .dot {
        width: 7px;
        height: 7px;
    }
}

@media (max-width: 480px) {
    .slider-wrapper {
        padding: 0 12px;
        margin-bottom: 40px;
    }
    
    .slide img {
        border-radius: 16px;
    }
    
    .slider-container {
        border-radius: 16px;
    }
    
    .slider-dots {
        bottom: 10px;
        gap: 6px;
    }
    
    .dot {
        width: 6px;
        height: 6px;
    }
}

/* Keunggulan Section */
.keunggulan-section {
    margin-bottom: 90px;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #64748b;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #475569;
    max-width: 600px;
    margin: 0 auto;
}

.keunggulan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.keunggulan-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    transition: all 0.2s;
}

.keunggulan-card:hover {
    border-color: #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.keunggulan-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #e2e8f0;
    line-height: 1;
}

.keunggulan-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 10px;
    line-height: 1.4;
}

.keunggulan-content p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 90px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.faq-main-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    text-align: center;
    margin-bottom: 10px;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: #475569;
    text-align: center;
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.faq-item {
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    overflow: hidden;
}

.faq-question {
    background: #ffffff;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.faq-question:hover {
    background-color: #f8fafc;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
}

.faq-question i {
    color: #64748b;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px 20px 25px;
    background: #ffffff;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

/* Nokos Modal */
.nokos-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.nokos-overlay.active {
    display: block;
    opacity: 1;
}

.nokos-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2001;
    display: none;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
}

.nokos-modal.active {
    display: flex;
}

.nokos-modal-content {
    background: #ffffff;
    width: 100%;
    max-width: 500px;
    max-height: 80vh;
    height: auto;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    padding: 20px 20px 15px 20px;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
    border-bottom: none;
    overflow-y: hidden;
    position: relative;
    pointer-events: auto;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.nokos-modal.active .nokos-modal-content {
    transform: translateY(0);
}

.nokos-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 12px;
    flex-shrink: 0;
}

.nokos-main-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.nokos-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #94a3b8;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
    flex-shrink: 0;
}

.nokos-close:hover {
    background-color: #f1f5f9;
    color: #475569;
}

.nokos-search {
    position: relative;
    margin-bottom: 15px;
    width: 100%;
    flex-shrink: 0;
}

.nokos-search i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 0.9rem;
    z-index: 1;
}

.nokos-search input {
    width: 100%;
    padding: 12px 20px 12px 45px;
    border: 1px solid #f1f5f9;
    border-radius: 40px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
    background-color: #ffffff;
    -webkit-appearance: none;
    appearance: none;
    box-sizing: border-box;
}

.nokos-search input:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.1);
}

.nokos-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 2px;
    padding-bottom: 5px;
    flex: 1;
    min-height: 0;
    width: 100%;
}

.nokos-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    transition: all 0.2s;
    width: 100%;
    background-color: #ffffff;
    box-sizing: border-box;
    flex-wrap: wrap;
    gap: 8px;
}

.nokos-item.sold-out {
    background-color: #f8fafc;
    border-color: #e2e8f0;
    opacity: 0.8;
    order: 999;
}

.nokos-info {
    display: flex;
    align-items: center;
    min-width: 0;
    flex: 1 1 auto;
    max-width: calc(100% - 100px);
}

.nokos-country-wrapper {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
    width: 100%;
}

.nokos-country {
    font-weight: 600;
    color: #0f172a;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
}

.discount-tag {
    background-color: #ef4444;
    color: white;
    font-size: 0.55rem;
    font-weight: 600;
    padding: 2px 5px;
    border-radius: 30px;
    white-space: nowrap;
    flex-shrink: 0;
}

.sold-tag {
    background-color: #64748b;
    color: white;
    font-size: 0.55rem;
    font-weight: 600;
    padding: 2px 5px;
    border-radius: 30px;
    white-space: nowrap;
    flex-shrink: 0;
}

.nokos-action {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    margin-left: auto;
}

.nokos-price-wrapper {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nokos-price {
    color: #0f172a;
    font-weight: 700;
    font-size: 0.85rem;
    white-space: nowrap;
}

.nokos-original-price {
    color: #94a3b8;
    font-size: 0.65rem;
    text-decoration: line-through;
    white-space: nowrap;
}

.nokos-order-btn {
    background-color: #10b981;
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.nokos-order-btn:hover {
    background-color: #059669;
    transform: scale(1.05);
}

.nokos-order-btn.sold-btn {
    background-color: #cbd5e1;
    cursor: not-allowed;
}

.nokos-order-btn.sold-btn:hover {
    background-color: #cbd5e1;
    transform: none;
}

/* Suntik Sosmed Modal - FIXED RESPONSIF */
.sosmed-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    z-index: 2100;
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.sosmed-overlay.active {
    display: block;
    opacity: 1;
}

.sosmed-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2101;
    display: none;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
}

.sosmed-modal.active {
    display: flex;
}

.sosmed-modal-content {
    background: #ffffff;
    width: 100%;
    max-width: 600px;
    max-height: 85vh;
    height: auto;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    padding: 20px 20px 15px 20px;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
    border-bottom: none;
    overflow: hidden;
    position: relative;
    pointer-events: auto;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.sosmed-modal.active .sosmed-modal-content {
    transform: translateY(0);
}

.sosmed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 12px;
    flex-shrink: 0;
}

.sosmed-main-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.sosmed-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #94a3b8;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
    flex-shrink: 0;
}

.sosmed-close:hover {
    background-color: #f1f5f9;
    color: #475569;
}

.sosmed-search {
    position: relative;
    margin-bottom: 15px;
    width: 100%;
    flex-shrink: 0;
}

.sosmed-search i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 0.9rem;
    z-index: 1;
}

.sosmed-search input {
    width: 100%;
    padding: 12px 20px 12px 45px;
    border: 1px solid #f1f5f9;
    border-radius: 40px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
    background-color: #ffffff;
    -webkit-appearance: none;
    appearance: none;
    box-sizing: border-box;
}

.sosmed-search input:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.1);
}

/* Scroll container - FIXED */
.sosmed-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 5px;
    padding-bottom: 10px;
    flex: 1;
    min-height: 0;
    width: 100%;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 #f1f5f9;
}

.sosmed-list::-webkit-scrollbar {
    width: 5px;
}

.sosmed-list::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.sosmed-list::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

/* Platform Card - FIXED */
.platform-card {
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    overflow: hidden;
    background-color: #ffffff;
    transition: all 0.2s;
    width: 100%;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.platform-header {
    padding: 15px 16px;
    background-color: #f8fafc;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    border-bottom: 1px solid #f1f5f9;
    flex-shrink: 0;
}

.platform-header i {
    font-size: 1.3rem;
    width: 30px;
    color: #10b981;
}

.platform-header .platform-name {
    font-weight: 600;
    color: #0f172a;
    font-size: 1rem;
    flex: 1;
}

.platform-header .fa-chevron-down {
    margin-left: auto;
    color: #94a3b8;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.platform-card.active .platform-header .fa-chevron-down {
    transform: rotate(180deg);
}

/* Categories container - FIXED */
.platform-categories {
    padding: 12px;
    display: none;
    overflow-y: auto;
    max-height: 400px;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 #f1f5f9;
}

.platform-categories::-webkit-scrollbar {
    width: 4px;
}

.platform-categories::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.platform-categories::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.platform-card.active .platform-categories {
    display: block;
}

/* Category Item - FIXED */
.category-item {
    margin-bottom: 12px;
    width: 100%;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.category-item:last-child {
    margin-bottom: 0;
}

.category-header {
    padding: 12px 14px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background-color 0.2s;
    border-bottom: 1px solid transparent;
}

.category-header:hover {
    background-color: #f8fafc;
}

.category-header i {
    font-size: 0.9rem;
    color: #94a3b8;
    width: 20px;
    flex-shrink: 0;
}

.category-header .category-name {
    font-weight: 600;
    color: #334155;
    font-size: 0.9rem;
    flex: 1;
}

.category-header .fa-chevron-right {
    margin-left: auto;
    color: #94a3b8;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.category-item.active .category-header {
    border-bottom-color: #f1f5f9;
}

.category-item.active .category-header .fa-chevron-right {
    transform: rotate(90deg);
}

/* Products container - FIXED */
.category-products {
    padding: 8px 8px;
    display: none;
    background-color: #fafbfc;
    max-height: 250px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 #f1f5f9;
}

.category-products::-webkit-scrollbar {
    width: 3px;
}

.category-products::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.category-products::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.category-item.active .category-products {
    display: block;
}

/* Product Item - FIXED TAMPILAN SEPERTI NOKOS */
.product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    margin-bottom: 4px;
    border-radius: 8px;
    transition: all 0.2s;
    background-color: #ffffff;
    border: 1px solid #f1f5f9;
    width: 100%;
    box-sizing: border-box;
    gap: 8px;
}

.product-item:last-child {
    margin-bottom: 0;
}

.product-item:hover {
    background-color: #f8fafc;
    border-color: #e2e8f0;
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.product-name {
    font-weight: 500;
    color: #0f172a;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-price-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.product-price {
    color: #10b981;
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
}

.product-original-price {
    color: #94a3b8;
    font-size: 0.7rem;
    text-decoration: line-through;
    white-space: nowrap;
}

.product-discount-tag {
    background-color: #ef4444;
    color: white;
    font-size: 0.5rem;
    font-weight: 600;
    padding: 2px 4px;
    border-radius: 30px;
    white-space: nowrap;
    flex-shrink: 0;
}

.product-sold-tag {
    background-color: #64748b;
    color: white;
    font-size: 0.5rem;
    font-weight: 600;
    padding: 2px 4px;
    border-radius: 30px;
    white-space: nowrap;
    flex-shrink: 0;
}

.product-action {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.product-order-btn {
    background-color: #10b981;
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.product-order-btn:hover {
    background-color: #059669;
    transform: scale(1.05);
}

.product-order-btn.sold-btn {
    background-color: #cbd5e1;
    cursor: not-allowed;
}

.product-order-btn.sold-btn:hover {
    background-color: #cbd5e1;
    transform: none;
}

/* Responsive untuk mobile - FIXED */
@media (max-width: 768px) {
    .sosmed-modal-content {
        max-width: 100%;
        max-height: 80vh;
        padding: 16px 16px 12px 16px;
    }
    
    .sosmed-main-title {
        font-size: 1.2rem;
    }
    
    .sosmed-search input {
        padding: 10px 15px 10px 40px;
        font-size: 0.9rem;
    }
    
    .platform-categories {
        max-height: 350px;
    }
    
    .category-products {
        max-height: 200px;
    }
}

@media (max-width: 480px) {
    .sosmed-modal-content {
        padding: 12px 12px 10px 12px;
    }
    
    .platform-header {
        padding: 12px 14px;
    }
    
    .platform-header i {
        font-size: 1.1rem;
        width: 25px;
    }
    
    .platform-header .platform-name {
        font-size: 0.95rem;
    }
    
    .platform-categories {
        padding: 8px;
        max-height: 300px;
    }
    
    .category-header {
        padding: 10px 12px;
    }
    
    .category-header .category-name {
        font-size: 0.85rem;
    }
    
    .product-item {
        padding: 8px 10px;
        flex-wrap: wrap;
    }
    
    .product-name {
        font-size: 0.85rem;
        white-space: normal;
        word-break: break-word;
    }
    
    .product-price-wrapper {
        flex-wrap: wrap;
    }
    
    .product-price {
        font-size: 0.8rem;
    }
    
    .product-original-price {
        font-size: 0.65rem;
    }
    
    .product-discount-tag,
    .product-sold-tag {
        font-size: 0.5rem;
        padding: 1px 4px;
    }
    
    .product-order-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .sosmed-modal-content {
        padding: 10px 10px 8px 10px;
    }
    
    .platform-header {
        padding: 10px 12px;
    }
    
    .platform-header i {
        font-size: 1rem;
        width: 22px;
    }
    
    .platform-header .platform-name {
        font-size: 0.9rem;
    }
    
    .category-header .category-name {
        font-size: 0.8rem;
    }
    
    .product-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    
    .product-info {
        width: 100%;
    }
    
    .product-price-wrapper {
        width: 100%;
        justify-content: flex-start;
    }
    
    .product-action {
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }
    
    .product-name {
        font-size: 0.8rem;
    }
}

/* Payment Modal */
.payment-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    z-index: 3000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.payment-overlay.active {
    display: block;
    opacity: 1;
}

.payment-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3001;
    display: none;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    padding: 15px;
    box-sizing: border-box;
}

.payment-modal.active {
    display: flex;
}

.payment-modal-content {
    background: #ffffff;
    width: 100%;
    max-width: 380px;
    max-height: 85vh;
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    position: relative;
    pointer-events: auto;
    margin: 0 auto;
    box-sizing: border-box;
}

.payment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-shrink: 0;
}

.payment-header h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.payment-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #94a3b8;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
    flex-shrink: 0;
}

.payment-close:hover {
    background-color: #f1f5f9;
    color: #475569;
}

.payment-info {
    text-align: center;
    margin-bottom: 15px;
    padding: 12px;
    background-color: #f8fafc;
    border-radius: 12px;
}

.payment-product {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 5px;
    word-break: break-word;
}

.payment-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #10b981;
    word-break: break-word;
}

.payment-timer {
    text-align: center;
    margin: 0 0 15px 0;
    padding: 10px;
    background-color: #fef2f2;
    border-radius: 12px;
    color: #dc2626;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.payment-timer i {
    font-size: 1rem;
}

.payment-timer span {
    font-size: 1.2rem;
    font-weight: 700;
}

.payment-timer.expired {
    background-color: #fee2e2;
    color: #dc2626;
}

.payment-timer.expired span {
    color: #dc2626;
}

.payment-qris {
    text-align: center;
    margin: 15px 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.payment-qris img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 8px;
    margin-bottom: 8px;
    display: block;
    background-color: #ffffff;
    max-width: 100%;
}

.payment-qris p {
    font-size: 0.8rem;
    color: #475569;
    margin-bottom: 8px;
    word-break: break-word;
}

.download-qris-btn {
    background: transparent;
    color: #64748b;
    border: 1px solid #e2e8f0;
    padding: 8px 14px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.85rem;
    margin-top: 0;
    max-width: 100%;
}

.download-qris-btn i {
    font-size: 0.9rem;
}

.download-qris-btn:hover {
    background-color: #f8fafc;
    color: #0f172a;
    border-color: #94a3b8;
}

.payment-guide {
    margin: 15px 0;
    padding: 12px;
    background-color: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #10b981;
}

.payment-guide h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.payment-guide h4 i {
    color: #10b981;
    font-size: 0.85rem;
}

.payment-guide ol {
    padding-left: 18px;
}

.payment-guide li {
    font-size: 0.75rem;
    color: #475569;
    margin-bottom: 4px;
    line-height: 1.4;
    word-break: break-word;
}

.payment-paid-btn {
    width: 100%;
    padding: 12px;
    background-color: #10b981;
    color: white;
    border: none;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-bottom: 8px;
}

.payment-paid-btn:hover {
    background-color: #059669;
}

.payment-cancel-btn {
    width: 100%;
    padding: 12px;
    background-color: transparent;
    color: #64748b;
    border: 1px solid #e2e8f0;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.payment-cancel-btn:hover {
    background-color: #f8fafc;
    color: #475569;
    border-color: #cbd5e1;
}

/* Expired Modal */
.expired-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(4px);
    z-index: 4000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.expired-overlay.active {
    display: block;
    opacity: 1;
}

.expired-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    max-width: 320px;
    z-index: 4001;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.expired-modal.active {
    display: block;
    opacity: 1;
}

.expired-modal-content {
    background: #ffffff;
    border-radius: 24px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.expired-icon {
    width: 60px;
    height: 60px;
    background-color: #fee2e2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #dc2626;
    font-size: 1.8rem;
}

.expired-modal h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.expired-modal p {
    font-size: 0.9rem;
    color: #475569;
    margin-bottom: 6px;
    line-height: 1.5;
}

.expired-modal p span {
    font-weight: 600;
    color: #10b981;
}

.expired-btn {
    width: 100%;
    padding: 12px;
    background-color: #10b981;
    color: white;
    border: none;
    border-radius: 40px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 15px;
}

.expired-btn:hover {
    background-color: #059669;
}

/* Coming Soon Alert */
.coming-soon-alert {
    position: fixed;
    top: 100px;
    right: -300px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 10px 20px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 400;
    z-index: 9999;
    transition: right 0.3s ease;
    pointer-events: none;
    box-shadow: none;
}

.coming-soon-alert.active {
    right: 20px;
}

.coming-soon-alert i {
    display: none;
}

/* Modal Terms & Privacy */
.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: #ffffff;
    width: 90%;
    max-width: 700px;
    max-height: 85vh;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    z-index: 5001;
    animation: modalFadeIn 0.3s ease;
    display: flex;
    flex-direction: column;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #f1f5f9;
    flex-shrink: 0;
    background-color: #ffffff;
}

.modal-header h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #94a3b8;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.modal-close:hover {
    background-color: #f1f5f9;
    color: #475569;
}

.modal-body {
    padding: 24px;
    overflow-y: auto;
    max-height: calc(85vh - 80px);
    flex: 1;
}

.modal-body h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin: 20px 0 10px 0;
}

.modal-body h4:first-child {
    margin-top: 0;
}

.modal-body p {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 15px;
}

.modal-footer-text {
    font-style: italic;
    color: #64748b;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    width: 100%;
    display: block;
    clear: both;
    padding-bottom: 5px;
}

/* Footer */
.footer {
    background-color: #fafbfc;
    border-top: 1px solid #f1f5f9;
    margin-top: 60px;
    width: 100%;
    clear: both;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-section {
    width: 100%;
}

.footer-section .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo-image {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.footer-logo span {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0f172a;
}

.footer-description {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.footer-contact li {
    margin-bottom: 12px;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    word-break: break-word;
}

.footer-contact li i {
    width: 18px;
    color: #94a3b8;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    color: #64748b;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 1.1rem;
    border: 1px solid #f1f5f9;
}

.social-links a:hover {
    background: #f8fafc;
    color: #10b981;
    border-color: #e2e8f0;
}

.footer-bottom {
    border-top: 1px solid #f1f5f9;
    padding: 24px 0;
    width: 100%;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
    cursor: pointer;
    white-space: nowrap;
}

.footer-bottom-links a:hover {
    color: #10b981;
}

/* Responsive */
@media (max-width: 1024px) {
    .keunggulan-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-container {
        gap: 30px;
        padding: 50px 20px 30px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 15px;
    }
    
    .nav-container {
        padding: 10px 20px;
    }
    
    .logo-image {
        height: 32px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .keunggulan-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .keunggulan-section {
        margin-bottom: 60px;
        padding: 0 15px;
    }
    
    .faq-section {
        margin-bottom: 60px;
        padding: 0 15px;
    }
    
    .faq-main-title {
        font-size: 1.6rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 20px 30px;
    }
    
    .footer-description {
        max-width: 100%;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        gap: 20px;
    }
    
    .footer-bottom-links a {
        white-space: normal;
    }
    
    .modal-content {
        width: 95%;
        max-height: 80vh;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-body h4 {
        font-size: 0.95rem;
    }
    
    .modal-body p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .keunggulan-card {
        flex-direction: column;
        gap: 10px;
        padding: 20px;
    }
    
    .keunggulan-number {
        font-size: 1.8rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 16px 20px;
    }
    
    .faq-answer {
        padding: 0 20px 16px 20px;
    }
    
    .nokos-modal-content {
        max-width: 100%;
        max-height: 75vh;
        padding: 16px 16px 12px 16px;
    }
    
    .nokos-main-title {
        font-size: 1.2rem;
    }
    
    .nokos-search input {
        padding: 10px 15px 10px 40px;
        font-size: 0.9rem;
    }
    
    .nokos-list {
        gap: 6px;
    }
    
    .nokos-item {
        padding: 8px 10px;
        gap: 6px;
    }
    
    .nokos-info {
        max-width: calc(100% - 90px);
    }
    
    .nokos-country {
        font-size: 0.85rem;
        max-width: 120px;
    }
    
    .discount-tag, .sold-tag {
        font-size: 0.5rem;
        padding: 1px 4px;
    }
    
    .nokos-price {
        font-size: 0.8rem;
    }
    
    .nokos-original-price {
        font-size: 0.6rem;
    }
    
    .nokos-order-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .payment-modal-content {
        max-width: 340px;
        padding: 16px;
    }
    
    .payment-product {
        font-size: 0.95rem;
    }
    
    .payment-price {
        font-size: 1.1rem;
    }
    
    .payment-timer span {
        font-size: 1.1rem;
    }
    
    .payment-qris img {
        width: 130px;
        height: 130px;
    }
    
    .payment-guide li {
        font-size: 0.7rem;
    }
    
    .payment-paid-btn, .payment-cancel-btn {
        padding: 10px;
        font-size: 0.85rem;
    }
    
    .expired-modal-content {
        padding: 20px;
    }
    
    .coming-soon-alert {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .coming-soon-alert.active {
        right: 10px;
    }
    
    .footer {
        margin-top: 40px;
    }
    
    .footer-container {
        padding: 30px 15px 20px;
        gap: 25px;
    }
    
    .footer-logo span {
        font-size: 1.2rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .footer-contact li {
        font-size: 0.9rem;
    }
    
    .social-links {
        gap: 8px;
    }
    
    .social-links a {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
    .footer-bottom-container {
        font-size: 0.8rem;
    }
    
    .footer-bottom-links {
        gap: 15px;
    }
}

@media (max-width: 360px) {
    .nokos-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nokos-info {
        max-width: 100%;
        width: 100%;
    }
    
    .nokos-country {
        max-width: 100%;
        font-size: 0.8rem;
    }
    
    .nokos-action {
        width: 100%;
        justify-content: space-between;
        margin-left: 0;
    }
    
    .nokos-price-wrapper {
        justify-content: flex-start;
    }
    
    .payment-modal-content {
        max-width: 300px;
        padding: 14px;
    }
    
    .payment-qris img {
        width: 120px;
        height: 120px;
    }
    
    .footer-container {
        padding: 25px 12px 15px;
    }
    
    .footer-contact li {
        font-size: 0.85rem;
    }
    
    .social-links a {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
}

@media (max-width: 320px) {
    .nokos-price-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Splash Screen */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.splash-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.splash-loader {
    width: 40px;
    height: 40px;
    border: 3px solid #f1f5f9;
    border-top: 3px solid #10b981;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}