/* ============================================
   AKABALL - Main Stylesheet
   Dark Orange Cinematic Sports Theme
   ============================================ */

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

:root {
    --bg-primary: #080604;
    --bg-secondary: #110e0a;
    --bg-card: #1a1510;
    --bg-card-hover: #241d15;
    --accent-blue: #e8841a;
    --accent-glow: #f0a040;
    --accent-light: #f5b960;
    --text-primary: #f0ebe5;
    --text-secondary: #a89580;
    --text-muted: #6b5c4a;
    --border-color: rgba(232, 132, 26, 0.15);
    --glow-color: rgba(232, 132, 26, 0.4);
    --nav-width: 220px;
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* ---------- Particles Background ---------- */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--accent-blue);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 6s infinite ease-in-out;
}

@keyframes particleFloat {
    0%, 100% { opacity: 0; transform: translateY(0) scale(1); }
    50% { opacity: 0.6; transform: translateY(-80px) scale(1.5); }
}

/* ---------- Sidebar Navigation ---------- */
.sidebar-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: var(--nav-width);
    height: 100vh;
    background: linear-gradient(180deg, #080604 0%, #110e0a 100%);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    z-index: 100;
}

.logo {
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
    padding: 24px 20px 10px;
}

.logo-img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 0 15px rgba(232, 132, 26, 0.3));
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #fff 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    position: relative;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-blue);
    box-shadow: 0 0 10px var(--glow-color);
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    padding: 0 24px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text-secondary);
    padding: 12px 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: var(--accent-blue);
    transition: width 0.3s ease;
    box-shadow: 0 0 8px var(--glow-color);
}

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

.nav-link:hover::before,
.nav-link.active::before {
    width: 20px;
}

.nav-link.active {
    color: #fff;
    text-shadow: 0 0 20px var(--glow-color);
}

.nav-decoration {
    margin-top: auto;
    opacity: 0.3;
}

/* ---------- Main Content ---------- */
.main-content {
    margin-left: var(--nav-width);
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

/* ---------- Hero Section ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at 70% 50%, rgba(100, 60, 10, 0.3) 0%, transparent 70%),
                radial-gradient(ellipse at 30% 80%, rgba(70, 40, 5, 0.2) 0%, transparent 60%),
                var(--bg-primary);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(8, 6, 4, 0.8) 0%, transparent 60%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 80px 0 60px;
    gap: 40px;
}

.hero-text {
    max-width: 450px;
}

.hero-title {
    font-family: var(--font-display);
    margin-bottom: 24px;
}

.title-line {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 4px;
    line-height: 1.1;
    color: var(--text-primary);
}

.title-line.accent {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 450px;
}

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

/* ---------- Buttons ---------- */
.btn {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 14px 32px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue) 0%, #c46a10 100%);
    color: #fff;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    box-shadow: 0 0 30px rgba(232, 132, 26, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 0 50px rgba(232, 132, 26, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn-outline:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 0 20px rgba(232, 132, 26, 0.2);
    transform: translateY(-2px);
}

/* ---------- Hero Visual Elements ---------- */
.hero-visual {
    position: relative;
    width: 600px;
    height: 400px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(232, 132, 26, 0.3);
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.glow-ball {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--accent-glow) 0%, var(--accent-blue) 40%, transparent 70%);
    border-radius: 50%;
    box-shadow: 0 0 60px var(--accent-blue), 0 0 120px rgba(232, 132, 26, 0.3);
    animation: ballPulse 3s ease-in-out infinite;
}

@keyframes ballPulse {
    0%, 100% { box-shadow: 0 0 60px var(--accent-blue), 0 0 120px rgba(232, 132, 26, 0.3); transform: translate(-50%, -50%) scale(1); }
    50% { box-shadow: 0 0 80px var(--accent-blue), 0 0 160px rgba(232, 132, 26, 0.4); transform: translate(-50%, -50%) scale(1.1); }
}

.hoop-ring {
    position: absolute;
    top: 30%;
    left: 20%;
    width: 100px;
    height: 100px;
    border: 3px solid var(--text-muted);
    border-radius: 50%;
    opacity: 0.4;
    animation: hoopFloat 4s ease-in-out infinite;
}

.hoop-ring::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 60px;
    background: var(--text-muted);
    opacity: 0.4;
}

@keyframes hoopFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ---------- Scroll Indicator ---------- */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent-blue), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; height: 60px; }
    50% { opacity: 0.3; height: 40px; }
}

/* ---------- Sections ---------- */
.section {
    padding: 120px 80px;
    position: relative;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 60px;
}

.section-tag {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: var(--accent-blue);
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--text-primary);
}

/* ---------- About Grid ---------- */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(13, 31, 60, 0.5) 100%);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    transition: all 0.4s ease;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    position: relative;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-card:hover {
    background: linear-gradient(135deg, var(--bg-card-hover) 0%, rgba(18, 42, 78, 0.7) 100%);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.about-card:hover::before {
    opacity: 1;
}

.card-icon {
    color: var(--accent-blue);
    margin-bottom: 24px;
}

.about-card h3 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.about-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ---------- Stats Section ---------- */
.section-stats {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-blue);
    display: inline;
    text-shadow: 0 0 40px var(--glow-color);
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-blue);
}

.stat-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--text-secondary);
    margin-top: 8px;
}

/* ---------- News Section ---------- */
.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
}

.news-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.4s ease;
}

.news-card:hover {
    border-color: var(--accent-blue);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.news-featured {
    grid-row: span 2;
}

.news-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.news-featured .news-image {
    height: 300px;
}

.news-date {
    position: absolute;
    top: 16px;
    left: 16px;
    font-family: var(--font-display);
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--text-secondary);
    background: rgba(8, 6, 4, 0.8);
    padding: 6px 12px;
    backdrop-filter: blur(10px);
}

.news-body {
    padding: 24px;
}

.news-category {
    font-family: var(--font-display);
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: var(--accent-blue);
    margin-bottom: 12px;
    display: block;
}

.news-body h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-body p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.news-link {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--accent-blue);
    transition: all 0.3s ease;
}

.news-link:hover {
    color: var(--accent-light);
    text-shadow: 0 0 10px var(--glow-color);
}

/* ---------- Footer ---------- */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 60px 80px 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo-text {
    font-size: 1.3rem;
    margin-bottom: 12px;
    display: block;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 12px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.footer-col a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-col a svg {
    flex-shrink: 0;
}

.footer-col a:hover {
    color: var(--accent-blue);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* ---------- Scroll Animations ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Mobile Menu Toggle ---------- */
.menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 200;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 44px;
    height: 44px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-visual {
        display: none;
    }

    .hero-content {
        padding: 0 40px;
    }

    .section {
        padding: 80px 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-width: 0px;
    }

    .sidebar-nav {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        width: 220px;
        z-index: 300;
    }

    .sidebar-nav.open {
        transform: translateX(0);
    }

    .menu-toggle {
        display: flex;
        z-index: 200;
    }

    .main-content {
        margin-left: 0;
    }

    .title-line {
        font-size: 2.2rem;
    }

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

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

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

    .news-featured {
        grid-row: span 1;
    }

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

    .hero-content {
        padding: 0 20px;
    }

    .section {
        padding: 60px 20px;
    }

    .footer {
        padding: 40px 20px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        text-align: center;
    }
}

/* ---------- Page-specific styles ---------- */
.page-header {
    padding: 140px 80px 60px;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 132, 26, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.page-header .section-tag {
    margin-bottom: 12px;
}

.page-header .section-title {
    font-size: 3rem;
}

.page-body {
    padding: 80px;
    max-width: 1200px;
}

/* ---------- Rules Page ---------- */
.rules-section {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border-color);
}

.rules-section:last-child {
    border-bottom: none;
}

.rules-section h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: var(--accent-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.rules-section h3 .rule-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--bg-card);
    border: 1px solid var(--accent-blue);
    font-size: 0.8rem;
    color: var(--accent-blue);
    flex-shrink: 0;
}

.rules-section p, .rules-section li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

.rules-section ul {
    padding-left: 20px;
    margin-top: 12px;
}

.rules-section ul li {
    position: relative;
    padding-left: 16px;
}

.rules-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--accent-blue);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/* ---------- Leagues Page ---------- */
.leagues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

.league-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.league-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-blue);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: top;
}

.league-card:hover {
    border-color: var(--accent-blue);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.league-card:hover::after {
    transform: scaleY(1);
}

.league-name {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.league-region {
    font-size: 0.75rem;
    color: var(--accent-blue);
    letter-spacing: 2px;
    font-family: var(--font-display);
    margin-bottom: 16px;
}

.league-info {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.league-stats {
    display: flex;
    gap: 24px;
}

.league-stat {
    text-align: center;
}

.league-stat-value {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
}

.league-stat-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ---------- Media Page ---------- */
.media-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0;
}

.media-tab {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--text-secondary);
    padding: 12px 24px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
}

.media-tab:hover,
.media-tab.active {
    color: var(--text-primary);
    border-bottom-color: var(--accent-blue);
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.media-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.media-item:hover {
    border-color: var(--accent-blue);
    transform: translateY(-4px);
}

.media-thumb {
    height: 200px;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-card) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.media-thumb .play-icon {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.media-item:hover .play-icon {
    border-color: var(--accent-blue);
    box-shadow: 0 0 30px var(--glow-color);
}

.media-info {
    padding: 20px;
}

.media-info h3 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.media-info p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ---------- Boutique Page ---------- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.4s ease;
}

.product-card:hover {
    border-color: var(--accent-blue);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.product-image {
    height: 250px;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-card-hover) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-muted);
}

.product-info {
    padding: 24px;
}

.product-info h3 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-info .product-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
}

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

.product-price {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-blue);
}

.btn-cart {
    font-family: var(--font-display);
    font-size: 0.65rem;
    letter-spacing: 1px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--accent-blue);
    color: var(--accent-blue);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cart:hover {
    background: var(--accent-blue);
    color: #fff;
}
