/* ========================================
   STRIVE CHEERLEADING - TEAM ORDERS
   Bold, Angular, Dark Theme
   ======================================== */

/* CSS Variables */
:root {
    --primary: #ffffff;
    --primary-dark: #e0e0e0;
    --primary-light: #ffffff;
    --secondary: #000000;
    --secondary-light: #1a1a1a;
    --accent: #00d4ff;
    --accent-alt: #ff3366;
    --success: #00ff88;
    --background: #0a0a0a;
    --background-alt: #111111;
    --surface: #1a1a1a;
    --surface-light: #252525;
    --text: #ffffff;
    --text-light: #b0b0b0;
    --text-muted: #666666;
    --border: #333333;
    --border-light: #444444;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.6);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 30px rgba(0, 212, 255, 0.3);
    --radius: 4px;
    --radius-sm: 2px;
    --radius-lg: 6px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

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

a:hover {
    color: var(--primary);
    text-shadow: 0 0 10px var(--accent);
}

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

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   HEADER
   ======================================== */
.header {
    background: var(--secondary);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    padding-bottom: 12px;
}

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

.logo-icon {
    height: 40px;
    width: auto;
}

.logo-text-img {
    height: 24px;
    width: auto;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 2px;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-light);
    padding: 8px 0;
    position: relative;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

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

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

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 14px 28px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.btn-primary {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    background: transparent;
    color: var(--primary);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    background: var(--surface);
    border-color: var(--accent);
    color: var(--accent);
    text-shadow: none;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1rem;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    background: var(--secondary);
    color: var(--primary);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(135deg, transparent 40%, rgba(0, 212, 255, 0.03) 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 100px,
            rgba(255, 255, 255, 0.01) 100px,
            rgba(255, 255, 255, 0.01) 200px
        );
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
    text-transform: none;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    max-width: 100%;
    max-height: 400px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* ========================================
   DISCOUNT TIERS
   ======================================== */
.discounts {
    padding: 100px 0;
    background: var(--background-alt);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 16px;
    color: var(--primary);
    letter-spacing: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 60px;
    text-transform: none;
}

.discount-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tier {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 48px 24px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.tier:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}

.tier-1 { border-color: var(--border); }
.tier-2 { border-color: var(--border); }
.tier-3 { border-color: var(--accent); }

.tier-1:hover { border-color: var(--accent); }
.tier-2:hover { border-color: var(--accent); }
.tier-3:hover { border-color: var(--accent); box-shadow: var(--shadow-glow); }

.tier-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--surface);
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 6px 20px;
    border: 1px solid var(--border);
    letter-spacing: 1px;
}

.tier-1 .tier-badge { background: var(--surface); color: var(--text-light); }
.tier-2 .tier-badge { background: var(--surface); color: var(--text-light); }
.tier-3 .tier-badge { background: var(--accent); color: var(--secondary); border-color: var(--accent); }

.tier-amount {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 12px;
    margin-top: 16px;
}

.tier-discount {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    color: var(--primary);
}

.tier-1 .tier-discount { color: var(--text-muted); }
.tier-2 .tier-discount { color: var(--text-light); }
.tier-3 .tier-discount { color: var(--accent); }

.tier-label {
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

/* ========================================
   CUSTOMIZATION SECTION
   ======================================== */
.customization {
    padding: 100px 0;
    background: var(--secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.customization-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.customization-icon {
    width: 80px;
    height: 80px;
    background: transparent;
    border: 2px solid var(--accent);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.customization-icon svg {
    width: 40px;
    height: 40px;
    color: var(--accent);
}

.customization .section-title {
    margin-bottom: 24px;
}

.customization-text {
    text-align: left;
    background: var(--surface);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.customization-text p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.customization-text p:last-child {
    margin-bottom: 0;
}

.customization-text strong {
    color: var(--primary);
}

/* ========================================
   INFO BOX
   ======================================== */
.info-box {
    padding: 40px 0;
    background: var(--background-alt);
}

.info-card {
    background: var(--surface);
    color: var(--text);
    padding: 32px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid var(--accent);
}

.info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid var(--accent);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.info-icon svg {
    width: 24px;
    height: 24px;
}

.info-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.how-it-works {
    padding: 100px 0;
    background: var(--secondary);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.step {
    text-align: center;
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    transition: var(--transition);
}

.step:hover {
    border-color: var(--accent);
}

.step-number {
    width: 64px;
    height: 64px;
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.step p {
    color: var(--text-light);
    line-height: 1.7;
    text-transform: none;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta {
    padding: 100px 0;
    background: var(--background-alt);
    color: var(--primary);
    text-align: center;
    border-top: 1px solid var(--border);
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    text-transform: none;
}

.cta .btn-primary {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
}

.cta .btn-primary:hover {
    background: transparent;
    color: var(--primary);
    box-shadow: var(--shadow-glow);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--secondary);
    color: var(--text);
    padding: 60px 0 24px;
    margin-top: auto;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo .logo-img {
    height: 40px;
}

.footer-logo-img {
    height: 30px;
    width: auto;
}

.footer-contact {
    text-align: right;
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.footer-contact a {
    color: var(--accent);
    font-weight: 600;
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ========================================
   ORDER PAGE
   ======================================== */
.order-page {
    padding: 60px 0;
    flex: 1;
    background: var(--background);
}

.order-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 48px;
    align-items: start;
}

.page-title {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.page-subtitle {
    color: var(--text-light);
    margin-bottom: 32px;
    text-transform: none;
}

/* Calculator Sidebar */
.calculator-sidebar {
    order: -1;
    align-self: start;
    position: sticky;
    top: 80px;
}

.calculator-sticky {
    max-height: calc(100vh - 110px);
    overflow-y: auto;
}

.calculator {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--border);
}

.calculator-title {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    letter-spacing: 1px;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.calc-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.calc-value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--text);
}

.calc-row-highlight {
    background: var(--surface-light);
    margin: 0 -16px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
}

.calc-row-highlight .calc-value {
    color: var(--accent);
    font-size: 1.1rem;
}

.calc-row-total {
    background: var(--primary);
    color: var(--secondary);
    margin: 8px -16px 0;
    padding: 16px;
    border-radius: var(--radius-sm);
}

.calc-row-total .calc-label,
.calc-row-total .calc-value {
    color: var(--secondary);
}

.calc-row-total .calc-value {
    font-size: 1.35rem;
}

/* Savings Section */
.savings-section {
    margin-top: 8px;
    padding: 12px;
    background: var(--surface-light);
    border: 1px solid var(--success);
    border-radius: var(--radius-sm);
    margin-left: -16px;
    margin-right: -16px;
}

.savings-section .calc-row {
    margin-bottom: 8px;
}

.savings-section .calc-row:last-child {
    margin-bottom: 0;
}

.savings-section .calc-label,
.savings-section .calc-value {
    color: var(--text);
}

.calc-row-savings .savings-value {
    color: var(--success);
    font-weight: 700;
}

.calc-row-final {
    border-top: 1px solid var(--border);
    padding-top: 8px;
    margin-top: 8px;
}

.calc-row-final .final-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--success);
}

.calc-divider {
    height: 1px;
    background: var(--border);
    margin: 16px 0;
}

.tier-status {
    margin-bottom: 16px;
}

.current-tier {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
}

.current-tier .tier-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
}

.current-tier .tier-value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--accent);
}

.next-tier-message {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.4;
}

.tier-progress {
    margin-top: 16px;
}

.tier-progress-bar {
    height: 4px;
    background: var(--border);
    border-radius: var(--radius-sm);
    position: relative;
    overflow: visible;
}

.tier-progress-fill {
    height: 100%;
    background: var(--accent);
    border-radius: var(--radius-sm);
    transition: width 0.5s ease;
    width: 0%;
}

.tier-marker {
    position: absolute;
    top: -4px;
    width: 2px;
    height: 12px;
    background: var(--text-muted);
    transform: translateX(-50%);
}

.tier-marker span {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: var(--text-muted);
    white-space: nowrap;
}

/* Form Sections */
.form-section {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 32px;
    margin-bottom: 24px;
    border: 1px solid var(--border);
}

.form-section-title {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.form-section-subtitle {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 0.9rem;
    text-transform: none;
}

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

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--surface-light);
    color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Product Categories */
.product-category {
    margin-bottom: 32px;
}

.product-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    letter-spacing: 1px;
}

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

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

.product-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    transition: var(--transition);
    background: var(--surface-light);
}

.product-card:hover {
    border-color: var(--accent);
}

.product-card.selected {
    border-color: var(--accent);
    background: rgba(0, 212, 255, 0.05);
}

.product-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

/* Product Image Carousel */
.product-image-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--surface);
    margin-bottom: 12px;
    border: 1px solid var(--border);
}

.carousel-track {
    display: flex;
    transition: transform 0.3s ease;
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.product-card:hover .carousel-slide img {
    transform: scale(1.03);
    transition: transform 0.3s ease;
}

/* Carousel Navigation Arrows */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--surface);
    border: 1px solid var(--border);
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

.product-card:hover .carousel-btn {
    opacity: 1;
}

.carousel-btn:hover {
    background: var(--surface-light);
    border-color: var(--accent);
}

.carousel-btn.prev {
    left: 8px;
}

.carousel-btn.next {
    right: 8px;
}

.carousel-btn svg {
    width: 16px;
    height: 16px;
    color: var(--text);
}

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.carousel-dot.active {
    background: var(--accent);
}

.carousel-dot:hover {
    background: var(--text-light);
}

/* Hide carousel controls on single-image products */
.product-image-carousel.single-image .carousel-btn,
.product-image-carousel.single-image .carousel-dots {
    display: none;
}

/* Placeholder for products without images */
.product-image-carousel.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 48px;
    background: var(--surface);
}

/* Product Info below image */
.product-info {
    flex: 1;
    min-width: 0;
}

.product-header {
    display: block;
    margin-bottom: 12px;
}

.product-checkbox {
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}

.product-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.product-checkbox .checkmark {
    height: 24px;
    width: 24px;
    background: var(--background);
    border: 2px solid var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.product-checkbox:hover .checkmark {
    border-color: var(--primary);
}

.product-checkbox input:checked ~ .checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.product-checkbox .checkmark::after {
    content: '';
    display: none;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.product-checkbox input:checked ~ .checkmark::after {
    display: block;
}

.product-info {
    flex: 1;
    min-width: 0;
}

.product-name {
    display: block;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
    text-transform: none;
}

.product-price {
    color: var(--accent);
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.product-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

/* Color Swatches */
.color-swatches {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.color-swatches::before {
    content: 'Color:';
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-right: 4px;
}

.color-swatch {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.color-swatch:hover {
    transform: scale(1.1);
    border-color: var(--text-light);
}

.color-swatch.active {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px var(--surface), 0 0 0 4px var(--accent);
}

.color-swatch[data-color="White"] { background: #FFFFFF; }
.color-swatch[data-color="Black"] { background: #1a1a1a; }
.color-swatch[data-color="Gray"] { background: #808080; }
.color-swatch[data-color="Pink"] { background: #FF69B4; }
.color-swatch[data-color="Navy"] { background: #000080; }
.color-swatch[data-color="Green"] { background: #228B22; }
.color-swatch[data-color="Red"] { background: #DC143C; }
.color-swatch[data-color="Blue"] { background: #4169E1; }
.color-swatch[data-color="Purple"] { background: #800080; }
.color-swatch[data-color="Custom Colors"] {
    background: linear-gradient(135deg, #FF69B4 0%, #4169E1 50%, #228B22 100%);
}
.color-swatch[data-color="TBD"] {
    background: var(--surface-light);
    border-style: dashed;
}

/* White swatch needs inner border to be visible */
.color-swatch[data-color="White"] {
    border-color: var(--border);
}

.color-swatch[data-color="White"].active {
    border-color: var(--text-muted);
    box-shadow: 0 0 0 2px var(--surface), 0 0 0 4px var(--accent);
}

/* Hidden input for form submission */
.color-swatches input[type="hidden"] {
    display: none;
}

/* Disabled swatches */
.color-swatch:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.color-swatch:disabled:hover {
    transform: none;
    border-color: var(--border);
}

.customize-checkbox {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-light);
    cursor: pointer;
    white-space: nowrap;
}

.customize-checkbox input {
    width: 16px;
    height: 16px;
    accent-color: var(--accent);
}

/* Disclaimer */
.disclaimer {
    background: var(--surface);
    border: 1px solid var(--accent);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.disclaimer-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.disclaimer-icon svg {
    width: 100%;
    height: 100%;
}

.disclaimer p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.disclaimer a {
    color: var(--accent);
    text-decoration: underline;
}

/* Form Actions */
.form-actions {
    text-align: center;
}

.btn-submit {
    min-width: 280px;
}

.btn-submit .btn-loading {
    display: flex;
    align-items: center;
    gap: 8px;
}

.spinner {
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ========================================
   SUCCESS PAGE
   ======================================== */
.success-page {
    padding: 80px 0;
    flex: 1;
    display: flex;
    align-items: center;
    background: var(--background);
}

.success-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: transparent;
    border: 2px solid var(--success);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.success-icon svg {
    width: 50px;
    height: 50px;
    color: var(--success);
}

.success-title {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.success-message {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 48px;
    line-height: 1.7;
    text-transform: none;
}

.success-info {
    text-align: left;
    background: var(--surface);
    border-radius: var(--radius);
    padding: 32px;
    margin-bottom: 40px;
    border: 1px solid var(--border);
}

.info-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item .info-icon {
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--accent);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item .info-icon svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
}

.info-item .info-text h3 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 4px;
    text-transform: none;
}

.info-item .info-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    text-transform: none;
}

.success-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .order-layout {
        grid-template-columns: 1fr;
    }

    .calculator-sidebar {
        order: 0;
        position: relative;
        top: 0;
        align-self: auto;
    }

    .calculator-sticky {
        max-height: none;
        overflow-y: visible;
    }

    .calculator {
        margin-bottom: 24px;
    }
}

@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-visual {
        display: none;
    }

    .discount-tiers {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .product-card {
        padding: 12px;
    }

    .product-name {
        font-size: 0.9rem;
    }

    .product-price {
        font-size: 0.85rem;
    }

    .product-options {
        margin-top: 8px;
    }

    .color-swatches {
        gap: 6px;
    }

    .color-swatches::before {
        font-size: 0.75rem;
    }

    .color-swatch {
        width: 24px;
        height: 24px;
    }

    .quantity-row {
        flex-wrap: wrap;
        gap: 8px;
    }

    .add-item-btn {
        flex: 1;
        min-width: 60px;
    }

    .nav {
        gap: 16px;
    }

    .nav-link {
        font-size: 0.85rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-contact {
        text-align: center;
    }

    .success-actions {
        flex-direction: column;
    }

    .success-actions .btn {
        width: 100%;
    }

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

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

    .tier-status {
        margin-bottom: 20px;
    }

    .tier-progress {
        margin-top: 20px;
        padding-bottom: 12px;
    }

    .calculator {
        padding-bottom: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 48px 0;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn-large {
        padding: 16px 24px;
        font-size: 1rem;
    }

    .form-section {
        padding: 20px;
    }

    .calculator {
        padding: 20px;
    }

    .tier-discount {
        font-size: 2.5rem;
    }

    /* Single column product grid on small phones */
    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        padding: 14px;
    }

    .product-name {
        font-size: 0.95rem;
    }

    .product-info {
        margin-bottom: 10px;
    }

    .color-swatch {
        width: 26px;
        height: 26px;
    }

    .color-swatch.active {
        box-shadow: 0 0 0 1px var(--surface), 0 0 0 3px var(--accent);
    }

    /* Full width add button on small screens */
    .quantity-row {
        flex-direction: column;
    }

    .quantity-toggle {
        order: 1;
    }

    .quantity-input-wrapper {
        order: 2;
        width: 100%;
    }

    .qty-display {
        order: 3;
    }

    .add-item-btn {
        order: 4;
        width: 100%;
        margin-top: 8px;
    }
}

/* ========================================
   MOBILE STICKY SUMMARY BAR
   ======================================== */
.mobile-sticky-summary {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.mobile-sticky-summary.visible {
    transform: translateY(0);
}

.sticky-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    max-width: 100%;
}

.sticky-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.sticky-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sticky-value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: white;
}

.sticky-total {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    background: var(--surface-light);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.sticky-total-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sticky-total-value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--accent);
}

/* Show sticky bar only on tablet and mobile */
@media (max-width: 1024px) {
    .mobile-sticky-summary {
        display: block;
    }
}

/* Adjust header z-index so sticky bar appears below it when both visible */
@media (max-width: 1024px) {
    .header {
        z-index: 101;
    }

    .mobile-sticky-summary {
        top: 66px; /* Snug against header */
    }
}

@media (max-width: 480px) {
    .mobile-sticky-summary {
        top: 58px; /* Smaller header on very small screens */
    }
}

/* ========================================
   ADD TO CART BUTTON
   ======================================== */
.add-item-btn {
    background: var(--accent);
    color: var(--secondary);
    border: none;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.add-item-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.add-item-btn:active {
    transform: translateY(0);
}

/* Disabled Add Button (Coming Soon items) */
.add-item-btn:disabled {
    background: var(--border);
    color: var(--text-muted);
    cursor: not-allowed;
    box-shadow: none;
}

.add-item-btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Coming Soon Product Cards */
.product-coming-soon {
    opacity: 0.65;
}

.product-coming-soon:hover {
    border-color: var(--border);
}

.product-coming-soon .color-swatch:disabled,
.product-coming-soon .customize-check:disabled,
.product-coming-soon .qty-input:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

/* Item added animation */
.product-card.item-added {
    animation: itemAddedPulse 0.6s ease;
}

@keyframes itemAddedPulse {
    0% { box-shadow: 0 0 0 0 rgba(42, 157, 143, 0.5); }
    50% { box-shadow: 0 0 0 10px rgba(42, 157, 143, 0); border-color: var(--success); }
    100% { box-shadow: 0 0 0 0 rgba(42, 157, 143, 0); }
}

/* ========================================
   ADDED ITEMS SECTION (SIDEBAR)
   ======================================== */
.added-items-section {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 20px;
    margin-top: 20px;
    border: 1px solid var(--border);
}

.added-items-title {
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 1px;
}

.added-items-title::before {
    content: '🛒';
    font-size: 1.1rem;
}

.empty-cart-message {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-align: center;
    padding: 16px 8px;
    line-height: 1.5;
}

.added-items-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 300px;
    overflow-y: auto;
}

/* Cart Item Styling */
.cart-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: var(--surface-light);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-details {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
}

.cart-item-price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--accent);
    white-space: nowrap;
}

.cart-item-remove {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-remove:hover {
    background: rgba(255, 51, 102, 0.2);
    color: var(--accent-alt);
}

/* When cart has items */
.added-items-section.has-items {
    border-color: var(--accent);
}

.added-items-section.has-items .added-items-title {
    color: var(--accent);
}

/* Responsive adjustments for added items */
@media (max-width: 1024px) {
    .added-items-section {
        margin-top: 0;
        margin-bottom: 24px;
    }

    .added-items-list {
        max-height: 200px;
    }
}

@media (max-width: 768px) {
    .product-options {
        flex-wrap: wrap;
    }

    .add-item-btn {
        margin-top: 0;
        padding: 10px 20px;
    }
}

/* ========================================
   QUANTITY ROW & TOGGLE
   ======================================== */
.quantity-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 12px;
    margin-top: 12px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.quantity-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    color: var(--text-light);
}

.quantity-toggle input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
    cursor: pointer;
}

.toggle-label {
    white-space: nowrap;
}

.quantity-input-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
}

.qty-input {
    width: 70px;
    padding: 6px 8px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

.qty-input:focus {
    outline: none;
    border-color: var(--primary);
}

.qty-display {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

.quantity-row .add-item-btn {
    margin-left: auto;
}

@media (max-width: 768px) {
    .quantity-row {
        flex-wrap: wrap;
    }

    .quantity-row .add-item-btn {
        width: 100%;
        margin-left: 0;
        margin-top: 10px;
    }
}

/* ========================================
   MOBILE CART SECTION (above submit button)
   ======================================== */
.mobile-cart-section {
    display: none;
    background: var(--surface);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 24px;
    border: 1px solid var(--border);
}

.mobile-cart-section.has-items {
    border-color: var(--accent);
}

.mobile-cart-section.has-items .added-items-title {
    color: var(--accent);
}

.mobile-cart-section .added-items-list {
    max-height: 250px;
}

/* ========================================
   FILE UPLOAD AREA
   ======================================== */
.upload-description {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.file-upload-area {
    border: 1px dashed var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: var(--surface-light);
}

.file-upload-area:hover {
    border-color: var(--accent);
    background: rgba(0, 212, 255, 0.05);
}

.file-upload-area.dragover {
    border-color: var(--accent);
    background: rgba(0, 212, 255, 0.1);
    transform: scale(1.01);
}

.upload-icon {
    margin-bottom: 12px;
    color: var(--text-muted);
}

.upload-icon svg {
    width: 48px;
    height: 48px;
}

.file-upload-area:hover .upload-icon {
    color: var(--accent);
}

.upload-text {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 8px;
}

.upload-link {
    color: var(--accent);
    font-weight: 600;
    text-decoration: underline;
}

.upload-formats {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.file-list {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--surface-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    animation: slideIn 0.2s ease;
}

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

.file-name {
    flex: 1;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-size {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.file-remove {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.file-remove:hover {
    background: rgba(255, 51, 102, 0.2);
    color: var(--accent-alt);
}

/* ========================================
   MOBILE RESPONSIVE - CAROUSEL & UPLOADS
   ======================================== */
@media (max-width: 768px) {
    /* Make carousel arrows always visible on mobile (no hover) */
    .carousel-btn {
        opacity: 1;
        width: 28px;
        height: 28px;
    }

    .carousel-btn.prev {
        left: 6px;
    }

    .carousel-btn.next {
        right: 6px;
    }

    .carousel-btn svg {
        width: 14px;
        height: 14px;
    }

    /* Smaller dots on mobile */
    .carousel-dots {
        gap: 4px;
    }

    .carousel-dot {
        width: 6px;
        height: 6px;
    }

    /* Product image slightly shorter aspect ratio on mobile */
    .product-image-carousel {
        aspect-ratio: 4/3;
    }

    /* File upload area - more compact */
    .file-upload-area {
        padding: 24px 16px;
    }

    .upload-icon svg {
        width: 36px;
        height: 36px;
    }

    .upload-text {
        font-size: 0.9rem;
    }

    .upload-formats {
        font-size: 0.8rem;
    }

    /* File items - more compact */
    .file-item {
        padding: 8px 12px;
        gap: 8px;
    }

    .file-name {
        font-size: 0.85rem;
    }

    .file-size {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    /* Even smaller carousel controls on small phones */
    .carousel-btn {
        width: 26px;
        height: 26px;
    }

    .carousel-btn.prev {
        left: 4px;
    }

    .carousel-btn.next {
        right: 4px;
    }

    .carousel-btn svg {
        width: 12px;
        height: 12px;
    }

    /* Placeholder emoji smaller on mobile */
    .product-image-carousel.placeholder {
        font-size: 36px;
    }

    /* File upload - even more compact */
    .file-upload-area {
        padding: 20px 12px;
    }

    .upload-description {
        font-size: 0.85rem;
    }

    /* Stack file info on small screens */
    .file-item {
        flex-wrap: wrap;
    }

    .file-name {
        flex-basis: calc(100% - 50px);
        order: 1;
    }

    .file-icon {
        order: 0;
    }

    .file-size {
        order: 3;
        flex-basis: 100%;
        margin-left: 30px;
        margin-top: -4px;
    }

    .file-remove {
        order: 2;
        margin-left: auto;
    }
}

/* Show mobile cart only on tablet/mobile */
@media (max-width: 1024px) {
    .mobile-cart-section {
        display: block;
    }

    /* Hide sidebar cart on mobile since we have the mobile one */
    .added-items-section {
        display: none;
    }
}

/* ========================================
   DYNAMIC PRODUCT LOADING STATES
   ======================================== */

/* Loading State */
.products-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.products-loading .loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 16px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.products-loading p {
    font-size: 1rem;
    margin: 0;
}

/* Hide loading when products are loaded */
.products-loading.hidden {
    display: none;
}

/* Error State */
.products-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    color: var(--text-light);
}

.products-error .error-icon {
    color: var(--accent-alt);
    margin-bottom: 16px;
}

.products-error .error-icon svg {
    width: 48px;
    height: 48px;
}

.products-error h3 {
    color: var(--text);
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.products-error p {
    margin-bottom: 24px;
}

.products-error .btn-retry {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--accent);
    color: var(--secondary);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 16px;
}

.products-error .btn-retry:hover {
    background: var(--primary);
    box-shadow: var(--shadow-glow);
}

.products-error .error-contact {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ========================================
   IMAGE LIGHTBOX / FULLSCREEN MODAL
   ======================================== */
.image-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    padding: 20px;
    cursor: zoom-out;
}

.image-lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius);
    cursor: default;
    animation: lightboxFadeIn 0.2s ease;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10000;
}

.lightbox-close:hover {
    background: var(--surface-light);
    border-color: var(--accent);
    color: var(--accent);
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10000;
}

.lightbox-nav:hover {
    background: var(--surface-light);
    border-color: var(--accent);
    color: var(--accent);
}

.lightbox-nav.prev {
    left: 20px;
}

.lightbox-nav.next {
    right: 20px;
}

.lightbox-nav svg {
    width: 24px;
    height: 24px;
}

.lightbox-counter {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 8px 16px;
    color: var(--text-light);
    font-size: 0.875rem;
    z-index: 10000;
}

/* Make carousel images clickable */
.carousel-slide img {
    cursor: zoom-in;
}

@media (max-width: 768px) {
    .lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .lightbox-nav.prev {
        left: 10px;
    }

    .lightbox-nav.next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }

    .lightbox-counter {
        bottom: 10px;
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}
