/* ==========================================================================
   SAHABAT AICE INDONESIA - MAIN STYLESHEET
   Design Theme: Royal Velvet & Electric Amethyst Modern UI
   ========================================================================== */

:root {
    --primary-950: #0d041c;
    --primary-900: #1a0836;
    --primary-800: #2d105b;
    --primary-700: #4c1d95;
    --primary-600: #6d28d9;
    --primary-500: #8b5cf6;
    --primary-400: #a78bfa;
    --primary-100: #ede9fe;
    --primary-50:  #f5f3ff;

    --accent-cyan: #06b6d4;
    --accent-sky:  #38bdf8;
    --accent-gold: #f59e0b;
    --accent-pink: #ec4899;
    --accent-rose: #be185d;
    --accent-green: #10b981;
    --accent-green-dark: #059669;

    --dark-surface: #120725;
    --dark-surface-2: #1b0d36;
    --dark-border: rgba(167, 139, 250, 0.2);

    --text-main: #1e293b;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    --text-light-muted: #cbd5e1;

    --bg-main: #fcfbfe;
    --bg-light: #f3f0fa;
    --bg-white: #ffffff;

    --shadow-sm: 0 2px 8px rgba(76, 29, 149, 0.06);
    --shadow-md: 0 8px 24px rgba(76, 29, 149, 0.1);
    --shadow-lg: 0 16px 40px rgba(76, 29, 149, 0.16);
    --shadow-glow: 0 0 30px rgba(139, 92, 246, 0.35);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;

    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.section-padding {
    padding: 90px 0;
}

.text-center { text-align: center; }
.text-white { color: #ffffff !important; }
.text-light-muted { color: var(--text-light-muted) !important; }
.text-success { color: var(--accent-green) !important; }
.text-primary { color: var(--primary-500) !important; }
.text-info { color: var(--accent-sky) !important; }
.text-warning { color: var(--accent-gold) !important; }
.mt-4 { margin-top: 1.5rem; }

.bg-light { background-color: var(--bg-light); }
.bg-darker { background-color: var(--primary-950); }
.bg-purple-gradient {
    background: linear-gradient(135deg, #1b0936 0%, #311160 50%, #15062c 100%);
    color: #ffffff;
}

.text-gradient {
    background: linear-gradient(135deg, #a78bfa 0%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-pink {
    background: linear-gradient(135deg, #f43f5e 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Section Header */
.section-header {
    max-width: 780px;
    margin: 0 auto 50px auto;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--primary-100);
    color: var(--primary-700);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.tag-purple {
    background: rgba(139, 92, 246, 0.2);
    color: var(--primary-400);
    border: 1px solid rgba(167, 139, 250, 0.3);
}

.tag-pink {
    background: #fce7f3;
    color: var(--accent-rose);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1.25;
    color: var(--primary-900);
    margin-bottom: 15px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-bar {
    background: linear-gradient(90deg, #180731 0%, #2f0e5c 50%, #180731 100%);
    color: #ffffff;
    font-size: 0.82rem;
    padding: 7px 0;
    border-bottom: 1px solid rgba(167, 139, 250, 0.2);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.announcement {
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-live {
    background: #ef4444;
    color: #ffffff;
    padding: 3px 9px;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 0.7rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.75; }
}

.announcement-text {
    font-size: 0.82rem;
    color: #f1f5f9;
}

.top-contact a {
    color: #38bdf8;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.82rem;
}

.top-contact a:hover {
    color: #ffffff;
}

/* ==========================================================================
   NAVBAR & HEADER
   ========================================================================== */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(76, 29, 149, 0.08);
    transition: var(--transition-smooth);
    padding: 12px 0;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-badge {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: var(--primary-900);
    line-height: 1.1;
}

.brand-tagline {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--primary-600);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-main);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 4px;
    position: relative;
}

.nav-link i {
    font-size: 0.85rem;
    color: var(--primary-500);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-600);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary-600);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.btn-nav-cta {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
    color: #ffffff !important;
    padding: 9px 20px !important;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 14px rgba(109, 40, 217, 0.3);
}

.btn-nav-cta i {
    color: #ffffff !important;
}

.btn-nav-cta::after {
    display: none !important;
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(109, 40, 217, 0.45);
}

/* Hamburger Button */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    padding: 0;
    z-index: 1001;
}

.hamburger-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-800);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

/* Mobile Drawer */
.mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 4, 28, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.mobile-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: #ffffff;
    z-index: 2000;
    box-shadow: -6px 0 25px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 24px 20px;
}

.mobile-drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
    border-bottom: 1px solid #f1f5f9;
}

.drawer-close {
    background: #f1f5f9;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    font-size: 1.1rem;
}

.drawer-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
    flex-grow: 1;
    overflow-y: auto;
}

.drawer-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
}

.drawer-link i {
    font-size: 1rem;
    color: var(--primary-600);
    width: 20px;
}

.drawer-link:hover {
    background: var(--primary-50);
    color: var(--primary-700);
}

.drawer-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    color: #ffffff;
    padding: 14px;
    border-radius: var(--radius-md);
    font-weight: 700;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(109, 40, 217, 0.3);
}

.drawer-footer {
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
    font-size: 0.85rem;
    text-align: center;
}

.drawer-footer p {
    color: var(--text-muted);
    margin-bottom: 8px;
}

.btn-drawer-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #22c55e;
    color: #ffffff;
    width: 100%;
    padding: 10px;
    border-radius: var(--radius-md);
    font-weight: 700;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 60px 0 80px 0;
    background: radial-gradient(circle at 10% 20%, #200a40 0%, #100324 100%);
    color: #ffffff;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, rgba(13, 4, 28, 0) 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(167, 139, 250, 0.4);
    padding: 7px 18px;
    border-radius: var(--radius-full);
    color: #c4b5fd;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 22px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.18;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.12rem;
    color: var(--text-light-muted);
    line-height: 1.7;
    margin-bottom: 30px;
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 35px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
}

.stat-card {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 900;
    color: #38bdf8;
    line-height: 1.1;
}

.stat-label {
    font-size: 0.78rem;
    color: #cbd5e1;
    margin-top: 4px;
    font-weight: 500;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    padding: 15px 32px;
    border-radius: var(--radius-full);
    box-shadow: 0 8px 25px rgba(109, 40, 217, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(109, 40, 217, 0.55);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: var(--radius-full);
    backdrop-filter: blur(6px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
}

.hero-image-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-glow);
    border: 2px solid rgba(167, 139, 250, 0.3);
}

.hero-img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-image-card:hover .hero-img {
    transform: scale(1.03);
}

.hero-badge-float {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(18, 7, 37, 0.88);
    border: 1px solid rgba(167, 139, 250, 0.4);
    backdrop-filter: blur(10px);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 14px;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.hero-badge-float i {
    font-size: 1.8rem;
    color: #38bdf8;
}

.hero-badge-float strong {
    display: block;
    font-size: 0.95rem;
    color: #ffffff;
}

.hero-badge-float span {
    font-size: 0.78rem;
    color: #34d399;
}

/* ==========================================================================
   PROMO STRIP COUNTDOWN
   ========================================================================== */
.promo-strip {
    background: linear-gradient(90deg, #6d28d9 0%, #4c1d95 50%, #311160 100%);
    color: #ffffff;
    padding: 16px 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.promo-strip-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.promo-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.promo-info i {
    font-size: 1.8rem;
    color: var(--accent-gold);
}

.promo-info strong {
    display: block;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.promo-info span {
    font-size: 0.85rem;
    color: #e2e8f0;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 8px;
}

.timer-box {
    background: rgba(13, 4, 28, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    text-align: center;
    min-width: 58px;
}

.timer-box span {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.timer-box label {
    font-size: 0.68rem;
    text-transform: uppercase;
    color: #94a3b8;
    letter-spacing: 0.5px;
}

.timer-colon {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent-gold);
}

/* ==========================================================================
   KEUNGGULAN / BENEFITS
   ========================================================================== */
.benefits-grid-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.benefits-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefit-card {
    background: var(--bg-white);
    padding: 24px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(76, 29, 149, 0.06);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(139, 92, 246, 0.3);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--primary-100);
    color: var(--primary-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition-smooth);
}

.benefit-card:hover .benefit-icon {
    background: var(--primary-600);
    color: #ffffff;
}

.benefit-text h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-900);
    margin-bottom: 6px;
}

.benefit-text p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.benefits-visual-column {
    display: flex;
    flex-direction: column;
}

.image-box-premium {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(76, 29, 149, 0.1);
}

.image-box-caption {
    padding: 12px 18px;
    background: #ffffff;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary-900);
    border-top: 1px solid #f1f5f9;
}

/* ==========================================================================
   FASILITAS USAHA (DAPAT APA SAJA)
   ========================================================================== */
.facilities-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: center;
}

.image-frame-glow {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 2px solid rgba(167, 139, 250, 0.3);
    box-shadow: 0 0 35px rgba(109, 40, 217, 0.4);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.facility-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    gap: 16px;
    transition: var(--transition-smooth);
}

.facility-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(167, 139, 250, 0.4);
    transform: translateY(-3px);
}

.fac-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    background: rgba(139, 92, 246, 0.2);
    color: #38bdf8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.fac-content h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.fac-content p {
    font-size: 0.84rem;
    color: #cbd5e1;
    line-height: 1.5;
}

/* ==========================================================================
   PILIHAN PAKET USAHA (PRICING CARDS)
   ========================================================================== */
.package-banner-center {
    max-width: 900px;
    margin: 0 auto 45px auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(76, 29, 149, 0.1);
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
    gap: 22px;
    align-items: stretch;
}

.price-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(76, 29, 149, 0.1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-500);
}

.card-ribbon {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--primary-100);
    color: var(--primary-700);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: var(--radius-full);
}

.ribbon-blue { background: #e0f2fe; color: #0284c7; }
.ribbon-gold { background: #fef3c7; color: #b45309; }
.ribbon-green { background: #dcfce7; color: #15803d; }
.ribbon-orange { background: #ffedd5; color: #c2410c; }

.price-card.featured-card {
    border: 2px solid var(--primary-600);
    box-shadow: 0 10px 30px rgba(109, 40, 217, 0.2);
    transform: scale(1.02);
}

.price-card.featured-card:hover {
    transform: scale(1.04) translateY(-8px);
}

.card-head {
    padding: 30px 20px 18px 20px;
    border-bottom: 1px solid #f1f5f9;
    text-align: center;
}

.package-level {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-950);
    margin: 4px 0 10px 0;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.package-price .currency {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-700);
}

.package-price .amount {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--primary-900);
    line-height: 1;
}

.price-sub {
    font-size: 0.76rem;
    color: var(--text-muted);
    display: block;
    margin-top: 6px;
}

.card-body {
    padding: 20px;
    flex-grow: 1;
}

.package-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.package-features li {
    font-size: 0.85rem;
    color: var(--text-main);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

.package-features li i {
    color: var(--accent-green);
    font-size: 0.85rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.card-footer {
    padding: 0 20px 24px 20px;
}

.btn-card-order {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    border-radius: var(--radius-md);
    background: var(--primary-50);
    color: var(--primary-700);
    font-size: 0.9rem;
    font-weight: 700;
    transition: var(--transition-smooth);
    border: 1px solid var(--primary-100);
}

.btn-card-order:hover {
    background: var(--primary-600);
    color: #ffffff;
    border-color: var(--primary-600);
    box-shadow: 0 4px 15px rgba(109, 40, 217, 0.3);
}

.btn-featured {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-800) 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(109, 40, 217, 0.3);
}

.btn-featured:hover {
    background: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-900) 100%);
}

/* ==========================================================================
   PAKET WEDDING & EVENT
   ========================================================================== */
.bg-wedding-theme {
    background: linear-gradient(180deg, #fdf2f8 0%, #fae8ff 50%, #fdf2f8 100%);
}

.wedding-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.wedding-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(236, 72, 153, 0.2);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.wedding-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(236, 72, 153, 0.15);
}

.wedding-img-wrapper {
    position: relative;
    max-height: 480px;
    overflow: hidden;
}

.wedding-img-wrapper img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.wedding-card:hover .wedding-img-wrapper img {
    transform: scale(1.02);
}

.wedding-card-content {
    padding: 26px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.wedding-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fce7f3;
    color: var(--accent-rose);
    font-size: 0.78rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
    align-self: flex-start;
}

.badge-scoop {
    background: #ede9fe;
    color: var(--primary-700);
}

.wedding-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-950);
    margin-bottom: 8px;
}

.wedding-summary {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.wedding-points {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 24px;
    flex-grow: 1;
}

.wedding-points li {
    font-size: 0.88rem;
    color: var(--text-main);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.wedding-points li i {
    color: var(--accent-pink);
    font-size: 0.9rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.btn-wedding {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 13px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.35);
}

.btn-wedding:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(236, 72, 153, 0.5);
}

/* ==========================================================================
   KATALOG & PRICELIST
   ========================================================================== */
.catalog-grid-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.catalog-card-visual {
    background: #ffffff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(76, 29, 149, 0.1);
}

.catalog-header-bar {
    background: linear-gradient(90deg, var(--primary-800), var(--primary-700));
    color: #ffffff;
    padding: 14px 20px;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.catalog-img-container {
    padding: 15px;
    background: #faf8fd;
}

.catalog-img-container img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   PENGIRIMAN & EKSPEDISI COLD CHAIN
   ========================================================================== */
.shipping-flex-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 45px;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 35px;
}

.rounded-card {
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.shipping-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #38bdf8;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.shipping-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 15px;
}

.shipping-desc {
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 25px;
}

.shipping-points-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.ship-point {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #ffffff;
}

.ship-point i {
    font-size: 1.2rem;
}

/* ==========================================================================
   FORM PENDAFTARAN MITRA
   ========================================================================== */
.registration-wrapper {
    max-width: 820px;
    margin: 0 auto;
}

.reg-banner-header {
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.reg-banner-img {
    width: 100%;
}

.form-container-card {
    background: #ffffff;
    color: var(--text-main);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.form-header h2 {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--primary-950);
    margin-bottom: 10px;
}

.form-header p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.notice-box {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 0.86rem;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    margin-bottom: 30px;
}

.notice-box i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary-900);
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-group label i {
    color: var(--primary-500);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text-main);
    background: #f8fafc;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-600);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.15);
}

.form-submit-container {
    margin-top: 15px;
    text-align: center;
}

.btn-submit-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.35);
    transition: var(--transition-smooth);
}

.btn-submit-order:hover {
    background: linear-gradient(135deg, #15803d 0%, #166534 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(22, 163, 74, 0.45);
}

.submit-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid rgba(76, 29, 149, 0.08);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 18px 22px;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-950);
}

.faq-question i {
    font-size: 0.9rem;
    color: var(--primary-500);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 22px;
    background: #faf8fd;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 16px 22px 20px 22px;
    border-top: 1px solid #f1f5f9;
}

.faq-answer p {
    font-size: 0.92rem;
    color: var(--text-main);
    line-height: 1.65;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.main-footer {
    background: #0d041c;
    color: #ffffff;
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(167, 139, 250, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 35px;
    margin-bottom: 50px;
}

.col-brand .brand-name {
    color: #ffffff;
    font-size: 1.6rem;
}

.legal-name {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: #a78bfa;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.footer-about {
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.6;
    margin: 15px 0;
}

.footer-address {
    display: flex;
    gap: 12px;
    font-size: 0.84rem;
    color: #cbd5e1;
    line-height: 1.5;
    background: rgba(255, 255, 255, 0.04);
    padding: 12px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-address i {
    font-size: 1.2rem;
    color: #38bdf8;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--primary-500);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.88rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--primary-400);
}

.footer-links a:hover {
    color: #38bdf8;
    transform: translateX(4px);
}

.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 14px;
    border-radius: var(--radius-md);
}

.footer-contact-link:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(167, 139, 250, 0.4);
}

.f-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.2);
    color: #38bdf8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.f-label {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
}

.footer-contact-link strong {
    font-size: 0.92rem;
    color: #ffffff;
}

.social-tags {
    margin-top: 6px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1877f2;
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--radius-full);
}

.footer-image-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(167, 139, 250, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
    color: #94a3b8;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-legal-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-legal-links a:hover {
    color: #ffffff;
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.floating-wa {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
    background: #22c55e;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.45);
    z-index: 1500;
    transition: var(--transition-smooth);
}

.floating-wa:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.6);
}

.floating-wa-ping {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #22c55e;
    opacity: 0.6;
    animation: pingWa 2s infinite cubic-bezier(0, 0, 0.2, 1);
    z-index: -1;
}

@keyframes pingWa {
    0% { transform: scale(1); opacity: 0.6; }
    75%, 100% { transform: scale(1.6); opacity: 0; }
}

.floating-wa-tooltip {
    position: absolute;
    right: 65px;
    background: #1e293b;
    color: #ffffff;
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.floating-wa:hover .floating-wa-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   LIVE TOAST NOTIFICATION (COMPACT & BESIDE WA)
   ========================================================================== */
.live-toast-notification {
    position: fixed;
    bottom: 20px;
    right: 84px;
    left: auto;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(76, 29, 149, 0.18);
    border-radius: var(--radius-md);
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
    z-index: 1400;
    max-width: 270px;
    transform: translateY(100px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.live-toast-notification.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.toast-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-100);
    color: var(--primary-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    flex-shrink: 0;
}

.toast-body {
    flex-grow: 1;
    min-width: 0;
}

.toast-title {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--primary-950);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.toast-desc {
    font-size: 0.72rem;
    color: var(--text-main);
    line-height: 1.25;
    margin: 2px 0;
}

.toast-desc strong {
    color: var(--primary-700);
}

.toast-time {
    font-size: 0.65rem;
    color: var(--accent-green-dark);
    font-weight: 600;
    display: block;
}

.toast-close {
    background: transparent;
    color: #94a3b8;
    font-size: 0.8rem;
    padding: 2px 4px;
    flex-shrink: 0;
}

.toast-close:hover {
    color: var(--text-main);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (TABLET & MOBILE)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-chip {
        margin: 0 auto 20px auto;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-badge-float {
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        justify-content: center;
    }

    .benefits-grid-layout {
        grid-template-columns: 1fr;
    }

    .facilities-layout {
        grid-template-columns: 1fr;
    }

    .shipping-flex-card {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Top Bar Mobile */
    .top-bar {
        padding: 5px 0;
        font-size: 0.72rem;
    }

    .top-bar-content {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 2px;
    }

    .announcement {
        justify-content: center;
        gap: 6px;
    }

    .badge-live {
        padding: 2px 6px;
        font-size: 0.64rem;
    }

    .announcement-text {
        font-size: 0.72rem;
        line-height: 1.25;
    }

    .top-contact {
        width: 100%;
        text-align: center;
    }

    .top-contact a {
        font-size: 0.72rem;
        justify-content: center;
    }

    /* Navigation */
    .nav-links {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    .brand-name {
        font-size: 1.35rem;
    }

    .brand-tagline {
        font-size: 0.65rem;
    }

    /* Hero Mobile */
    .hero-section {
        padding: 35px 0 45px 0;
    }

    .hero-title {
        font-size: 1.85rem;
        line-height: 1.22;
    }

    .hero-subtitle {
        font-size: 0.92rem;
        margin-bottom: 20px;
    }

    .hero-stats-grid {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 12px;
    }

    .stat-number {
        font-size: 1.35rem;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 13px 20px;
        font-size: 0.92rem;
    }

    .hero-badge-float {
        position: static;
        transform: none;
        margin: 12px auto 0 auto;
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 10px 14px;
        gap: 10px;
    }

    .hero-badge-float i {
        font-size: 1.4rem;
    }

    .hero-badge-float strong {
        font-size: 0.85rem;
    }

    .hero-badge-float span {
        font-size: 0.72rem;
    }

    /* Promo Countdown Strip Mobile */
    .promo-strip {
        padding: 14px 0;
        background: linear-gradient(180deg, #4c1d95 0%, #311160 100%);
    }

    .promo-strip-inner {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .promo-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 4px;
    }

    .promo-info i {
        font-size: 1.4rem;
        margin-bottom: 2px;
    }

    .promo-info strong {
        font-size: 0.88rem;
        line-height: 1.3;
        letter-spacing: 0.3px;
    }

    .promo-info span {
        font-size: 0.74rem;
        line-height: 1.35;
        color: #e2e8f0;
        display: block;
        max-width: 320px;
    }

    .countdown-timer {
        justify-content: center;
        gap: 6px;
    }

    .timer-box {
        padding: 5px 10px;
        min-width: 52px;
        border-radius: 6px;
    }

    .timer-box span {
        font-size: 1.15rem;
    }

    .timer-box label {
        font-size: 0.6rem;
    }

    .timer-colon {
        font-size: 1.1rem;
    }

    /* Section Spacing */
    .section-padding {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.65rem;
    }

    .section-desc {
        font-size: 0.9rem;
    }

    .benefits-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .wedding-cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .catalog-grid-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .form-container-card {
        padding: 22px 16px;
    }

    .form-header h2 {
        font-size: 1.35rem;
    }

    .shipping-points-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .shipping-flex-card {
        padding: 20px 16px;
    }

    .shipping-title {
        font-size: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    /* Floating WA on Mobile */
    .floating-wa {
        bottom: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }

    /* Live Toast on Mobile (Anchored Beside Floating WA) */
    .live-toast-notification {
        bottom: 16px;
        right: 72px;
        left: 10px;
        max-width: calc(100vw - 88px);
        padding: 6px 10px;
        gap: 8px;
        border-radius: var(--radius-sm);
    }

    .toast-avatar {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .toast-title {
        font-size: 0.74rem;
    }

    .toast-desc {
        font-size: 0.68rem;
        line-height: 1.2;
    }

    .toast-time {
        font-size: 0.6rem;
    }
}
