/* ============================================
   Strike Zone Pro Shop - Stylesheet
   Aesthetic: Bold industrial / sports-grade
   ============================================ */

:root {
    --red: #E3001B;
    --red-dark: #B5001A;
    --red-glow: rgba(227, 0, 27, 0.15);
    --black: #0A0A0A;
    --dark: #111111;
    --dark2: #1A1A1A;
    --dark3: #222222;
    --mid: #333333;
    --gray: #666666;
    --light-gray: #AAAAAA;
    --off-white: #F0EDE8;
    --white: #FFFFFF;
    --yellow: #F5C400;
    --font-display: 'Bebas Neue', sans-serif;
    --font-condensed: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    background: var(--black);
    color: var(--off-white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: var(--red); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--yellow); }

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

/* ---- NAV ---- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.97);
    border-bottom: 2px solid var(--red);
    backdrop-filter: blur(8px);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    text-decoration: none;
}

.logo-icon { font-size: 1.8rem; }

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--white);
}

.logo-sub {
    font-family: var(--font-condensed);
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 600;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.25rem;
}

.nav-links a {
    font-family: var(--font-condensed);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--light-gray);
    padding: 0.5rem 0.85rem;
    border-radius: 3px;
    transition: all 0.2s;
    text-decoration: none;
}

.nav-links a:hover {
    color: var(--white);
    background: var(--red-glow);
}

.nav-links a.active {
    color: var(--yellow);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--off-white);
    transition: all 0.3s;
}

/* ---- HERO ---- */
.hero {
    position: relative;
    background: var(--dark);
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 50%, rgba(227, 0, 27, 0.12) 0%, transparent 60%),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 80px,
            rgba(255,255,255,0.015) 80px,
            rgba(255,255,255,0.015) 81px
        );
}

.hero-lane {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, transparent, var(--red), var(--yellow), var(--red), transparent);
    opacity: 0.7;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.hero-eyebrow {
    font-family: var(--font-condensed);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-eyebrow::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--red);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 0.9;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: var(--red);
    -webkit-text-stroke: 2px var(--red);
}

.hero-sub {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--light-gray);
    max-width: 500px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--yellow);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-condensed);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    font-weight: 600;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.85rem 2rem;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--red-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(227, 0, 27, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--off-white);
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    border-color: var(--yellow);
    color: var(--yellow);
    background: rgba(245, 196, 0, 0.08);
}

.btn-sm {
    padding: 0.6rem 1.25rem;
    font-size: 0.78rem;
}

.btn-full { width: 100%; justify-content: center; }

/* ---- SECTIONS ---- */
.section {
    padding: 6rem 0;
}

.section-alt {
    background: var(--dark2);
}

.section-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    margin-bottom: 3.5rem;
}

.section-eyebrow {
    font-family: var(--font-condensed);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-eyebrow::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--red);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 2px;
    color: var(--white);
    line-height: 1;
}

.section-title span { color: var(--red); }

.section-desc {
    margin-top: 1rem;
    color: var(--light-gray);
    max-width: 600px;
    font-weight: 300;
}

/* ---- PAGE HERO ---- */
.page-hero {
    background: var(--dark2);
    padding: 4rem 0 3rem;
    border-bottom: 1px solid var(--mid);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(227, 0, 27, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    letter-spacing: 3px;
    color: var(--white);
    line-height: 1;
}

.page-hero h1 span { color: var(--red); }

.page-hero p {
    color: var(--light-gray);
    font-size: 1.05rem;
    font-weight: 300;
    margin-top: 0.75rem;
}

/* ---- PRODUCT CARDS ---- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: var(--dark2);
    border: 1px solid var(--mid);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

.product-card:hover {
    border-color: var(--red);
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.4);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--red);
    color: var(--white);
    font-family: var(--font-condensed);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 2px;
    z-index: 1;
}

.product-badge.sale { background: var(--yellow); color: var(--black); }

.product-img {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--dark3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    border-bottom: 1px solid var(--mid);
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-body {
    padding: 1.25rem;
}

.product-category {
    font-family: var(--font-condensed);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 0.35rem;
}

.product-name {
    font-family: var(--font-condensed);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-desc {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.price-current {
    font-family: var(--font-condensed);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--yellow);
}

.price-original {
    font-size: 0.9rem;
    color: var(--gray);
    text-decoration: line-through;
}

/* ---- SERVICES TABLE ---- */
.services-table {
    width: 100%;
    border-collapse: collapse;
}

.services-table th {
    font-family: var(--font-condensed);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    padding: 0.75rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--mid);
}

.services-table td {
    padding: 1.1rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    vertical-align: middle;
}

.services-table tr:hover td {
    background: rgba(255,255,255,0.02);
}

.services-table tr:last-child td {
    border-bottom: none;
}

.service-name {
    font-family: var(--font-condensed);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.service-desc {
    font-size: 0.83rem;
    color: var(--gray);
    margin-top: 0.25rem;
}

.service-price {
    font-family: var(--font-condensed);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--yellow);
    white-space: nowrap;
}

.service-duration {
    font-family: var(--font-condensed);
    font-size: 0.8rem;
    color: var(--gray);
    letter-spacing: 1px;
    white-space: nowrap;
}

.service-category-block {
    background: var(--dark2);
    border: 1px solid var(--mid);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.service-category-header {
    background: var(--dark3);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-category-header h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 2px;
    color: var(--white);
}

.category-icon {
    font-size: 1.2rem;
}

/* ---- CALENDAR ---- */
.calendar-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.calendar-grid {
    background: var(--dark2);
    border: 1px solid var(--mid);
    border-radius: 6px;
    overflow: hidden;
}

.calendar-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: var(--dark3);
}

.cal-day-name {
    font-family: var(--font-condensed);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    padding: 0.75rem;
    text-align: center;
    border-right: 1px solid var(--mid);
}

.calendar-body {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.cal-cell {
    min-height: 90px;
    padding: 0.5rem;
    border-right: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
}

.cal-cell.other-month { opacity: 0.3; }

.cal-cell.today .cal-date {
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cal-date {
    font-family: var(--font-condensed);
    font-size: 0.85rem;
    color: var(--light-gray);
    margin-bottom: 0.35rem;
    font-weight: 600;
}

.cal-slot-dot {
    font-size: 0.65rem;
    background: var(--red-glow);
    border: 1px solid var(--red);
    color: var(--red);
    padding: 1px 5px;
    border-radius: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
    cursor: pointer;
    transition: background 0.2s;
    font-family: var(--font-condensed);
    font-weight: 600;
}

.cal-slot-dot:hover {
    background: var(--red);
    color: var(--white);
}

.cal-slot-dot.full {
    border-color: var(--gray);
    color: var(--gray);
    background: transparent;
    cursor: not-allowed;
}

.calendar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--mid);
}

.calendar-nav h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    letter-spacing: 2px;
    color: var(--white);
}

/* ---- SLOT CARDS ---- */
.slots-list {
    display: grid;
    gap: 1rem;
}

.slot-card {
    background: var(--dark2);
    border: 1px solid var(--mid);
    border-left: 3px solid var(--red);
    border-radius: 4px;
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    transition: border-color 0.2s;
}

.slot-card:hover {
    border-color: var(--red);
    border-left-color: var(--yellow);
}

.slot-card.full {
    border-left-color: var(--gray);
    opacity: 0.6;
}

.slot-info { flex: 1; }

.slot-date {
    font-family: var(--font-condensed);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.3rem;
}

.slot-title {
    font-family: var(--font-condensed);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.slot-meta {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.slot-meta span {
    font-size: 0.82rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.slot-pricing {
    text-align: right;
}

.slot-price {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--yellow);
    line-height: 1;
}

.slot-avail {
    font-family: var(--font-condensed);
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: 0.2rem;
}

/* ---- MODAL ---- */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-overlay.open {
    display: flex;
}

.modal {
    background: var(--dark2);
    border: 1px solid var(--mid);
    border-top: 3px solid var(--red);
    border-radius: 6px;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    padding: 1.5rem 1.75rem 1rem;
    border-bottom: 1px solid var(--mid);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.modal-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 2px;
    color: var(--white);
}

.modal-close {
    background: none;
    border: none;
    color: var(--gray);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.2s;
    flex-shrink: 0;
}

.modal-close:hover { color: var(--white); }

.modal-body { padding: 1.5rem 1.75rem; }

.modal-slot-info {
    background: var(--dark3);
    border-radius: 4px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.modal-slot-info p {
    font-size: 0.88rem;
    color: var(--light-gray);
    margin-bottom: 0.35rem;
    display: flex;
    justify-content: space-between;
}

.modal-slot-info p strong {
    color: var(--off-white);
    font-family: var(--font-condensed);
    font-weight: 600;
}

/* ---- FORMS ---- */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-family: var(--font-condensed);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--light-gray);
    margin-bottom: 0.45rem;
}

.form-control {
    width: 100%;
    background: var(--dark3);
    border: 1px solid var(--mid);
    border-radius: 4px;
    padding: 0.75rem 1rem;
    color: var(--off-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.2s;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-control:focus {
    border-color: var(--red);
    background: var(--dark2);
}

.form-control::placeholder { color: var(--gray); }

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath fill='%23666' d='M0 0l6 7 6-7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-hint {
    font-size: 0.78rem;
    color: var(--gray);
    margin-top: 0.3rem;
}

.form-total {
    background: var(--dark3);
    border-radius: 4px;
    padding: 0.85rem 1rem;
    margin-bottom: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-total-label {
    font-family: var(--font-condensed);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
}

.form-total-price {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--yellow);
}

/* ---- ALERTS ---- */
.alert {
    padding: 1rem 1.25rem;
    border-radius: 4px;
    margin-bottom: 1.25rem;
    font-size: 0.92rem;
    border-left: 3px solid;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border-color: #22C55E;
    color: #86EFAC;
}

.alert-error {
    background: rgba(227, 0, 27, 0.1);
    border-color: var(--red);
    color: #FCA5A5;
}

/* ---- CONFIRMATION ---- */
.confirmation-box {
    text-align: center;
    padding: 2rem 0;
}

.confirmation-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.confirmation-code {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 4px;
    color: var(--yellow);
    background: var(--dark3);
    border: 1px solid var(--mid);
    border-radius: 4px;
    padding: 0.5rem 1.5rem;
    display: inline-block;
    margin: 0.5rem 0;
}

/* ---- ADMIN ---- */
.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 240px;
    flex-shrink: 0;
    background: var(--dark2);
    border-right: 1px solid var(--mid);
    padding: 2rem 0;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.admin-sidebar-logo {
    padding: 0 1.5rem 2rem;
    border-bottom: 1px solid var(--mid);
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    letter-spacing: 2px;
    color: var(--white);
}

.admin-sidebar-logo span { color: var(--red); }

.admin-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1.5rem;
    font-family: var(--font-condensed);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray);
    transition: all 0.2s;
    text-decoration: none;
}

.admin-nav-link:hover, .admin-nav-link.active {
    color: var(--white);
    background: rgba(255,255,255,0.05);
    border-left: 2px solid var(--red);
}

.admin-main {
    flex: 1;
    padding: 2.5rem;
    overflow: hidden;
}

.admin-page-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    letter-spacing: 3px;
    color: var(--white);
    margin-bottom: 2rem;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--dark2);
    border: 1px solid var(--mid);
    border-radius: 6px;
    overflow: hidden;
}

.admin-table th {
    font-family: var(--font-condensed);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    padding: 0.85rem 1.25rem;
    background: var(--dark3);
    text-align: left;
    border-bottom: 1px solid var(--mid);
}

.admin-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
    vertical-align: middle;
}

.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: rgba(255,255,255,0.02); }

.badge {
    font-family: var(--font-condensed);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 2px;
}

.badge-green { background: rgba(34,197,94,0.15); color: #86efac; }
.badge-yellow { background: rgba(245,196,0,0.15); color: var(--yellow); }
.badge-red { background: rgba(227,0,27,0.15); color: #fca5a5; }
.badge-gray { background: rgba(255,255,255,0.08); color: var(--gray); }

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.admin-stat-card {
    background: var(--dark2);
    border: 1px solid var(--mid);
    border-radius: 6px;
    padding: 1.5rem;
    border-top: 3px solid var(--red);
}

.admin-stat-card h3 {
    font-family: var(--font-condensed);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 0.75rem;
}

.admin-stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--yellow);
    line-height: 1;
}

/* ---- CONTACT ---- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 42px;
    height: 42px;
    background: var(--red-glow);
    border: 1px solid var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-family: var(--font-condensed);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 0.2rem;
}

.contact-item p {
    color: var(--off-white);
    font-size: 0.95rem;
}

.contact-form-box {
    background: var(--dark2);
    border: 1px solid var(--mid);
    border-radius: 6px;
    padding: 2rem;
}

.contact-form-box h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 1.5rem;
}

/* ---- FOOTER ---- */
.footer {
    background: var(--dark2);
    border-top: 1px solid var(--mid);
    padding: 4rem 0 0;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.8;
}

.footer-links h4,
.footer-hours h4 {
    font-family: var(--font-condensed);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul a {
    color: var(--light-gray);
    font-size: 0.92rem;
    transition: color 0.2s;
    text-decoration: none;
}

.footer-links ul a:hover { color: var(--red); }

.footer-hours ul {
    list-style: none;
}

.footer-hours ul li {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    color: var(--light-gray);
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    border-top: 1px solid var(--mid);
    font-size: 0.82rem;
    color: var(--gray);
}

/* ---- UTILITIES ---- */
.text-red { color: var(--red); }
.text-yellow { color: var(--yellow); }
.text-muted { color: var(--gray); }
.text-center { text-align: center; }

.divider {
    width: 60px;
    height: 3px;
    background: var(--red);
    margin: 1.25rem 0;
}

/* Filter bar */
.filter-bar {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.filter-btn {
    font-family: var(--font-condensed);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.5rem 1.1rem;
    border-radius: 3px;
    border: 1px solid var(--mid);
    background: transparent;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn:hover, .filter-btn.active {
    border-color: var(--red);
    color: var(--white);
    background: var(--red-glow);
}

/* Stripe card */
#card-element {
    background: var(--dark3);
    border: 1px solid var(--mid);
    border-radius: 4px;
    padding: 0.85rem 1rem;
    transition: border-color 0.2s;
}

#card-element.StripeElement--focus {
    border-color: var(--red);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: span 2; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--black);
        border-bottom: 2px solid var(--red);
        padding: 1rem 0;
        gap: 0;
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 0.8rem 2rem; border-radius: 0; }
    .navbar { position: relative; }
    .products-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
    .calendar-body, .calendar-header { grid-template-columns: repeat(7, 1fr); }
    .cal-cell { min-height: 60px; }
    .footer-inner { grid-template-columns: 1fr; }
    .footer-brand { grid-column: span 1; }
    .admin-layout { flex-direction: column; }
    .admin-sidebar { width: 100%; height: auto; position: static; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 3.5rem; }
    .products-grid { grid-template-columns: 1fr; }
    .slot-card { flex-direction: column; align-items: flex-start; }
    .slot-pricing { text-align: left; }
}
