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

:root {
    /* Playful Neobrutalist Theme Variables */
    --bg-outside: #cbd5e1;
    --bg-app: #faf9f6;
    --bg-card: #ffffff;
    --bg-card-hover: #faf9f6;
    --bg-input: #ffffff;
    
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    
    --primary-color: #7c3aed;
    --border-color: #1e293b;
    
    --success: #22c55e;
    --success-bg: #dcfce7;
    --danger: #ef4444;
    --danger-bg: #fee2e2;
    --warning: #facc15;
    --warning-bg: #fef9c3;
    
    /* Cartoon Accent Colors */
    --accent-primary: #7c3aed;
    --accent-secondary: #ec4899;
    --accent-success: #22c55e;
    --accent-yellow: #facc15;
    
    /* Social Brand Colors */
    --fb-color: #1877f2;
    --yt-color: #ff0000;
    --ig-gradient: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    
    /* Neobrutalism Shadows */
    --card-shadow: 4px 4px 0px #1e293b;
    --button-shadow: 3px 3px 0px #1e293b;
    --button-hover-shadow: 1.5px 1.5px 0px #1e293b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-outside);
    display: flex;
    justify-content: center;
    color: var(--text-primary);
    min-height: 100vh;
}

/* App Container - Constrained mobile width */
#app {
    width: 100%;
    max-width: 440px;
    background-color: var(--bg-app);
    background-image: radial-gradient(rgba(30, 41, 59, 0.12) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    border-left: 2px solid #1e293b;
    border-right: 2px solid #1e293b;
    box-shadow: 0 0 40px rgba(0,0,0,0.1);
    overflow-x: hidden;
}

/* Floating Island Header */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--bg-card);
    position: sticky;
    top: 16px;
    width: 92%;
    margin: 0 auto;
    border-radius: 16px;
    border: 2px solid #1e293b;
    box-shadow: 4px 4px 0px #1e293b;
    z-index: 50;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.5px;
    font-family: 'Fredoka', sans-serif;
}

.brand-icon-box {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    border: 2px solid #1e293b;
    box-shadow: 2px 2px 0px #1e293b;
}

.balance-pill {
    background: var(--accent-yellow);
    color: #1e293b;
    padding: 8px 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 2px solid #1e293b;
    box-shadow: 2px 2px 0px #1e293b;
    font-family: 'Fredoka', sans-serif;
    transition: transform 0.1s;
}

.balance-pill:active {
    transform: translate(1px, 1px);
    box-shadow: 1px 1px 0px #1e293b;
}

/* Main Content Wrapper */
.main-content {
    flex: 1;
    padding: 24px 20px 120px;
    overflow-y: auto;
}

/* Typography & Titles */
.page-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin: 16px 0 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
}

.page-title i {
    color: var(--accent-primary);
}

.back-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
    border: 2px solid #1e293b;
    background: #ffffff;
    border-radius: 12px;
    width: 36px;
    height: 36px;
    box-shadow: 2px 2px 0px #1e293b;
    transition: transform 0.1s, box-shadow 0.1s;
}

.back-link:active {
    transform: translate(1px, 1px);
    box-shadow: 1px 1px 0px #1e293b;
}

/* Search Bar */
.search-box {
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    padding: 4px 6px 4px 16px;
    align-items: center;
    margin-bottom: 20px;
    border: 2px solid #1e293b;
    box-shadow: 4px 4px 0px #1e293b;
}

.search-box i {
    color: var(--text-secondary);
}

.search-box input {
    flex: 1;
    background: none;
    border: none;
    padding: 10px;
    color: var(--text-primary);
    font-size: 14px;
    outline: none;
}

.search-box .search-btn {
    background: var(--accent-primary);
    color: #fff;
    border: 2px solid #1e293b;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    font-family: 'Fredoka', sans-serif;
    box-shadow: 2px 2px 0px #1e293b;
    cursor: pointer;
    transition: transform 0.1s;
}

.search-box .search-btn:active {
    transform: translate(1px, 1px);
    box-shadow: 1px 1px 0px #1e293b;
}

/* Filter Pills */
.filter-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
    margin-bottom: 16px;
    scrollbar-width: none;
}

.filter-tabs::-webkit-scrollbar { display: none; }

.tab-pill {
    white-space: nowrap;
    padding: 8px 16px;
    border-radius: 12px;
    background: var(--bg-card);
    border: 2px solid #1e293b;
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    flex-shrink: 0;
    font-family: 'Fredoka', sans-serif;
    box-shadow: 2px 2px 0px #1e293b;
    transition: transform 0.1s, box-shadow 0.1s;
}

.tab-pill.active {
    background: var(--accent-primary);
    color: #fff;
    box-shadow: none;
    transform: translate(2px, 2px);
}

/* Order Cards */
.order-card {
    background: var(--bg-card);
    border: 2px solid #1e293b;
    box-shadow: var(--card-shadow);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 20px;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 2px dashed #1e293b;
}

.order-header-left {
    display: flex;
    gap: 12px;
    align-items: center;
}

.order-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex; 
    align-items: center; 
    justify-content: center;
    background: #ffffff;
    font-size: 20px;
    border: 2px solid #1e293b;
    box-shadow: 2px 2px 0px #1e293b;
}

.order-icon.ig { background: #ffffff; }
.order-icon.ig i { background: var(--ig-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.order-icon.yt { color: var(--yt-color); }
.order-icon.fb { color: var(--fb-color); }

.order-title h3 {
    font-size: 15px; 
    font-weight: 700; 
    color: var(--text-primary);
}

.order-id {
    font-size: 12px; 
    color: var(--text-muted); 
    margin-top: 2px;
}

.badge {
    padding: 4px 10px; 
    border-radius: 8px; 
    font-size: 10px; 
    font-weight: 700; 
    text-transform: uppercase;
    border: 2px solid #1e293b;
    box-shadow: 2px 2px 0px #1e293b;
    font-family: 'Fredoka', sans-serif;
    display: inline-block;
}

.badge-pending { background: var(--warning-bg); color: #1e293b; }
.badge-cancelled { background: var(--danger-bg); color: #1e293b; }
.badge-completed { background: var(--success-bg); color: #1e293b; }

.order-progress-callout {
    background: var(--warning-bg);
    color: #1e293b;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 13px; 
    font-weight: 600;
    display: flex; 
    gap: 8px; 
    align-items: center;
    margin-bottom: 16px;
    border: 2px solid #1e293b;
    box-shadow: 3px 3px 0px #1e293b;
}

.progress-track {
    margin-bottom: 16px;
}

.progress-labels {
    display: flex; 
    justify-content: space-between; 
    font-size: 11px; 
    font-weight: 700; 
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.progress-bar-container {
    height: 12px; 
    border-radius: 6px; 
    background: #ffffff; 
    border: 2px solid #1e293b;
    overflow: hidden;
}

.progress-fill {
    height: 100%; 
    background: var(--accent-yellow); 
    border-right: 2px solid #1e293b;
}

.order-link {
    background: #ffffff; 
    padding: 10px 12px; 
    border-radius: 10px;
    font-size: 13px; 
    color: var(--accent-primary); 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    margin-bottom: 16px;
    border: 2px solid #1e293b;
    box-shadow: 3px 3px 0px #1e293b;
}

.order-link a {
    color: inherit;
    text-decoration: underline;
    font-weight: 600;
}

.order-details-grid {
    display: grid; 
    gap: 10px; 
    margin-bottom: 16px;
}

.detail-row {
    display: flex; 
    justify-content: space-between; 
    font-size: 13px;
    padding-bottom: 10px; 
    border-bottom: 2px dashed #1e293b;
}

.detail-row:last-child { border-bottom: none; padding-bottom: 0; }
.detail-label { color: var(--text-secondary); font-weight: 600; }
.detail-value { font-weight: 700; color: var(--text-primary); }
.detail-value.price { color: var(--accent-success); }

.order-footer {
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-top: 16px;
}

.order-date { 
    font-size: 12px; 
    color: var(--text-secondary); 
    display: flex; 
    align-items: center; 
    gap: 6px; 
    font-weight: 600;
}

/* Buttons */
.btn {
    padding: 10px 18px; 
    border-radius: 12px; 
    font-size: 12px; 
    font-weight: 700; 
    border: 2px solid #1e293b; 
    cursor: pointer;
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    gap: 6px;
    font-family: 'Fredoka', sans-serif;
    box-shadow: var(--button-shadow);
    transition: transform 0.1s, box-shadow 0.1s;
    text-decoration: none;
}

.btn:active {
    transform: translate(2px, 2px);
    box-shadow: var(--button-hover-shadow);
}

.btn-primary { background: var(--accent-primary); color: #fff; }
.btn-danger { background: var(--accent-secondary); color: #fff; }

/* Menu List */
.menu-item {
    display: flex; 
    align-items: center; 
    gap: 16px; 
    padding: 16px;
    background: var(--bg-card); 
    border: 2px solid #1e293b; 
    box-shadow: var(--card-shadow); 
    border-radius: 16px;
    margin-bottom: 16px; 
    text-decoration: none; 
    color: var(--text-primary); 
    font-weight: 700; 
    font-size: 15px;
    font-family: 'Fredoka', sans-serif;
    transition: transform 0.1s, box-shadow 0.1s;
}

.menu-item:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px #1e293b;
}

.menu-item i { font-size: 18px; width: 24px; text-align: center; }
.menu-item.highlight { background: var(--success-bg); border-color: #1e293b; color: #1e293b; }
.menu-item.highlight i { color: var(--success); }

/* Services Page Elements */
.service-btn {
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 18px 20px;
    background: var(--bg-card); 
    border: 2px solid #1e293b; 
    box-shadow: var(--card-shadow); 
    border-radius: 16px;
    margin-bottom: 16px; 
    text-decoration: none; 
    color: var(--text-primary); 
    font-weight: 700; 
    font-size: 16px;
    font-family: 'Fredoka', sans-serif;
    transition: transform 0.1s, box-shadow 0.1s;
}

.service-btn:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px #1e293b;
}

.service-btn .left { display: flex; align-items: center; gap: 14px; }
.service-btn .left i { font-size: 24px; width: 30px; text-align: center;}

.video-embed {
    background: #000; 
    border-radius: 12px; 
    position: relative; 
    overflow: hidden;
    aspect-ratio: 16/9; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-top: 20px;
    border: 2px solid #1e293b;
    box-shadow: 4px 4px 0px #1e293b;
}

.video-embed .play-icon { font-size: 40px; color: #ff0000; z-index: 2; position: relative; }
.video-embed img { width: 100%; height: 100%; position: absolute; top:0; left:0; object-fit: cover; opacity: 0.6;}
.video-embed span { position: absolute; bottom: 10px; right: 10px; color: #fff; font-size: 12px; font-weight: 500; display: flex; align-items: center; gap: 6px; z-index: 2;}

/* Transaction History */
.txn-card {
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 16px;
    background: var(--bg-card); 
    border-radius: 16px; 
    border: 2px solid #1e293b; 
    box-shadow: var(--card-shadow); 
    margin-bottom: 16px;
}

.txn-left { display: flex; align-items: center; gap: 14px; }

.txn-icon {
    width: 40px; 
    height: 40px; 
    border-radius: 8px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 16px;
    border: 2px solid #1e293b;
    box-shadow: 2px 2px 0px #1e293b;
}

.txn-icon i { -webkit-text-stroke: 1px; }
.txn-icon.order { background: var(--danger-bg); color: var(--danger); }
.txn-icon.deposit { background: var(--success-bg); color: var(--success); }
.txn-icon.refund { background: var(--success-bg); color: var(--success); }

.txn-info h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; color: var(--text-primary); font-family: 'Fredoka', sans-serif;}
.txn-info p { font-size: 12px; color: var(--text-secondary); font-weight: 500; }

.txn-amount { font-weight: 800; font-size: 16px; display: flex; align-items: center; gap: 4px; font-family: 'Fredoka', sans-serif; }
.txn-amount i { font-size: 14px; -webkit-text-stroke: 1px; }
.txn-amount.neg { color: var(--danger); }
.txn-amount.pos { color: var(--success); }

.txn-right { display: flex; align-items: center; gap: 12px; }
.txn-right i { color: var(--text-secondary); font-size: 14px; }

/* Floating Island Dock Action Bar */
.bottom-dock {
    position: fixed; 
    bottom: 16px; 
    left: 50%; 
    width: 92%; 
    max-width: 400px;
    transform: translateX(-50%);
    background: var(--bg-card);
    border: 2px solid #1e293b;
    box-shadow: 6px 6px 0px #1e293b; 
    border-radius: 24px;
    display: flex; 
    justify-content: space-between; 
    align-items: flex-end;
    padding: 10px 8px 12px;
    z-index: 100;
}

.nav-btn, .fab-btn {
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 8px;
    text-decoration: none; 
    color: var(--text-secondary); 
    font-weight: 700; 
    font-size: 11px;
    flex: 1; 
    text-align: center; 
    justify-content: flex-end;
    font-family: 'Fredoka', sans-serif;
}

.fab-btn {
    color: var(--text-primary); 
    font-weight: 700;
}

.nav-icon {
    width: 40px; 
    height: 40px; 
    border-radius: 12px;
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 18px; 
    transition: all 0.2s ease;
    border: 2px solid #1e293b;
    box-shadow: 2px 2px 0px #1e293b;
}

/* Icon specific backgrounds forced to beautiful glass dark colors */
.nav-icon.orders { background: rgba(59, 130, 246, 0.15); color: #3b82f6; }
.nav-icon.funds { background: rgba(16, 185, 129, 0.15); color: #10b981; }
.nav-icon.support { background: rgba(245, 158, 11, 0.15); color: #f59e0b; }
.nav-icon.menu { background: rgba(139, 92, 246, 0.15); color: #8b5cf6; }

.nav-btn.active { color: var(--text-primary); font-weight: 800; }
.nav-btn.active .nav-icon {
    box-shadow: none;
    transform: translate(2px, 2px);
}
.nav-btn.active .nav-icon.orders { background: #3b82f6; color: #fff; }
.nav-btn.active .nav-icon.funds { background: #10b981; color: #fff; }
.nav-btn.active .nav-icon.support { background: #f59e0b; color: #fff; }
.nav-btn.active .nav-icon.menu { background: #8b5cf6; color: #fff; }

.fab-icon-sq {
    width: 58px; 
    height: 58px; 
    border-radius: 16px;
    background: var(--accent-yellow);
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 28px; 
    color: #1e293b;
    border: 2px solid #1e293b;
    box-shadow: 4px 4px 0px #1e293b;
    transform: translateY(-16px);
    margin-bottom: -16px; /* pulls text onto baseline */
    transition: transform 0.1s, box-shadow 0.1s;
}

.fab-btn:active .fab-icon-sq {
    transform: translateY(-14px);
    box-shadow: 2px 2px 0px #1e293b;
}

/* Subcategories */
.category-btn {
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 16px 20px;
    background: var(--bg-card); 
    border: 2px solid #1e293b; 
    box-shadow: var(--card-shadow); 
    border-radius: 16px;
    margin-bottom: 16px; 
    text-decoration: none; 
    color: var(--text-primary); 
    font-weight: 700; 
    font-size: 14px;
    font-family: 'Fredoka', sans-serif;
    transition: transform 0.1s, box-shadow 0.1s;
}

.category-btn:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px #1e293b;
}

.category-btn .left { display: flex; align-items: center; gap: 14px; }
.category-btn .left i { font-size: 20px; width: 24px; text-align: center; }

/* Packages List */
.pkg-card {
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 12px 16px;
    background: var(--bg-card); 
    border: 2px solid #1e293b; 
    box-shadow: var(--card-shadow); 
    border-radius: 12px;
    margin-bottom: 16px; 
    text-decoration: none; 
    color: var(--text-primary); 
    font-weight: 600; 
    font-size: 13.5px;
    cursor: pointer;
    transition: transform 0.1s, box-shadow 0.1s;
}

.pkg-card.active {
    background: var(--warning-bg);
    border: 2px solid #1e293b;
    box-shadow: 3px 3px 0px #1e293b;
    transform: translate(3px, 3px);
}

.pkg-card .left { display: flex; align-items: center; gap: 8px; }
.pkg-card .right { display: flex; align-items: center; gap: 12px; }

.discount-badge {
    background: var(--accent-secondary); 
    color: #fff; 
    padding: 4px 8px; 
    border-radius: 8px; 
    font-size: 11px; 
    font-weight: 700;
    border: 2px solid #1e293b;
    box-shadow: 2px 2px 0px #1e293b;
    font-family: 'Fredoka', sans-serif;
}

.pkg-price {
    font-weight: 800; 
    color: var(--text-primary);
}

/* Order Form Inputs */
.form-label {
    display: block; 
    font-size: 13px; 
    font-weight: 700; 
    color: var(--text-primary); 
    margin-bottom: 8px; 
    margin-top: 16px;
    font-family: 'Fredoka', sans-serif;
}

.styled-input {
    width: 100%; 
    border: 2px solid #1e293b !important; 
    background: var(--bg-card) !important; 
    padding: 14px; 
    border-radius: 12px;
    font-size: 14px; 
    color: var(--text-primary); 
    outline: none; 
    margin-bottom: 16px;
    box-shadow: 4px 4px 0px #1e293b;
    font-weight: 600;
    transition: focus;
}

.styled-input:focus {
    box-shadow: 2px 2px 0px #1e293b;
    transform: translate(2px, 2px);
    border-color: var(--accent-primary) !important;
}

.styled-input::placeholder { color: var(--text-muted); font-weight: 500; }

.submit-btn {
    width: 100%; 
    background: var(--accent-success) !important; 
    color: #fff; 
    padding: 16px; 
    border-radius: 12px;
    border: 2px solid #1e293b !important; 
    font-size: 16px; 
    font-weight: 700; 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    box-shadow: var(--button-shadow); 
    margin-bottom: 24px;
    font-family: 'Fredoka', sans-serif;
    transition: transform 0.1s, box-shadow 0.1s;
}

.submit-btn:active {
    transform: translate(2px, 2px);
    box-shadow: var(--button-hover-shadow);
}

.details-box {
    background: var(--bg-card); 
    border: 2px solid #1e293b; 
    border-radius: 12px; 
    padding: 14px;
    font-size: 13px; 
    color: var(--text-secondary); 
    line-height: 1.6; 
    font-weight: 600; 
    margin-bottom: 16px;
    box-shadow: 4px 4px 0px #1e293b;
}

.details-box ul { list-style: none; }
.details-box li { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 4px; }

.summary-box {
    background: var(--success-bg); 
    border: 2px solid #1e293b; 
    border-radius: 12px; 
    padding: 16px;
    margin-bottom: 30px; 
    color: #166534;
    box-shadow: 4px 4px 0px #1e293b;
}

.summary-box h4 { font-size: 15px; font-weight: 800; margin-bottom: 6px; display: flex; align-items: center; gap: 6px; font-family: 'Fredoka', sans-serif;}
.summary-box p { font-size: 14px; font-weight: 600; margin-bottom: 2px; }

/* Chips / Quick Select Buttons */
.chips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 16px;
}

.chip {
    padding: 10px 4px;
    border: 2px solid #1e293b;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary);
    cursor: pointer;
    text-align: center;
    background: var(--bg-card);
    font-family: 'Fredoka', sans-serif;
    box-shadow: 2px 2px 0px #1e293b;
    transition: transform 0.1s, box-shadow 0.1s;
}

.chip:active, .chip.active {
    background: var(--accent-primary);
    color: #fff;
    box-shadow: none;
    transform: translate(2px, 2px);
}

/* Modern Category & Service Cards */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding-bottom: 20px;
}

.cat-card {
    background: var(--bg-card);
    border: 2px solid #1e293b;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: var(--card-shadow);
    aspect-ratio: 1/1;
    font-family: 'Fredoka', sans-serif;
}

.cat-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px #1e293b;
}

.cat-card:active {
    transform: translate(2px, 2px);
    box-shadow: 4px 4px 0px #1e293b;
}

.cat-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: var(--bg-app);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 14px;
    transition: all 0.3s ease;
    border: 2px solid #1e293b;
    box-shadow: 2px 2px 0px #1e293b;
}

.cat-card:hover .cat-card-icon {
    background: var(--accent-primary);
    color: #fff !important;
}

.cat-card-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.srv-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.srv-card {
    background: #ffffff;
    border: 2px solid #1e293b;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: var(--text-primary);
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: var(--card-shadow);
    font-family: 'Fredoka', sans-serif;
}

.srv-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px #1e293b;
}

.srv-card:active {
    transform: translate(2px, 2px);
    box-shadow: 4px 4px 0px #1e293b;
}

.srv-info {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
}

.srv-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--bg-app);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    border: 2px solid #1e293b;
    box-shadow: 2px 2px 0px #1e293b;
}

.srv-details {
    display: flex;
    flex-direction: column;
}

.srv-name {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}

.srv-meta {
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 600;
}

.srv-price-box {
    text-align: right;
    margin-left: 12px;
}

.srv-price {
    font-size: 16px;
    font-weight: 800;
    color: var(--accent-primary);
    display: block;
}

.srv-unit {
    font-size: 10px;
    color: var(--text-secondary);
    font-weight: 700;
}

/* ─── Banner Slider ────────────────────────────────────────────────────────── */
.banner-slider-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 10px auto 24px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    background: transparent;
    border: 2px solid #1e293b;
}

.banner-slider {
    position: relative;
    width: 100%;
    padding-top: 40%; /* Aspect ratio (2.5:1) */
    overflow: hidden;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    transform: scale(1.03);
    pointer-events: none;
    z-index: 1;
}

.banner-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    z-index: 2;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: fill; 
    object-position: center;
    display: block;
}

.banner-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 3;
}

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

.banner-indicators .indicator.active {
    width: 20px;
    border-radius: 100px;
    background: #ffffff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* Ribbon Styles for Service Card */
.srv-card {
    position: relative !important;
    overflow: hidden !important;
}

.srv-ribbon-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 75px;
    height: 75px;
    overflow: hidden;
    z-index: 10;
    pointer-events: none;
}

.srv-ribbon {
    position: absolute;
    top: 13px;
    right: -28px;
    width: 105px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    white-space: nowrap;
    transform: rotate(45deg);
    font-size: 7.5px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: 'Fredoka', sans-serif;
    color: #1e293b;
    border-top: 1.5px solid #1e293b;
    border-bottom: 1.5px solid #1e293b;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.1);
}

/* Color schemes for different tags */
.srv-ribbon.recom { background: #dcfce7; color: #16a34a; border-color: #16a34a; }
.srv-ribbon.prem  { background: #f3e8ff; color: #7c3aed; border-color: #7c3aed; }
.srv-ribbon.cheap { background: #ecfeff; color: #0891b2; border-color: #0891b2; }
.srv-ribbon.fast  { background: #fef3c7; color: #d97706; border-color: #d97706; }
.srv-ribbon.hot   { background: #fee2e2; color: #ef4444; border-color: #ef4444; }
.srv-ribbon.refill { background: #dbeafe; color: #2563eb; border-color: #2563eb; }
.srv-ribbon.default { background: #f1f5f9; color: #475569; border-color: #475569; }
