/* Floating Navigation Design - White/Black/Orange Theme */

/* Custom Font */
@font-face {
    font-family: 'TechnoRaceItalic';
    src: url('../fonts/TechnoRaceItalic-eZRWe.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    padding: 1.5rem 0;
}

.site-header::before {
    display: none;
}

.header-top {
    display: none;
}

.header-nav {
    padding: 0;
}

.header-nav-inner {
    max-width: none;
    margin: 0;
    padding: 0 1rem;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
}

/* Logo Section - Top Left */
.logo-block {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: #000000;
    transition: all 0.2s;
}

.logo-block:hover {
    opacity: 0.8;
}

.header-logo {
    height: 28px;
    width: auto;
}

.header-tagline {
    font-family: 'TechnoRaceItalic', 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #000000;
    text-transform: uppercase;
}

.header-brand-name {
    display: none;
}

/* Navigation Main - Far left, no margin */
.header-nav-main {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: 0;
}

/* Navigation Tabs - Simple text links */
.nav-tabs {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    background: transparent;
}

.nav-tabs li {
    margin: 0;
}

.nav-link {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: #000000 !important;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 900 !important;
    font-family: 'Arial Black', 'Segoe UI Black', 'Roboto Black', 'Helvetica Neue', sans-serif;
    transition: all 0.2s ease;
    position: relative;
    background: transparent;
    border: none;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-link:hover {
    color: #000000 !important;
    background: rgba(0, 0, 0, 0.1);
}

.nav-link-active {
    color: #000000 !important;
    background: rgba(0, 0, 0, 0.1);
}

.nav-link span {
    color: inherit !important;
}

.nav-link::after {
    display: none;
}

.nav-icon {
    display: none;
}

/* Search Bar - Hidden by default */
.header-search-wrap {
    display: none;
    position: relative;
    max-width: 250px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
}

.header-search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
}

.header-search-input {
    width: 100%;
    padding: 0.5rem 1rem 0.5rem 2.2rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: var(--pure-white);
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.header-search-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.05);
}

.header-search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Action Buttons - Positioned absolutely to the right */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: absolute;
    right: 1rem;
}

.btn-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-affiliate {
    background: #f97316;
    color: white;
}

.btn-affiliate:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
}

.btn-discord {
    background: #5865F2;
    color: white;
}

.btn-discord:hover {
    background: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(88, 101, 242, 0.3);
}

.discord-icon {
    width: 18px;
    height: 18px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    cursor: pointer;
    padding: 0.75rem;
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: #000000;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile nav overlay */
.header-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.site-header.mobile-nav-open .header-nav-overlay {
    display: block;
    opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .header-nav-inner {
        padding: 0 0.75rem;
    }
    
    .header-nav-main {
        margin-left: 0;
        gap: 1.2rem;
    }
    
    .header-actions {
        right: 0.75rem;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 1rem 0;
    }
    
    .header-nav-inner {
        padding: 0 0.5rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        right: 0.5rem;
    }
    
    .header-actions {
        right: 3rem;
    }
    
    .header-nav-main {
        display: none;
        position: fixed;
        top: 80px;
        left: 1rem;
        right: 1rem;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 1.5rem;
        border-radius: 16px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        margin: 0;
    }
    
    .site-header.mobile-nav-open .header-nav-main {
        display: flex;
        position: fixed;
        top: 80px;
        left: 1rem;
        right: 1rem;
    }
    
    .nav-tabs {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: 12px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        padding: 1rem;
    }
    
    .nav-link {
        width: 100%;
        justify-content: flex-start;
        padding: 0.75rem 1rem;
        background: rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        color: #000000;
    }
    
    .nav-icon {
        display: block;
        width: 16px;
        height: 16px;
        opacity: 0.7;
    }
    
    .header-search-wrap {
        display: block;
        width: 100%;
        max-width: none;
        margin-top: 1rem;
    }
    
    .header-tagline {
        display: none;
    }
}

@media (max-width: 480px) {
    .header-nav-inner {
        padding: 0 0.5rem;
    }
    
    .header-logo {
        height: 28px;
    }
    
    .btn-header span {
        display: none;
    }
    
    .btn-discord,
    .btn-cart {
        padding: 0.75rem;
    }
    
    .logo-block {
        padding: 0;
        gap: 0.5rem;
    }
}

/* Simple Hero Section */
.hero-simple {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

/* Optimized Full Page Dot Grid - Smooth & Fast */
.hero-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    contain: layout style paint;
}

.dot-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(40, 1fr);
    grid-template-rows: repeat(25, 1fr);
    gap: 0;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    contain: layout style paint;
}

.grid-dot {
    width: 2px;
    height: 2px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 50%;
    margin: auto;
    opacity: 1;
    transition: none;
    transform: scale(1) translateZ(0);
    will-change: background-color, transform;
    contain: layout style paint;
}

.grid-dot.glob-active {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(2.5) translateZ(0);
}

.grid-dot.glob-medium {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(2) translateZ(0);
}

.grid-dot.glob-light {
    background: rgba(0, 0, 0, 0.4);
    transform: scale(1.5) translateZ(0);
}

/* Content exclusion zones - optimized */
.grid-dot.exclude-nav {
    display: none;
}

.grid-dot.exclude-content {
    opacity: 0.3;
    background: rgba(0, 0, 0, 0.02);
}

.grid-dot.exclude-buttons {
    opacity: 0.15;
    background: rgba(0, 0, 0, 0.01);
}

/* Responsive optimizations - reduced grid density */
@media (max-width: 1200px) {
    .dot-grid {
        grid-template-columns: repeat(35, 1fr);
        grid-template-rows: repeat(22, 1fr);
    }
}

@media (max-width: 768px) {
    .dot-grid {
        grid-template-columns: repeat(25, 1fr);
        grid-template-rows: repeat(18, 1fr);
    }
    
    .grid-dot {
        width: 1.5px;
        height: 1.5px;
    }
}

@media (max-width: 480px) {
    .dot-grid {
        grid-template-columns: repeat(20, 1fr);
        grid-template-rows: repeat(15, 1fr);
    }
    
    .grid-dot {
        width: 1px;
        height: 1px;
    }
}

/* Performance optimizations */
/* Temporarily disabled to show animation
@media (prefers-reduced-motion: reduce) {
    .hero-particles {
        display: none;
    }
}
*/

/* Force hardware acceleration */
.dot-grid,
.grid-dot {
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

/* Side Decorative Elements */
.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.decoration-left,
.decoration-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.decoration-left {
    left: 2rem;
}

.decoration-right {
    right: 2rem;
}

.deco-line {
    width: 2px;
    height: 120px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.2), transparent);
    margin-bottom: 2rem;
}

.deco-triangle {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

/* Mouse Follower */
.mouse-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    opacity: 0;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -90%);
    z-index: 2;
}

/* Bottom Fade Effect */
.hero-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.05));
    pointer-events: none;
    z-index: 1;
}

.hero-main-title {
    font-family: 'TechnoRaceItalic', 'Inter', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    color: #000000;
    letter-spacing: 0.02em;
    margin: 0 0 2rem 0;
    line-height: 1.3;
    text-transform: uppercase;
}

.hero-message {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    margin: 0 0 3rem 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid;
    min-width: 200px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn-primary {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-btn-primary:hover {
    background: #333333;
    color: #ffffff;
    border-color: #333333;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.hero-btn-secondary {
    background: transparent;
    color: #000000;
    border-color: rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.hero-btn-secondary:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.btn-icon {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .hero-content {
        transform: translate(-50%, -85%);
        padding: 0 1.5rem;
        max-width: 100%;
    }
    
    .hero-main-title {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-message {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .decoration-left,
    .decoration-right {
        display: none;
    }
    
    .particle {
        width: 3px;
        height: 3px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-main-title {
        font-size: 2.8rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-message {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        min-width: 180px;
    }
    
    .mouse-follower {
        display: none;
    }
    
    .particle {
        width: 2px;
        height: 2px;
    }
}
/* Hide all sections except hero on home page */
.customer-reviews-section,
.games-carousel-section {
    display: none !important;
}

/* Showcase Products Section - Dark Modern Design */
.showcase-products-section {
    padding: 6rem 0;
    background: #ffffff;
    position: relative;
    z-index: 2;
}

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

.showcase-header {
    text-align: center;
    margin-bottom: 4rem;
}

.showcase-title {
    font-family: 'TechnoRaceItalic', 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #000000;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.showcase-subtitle {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
    font-weight: 400;
}

.showcase-products-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
}

.showcase-product-card {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    overflow: hidden;
    position: relative;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    width: 340px;
    height: 600px;
    display: flex;
    flex-direction: column;
}

.showcase-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 50%, rgba(255, 255, 255, 0.01) 100%);
    pointer-events: none;
    z-index: 1;
}

.product-image-wrapper {
    position: relative;
    height: 180px;
    overflow: hidden;
    flex-shrink: 0;
    border-radius: 20px;
    padding: 0;
    margin: 0;
    background: none;
    border: none;
    z-index: 2;
}

.product-image-wrapper::before {
    display: none;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 20px;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.product-status {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: #000000;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 2px 8px rgba(0, 255, 136, 0.3);
    z-index: 2;
}

.product-content {
    padding: 1rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.product-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.product-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.2;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-pricing {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin: 0.8rem 0;
    text-align: center;
    padding: 0.4rem 0;
}

.pricing-display {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    align-items: center;
}

.price-line {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.02em;
}

.price-line:first-child {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}

.single-price .price-line {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
}

.price-simple {
    display: none;
}

.pricing-options {
    display: none;
}

.price-main {
    display: none;
}

.price-secondary {
    display: none;
}

.price-option-item {
    display: none;
}

.price-option-label {
    display: none;
}

.price-option-value {
    display: none;
}

.price-options {
    display: none;
}

.current-price {
    display: none;
}

.price-amount {
    display: none;
}

.price-period {
    display: none;
}

.single-price .price-options {
    display: none;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.5rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.2rem 0;
}

.feature-check {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #e5e5e5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.feature-check::after {
    content: '✓';
    color: #000000;
    font-size: 10px;
    font-weight: bold;
}

.product-buy-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.6rem;
}

.product-buy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    padding: 0.8rem 1.2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #000000;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.2s ease;
    flex-shrink: 0;
    cursor: pointer;
}

.product-buy-btn:hover {
    transform: translateY(-1px);
    box-shadow: 
        0 6px 16px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.product-buy-btn .btn-icon {
    width: 16px;
    height: 16px;
}

.single-price .price-options {
    display: none;
}

.single-price .current-price {
    justify-content: flex-start;
}

.showcase-cta {
    text-align: center;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    color: #000000;
    text-decoration: none;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .showcase-products-section {
        padding: 4rem 0;
    }
    
    .showcase-container {
        padding: 0 1rem;
    }
    
    .showcase-title {
        font-size: 2.5rem;
    }
    
    .showcase-products-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .product-content {
        padding: 1.5rem;
    }
    
    .product-image-wrapper {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .showcase-title {
        font-size: 2rem;
    }
    
    .showcase-products-grid {
        gap: 1rem;
    }
    
    .product-content {
        padding: 1rem;
    }
}