@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Fallbacks */
    --primary: #6366f1;
    --secondary: #64748b;
    --dark: #1e293b;
    --light: #f8fafc;
    --white: #ffffff;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --text-main: #111827;
    --text-muted: #6b7280;
    --shadow-soft: 0 4px 20px -5px rgba(0, 0, 0, 0.05);
    /* Softer shadow */
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Modern Accents */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

::selection {
    background: var(--primary);
    color: white;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--light);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-muted);
}

.nav-links a:hover {
    color: var(--primary);
}

.search-bar {
    position: relative;
    width: 300px;
}

.search-input {
    width: 100%;
    padding: 0.5rem 1rem;
    padding-left: 2.5rem;
    border: 1px solid var(--gray-200);
    border-radius: 99px;
    background: var(--gray-100);
    outline: none;
    transition: all 0.3s ease;
}

.search-input:focus {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary), transparent 90%);
}

.search-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

/* Hero Section */
.hero {
    margin: 2rem 0;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.hero-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Section Headings */
.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding-left: 1rem;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: var(--primary);
    border-radius: 4px;
}

.view-all {
    font-size: 0.9rem;
    color: var(--primary);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    border: 1px solid transparent;
    /* Prevent layout shift */
}

.product-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
    border-color: var(--primary);
    /* Accent border on hover */
}

.product-image {
    height: 220px;
    width: 100%;
    overflow: hidden;
    background: var(--gray-100);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 1rem;
}

.product-category {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-main);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.8em;
}

.product-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-hover);
    box-shadow: 0 4px 12px color-mix(in srgb, var(--primary), transparent 70%);
}

.btn-full {
    width: 100%;
}

/* Product Detail */
.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.detail-gallery {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.detail-info {
    padding: 1rem 0;
}

.detail-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.detail-price {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.detail-desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.variant-selector {
    border: 1px solid var(--gray-200);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 2rem;
    background: var(--white);
}

.variant-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
}

.variant-option:hover {
    border-color: var(--primary);
}

.variant-option.selected {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
}

/* Checkout */
.checkout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.checkout-summary {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 90px;
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    justify-content: space-around;
    padding: 0.75rem 0;
    border-top: 1px solid var(--gray-100);
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.mobile-nav-item i {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.mobile-nav-item.active {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {

    .nav-links,
    .search-bar {
        display: none;
    }

    .product-detail-layout,
    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .mobile-nav {
        display: flex;
    }

    body {
        padding-bottom: 70px;
        /* Space for mobile nav */
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .hero-slide img {
        height: 250px;
    }

    /* Checkout Page Mobile Responsive */
    .container {
        padding: 0 0.75rem;
    }

    .section-title {
        font-size: 1.25rem;
        margin-top: 1rem !important;
        margin-bottom: 1rem;
        padding-left: 0.75rem;
    }

    .section-title::before {
        width: 3px;
    }

    /* Buyer Info & Payment Detail */
    .buyer-info,
    .payment-detail {
        padding: 0;
    }

    .buyer-info h3,
    .payment-detail h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    /* Form Groups */
    .form-group {
        margin-bottom: 1rem;
    }

    .form-label {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    .form-control {
        padding: 0.65rem;
        font-size: 0.95rem;
    }

    /* Payment Detail Box */
    .payment-detail>div {
        padding: 1rem !important;
    }

    /* Voucher Section - Stack vertically on mobile */
    .voucher-input-group {
        flex-direction: column !important;
        gap: 0.5rem !important;
    }

    .payment-detail button[onclick="applyVoucher()"] {
        width: 100%;
        padding: 0.75rem !important;
    }

    /* Product Summary */
    .payment-detail div[style*="justify-content: space-between"] {
        font-size: 0.85rem !important;
    }

    .payment-detail div[style*="font-size: 1.2rem"] {
        font-size: 1.1rem !important;
    }

    /* Total Bayar */
    #totalBayar {
        font-size: 1.1rem !important;
    }

    /* Buyer Data Info Box */
    div[style*="background: #f0f9ff"] {
        padding: 0.75rem !important;
        margin-bottom: 1rem !important;
        grid-column: span 1 !important;
    }

    div[style*="background: #f0f9ff"] h4 {
        font-size: 0.9rem !important;
    }

    div[style*="background: #f0f9ff"] ul {
        font-size: 0.85rem !important;
    }

    /* Checkbox & Terms */
    .payment-detail div[style*="font-size: 0.85rem"] {
        font-size: 0.8rem !important;
    }

    /* Submit Button */
    .btn-primary.btn-full {
        padding: 0.85rem !important;
        font-size: 0.95rem !important;
    }

    /* WhatsApp Notice */
    .payment-detail div[style*="text-align: center"] {
        font-size: 0.75rem !important;
        margin-top: 0.75rem !important;
    }

    /* Sticky positioning adjustment for mobile */
    .checkout-summary {
        position: relative;
        top: 0;
    }
}

/* Neobrutalism skin */
:root {
    --neo-ink: #121212;
    --neo-paper: #fffaf0;
    --neo-surface: #ffffff;
    --neo-surface-alt: #fff1b8;
    --neo-surface-soft: #f7f7ff;
    --neo-shadow: 6px 6px 0 var(--neo-ink);
    --neo-shadow-lg: 10px 10px 0 var(--neo-ink);
    --neo-shadow-sm: 4px 4px 0 var(--neo-ink);
    --neo-border: 3px solid var(--neo-ink);
    --neo-radius: 18px;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--neo-paper) !important;
    background-image:
        linear-gradient(135deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0) 45%),
        radial-gradient(circle at top left, color-mix(in srgb, var(--primary), white 80%) 0%, transparent 35%),
        radial-gradient(circle at top right, color-mix(in srgb, var(--secondary, var(--primary)), white 84%) 0%, transparent 32%);
    color: var(--neo-ink) !important;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.14;
    background-image: linear-gradient(rgba(18, 18, 18, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(18, 18, 18, 0.06) 1px, transparent 1px);
    background-size: 30px 30px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent 90%);
}

.topbar,
.sidebar,
.mobile-nav-container,
.menu-sheet,
.dropdown-menu,
.search-box,
.card,
.product-card,
.hero,
.variant-selector,
.checkout-summary,
.table-container,
.dash-hero,
.stat-card,
.dash-panel,
.profile-sidebar,
.settings-main,
.payment-wrapper,
.cart-section,
.buyer-info,
.payment-detail > div:first-child,
.dtlrx-card,
.dtlrx-cta-card,
.dtlrx-credentials,
.option-card {
    background: var(--neo-surface) !important;
    border: var(--neo-border) !important;
    border-radius: var(--neo-radius) !important;
    box-shadow: var(--neo-shadow) !important;
}

.topbar,
.sidebar {
    box-shadow: var(--neo-shadow-lg) !important;
}

.navbar,
.topbar,
.sidebar-header,
.dash-hero,
.dash-panel-head,
.table-header,
.section-title,
.dtlrx-header,
.dtlrx-status-row,
.checkout-footer,
.payment-detail > div:first-child,
.profile-sidebar,
.settings-main {
    position: relative;
}

.section-title,
.welcome-text h1,
.dash-hero h1,
.dtlrx-title,
.detail-title,
.logo,
.brand-text,
.sheet-title {
    font-weight: 900 !important;
    letter-spacing: -0.03em;
    color: var(--neo-ink) !important;
    text-transform: uppercase;
}

.section-title {
    padding-left: 1rem !important;
}

.section-title::before {
    width: 10px !important;
    border-radius: 0 !important;
    background: var(--primary) !important;
    box-shadow: 3px 0 0 var(--neo-ink) !important;
}

.btn,
button,
.btn-primary,
.btn-secondary,
.btn-save,
.btn-nav,
.btn-upload,
.btn-view,
.dtlrx-copy-btn,
.nav-center-item,
.theme-toggle,
.cart-nav-icon {
    border: var(--neo-border) !important;
    border-radius: 16px !important;
    box-shadow: var(--neo-shadow-sm) !important;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.btn:hover,
button:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-save:hover,
.btn-nav:hover,
.btn-upload:hover,
.btn-view:hover,
.dtlrx-copy-btn:hover,
.nav-center-item:hover,
.theme-toggle:hover,
.cart-nav-icon:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--neo-shadow-lg) !important;
}

.btn-primary,
.btn-save,
.btn-nav {
    background: var(--primary) !important;
    color: #fff !important;
}

.btn-secondary {
    background: var(--secondary, #fde047) !important;
    color: #111 !important;
}

.btn-view,
.btn-upload,
.dtlrx-copy-btn,
.theme-toggle,
.cart-nav-icon,
.nav-center-item {
    background: var(--neo-surface) !important;
    color: var(--neo-ink) !important;
}

.btn-view i,
.dtlrx-copy-btn i,
.theme-toggle i,
.cart-nav-icon i,
.nav-center-item i {
    color: inherit;
}

.form-control,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="url"],
input[type="number"],
input[type="search"],
input[type="file"],
select,
textarea,
.search-input {
    border: var(--neo-border) !important;
    border-radius: 16px !important;
    background: #fff !important;
    box-shadow: inset 4px 4px 0 rgba(18, 18, 18, 0.06) !important;
    color: var(--neo-ink) !important;
}

.form-control:focus,
input:focus,
select:focus,
textarea:focus,
.search-input:focus {
    outline: none !important;
    transform: translate(-1px, -1px);
    box-shadow: var(--neo-shadow-sm), 0 0 0 4px color-mix(in srgb, var(--primary), white 75%) !important;
}

.product-card:hover,
.card:hover,
.dash-panel:hover,
.stat-card:hover,
.profile-sidebar:hover,
.settings-main:hover,
.payment-wrapper:hover,
.cart-section:hover,
.buyer-info:hover,
.dtlrx-card:hover,
.option-card:hover,
.table-container:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--neo-shadow-lg) !important;
}

.product-image,
.hero-slide img,
.avatar-large,
.dtlrx-product-icon,
.stat-icon,
.nav-center-item,
.mobile-nav-container,
.menu-sheet,
.dropdown-menu {
    border: var(--neo-border) !important;
}

.product-grid,
.dash-stats,
.settings-grid,
.dtlrx-grid,
.checkout-grid {
    gap: 1.25rem !important;
}

.badge,
.status-chip,
.dtlrx-status-badge {
    border: var(--neo-border) !important;
    border-radius: 999px !important;
    box-shadow: 3px 3px 0 var(--neo-ink) !important;
    color: #111 !important;
    text-transform: uppercase;
    font-weight: 900 !important;
}

.badge-success,
.status-success,
.dtlrx-status-badge.success {
    background: #9effa8 !important;
}

.badge-pending,
.status-pending,
.dtlrx-status-badge.pending {
    background: #ffe66d !important;
}

.badge-processing,
.status-processing {
    background: #8fd3ff !important;
}

.badge-danger,
.status-error,
.status-failed,
.dtlrx-status-badge.failed {
    background: #ff9f9f !important;
}

.badge-neutral,
.status-expired {
    background: #e5e7eb !important;
}

.welcome-text h1 {
    font-size: clamp(1.5rem, 3vw, 2.25rem) !important;
}

.welcome-text p,
.dash-hero p,
.detail-desc,
.dtlrx-summary-label,
.text-muted,
.empty-state,
.sheet-title + p {
    color: #404040 !important;
}

.table-container,
.dash-panel,
.payment-wrapper,
.checkout-summary,
.profile-sidebar,
.settings-main,
.cart-section,
.buyer-info,
.payment-detail > div:first-child,
.dtlrx-card,
.dtlrx-cta-card,
.dtlrx-credentials {
    overflow: hidden;
}

.table-container table,
.dash-table,
.dtlrx-info-grid,
.dtlrx-credential-row,
.checkout-summary-items {
    border-collapse: separate;
}

.table-container th,
.table-container td,
.dash-table th,
.dash-table td {
    border-bottom: 3px solid rgba(18, 18, 18, 0.08) !important;
}

.search-icon,
.form-label,
.menu-label,
.section-title,
.dtlrx-card-title,
.stat-label,
.dtlrx-date-label,
.dtlrx-summary-label {
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.nav-links a,
.dropdown-item,
.mobile-nav-item,
.menu-item {
    border-radius: 14px !important;
}

.nav-links a:hover,
.dropdown-item:hover,
.menu-item:hover,
.mobile-nav-item.active {
    transform: translate(-2px, -2px);
}

.hero,
.dash-hero,
.dtlrx-cta-card {
    background-image:
        linear-gradient(135deg, color-mix(in srgb, var(--primary), white 78%) 0%, transparent 55%),
        linear-gradient(315deg, color-mix(in srgb, var(--secondary, var(--primary)), white 82%) 0%, transparent 50%) !important;
}

@media (max-width: 768px) {
    body {
        background-attachment: scroll !important;
    }

    .btn:hover,
    button:hover,
    .btn-primary:hover,
    .btn-secondary:hover,
    .btn-save:hover,
    .btn-nav:hover,
    .btn-upload:hover,
    .btn-view:hover,
    .dtlrx-copy-btn:hover,
    .nav-center-item:hover,
    .theme-toggle:hover,
    .cart-nav-icon:hover {
        transform: translate(-1px, -1px);
    }
}

/* Public frontend neobrutalism overrides */
.hero,
.section-title,
.product-card,
.feature-item,
.cta-box,
.category-item-modern,
.contactv2-card,
.aboutv2-card,
.aboutv2-service-card,
.aboutv2-testi-card,
.blog-card,
.blogv2-card,
.faq-card,
.search-card,
.order-card,
.error-page,
.checkout-summary,
.payment-wrapper,
.payment-left,
.payment-right,
.dash-panel,
.stat-card,
.card,
.table-container,
.table-header,
.profile-sidebar,
.settings-main,
.cart-item,
.checkout-footer,
.btn,
.btn-primary,
.btn-save,
.btn-view,
.btn-back-home,
.contactv2-btn-primary,
.contactv2-btn-wa,
.aboutv2-btn,
.neo-flash-banner,
.neo-flash-cta,
.neo-prod-card,
.neo-cat-card,
.neo-blog-card,
.sp-product-item,
.spfs-card,
.spfs-banner,
.sp-quick-pill,
.sp-reset-btn,
.sp-reset-btn-lg {
    border-color: #111 !important;
    border-width: 3px !important;
    border-style: solid !important;
    border-radius: 18px !important;
    box-shadow: 6px 6px 0 #111 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.btn,
.btn-primary,
.btn-save,
.btn-view,
.btn-back-home,
.contactv2-btn-primary,
.contactv2-btn-wa,
.aboutv2-btn,
.neo-flash-cta,
.sp-reset-btn,
.sp-reset-btn-lg {
    background: var(--primary) !important;
    color: #fff !important;
    font-weight: 800 !important;
}

.btn,
.btn-primary,
.btn-save,
.btn-nav,
.btn-view,
.btn-back-home,
.contactv2-btn-primary,
.contactv2-btn-wa,
.aboutv2-btn,
.neo-flash-cta,
.sp-reset-btn,
.sp-reset-btn-lg {
    color: #fff !important;
}

.btn i,
.btn span,
.btn-primary i,
.btn-primary span,
.btn-save i,
.btn-save span,
.btn-nav i,
.btn-nav span,
.btn-view i,
.btn-view span,
.btn-back-home i,
.btn-back-home span,
.contactv2-btn-primary i,
.contactv2-btn-primary span,
.contactv2-btn-wa i,
.contactv2-btn-wa span,
.aboutv2-btn i,
.aboutv2-btn span,
.neo-flash-cta i,
.neo-flash-cta span,
.sp-reset-btn i,
.sp-reset-btn span,
.sp-reset-btn-lg i,
.sp-reset-btn-lg span {
    color: #fff !important;
}

.btn:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-save:hover,
.btn-view:hover,
.btn-back-home:hover,
.contactv2-btn-primary:hover,
.contactv2-btn-wa:hover,
.aboutv2-btn:hover,
.neo-flash-cta:hover,
.sp-reset-btn:hover,
.sp-reset-btn-lg:hover {
    transform: translate(-1px, -1px) !important;
    box-shadow: 8px 8px 0 #111 !important;
}

.form-control,
input,
select,
textarea {
    border: 3px solid #111 !important;
    border-radius: 14px !important;
    box-shadow: inset 4px 4px 0 rgba(17, 17, 17, 0.08) !important;
    background: #fff !important;
}

.form-control:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none !important;
    transform: translate(-1px, -1px);
    box-shadow: 6px 6px 0 #111 !important;
}

.badge,
.status-chip,
.contactv2-pill,
.aboutv2-pill,
.neo-prod-badge,
.spfs-label,
.spfs-discount {
    border: 3px solid #111 !important;
    box-shadow: 4px 4px 0 #111 !important;
    color: #111 !important;
    border-radius: 999px !important;
}

.alert,
.flash-message,
.flasher,
.error-message,
.success-message {
    border: 3px solid #111 !important;
    box-shadow: 6px 6px 0 #111 !important;
    border-radius: 16px !important;
    background: #fff !important;
}

.table-container table,
.dash-table,
table {
    border-collapse: separate;
    border-spacing: 0;
}

table th,
table td {
    border-bottom: 3px solid rgba(17, 17, 17, 0.08) !important;
}

.pagination a,
.pagination span,
.page-link,
.page-item a,
.page-item span {
    border: 3px solid #111 !important;
    box-shadow: 4px 4px 0 #111 !important;
    border-radius: 14px !important;
    color: #111 !important;
    background: #fff !important;
}

.empty-state,
.sp-empty-state,
.contactv2-empty,
.aboutv2-empty,
.faq-empty,
.search-empty,
.error-page {
    border: 3px solid #111 !important;
    box-shadow: 8px 8px 0 #111 !important;
    border-radius: 20px !important;
    background: #fff !important;
}

.header,
.topbar,
.mobile-nav-container,
.menu-sheet,
.dropdown-menu {
    border-color: #111 !important;
}

/* Final contrast fix for primary buttons */
.btn,
.btn-primary,
.btn-save,
.btn-nav,
.btn-view,
.btn-back-home,
.contactv2-btn-primary,
.contactv2-btn-wa,
.aboutv2-btn,
.neo-flash-cta,
.sp-reset-btn,
.sp-reset-btn-lg,
.neo-link-all,
.neo-prod-btn-buy,
.neo-pill-link,
.neo-dark-btn {
    color: #fff !important;
}

.btn i,
.btn span,
.btn-primary i,
.btn-primary span,
.btn-save i,
.btn-save span,
.btn-nav i,
.btn-nav span,
.btn-view i,
.btn-view span,
.btn-back-home i,
.btn-back-home span,
.contactv2-btn-primary i,
.contactv2-btn-primary span,
.contactv2-btn-wa i,
.contactv2-btn-wa span,
.aboutv2-btn i,
.aboutv2-btn span,
.neo-flash-cta i,
.neo-flash-cta span,
.sp-reset-btn i,
.sp-reset-btn span,
.sp-reset-btn-lg i,
.sp-reset-btn-lg span,
.neo-link-all i,
.neo-link-all span,
.neo-prod-btn-buy i,
.neo-prod-btn-buy span,
.neo-pill-link i,
.neo-pill-link span,
.neo-dark-btn i,
.neo-dark-btn span {
    color: #fff !important;
}
