/* ============================================================
   SIRAOS - Waroeng Dalaraos Jatihandap
   Premium Design System v2.0
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;600&display=swap');

/* ---- CSS Variables / Design Tokens ---- */
:root {
    /* Brand Colors */
    --siraos-primary: #16a34a;
    --siraos-primary-dark: #15803d;
    --siraos-primary-light: #bbf7d0;
    --siraos-primary-glass: rgba(22, 163, 74, 0.12);

    --siraos-amber: #d97706;
    --siraos-amber-light: #fef3c7;
    --siraos-amber-dark: #92400e;

    --siraos-dark: #0f1923;
    --siraos-dark-2: #1c2b38;
    --siraos-dark-3: #243447;

    /* Neutrals */
    --siraos-bg: #f4f7f4;
    --siraos-surface: #ffffff;
    --siraos-border: #e2e8e4;
    --siraos-border-dark: #cbd5d0;
    --siraos-muted: #6b7c75;
    --siraos-muted-light: #9caea6;

    --gray-900: #0f1923;
    --gray-800: #1c2b38;
    --gray-700: #374151;
    --gray-500: #6b7280;
    --gray-300: #d1d5db;
    --gray-100: #f3f4f6;

    /* Typography */
    --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    /* Shadows */
    --shadow-xs: 0 1px 3px rgba(0, 0, 0, .06), 0 1px 2px rgba(0, 0, 0, .04);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .07), 0 1px 3px rgba(0, 0, 0, .05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, .10), 0 2px 6px rgba(0, 0, 0, .06);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, .12), 0 4px 12px rgba(0, 0, 0, .07);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, .15), 0 8px 24px rgba(0, 0, 0, .08);
    --shadow-glow: 0 0 0 3px rgba(22, 163, 74, 0.25);

    /* Border Radius */
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 16px;
    --r-xl: 20px;
    --r-2xl: 24px;

    /* Transitions */
    --t-fast: 150ms cubic-bezier(.4, 0, .2, 1);
    --t-normal: 250ms cubic-bezier(.4, 0, .2, 1);
    --t-slow: 400ms cubic-bezier(.4, 0, .2, 1);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--siraos-bg);
    color: var(--gray-700);
    font-size: 14px;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--siraos-border-dark);
    border-radius: 99px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--siraos-muted);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.siraos-navbar {
    background: #ffffff;
    border-bottom: 1px solid var(--siraos-border) !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    padding: 0.6rem 0;
    z-index: 1050;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.95);
}

.siraos-navbar .navbar-brand {
    color: var(--gray-900) !important;
    letter-spacing: 0.08em;
    transition: opacity var(--t-fast);
}

.siraos-navbar .navbar-brand:hover {
    opacity: 0.75;
}

.siraos-navbar-toggler {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(22, 163, 74, .15);
    border-radius: var(--r-sm);
    background: #fff;
    color: var(--siraos-primary-dark, #0a4220);
    transition: background var(--t-fast), border-color var(--t-fast);
}

.siraos-navbar-toggler:hover,
.siraos-navbar-toggler:focus {
    background: rgba(22, 163, 74, 0.08);
    border-color: rgba(22, 163, 74, .3);
    color: var(--siraos-primary-dark, #0a4220);
}

.navbar-brand-icon {
    width: 44px;
    height: 44px;
    background: #fff;
    border: 1px solid rgba(22, 163, 74, .15);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    padding: 2px;
}

.navbar-brand-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-label {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--siraos-primary);
}

.brand-label {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--gray-900);
}

.brand-sub {
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--siraos-muted);
    border-left: 1px solid var(--siraos-border);
    padding-left: 10px;
    margin-left: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    line-height: 1;
}

.siraos-user-badge {
    background: var(--gray-100);
    border-color: var(--siraos-border) !important;
    transition: background var(--t-fast);
}

.siraos-user-badge:hover {
    background: #e5e7eb;
}

.user-avatar {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--siraos-primary), var(--siraos-primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.user-name {
    font-size: 11px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
}

.user-role {
    font-family: var(--font-mono);
    font-size: 8px;
    color: var(--siraos-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.btn-logout {
    background: rgba(239, 68, 68, .15);
    border: 1px solid rgba(239, 68, 68, .25);
    color: #fca5a5;
    border-radius: var(--r-sm);
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    transition: all var(--t-fast);
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-logout:hover {
    background: rgba(239, 68, 68, .25);
    border-color: rgba(239, 68, 68, .4);
    color: #fca5a5;
}

.btn-login-nav {
    background: linear-gradient(135deg, var(--siraos-primary), var(--siraos-primary-dark));
    border: none;
    color: #fff;
    border-radius: var(--r-sm);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    transition: all var(--t-fast);
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(22, 163, 74, .35);
}

.btn-login-nav:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(22, 163, 74, .45);
    color: #fff;
}

/* ============================================================
   MAIN & LAYOUT
   ============================================================ */
main {
    flex: 1;
    padding: 2rem 1.5rem;
    max-width: 1320px;
    margin: 0 auto;
    width: 100%;
}

@media (min-width: 992px) {
    main {
        padding: 2.5rem 2rem;
    }
}

@media (min-width: 1400px) {
    main {
        padding: 3rem 2.5rem;
    }
}

/* ============================================================
   TABS NAVIGATION
   ============================================================ */
.siraos-tabs {
    display: inline-flex;
    background: #ffffff;
    border: 1px solid var(--siraos-border);
    border-radius: var(--r-lg);
    padding: 4px;
    gap: 4px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

.siraos-tab-btn {
    position: relative;
    padding: 8px 20px;
    border-radius: var(--r-md);
    font-size: 12px;
    font-weight: 600;
    color: var(--siraos-muted);
    transition: all var(--t-normal);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.siraos-tab-btn:hover {
    color: var(--siraos-primary);
    background: var(--siraos-primary-glass);
}

.siraos-tab-btn.active {
    background: linear-gradient(135deg, var(--siraos-dark) 0%, var(--siraos-dark-2) 100%);
    color: #ffffff !important;
    box-shadow: var(--shadow-sm);
}

.siraos-tab-btn.active:hover {
    opacity: 0.9;
}

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--siraos-primary);
    background: var(--siraos-primary-glass);
    border: 1px solid rgba(22, 163, 74, .2);
    padding: 4px 12px;
    border-radius: 99px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 13px;
    color: var(--siraos-muted);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto;
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.siraos-card {
    background: var(--siraos-surface);
    border: 1px solid var(--siraos-border);
    border-radius: var(--r-xl);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--t-normal);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-xs);
}

.siraos-card:hover {
    border-color: var(--siraos-primary);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(22, 163, 74, .15);
    transform: translateY(-3px);
}

.siraos-card.active {
    border-color: var(--siraos-primary);
    box-shadow: var(--shadow-md), 0 0 0 2px rgba(22, 163, 74, .2);
    background: linear-gradient(to bottom, rgba(22, 163, 74, .03), var(--siraos-surface));
}

.siraos-card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 160px;
}

.siraos-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
    display: block;
}

.siraos-card:hover .siraos-card-img-wrapper img {
    transform: scale(1.07);
}

.siraos-card-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(0, 0, 0, .35), transparent);
}

.badge-siraos {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    background: linear-gradient(135deg, var(--siraos-amber), #b45309);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 3px 10px;
    border-radius: 99px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
}

.card-body-inner {
    padding: 14px 16px;
    flex: 1;
}

.card-package-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.4;
    min-height: 34px;
    margin-bottom: 8px;
}

.card-price-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 12px;
}

.card-price {
    font-family: var(--font-mono);
    font-size: 15px;
    font-weight: 700;
    color: var(--siraos-primary-dark);
}

.card-price-unit {
    font-size: 9px;
    color: var(--siraos-muted-light);
    font-weight: 500;
}

.card-menu-list-label {
    font-family: var(--font-mono);
    font-size: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--siraos-muted-light);
    display: block;
    margin-bottom: 5px;
    border-top: 1px solid var(--siraos-border);
    padding-top: 10px;
}

.card-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.card-menu-list li {
    font-size: 10px;
    color: var(--siraos-muted);
    display: flex;
    align-items: flex-start;
    gap: 5px;
    line-height: 1.35;
}

.card-menu-list li::before {
    content: '·';
    color: var(--siraos-primary);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.card-footer-inner {
    padding: 10px 16px 14px;
}

.btn-select-pkg {
    width: 100%;
    padding: 8px 12px;
    border-radius: var(--r-md);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
    border: 1.5px solid var(--siraos-border);
    background: var(--gray-100);
    color: var(--gray-700);
    transition: all var(--t-fast);
    cursor: pointer;
}

.btn-select-pkg:hover {
    background: var(--siraos-primary-glass);
    border-color: var(--siraos-primary);
    color: var(--siraos-primary-dark);
}

.siraos-card.active .btn-select-pkg {
    background: linear-gradient(135deg, var(--siraos-primary), var(--siraos-primary-dark));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 2px 8px rgba(22, 163, 74, .3);
}

/* ============================================================
   FORM SECTION
   ============================================================ */
.form-card {
    background: var(--siraos-surface);
    border: 1px solid var(--siraos-border);
    border-radius: var(--r-2xl);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
    .form-card {
        padding: 2.5rem;
    }
}

.form-section-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--gray-900);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.form-section-icon {
    width: 32px;
    height: 32px;
    background: var(--siraos-primary-glass);
    border: 1px solid rgba(22, 163, 74, .2);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--siraos-primary);
    flex-shrink: 0;
}

/* Override Bootstrap form controls */
.form-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--gray-700);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.form-control,
.form-select {
    border: 1.5px solid var(--siraos-border);
    border-radius: var(--r-md);
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-900);
    background: #fff;
    padding: 10px 14px;
    transition: all var(--t-fast);
    box-shadow: none !important;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--siraos-primary);
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, .15) !important;
}

.form-control::placeholder {
    color: var(--siraos-muted-light);
    font-weight: 400;
}

/* ============================================================
   RADIO CARDS (Metode Kirim)
   ============================================================ */
.radio-card-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border: 1.5px solid var(--siraos-border);
    border-radius: var(--r-lg);
    cursor: pointer;
    transition: all var(--t-normal);
    background: #fff;
    user-select: none;
}

.radio-card-wrapper:hover {
    border-color: var(--siraos-primary);
    background: var(--siraos-primary-glass);
}

.radio-card-wrapper.active {
    border-color: var(--siraos-primary);
    background: linear-gradient(135deg, rgba(22, 163, 74, .06), rgba(22, 163, 74, .02));
    box-shadow: 0 0 0 1px rgba(22, 163, 74, .15), var(--shadow-xs);
}

.radio-card-wrapper input[type="radio"] {
    width: 16px;
    height: 16px;
    accent-color: var(--siraos-primary);
    margin-top: 2px;
    flex-shrink: 0;
}

.radio-card-label-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-900);
    display: block;
    line-height: 1.3;
}

.radio-card-label-sub {
    font-size: 10px;
    color: var(--siraos-muted);
    display: block;
    margin-top: 3px;
    line-height: 1.4;
}

/* ============================================================
   INFO BANNERS
   ============================================================ */
.info-banner {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px;
    border-radius: var(--r-md);
    font-size: 11px;
    line-height: 1.5;
}

.info-banner-amber {
    background: #fffbeb;
    border: 1px solid #fde68a;
    color: var(--siraos-amber-dark);
}

.info-banner-gray {
    background: #f9fafb;
    border: 1px solid var(--siraos-border);
    color: var(--gray-700);
}

.info-banner-green {
    background: rgba(22, 163, 74, .06);
    border: 1px solid rgba(22, 163, 74, .25);
    color: #14532d;
}

.info-banner-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ============================================================
   DESSERT CARDS
   ============================================================ */
.dessert-section {
    background: linear-gradient(135deg, #fffbeb, #fef9ec);
    border: 1px solid #fde68a;
    border-radius: var(--r-xl);
    padding: 20px;
}

.dessert-section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.dessert-emoji-icon {
    font-size: 22px;
    line-height: 1;
}

.dessert-section-title {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--siraos-amber-dark);
    line-height: 1.2;
}

.dessert-section-sub {
    font-size: 10px;
    color: #a16207;
    line-height: 1.3;
    margin-top: 2px;
}

.dessert-card {
    background: rgba(255, 255, 255, .75);
    border: 1px solid rgba(253, 230, 138, .7);
    border-radius: var(--r-md);
    padding: 12px;
    transition: all var(--t-fast);
    backdrop-filter: blur(4px);
}

.dessert-card:hover {
    background: #fff;
    border-color: var(--siraos-amber);
    box-shadow: var(--shadow-sm);
}

.dessert-name {
    font-size: 11px;
    font-weight: 700;
    color: var(--gray-800);
    display: block;
    line-height: 1.3;
    margin-bottom: 2px;
}

.dessert-price {
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--siraos-amber);
    font-weight: 600;
}

.dessert-card .form-control {
    font-family: var(--font-mono);
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    padding: 7px 8px;
    border-color: rgba(253, 230, 138, .6);
    background: rgba(255, 255, 255, .8);
}

.dessert-card .form-control:focus {
    border-color: var(--siraos-amber);
    box-shadow: 0 0 0 3px rgba(217, 119, 6, .12) !important;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-siraos-primary {
    background: linear-gradient(135deg, var(--siraos-primary), var(--siraos-primary-dark));
    color: #fff;
    border: none;
    border-radius: var(--r-md);
    font-weight: 700;
    transition: all var(--t-fast);
    box-shadow: 0 2px 8px rgba(22, 163, 74, .3);
}

.btn-siraos-primary:hover,
.btn-siraos-primary:focus {
    background: linear-gradient(135deg, var(--siraos-primary-dark), #166534);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(22, 163, 74, .4);
}

.btn-siraos-dark {
    background: linear-gradient(135deg, var(--siraos-dark) 0%, var(--siraos-dark-2) 100%);
    color: #fff;
    border: none;
    border-radius: var(--r-md);
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: all var(--t-fast);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
}

.btn-siraos-dark:hover,
.btn-siraos-dark:focus {
    background: linear-gradient(135deg, #243447, #1c2b38);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .3);
}

.btn-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--r-lg);
    background: linear-gradient(135deg, var(--siraos-dark) 0%, var(--siraos-dark-2) 100%);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all var(--t-normal);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .25);
    position: relative;
    overflow: hidden;
}

.btn-checkout::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(22, 163, 74, .15), transparent);
    opacity: 0;
    transition: opacity var(--t-fast);
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .3);
    color: #fff;
}

.btn-checkout:hover::before {
    opacity: 1;
}

.btn-checkout:active {
    transform: translateY(0);
}

/* ============================================================
   ORDER SUMMARY CARD (Sidebar)
   ============================================================ */
.summary-card {
    background: var(--siraos-surface);
    border: 1px solid var(--siraos-border);
    border-radius: var(--r-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 80px;
}

.summary-card-header {
    padding: 18px 20px;
    background: linear-gradient(135deg, var(--siraos-dark), var(--siraos-dark-2));
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.summary-card-body {
    padding: 20px;
}

.summary-empty {
    text-align: center;
    padding: 24px 16px;
    color: var(--siraos-muted);
}

.summary-empty-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.summary-empty-text {
    font-size: 11px;
    line-height: 1.5;
}

.summary-divider {
    border: none;
    border-top: 1px dashed var(--siraos-border);
    margin: 12px 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: var(--siraos-muted);
    margin-bottom: 6px;
}

.summary-row-value {
    font-family: var(--font-mono);
    font-weight: 600;
    color: var(--gray-800);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 800;
    color: var(--gray-900);
    margin-top: 8px;
}

.summary-total-value {
    font-family: var(--font-mono);
    color: var(--siraos-primary-dark);
    font-size: 16px;
}

/* ============================================================
   SHIPPING INTERNAL BANNER
   ============================================================ */
.internal-shipping-banner {
    background: rgba(22, 163, 74, .07);
    border: 1px solid rgba(22, 163, 74, .25);
    border-radius: var(--r-md);
    padding: 14px 16px;
    margin-top: 12px;
}

.internal-shipping-banner .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--siraos-primary);
    flex-shrink: 0;
    margin-top: 4px;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, .2);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 3px rgba(22, 163, 74, .2);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(22, 163, 74, .05);
    }
}

.internal-shipping-title {
    font-size: 11px;
    font-weight: 700;
    color: #14532d;
    line-height: 1.3;
}

.internal-shipping-sub {
    font-size: 10px;
    color: var(--siraos-muted);
    line-height: 1.5;
    margin-top: 4px;
}

/* ============================================================
   FORM DIVIDER
   ============================================================ */
.form-section-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
}

.form-section-divider::before,
.form-section-divider::after {
    content: '';
    flex: 1;
    border-top: 1px solid var(--siraos-border);
}

.form-section-divider-label {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--siraos-muted-light);
    white-space: nowrap;
}

/* ============================================================
   AUTH PAGES
   ============================================================ */
.auth-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 130px);
    padding: 2rem 1rem;
}

.auth-card {
    background: var(--siraos-surface);
    border: 1px solid var(--siraos-border);
    border-radius: var(--r-2xl);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 420px;
    position: relative;
    overflow: hidden;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--siraos-primary), #22c55e, var(--siraos-amber));
}

.auth-logo {
    width: 96px;
    height: 96px;
    background: #fff;
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: var(--shadow-md);
    position: relative;
    padding: 6px;
    overflow: hidden;
}

.auth-logo::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px solid rgba(22, 163, 74, .2);
    border-radius: 20px;
}

.auth-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.02em;
    margin-bottom: 4px;
    text-align: center;
}

.auth-subtitle {
    font-size: 12px;
    color: var(--siraos-muted);
    text-align: center;
    margin-bottom: 2rem;
}

.auth-footer-text {
    font-size: 12px;
    color: var(--siraos-muted);
    text-align: center;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--siraos-border);
}

.auth-footer-text a {
    color: var(--siraos-primary-dark);
    font-weight: 700;
    text-decoration: none;
    transition: color var(--t-fast);
}

.auth-footer-text a:hover {
    color: var(--siraos-primary);
}

/* ============================================================
   LACAK PESANAN PAGE
   ============================================================ */
.track-card {
    background: var(--siraos-surface);
    border: 1px solid var(--siraos-border);
    border-radius: var(--r-2xl);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    max-width: 700px;
    margin: 0 auto;
}

.track-search-input {
    font-family: var(--font-mono) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em;
}

.track-empty-state {
    text-align: center;
    padding: 3rem 1.5rem;
    background: var(--gray-100);
    border-radius: var(--r-xl);
    border: 1.5px dashed var(--siraos-border-dark);
}

.track-empty-icon {
    font-size: 40px;
    margin-bottom: 12px;
    display: block;
}

.track-empty-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 4px;
}

.track-empty-sub {
    font-size: 11px;
    color: var(--siraos-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer.siraos-footer {
    margin-top: auto;
    background: var(--siraos-dark);
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding: 12px 24px;
    text-align: center;
}

.footer-text {
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(255, 255, 255, .3);
    letter-spacing: 0.06em;
}

.footer-dot {
    margin: 0 8px;
    color: rgba(255, 255, 255, .15);
}

/* ============================================================
   UTILITIES
   ============================================================ */
.font-mono {
    font-family: var(--font-mono) !important;
}

.tracking-wider {
    letter-spacing: 0.08em;
}

.tracking-widest {
    letter-spacing: 0.15em;
}

.text-siraos-primary {
    color: var(--siraos-primary) !important;
}

.text-siraos-light {
    color: rgba(255, 255, 255, .65) !important;
}

.text-gray-900 {
    color: var(--gray-900) !important;
}

.text-muted {
    color: var(--siraos-muted) !important;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animate-fade-in {
    animation: fadeInUp 0.45s cubic-bezier(.4, 0, .2, 1) both;
}

.animate-fade-in-delay {
    animation: fadeInUp 0.45s 0.12s cubic-bezier(.4, 0, .2, 1) both;
}

/* ============================================================
   ALERTS / FLASH MESSAGES
   ============================================================ */
.alert-siraos {
    padding: 12px 16px;
    border-radius: var(--r-md);
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1.25rem;
    border: 1px solid;
}

.alert-siraos-danger {
    background: #fef2f2;
    border-color: #fecaca;
    color: #b91c1c;
}

.alert-siraos-success {
    background: #f0fdf4;
    border-color: #bbf7d0;
    color: #166534;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 575px) {
    main {
        padding: 1.25rem 1rem;
    }

    .form-card {
        padding: 1.25rem;
    }

    .auth-card {
        padding: 2rem 1.25rem;
    }

    .section-title {
        font-size: 18px;
    }

    .siraos-tabs {
        width: 100%;
    }

    .siraos-tab-btn {
        flex: 1;
        justify-content: center;
        text-align: center;
    }
}