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

:root {
    /* Colors - Professional Sport Theme */
    --primary: #0066FF;
    --primary-dark: #0052CC;
    --primary-light: #3399FF;
    --secondary: #FF6B35;
    --accent: #00D9FF;
    --success: #00E676;
    --dark: #0a0e27;
    --dark-2: #151b35;
    --dark-3: #1f2847;
    --light: #f8fafc;
    --text: #e2e8f0;
    --text-dark: #94a3b8;

    /* Gradients - Dynamic Sport Inspired */
    --gradient-1: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    --gradient-2: linear-gradient(135deg, #FF6B35 0%, #FF8C61 100%);
    --gradient-3: linear-gradient(135deg, #00D9FF 0%, #00E676 100%);
    --gradient-primary: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    --gradient-secondary: linear-gradient(135deg, #FF6B35 0%, #FF8C61 100%);
    --gradient-accent: linear-gradient(135deg, #00D9FF 0%, #0066FF 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 40px rgba(0, 102, 255, 0.5);
    --shadow-glow-accent: 0 0 40px rgba(0, 217, 255, 0.5);

    /* Typography - Modern Sport Fonts */
    --font-primary: 'Outfit', sans-serif;
    --font-display: 'Rajdhani', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    z-index: 1000;
    padding: 0.25rem 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: none;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo h1 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: white;
}

.nav-links a:hover::after {
    width: 100%;
}

.cart-btn {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
}

.cart-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--secondary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
    min-width: 24px;
    text-align: center;
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem 0 6rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--gradient-1);
    top: -10%;
    right: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--gradient-2);
    bottom: -10%;
    left: -10%;
    animation-delay: 7s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: var(--gradient-3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 30px) scale(0.9);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--gradient-accent);
    border: none;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
    box-shadow: var(--shadow-glow-accent);
    margin-bottom: 1.5rem;
    animation: slideUp 0.8s ease-out;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 0.75rem;
    color: white;
    text-transform: uppercase;
}

.title-line {
    display: block;
    animation: slideUp 0.8s ease-out;
    animation-fill-mode: both;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    max-width: 500px;
    animation: slideUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    animation: slideUp 0.8s ease-out 0.6s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: var(--font-primary);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.5);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(0, 102, 255, 0.7);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--accent);
    color: var(--accent);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-accent);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    animation: slideUp 0.8s ease-out 0.8s both;
}

.stat h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.25rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat p {
    font-size: 0.875rem;
    color: var(--text-dark);
}

.hero-image {
    position: relative;
    animation: slideUp 0.8s ease-out 0.4s both;
}

.racket-showcase {
    position: relative;
    padding: 2rem;
}

.racket-img {
    width: 100%;
    max-width: 320px;
    height: auto;
    position: relative;
    z-index: 2;
    animation: floatRacket 6s infinite ease-in-out;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
}

@keyframes floatRacket {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    animation: pulse 4s infinite ease-in-out;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    color: white;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    animation: floatCard 5s infinite ease-in-out;
}

.card-1 {
    top: 5%;
    right: -5%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 10%;
    left: -5%;
    animation-delay: 1.5s;
}

.card-3 {
    top: 70%;
    right: 10%;
    animation-delay: 3s;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-size: 0.875rem;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, var(--primary));
}

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

/* ==================== SECTIONS ==================== */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 102, 255, 0.15);
    border: 1px solid var(--primary);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-dark);
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== PRODUCTS ==================== */
.products {
    padding: 4rem 0;
    position: relative;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.product-card:hover::before {
    opacity: 0;
}

.product-card:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.product-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem 1rem;
    background: var(--secondary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    z-index: 2;
}

.product-badge.featured {
    background: var(--accent);
}

.product-badge.new {
    background: var(--gradient-primary);
}

.product-image {
    position: relative;
    margin-bottom: 1rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    padding: 1rem;
}

.product-image img {
    width: 100%;
    max-height: 180px;
    object-fit: contain;
    height: auto;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1) rotate(5deg);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view {
    padding: 0.75rem 1.5rem;
    background: white;
    color: var(--dark);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.product-card:hover .quick-view {
    transform: translateY(0);
}

.product-info {
    position: relative;
    z-index: 1;
}

.product-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.product-desc {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.product-specs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.product-specs span {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    color: var(--text);
}

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

.price {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.old-price {
    font-size: 0.875rem;
    color: var(--text-dark);
    text-decoration: line-through;
}

.current-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
}

.add-to-cart {
    padding: 0.875rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

/* ==================== FEATURES ==================== */
.features {
    padding: 4rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.05) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-5px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-dark);
    line-height: 1.8;
}

/* ==================== ABOUT ==================== */
.about {
    padding: 4rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    max-height: 280px;
    object-fit: contain;
    height: auto;
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 2;
}

.about-decoration {
    display: none;
}

.about-text h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 0.75rem;
}

.about-text p {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.8;
}

.about-features {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

/* ==================== NEWSLETTER ==================== */
.newsletter {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
}

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

.newsletter-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: var(--text-dark);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    color: white;
    font-size: 1rem;
    font-family: var(--font-primary);
}

.newsletter-form input::placeholder {
    color: var(--text-dark);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

/* ==================== FOOTER ==================== */
.footer {
    padding: 2rem 0 1rem;
    background: var(--dark-2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--text-dark);
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-light);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-links a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--text-dark);
}

/* ==================== CART MODAL ==================== */
.cart-modal {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 450px;
    height: 100vh;
    background: var(--dark-2);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

.cart-modal.active {
    right: 0;
}

.cart-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cart-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.close-cart {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
}

.close-cart:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cart-items {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
}

.empty-cart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-dark);
}

.empty-cart svg {
    margin-bottom: 1rem;
    opacity: 0.5;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 0.5rem;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cart-item-price {
    color: var(--primary-light);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.remove-item {
    background: none;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.remove-item:hover {
    color: var(--secondary);
}

.cart-footer {
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.total-amount {
    font-size: 1.75rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.checkout-btn {
    width: 100%;
    padding: 1.25rem;
    font-size: 1.125rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }

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

@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        order: -1;
    }

    .racket-img {
        max-width: 200px;
    }

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

    .hero-subtitle {
        margin: 0 auto 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

@media (max-width: 640px) {
    .racket-img {
        max-width: 150px;
    }

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

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

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

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

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

    .newsletter-form {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .cart-modal {
        max-width: 100%;
    }
}

/* ==================== PAYMENT MODAL ==================== */
.payment-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.payment-modal.active {
    display: flex;
}

.payment-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.payment-content {
    position: relative;
    width: 100%;
    max-width: 1000px;
    max-height: 90vh;
    background: var(--dark-2);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow-y: auto;
    animation: slideUpModal 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: var(--shadow-xl);
}

@keyframes slideUpModal {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close-payment {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
    z-index: 10;
}

.close-payment:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.payment-header {
    padding: 3rem 3rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.step span {
    font-size: 0.875rem;
    color: var(--text-dark);
    font-weight: 600;
}

.step.active .step-number {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
}

.step.active span {
    color: white;
}

.step-line {
    width: 100px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.payment-body {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    padding: 3rem;
}

/* Order Summary */
.order-summary {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.order-summary h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.summary-items {
    margin-bottom: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    color: var(--text);
}

.summary-item-name {
    font-weight: 600;
}

.summary-item-qty {
    color: var(--text-dark);
    font-size: 0.875rem;
}

.summary-line {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 1rem 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    color: var(--text);
}

.summary-row.total {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.free-badge {
    background: var(--success);
    color: var(--dark);
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Payment Form */
.payment-form-container h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
}

.payment-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
}

.form-group input {
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: white;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group input::placeholder {
    color: var(--text-dark);
}

.form-group input.error {
    border-color: var(--secondary);
}

.card-input-wrapper {
    position: relative;
}

.card-brand {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

.error-message {
    color: var(--secondary);
    font-size: 0.75rem;
    margin-top: -0.25rem;
    display: none;
}

.error-message.show {
    display: block;
}

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

.payment-submit-btn {
    margin-top: 1rem;
    padding: 1.25rem;
    font-size: 1.125rem;
    width: 100%;
    position: relative;
}

.payment-submit-btn .btn-text,
.payment-submit-btn .btn-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.payment-submit-btn.loading .btn-text {
    display: none;
}

.payment-submit-btn.loading .btn-loader {
    display: flex !important;
}

.spinner {
    width: 20px;
    height: 20px;
    animation: rotate 2s linear infinite;
}

.spinner .path {
    stroke: white;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

.secure-payment {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--text-dark);
    font-size: 0.875rem;
}

.secure-payment svg {
    color: #10b981;
}

/* ==================== SUCCESS MODAL ==================== */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.success-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.success-content {
    background: var(--dark-2);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 3rem;
    max-width: 500px;
    text-align: center;
    animation: slideUpModal 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s both;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.success-icon svg {
    color: white;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.success-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 1rem;
}

.success-content p {
    color: var(--text-dark);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.order-number {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    margin-bottom: 2rem;
    color: var(--text);
    font-family: monospace;
    font-size: 1.125rem;
}

.order-number span {
    color: white;
    font-weight: 700;
}

/* ==================== PAYMENT RESPONSIVE ==================== */
@media (max-width: 968px) {
    .payment-body {
        grid-template-columns: 1fr;
    }

    .order-summary {
        position: relative;
        top: 0;
        order: 2;
    }

    .payment-form-container {
        order: 1;
    }

    .payment-step-indicator {
        gap: 1rem;
    }

    .step-line {
        width: 60px;
    }
}

@media (max-width: 640px) {
    .payment-modal {
        padding: 0;
    }

    .payment-content {
        max-height: 100vh;
        border-radius: 0;
    }

    .payment-header,
    .payment-body {
        padding: 2rem 1.5rem;
    }

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

    .payment-step-indicator {
        flex-direction: column;
        gap: 1rem;
    }

    .step-line {
        width: 2px;
        height: 40px;
    }
}

/* ==================== COMING SOON ==================== */
.coming-soon-badge {
    background: linear-gradient(135deg, #555, #888) !important;
    color: #fff !important;
}

.coming-soon-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.coming-soon-overlay span {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid rgba(255,255,255,0.6);
    padding: 8px 20px;
    border-radius: 30px;
}

.coming-soon-btn {
    background: #444 !important;
    color: #aaa !important;
    cursor: not-allowed !important;
    opacity: 0.7;
}

.coming-soon-card {
    opacity: 0.85;
}

/* ==================== BRAND LOGOS ==================== */

/* Navbar */
.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

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

.logo-name {
    height: 100px;
    width: auto;
    mix-blend-mode: screen;
    filter: brightness(1.3) saturate(1.4);
}

/* Hero main logo */
.hero-main-logo {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    opacity: 0.13;
    filter: drop-shadow(0 0 40px rgba(100, 80, 255, 0.8));
    pointer-events: none;
    animation: logoPulse 4s ease-in-out infinite;
    z-index: 0;
}

@keyframes logoPulse {
    0%, 100% { opacity: 0.13; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.22; transform: translateX(-50%) scale(1.06); }
}

/* Footer */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.footer-logo-icon {
    height: 44px;
    width: auto;
    filter: drop-shadow(0 0 12px rgba(120, 80, 255, 0.6));
}

.footer-signature {
    height: 48px;
    width: auto;
    mix-blend-mode: screen;
    opacity: 0.9;
    filter: brightness(1.3) saturate(1.4);
}

/* ==================== COMING SOON CARD (no image) ==================== */
.coming-soon-overlay-card {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    border: 1px dashed rgba(255, 255, 255, 0.15);
}

.coming-soon-overlay-card span {
    color: #aaa;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* ==================== HERO BRAND HEADER ==================== */
.hero-brand-header {
    text-align: center;
    margin-bottom: 2.5rem;
    animation: slideUp 0.8s ease-out;
}

.hero-brand-wordmark {
    width: min(700px, 90%);
    height: auto;
    filter: invert(1) brightness(1.1);
    drop-shadow: 0 0 60px rgba(255,255,255,0.3);
}

/* ==================== HOME SPLASH ==================== */
.home-splash {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.splash-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    animation: slideUp 1s ease-out;
}

.splash-icon {
    width: min(180px, 40vw);
    height: auto;
    filter: drop-shadow(0 0 60px rgba(100, 80, 255, 0.7));
    animation: logoPulse 4s ease-in-out infinite;
}

.splash-wordmark {
    width: min(600px, 80vw);
    height: auto;
    filter: invert(1) brightness(1.1);
    filter: drop-shadow(0 0 30px rgba(255,255,255,0.2)) invert(1) brightness(1.1);
}

.splash-tagline {
    font-size: 1rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--text-dark);
    font-weight: 300;
}

/* ==================== SPLASH ANIMATIONS ==================== */
.splash-rings {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 0;
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(100, 100, 255, 0.15);
    animation: ringExpand 6s ease-out infinite;
}

.ring-1 { width: 300px; height: 300px; animation-delay: 0s; }
.ring-2 { width: 500px; height: 500px; animation-delay: 2s; }
.ring-3 { width: 700px; height: 700px; animation-delay: 4s; }

@keyframes ringExpand {
    0%   { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* Floating particles */
.splash-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.splash-particles span {
    position: absolute;
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6644ff, #00d9ff);
    animation: particleFloat linear infinite;
    opacity: 0;
}

.splash-particles span:nth-child(1)  { left: 10%; animation-duration: 8s;  animation-delay: 0s;   width: 3px;  height: 3px; }
.splash-particles span:nth-child(2)  { left: 20%; animation-duration: 10s; animation-delay: 1s;   width: 5px;  height: 5px; }
.splash-particles span:nth-child(3)  { left: 35%; animation-duration: 7s;  animation-delay: 2s;   width: 3px;  height: 3px; }
.splash-particles span:nth-child(4)  { left: 50%; animation-duration: 12s; animation-delay: 0.5s; width: 6px;  height: 6px; }
.splash-particles span:nth-child(5)  { left: 60%; animation-duration: 9s;  animation-delay: 3s;   width: 3px;  height: 3px; }
.splash-particles span:nth-child(6)  { left: 75%; animation-duration: 11s; animation-delay: 1.5s; width: 4px;  height: 4px; }
.splash-particles span:nth-child(7)  { left: 85%; animation-duration: 8s;  animation-delay: 2.5s; width: 5px;  height: 5px; }
.splash-particles span:nth-child(8)  { left: 90%; animation-duration: 10s; animation-delay: 0s;   width: 3px;  height: 3px; }
.splash-particles span:nth-child(9)  { left: 5%;  animation-duration: 13s; animation-delay: 4s;   width: 4px;  height: 4px; }
.splash-particles span:nth-child(10) { left: 45%; animation-duration: 7s;  animation-delay: 1s;   width: 6px;  height: 6px; }
.splash-particles span:nth-child(11) { left: 65%; animation-duration: 9s;  animation-delay: 3.5s; width: 3px;  height: 3px; }
.splash-particles span:nth-child(12) { left: 30%; animation-duration: 11s; animation-delay: 2s;   width: 5px;  height: 5px; }

@keyframes particleFloat {
    0%   { bottom: -10px; opacity: 0; transform: translateX(0); }
    10%  { opacity: 1; }
    90%  { opacity: 0.6; }
    100% { bottom: 100%; opacity: 0; transform: translateX(40px); }
}

/* ==================== PRODUCT TABS ==================== */
.product-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 0.4rem;
    width: fit-content;
}

.tab-btn {
    padding: 0.6rem 2rem;
    border: none;
    border-radius: 6px;
    background: transparent;
    color: var(--text-dark);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.5px;
}

.tab-btn.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.4);
}

.tab-btn:not(.active):hover {
    color: white;
    background: rgba(255, 255, 255, 0.06);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeInTab 0.3s ease;
}

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

.products-grid-accessories {
    grid-template-columns: repeat(3, 1fr);
}

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

@media (max-width: 640px) {
    .products-grid-accessories {
        grid-template-columns: 1fr;
    }
}

/* ==================== CLEAN DESIGN OVERRIDES ==================== */

/* --- Navbar --- */
.logo-icon { height: 36px; }
.logo-name  { height: 46px; }

.nav-links { gap: 2rem; }

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cart-btn {
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
}

/* --- Splash / Home --- */
.splash-icon    { width: min(100px, 22vw); }
.splash-wordmark { width: min(420px, 70vw); }
.splash-tagline {
    font-size: 0.75rem;
    letter-spacing: 8px;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    font-weight: 300;
}

/* --- Section headers --- */
.section-badge {
    font-size: 0.7rem;
    letter-spacing: 2px;
    padding: 0.35rem 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.5);
}

.section-title {
    font-size: 2rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.35);
}

/* --- Product cards --- */
.product-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 1.5rem;
    transition: border-color 0.2s;
}

.product-card:hover {
    border-color: rgba(255,255,255,0.14) !important;
    box-shadow: none !important;
    transform: none !important;
}

.coming-soon-overlay-card {
    height: 90px;
    border: 1px dashed rgba(255,255,255,0.1);
    background: transparent;
    margin-bottom: 1.2rem;
}

.coming-soon-overlay-card span {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.2);
    border: none;
    padding: 0;
}

.coming-soon-badge {
    font-size: 0.65rem !important;
    letter-spacing: 1.5px;
    padding: 0.25rem 0.75rem !important;
    background: rgba(255,255,255,0.06) !important;
    color: rgba(255,255,255,0.4) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 999px !important;
}

.product-info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.4rem;
    letter-spacing: 0.3px;
}

.product-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.product-specs {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.product-specs span {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
}

.current-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

.coming-soon-btn {
    font-size: 0.75rem !important;
    letter-spacing: 1.5px;
    padding: 0.5rem 1rem !important;
    background: rgba(255,255,255,0.05) !important;
    color: rgba(255,255,255,0.3) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 8px !important;
}

/* --- Tab buttons --- */
.product-tabs {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    margin-bottom: 2.5rem;
}

.tab-btn {
    font-size: 0.82rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.5rem 1.75rem;
}

.tab-btn.active {
    background: rgba(255,255,255,0.1);
    box-shadow: none;
    color: white;
}

/* --- Feature cards --- */
.feature-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    transition: border-color 0.2s;
}

.feature-card:hover {
    border-color: rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.05);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: rgba(255,255,255,0.7);
}

.feature-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    letter-spacing: 0.3px;
}

.feature-card p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.6;
}

/* --- About --- */
.about-text h2 {
    display: none; /* heading now in section-header */
}

.about-text p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.check-icon {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.about-feature span:last-child {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

/* --- Newsletter --- */
.newsletter-content h2 {
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.newsletter-content p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.35);
    margin-bottom: 1.5rem;
}

.newsletter-form input {
    font-size: 0.875rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

/* --- Footer --- */
.footer-logo-icon  { height: 32px; }
.footer-signature  { height: 36px; }

.footer-brand { margin-bottom: 0.75rem; }

.footer-content p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

.footer-section h4 {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1rem;
}

.footer-section ul li a,
.social-links a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
    transition: color 0.2s;
}

.footer-section ul li a:hover,
.social-links a:hover { color: white; }

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.2);
}
