/* ========================
   CSS Variables & Reset
   ======================== */
:root {
    --clr-bg: #0f0f0f;
    --clr-surface: #1a1a1a;
    --clr-surface-2: #232323;
    --clr-surface-3: #2d2d2d;
    --clr-border: #333;
    --clr-border-light: #444;
    --clr-text: #f5f0eb;
    --clr-text-muted: #999;
    --clr-text-dim: #666;
    --clr-accent: #e8853b;
    --clr-accent-light: #f0a060;
    --clr-accent-dark: #c06a28;
    --clr-fire: #ff6b35;
    --clr-gold: #d4a855;
    --clr-success: #4caf50;
    --clr-error: #ef5350;
    --clr-whatsapp: #25d366;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
    --font-main: 'Heebo', sans-serif;
    --font-display: 'Rubik', sans-serif;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ========================
   Hero Section
   ======================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--clr-bg);
    overflow: hidden;
    padding: 2rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: saturate(0.7);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(15,15,15,0.5) 0%, rgba(15,15,15,0.3) 40%, rgba(15,15,15,0.85) 100%),
        radial-gradient(ellipse at 50% 30%, rgba(232,133,59,0.2) 0%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    animation: fadeInUp 1s ease-out;
}

.logo-badge {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(232,133,59,0.5));
    animation: firePulse 2s ease-in-out infinite;
}

@keyframes firePulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 20px rgba(232,133,59,0.5)); }
    50% { transform: scale(1.1); filter: drop-shadow(0 0 30px rgba(232,133,59,0.7)); }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--clr-text) 30%, var(--clr-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--clr-text-muted);
    font-weight: 300;
    letter-spacing: 2px;
}

.divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--clr-accent), transparent);
    margin: 1.5rem auto;
    border-radius: 2px;
}

.event-title {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 4vw, 1.8rem);
    font-weight: 700;
    color: var(--clr-accent-light);
    margin-bottom: 1.5rem;
}

.event-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.detail-chip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(26,26,26,0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.detail-chip:hover {
    border-color: var(--clr-accent);
    background: var(--clr-surface-2);
}

.chip-icon {
    font-size: 1.1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--clr-text-dim);
    font-size: 0.85rem;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-left: 2px solid var(--clr-text-dim);
    border-bottom: 2px solid var(--clr-text-dim);
    transform: rotate(-45deg);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========================
   Main Content
   ======================== */
.main-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}

/* ========================
   Form Sections
   ======================== */
.form-section {
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease-out backwards;
}

.form-section:nth-child(2) { animation-delay: 0.1s; }
.form-section:nth-child(3) { animation-delay: 0.2s; }

.section-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-dark));
    color: white;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.section-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.section-desc {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

/* ========================
   Input Fields
   ======================== */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

@media (max-width: 600px) {
    .form-grid { grid-template-columns: 1fr; }
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.input-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--clr-text-muted);
}

.input-group input,
.input-group textarea {
    background: var(--clr-surface);
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 0.85rem 1rem;
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--clr-text);
    transition: all 0.3s;
    outline: none;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: var(--clr-accent);
    box-shadow: 0 0 0 3px rgba(232,133,59,0.15);
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: var(--clr-text-dim);
}

.input-error {
    font-size: 0.8rem;
    color: var(--clr-error);
    opacity: 0;
    transition: opacity 0.3s;
}

.input-error.visible {
    opacity: 1;
}

/* ========================
   Product Cards
   ======================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: var(--clr-surface);
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-accent), var(--clr-gold));
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 2;
}

.product-card:hover {
    border-color: var(--clr-border-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card.selected {
    border-color: var(--clr-accent);
}

.product-card.selected::before {
    opacity: 1;
}

/* Product Image */
.product-image {
    position: relative;
    height: 180px;
    overflow: hidden;
    flex-shrink: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(26,26,26,0.95) 100%);
}

.product-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--clr-gold);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.8rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
    z-index: 1;
    border: 1px solid rgba(212,168,85,0.3);
}

/* Product Body */
.product-body {
    padding: 1.25rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.product-desc {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-price {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--clr-accent-light);
    margin-bottom: 0.25rem;
}

.product-unit-note {
    font-size: 0.8rem;
    color: var(--clr-gold);
    margin-bottom: 0.5rem;
}

.images-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--clr-text-dim);
    margin-top: 1.25rem;
}

.hidden {
    display: none;
}

.order-closed .btn-submit {
    opacity: 0.6;
    cursor: not-allowed;
}

.order-closed .product-card {
    pointer-events: none;
    opacity: 0.85;
}

.product-card.sold-out {
    pointer-events: none;
    opacity: 0.5;
    filter: grayscale(60%);
    position: relative;
}

.product-card.sold-out::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    z-index: 2;
}

.badge-sold-out {
    background: #dc3545 !important;
    color: #fff !important;
    font-size: 1rem !important;
    padding: 6px 16px !important;
}

.order-closed-banner {
    margin-top: 1rem;
    background: rgba(239, 83, 80, 0.10);
    border: 1px solid rgba(239, 83, 80, 0.25);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    text-align: center;
    color: var(--clr-text-muted);
}

.order-closed-title {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--clr-error);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.order-closed-text {
    font-size: 0.9rem;
}

.product-price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--clr-text-muted);
}

.product-card .product-image::after {
    content: 'לחצו להוספה';
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: var(--clr-accent);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.3s;
    z-index: 1;
}

.product-card:hover .product-image::after {
    opacity: 1;
    transform: translateY(0);
}

.product-card.selected .product-image::after {
    content: 'נבחר ✓';
    background: var(--clr-success);
    opacity: 1;
    transform: translateY(0);
}

/* Product Controls */
.product-controls {
    display: none;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--clr-border);
    animation: slideDown 0.3s ease;
}

.product-card.selected .product-controls {
    display: flex;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.control-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.control-label {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    white-space: nowrap;
}

/* Weight Selector */
.weight-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.weight-btn {
    background: var(--clr-surface-2);
    border: 1.5px solid var(--clr-border);
    color: var(--clr-text-muted);
    padding: 0.4rem 0.65rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
}

.weight-btn:hover {
    border-color: var(--clr-border-light);
    color: var(--clr-text);
}

.weight-btn.active {
    background: var(--clr-accent);
    border-color: var(--clr-accent);
    color: white;
    font-weight: 600;
}

/* Quantity Control */
.qty-control {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--clr-surface-2);
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.qty-btn {
    background: transparent;
    border: none;
    color: var(--clr-text);
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    font-family: var(--font-main);
}

.qty-btn:hover {
    background: var(--clr-surface-3);
    color: var(--clr-accent);
}

.qty-value {
    min-width: 36px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    border-left: 1px solid var(--clr-border);
    border-right: 1px solid var(--clr-border);
    padding: 0 0.25rem;
}

/* Slice preference */
.slice-selector {
    display: flex;
    gap: 0.4rem;
}

.slice-btn {
    background: var(--clr-surface-2);
    border: 1.5px solid var(--clr-border);
    color: var(--clr-text-muted);
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
}

.slice-btn:hover {
    border-color: var(--clr-border-light);
    color: var(--clr-text);
}

.slice-btn.active {
    background: var(--clr-surface-3);
    border-color: var(--clr-accent);
    color: var(--clr-accent-light);
}

.product-subtotal {
    text-align: center;
    font-weight: 600;
    color: var(--clr-gold);
    font-size: 0.95rem;
    padding-top: 0.5rem;
}

/* ========================
   Cart Section
   ======================== */
.cart-section {
    background: var(--clr-surface);
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-xl);
    padding: 2rem;
}

.cart-empty {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--clr-text-dim);
}

.cart-empty-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    opacity: 0.5;
}

.cart-empty p {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--clr-text-muted);
}

.cart-empty span {
    font-size: 0.85rem;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--clr-surface-2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    animation: fadeInUp 0.3s ease;
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.cart-item-name {
    font-weight: 600;
    font-size: 1rem;
}

.cart-item-details {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
}

.cart-item-price {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--clr-accent-light);
    white-space: nowrap;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--clr-text-dim);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.25rem;
    margin-right: 0.75rem;
    transition: color 0.2s;
}

.cart-item-remove:hover {
    color: var(--clr-error);
}

/* Cart Footer */
.cart-footer {
    margin-top: 1.5rem;
}

.notes-group {
    margin-bottom: 1.5rem;
}

.notes-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--clr-text-muted);
    margin-bottom: 0.4rem;
}

.notes-group textarea {
    width: 100%;
    background: var(--clr-surface-2);
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 0.85rem 1rem;
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--clr-text);
    resize: vertical;
    outline: none;
    transition: all 0.3s;
}

.notes-group textarea:focus {
    border-color: var(--clr-accent);
    box-shadow: 0 0 0 3px rgba(232,133,59,0.15);
}

.notes-group textarea::placeholder {
    color: var(--clr-text-dim);
}

.price-disclaimer {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(212,168,85,0.08);
    border: 1px solid rgba(212,168,85,0.2);
    border-radius: var(--radius-sm);
    padding: 0.7rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--clr-gold);
    line-height: 1.5;
}

.disclaimer-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    border-top: 2px solid var(--clr-border);
    border-bottom: 2px solid var(--clr-border);
    margin-bottom: 1.5rem;
}

.total-label {
    font-size: 1.15rem;
    font-weight: 600;
}

.total-amount {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--clr-accent-light);
}

/* Terms Agreement Checkbox */
.terms-agreement {
    margin-bottom: 1.25rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid var(--clr-border-light);
    border-radius: 4px;
    background: var(--clr-surface-2);
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.checkbox-label input[type="checkbox"]:checked {
    background: var(--clr-accent);
    border-color: var(--clr-accent);
}

.checkbox-label input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
}

.checkbox-label a {
    color: var(--clr-accent-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.checkbox-label a:hover {
    color: var(--clr-accent);
    text-decoration: underline;
}

.terms-agreement .input-error {
    margin-right: 2.75rem;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--clr-whatsapp), #20b858);
    border: none;
    border-radius: var(--radius-md);
    color: white;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37,211,102,0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-icon {
    font-size: 1.4rem;
}

.submit-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--clr-text-dim);
    margin-top: 0.75rem;
}

/* ========================
   Footer
   ======================== */
.footer {
    background: var(--clr-surface);
    border-top: 1px solid var(--clr-border);
    padding: 2.5rem 1.5rem;
    text-align: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--clr-text);
}

.footer-contacts {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.contact-link {
    color: var(--clr-accent-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.contact-link:hover {
    color: var(--clr-accent);
}

.footer-address {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

.footer-credit {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    color: var(--clr-text-muted);
}

.footer-credit-link {
    color: var(--clr-accent-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.footer-credit-link:hover {
    color: var(--clr-accent);
}

/* ========================
   Toast
   ======================== */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--clr-surface-2);
    border: 1px solid var(--clr-border);
    color: var(--clr-text);
    padding: 0.85rem 1.5rem;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast.error {
    border-color: var(--clr-error);
}

.toast.success {
    border-color: var(--clr-success);
}

/* ========================
   Responsive
   ======================== */
@media (max-width: 768px) {
    .hero {
        min-height: 100svh;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 200px;
    }

    .cart-section {
        padding: 1.5rem;
        border-radius: var(--radius-lg);
    }

    .cart-item {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .cart-item-price {
        order: -1;
        width: 100%;
        text-align: start;
    }

    .event-details {
        flex-direction: column;
        align-items: center;
    }

    .footer-contacts {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (max-width: 400px) {
    .main-content {
        padding: 1.5rem 1rem 3rem;
    }

    .section-header h3 {
        font-size: 1.25rem;
    }
}

/* ========================
   Scrollbar
   ======================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--clr-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--clr-border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--clr-border-light);
}

/* ========================
   Selection
   ======================== */
::selection {
    background: rgba(232,133,59,0.3);
    color: var(--clr-text);
}
