/*
Theme Name: Collina's Shop
Theme URI: https://collinasshop.nl
Author: Collina's Shop
Author URI: https://collinasshop.nl
Description: Premium 24/7 beverage delivery theme for Amsterdam. Luxury black and gold design with WooCommerce integration, quick order form, invoice system, and expense tracking.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: collinas-shop
Tags: e-commerce, woocommerce, dark-mode, custom-logo, custom-menu, featured-images

Collina's Shop - 24/7 Drinks & Snacks Delivery Amsterdam
*/

/* ============================================
   CSS VARIABLES - LUXURY BLACK & GOLD THEME
   ============================================ */
:root {
    --cs-background: #050505;
    --cs-background-secondary: #0A0A0A;
    --cs-background-tertiary: #1A1A1A;
    --cs-gold: #D4AF37;
    --cs-gold-light: #F1D78A;
    --cs-gold-dark: #996515;
    --cs-white: #FFFFFF;
    --cs-text: #A1A1AA;
    --cs-text-light: #E4E4E7;
    --cs-border: rgba(212, 175, 55, 0.2);
    --cs-border-hover: rgba(212, 175, 55, 0.5);
    --cs-success: #22C55E;
    --cs-error: #EF4444;
    --cs-font-heading: 'Playfair Display', serif;
    --cs-font-body: 'Manrope', sans-serif;
    --cs-font-price: 'Cormorant Garamond', serif;
    --cs-transition: all 0.3s ease;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--cs-font-body);
    background-color: var(--cs-background);
    color: var(--cs-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--cs-font-heading);
    color: var(--cs-gold-light);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}

a {
    color: var(--cs-gold);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--cs-gold-light);
}

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

/* ============================================
   LAYOUT
   ============================================ */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 1024px) {
    .container {
        padding: 0 48px;
    }
}

.section {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .section {
        padding: 48px 0;
    }
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--cs-border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-logo img {
    height: 56px;
    width: 56px;
    object-fit: contain;
    border-radius: 4px;
}

.site-logo-text h1 {
    font-size: 1.25rem;
    margin: 0;
}

.site-logo-text span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--cs-text);
}

.main-navigation ul {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.main-navigation a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cs-text);
    position: relative;
    padding: 8px 0;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cs-gold);
    transition: width 0.3s ease;
}

.main-navigation a:hover,
.main-navigation .current-menu-item a {
    color: var(--cs-gold);
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item a::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-icon {
    position: relative;
    padding: 8px;
    color: var(--cs-gold);
    transition: background 0.2s ease;
    border-radius: 4px;
}

.cart-icon:hover {
    background: rgba(212, 175, 55, 0.1);
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--cs-gold);
    color: var(--cs-background);
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--cs-gold);
    cursor: pointer;
    padding: 8px;
}

@media (max-width: 992px) {
    .main-navigation {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(5, 5, 5, 0.7) 0%,
        rgba(5, 5, 5, 0.5) 50%,
        rgba(5, 5, 5, 0.9) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-subtitle {
    color: var(--cs-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 16px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    color: var(--cs-text);
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    font-family: var(--cs-font-body);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    transition: var(--cs-transition);
}

.btn-primary {
    background: var(--cs-gold);
    color: var(--cs-background);
}

.btn-primary:hover {
    background: var(--cs-gold-light);
    color: var(--cs-background);
}

.btn-secondary {
    background: transparent;
    color: var(--cs-gold);
    border: 1px solid var(--cs-gold);
}

.btn-secondary:hover {
    background: var(--cs-gold);
    color: var(--cs-background);
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.75rem;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    background: var(--cs-background-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    padding: 32px;
    background: var(--cs-background);
    border: 1px solid var(--cs-border);
    transition: border-color 0.3s ease;
}

.feature-card:hover {
    border-color: var(--cs-border-hover);
}

.feature-icon {
    width: 48px;
    height: 48px;
    color: var(--cs-gold);
    margin-bottom: 16px;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.feature-description {
    color: var(--cs-text);
    font-size: 0.9rem;
}

/* ============================================
   DELIVERY INFO SECTION
   ============================================ */
.delivery-section {
    background: var(--cs-background);
}

.delivery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

@media (max-width: 768px) {
    .delivery-grid {
        grid-template-columns: 1fr;
    }
}

.delivery-info .section-subtitle {
    color: var(--cs-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 16px;
}

.delivery-zones {
    margin-top: 24px;
}

.delivery-zone {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--cs-background-secondary);
    margin-bottom: 12px;
}

.delivery-zone.amsterdam {
    border-left: 4px solid var(--cs-success);
}

.delivery-zone.surrounding {
    border-left: 4px solid #F97316;
}

.delivery-zone-title {
    font-size: 1rem;
    color: var(--cs-gold-light);
    margin: 0;
}

.delivery-zone-price {
    color: var(--cs-text);
    font-size: 0.9rem;
}

.delivery-image {
    position: relative;
}

.delivery-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border: 1px solid var(--cs-border);
}

.delivery-badge {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--cs-gold);
    color: var(--cs-background);
    padding: 16px;
    text-align: center;
}

.delivery-badge strong {
    display: block;
    font-size: 1.25rem;
}

.delivery-badge span {
    font-size: 0.75rem;
    text-transform: uppercase;
}

/* ============================================
   PRODUCTS / WOOCOMMERCE
   ============================================ */
.products-section {
    background: var(--cs-background-secondary);
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
}

.section-header .section-subtitle {
    color: var(--cs-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 8px;
}

.products-grid,
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    list-style: none;
    padding: 0;
    margin: 0;
}

@media (max-width: 992px) {
    .products-grid,
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .products-grid,
    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }
}

.product-card,
.woocommerce ul.products li.product {
    background: var(--cs-background);
    border: 1px solid var(--cs-border);
    transition: border-color 0.3s ease, transform 0.3s ease;
    overflow: hidden;
}

.product-card:hover,
.woocommerce ul.products li.product:hover {
    border-color: var(--cs-border-hover);
    transform: translateY(-4px);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 240px;
    background: var(--cs-background-tertiary);
}

.product-image img,
.woocommerce ul.products li.product a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-badge.alcoholic {
    background: rgba(212, 175, 55, 0.2);
    color: var(--cs-gold);
}

.product-badge.non-alcoholic {
    background: rgba(34, 197, 94, 0.2);
    color: var(--cs-success);
}

.product-content {
    padding: 24px;
}

.product-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cs-text);
    margin-bottom: 8px;
}

.product-title,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--cs-font-heading);
    font-size: 1.25rem;
    color: var(--cs-gold-light);
    margin-bottom: 8px;
}

.product-description {
    font-size: 0.875rem;
    color: var(--cs-text);
    margin-bottom: 16px;
    line-height: 1.5;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price,
.woocommerce ul.products li.product .price {
    font-family: var(--cs-font-price);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--cs-gold-light);
}

.woocommerce ul.products li.product .price del {
    color: var(--cs-text);
    font-size: 1rem;
}

.woocommerce ul.products li.product .price ins {
    text-decoration: none;
}

.add-to-cart-btn,
.woocommerce a.button,
.woocommerce button.button {
    background: transparent;
    border: 1px solid var(--cs-gold);
    color: var(--cs-gold);
    padding: 10px 16px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--cs-transition);
}

.add-to-cart-btn:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
    background: var(--cs-gold);
    color: var(--cs-background);
}

/* ============================================
   QUICK ORDER FORM
   ============================================ */
.quick-order-section {
    background: var(--cs-background);
}

.quick-order-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
}

@media (max-width: 992px) {
    .quick-order-container {
        grid-template-columns: 1fr;
    }
}

.quick-order-products {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.product-category-group {
    background: var(--cs-background-secondary);
    border: 1px solid var(--cs-border);
    padding: 24px;
}

.category-title {
    font-size: 1.25rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--cs-border);
}

.quick-order-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-order-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border: 1px solid var(--cs-border);
    transition: var(--cs-transition);
    cursor: pointer;
}

.quick-order-item:hover {
    border-color: var(--cs-border-hover);
    background: rgba(212, 175, 55, 0.05);
}

.quick-order-item.selected {
    border-color: var(--cs-border-hover);
    background: rgba(212, 175, 55, 0.1);
}

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

.quick-order-checkbox {
    width: 20px;
    height: 20px;
    accent-color: var(--cs-gold);
}

.quick-order-item-name {
    color: var(--cs-white);
    font-weight: 500;
}

.quick-order-item-desc {
    font-size: 0.85rem;
    color: var(--cs-text);
}

.quick-order-item-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.quick-order-price {
    font-family: var(--cs-font-price);
    font-size: 1.125rem;
    font-style: italic;
    color: var(--cs-gold-light);
    min-width: 80px;
    text-align: right;
}

.quantity-controls {
    display: none;
    align-items: center;
    gap: 8px;
}

.quick-order-item.selected .quantity-controls {
    display: flex;
}

.quantity-btn {
    width: 32px;
    height: 32px;
    background: var(--cs-background-tertiary);
    border: none;
    color: var(--cs-gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.quantity-btn:hover {
    background: rgba(212, 175, 55, 0.2);
}

.quantity-input {
    width: 60px;
    text-align: center;
    background: var(--cs-background-tertiary);
    border: 1px solid var(--cs-border);
    color: var(--cs-white);
    padding: 6px;
}

/* Customer Form */
.quick-order-form {
    position: sticky;
    top: 100px;
    background: var(--cs-background-secondary);
    border: 1px solid var(--cs-border);
    padding: 32px;
}

.form-title {
    font-size: 1.25rem;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--cs-border);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cs-gold);
    margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--cs-border);
    color: var(--cs-white);
    font-family: var(--cs-font-body);
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--cs-gold);
}

.form-input::placeholder {
    color: var(--cs-text);
    opacity: 0.5;
}

.form-select {
    cursor: pointer;
}

.form-select option {
    background: var(--cs-background);
    color: var(--cs-white);
}

.form-textarea {
    min-height: 80px;
    resize: vertical;
    border: 1px solid var(--cs-border);
    padding: 12px;
}

/* Order Summary */
.order-summary {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--cs-border);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--cs-text);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--cs-border);
    font-size: 1.25rem;
    color: var(--cs-gold-light);
}

.summary-total-amount {
    font-family: var(--cs-font-price);
    font-style: italic;
    font-size: 1.5rem;
}

.submit-order-btn {
    width: 100%;
    margin-top: 24px;
    padding: 18px;
    font-size: 1rem;
}

/* ============================================
   WOOCOMMERCE CART & CHECKOUT
   ============================================ */
.woocommerce-cart,
.woocommerce-checkout {
    background: var(--cs-background);
    min-height: 80vh;
    padding: 48px 0;
}

.woocommerce table.shop_table {
    border: 1px solid var(--cs-border);
    background: var(--cs-background-secondary);
}

.woocommerce table.shop_table th {
    background: var(--cs-background-tertiary);
    color: var(--cs-gold);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    padding: 16px;
    border-bottom: 1px solid var(--cs-border);
}

.woocommerce table.shop_table td {
    padding: 16px;
    border-bottom: 1px solid var(--cs-border);
    color: var(--cs-text-light);
}

.woocommerce .cart_totals,
.woocommerce-checkout #order_review {
    background: var(--cs-background-secondary);
    border: 1px solid var(--cs-border);
    padding: 24px;
}

.woocommerce form .form-row label {
    color: var(--cs-gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    background: var(--cs-background-tertiary);
    border: 1px solid var(--cs-border);
    color: var(--cs-white);
    padding: 12px;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
    border-color: var(--cs-gold);
    outline: none;
}

.woocommerce #payment {
    background: var(--cs-background-secondary);
    border: 1px solid var(--cs-border);
}

.woocommerce #payment ul.payment_methods {
    border-bottom: 1px solid var(--cs-border);
}

.woocommerce #payment div.payment_box {
    background: var(--cs-background-tertiary);
    color: var(--cs-text);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--cs-background-secondary);
    border-top: 1px solid var(--cs-border);
    padding: 48px 0 24px;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--cs-border);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo img {
    height: 48px;
    width: 48px;
    object-fit: contain;
}

.footer-logo-text h3 {
    font-size: 1.125rem;
    margin: 0;
}

.footer-logo-text span {
    font-size: 0.75rem;
    color: var(--cs-text);
}

.footer-contact {
    text-align: right;
    color: var(--cs-text);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    color: var(--cs-text);
    font-size: 0.875rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--cs-background);
    text-align: center;
    border-top: 1px solid var(--cs-border);
}

.cta-icon {
    width: 48px;
    height: 48px;
    color: var(--cs-gold);
    margin: 0 auto 24px;
}

.cta-title {
    margin-bottom: 16px;
}

.cta-description {
    max-width: 600px;
    margin: 0 auto 32px;
    color: var(--cs-text);
}

/* ============================================
   ADMIN STYLES (Dashboard in WP Admin)
   ============================================ */
.collinas-admin-page {
    background: #1a1a1a;
    color: #a1a1aa;
    padding: 20px;
    margin: 20px;
    border-radius: 4px;
}

.collinas-admin-page h1 {
    color: #f1d78a;
    font-family: 'Playfair Display', serif;
}

.collinas-admin-card {
    background: #0a0a0a;
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 20px;
    margin-bottom: 20px;
}

.collinas-admin-card h2 {
    color: #d4af37;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.collinas-stat {
    font-size: 2rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: #f1d78a;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-gold { color: var(--cs-gold); }
.text-gold-light { color: var(--cs-gold-light); }
.text-muted { color: var(--cs-text); }
.bg-dark { background: var(--cs-background); }
.bg-dark-secondary { background: var(--cs-background-secondary); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.hidden { display: none; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

.animate-slide-up {
    animation: slideUp 0.6s ease-out forwards;
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cs-background-secondary);
}

::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.5);
}

/* Selection */
::selection {
    background: rgba(212, 175, 55, 0.3);
    color: var(--cs-gold-light);
}
