/* ===================================
   STRIVE - Basketball E-commerce
   Main Stylesheet
   =================================== */

/* CSS Variables */
:root {
    /* Colors */
    --primary: #E86A33;
    --primary-light: #F08C5A;
    --primary-dark: #C95A2A;
    --background-dark: #0b1612;
    --surface-dark: #1a261f;
    --secondary: #181411;
    --navy: #1e3a5f;

    /* Text Colors */
    --text-white: #ffffff;
    --text-gray-100: #f3f4f6;
    --text-gray-300: #d1d5db;
    --text-gray-400: #9ca3af;
    --text-gray-500: #6b7280;
    --text-gray-600: #4b5563;

    /* Borders */
    --border-white-5: rgba(255, 255, 255, 0.05);
    --border-white-10: rgba(255, 255, 255, 0.1);

    /* Shadows */
    --shadow-primary: 0 0 20px rgba(232, 106, 51, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;

    /* Font */
    --font-body: 'Inter', sans-serif;
    --font-display: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--background-dark);
    color: var(--text-gray-100);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Selection */
::selection {
    background-color: var(--primary);
    color: black;
}

/* Links */
a {
    color: inherit;
    text-decoration: none;
}

/* Buttons Reset */
button {
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

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

/* ===================================
   Typography
   =================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

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

.text-white {
    color: var(--text-white);
}

.text-gray-300 {
    color: var(--text-gray-300);
}

.text-gray-400 {
    color: var(--text-gray-400);
}

.text-gray-500 {
    color: var(--text-gray-500);
}

.font-bold {
    font-weight: 700;
}

.font-black {
    font-weight: 900;
}

.font-medium {
    font-weight: 500;
}

.text-xs {
    font-size: 0.75rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-base {
    font-size: 1rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.text-5xl {
    font-size: 3rem;
}

.text-6xl {
    font-size: 3.75rem;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-tight {
    letter-spacing: -0.025em;
}

.tracking-wide {
    letter-spacing: 0.025em;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

/* ===================================
   Layout
   =================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-1 {
    flex: 1;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.items-end {
    align-items: flex-end;
}

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

.justify-between {
    justify-content: space-between;
}

.justify-end {
    justify-content: flex-end;
}

.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-12 {
    gap: 3rem;
}

.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

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

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (min-width: 640px) {
    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .md\:flex-row {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .lg\:w-1\/2 {
        width: 50%;
    }
}

/* ===================================
   Spacing
   =================================== */
.p-1 {
    padding: 0.25rem;
}

.p-2 {
    padding: 0.5rem;
}

.p-3 {
    padding: 0.75rem;
}

.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.pt-32 {
    padding-top: 8rem;
}

.pb-20 {
    padding-bottom: 5rem;
}

.m-0 {
    margin: 0;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-10 {
    margin-bottom: 2.5rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-10 {
    margin-top: 2.5rem;
}

.mt-20 {
    margin-top: 5rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   Sizing
   =================================== */
.w-full {
    width: 100%;
}

.w-auto {
    width: auto;
}

.h-auto {
    height: auto;
}

.h-full {
    height: 100%;
}

.h-10 {
    height: 2.5rem;
}

.h-20 {
    height: 5rem;
}

.h-24 {
    height: 6rem;
}

.min-h-screen {
    min-height: 100vh;
}

.max-w-7xl {
    max-width: 80rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-lg {
    max-width: 32rem;
}

/* ===================================
   Backgrounds
   =================================== */
.bg-background-dark {
    background-color: var(--background-dark);
}

.bg-surface-dark {
    background-color: var(--surface-dark);
}

.bg-primary {
    background-color: var(--primary);
}

.bg-black {
    background-color: #000;
}

.bg-white {
    background-color: #fff;
}

.bg-white\/5 {
    background-color: rgba(255, 255, 255, 0.05);
}

.bg-white\/10 {
    background-color: rgba(255, 255, 255, 0.1);
}

.bg-black\/40 {
    background-color: rgba(0, 0, 0, 0.4);
}

.bg-black\/60 {
    background-color: rgba(0, 0, 0, 0.6);
}

.bg-black\/70 {
    background-color: rgba(0, 0, 0, 0.7);
}

/* ===================================
   Borders
   =================================== */
.border {
    border-width: 1px;
    border-style: solid;
}

.border-2 {
    border-width: 2px;
    border-style: solid;
}

.border-b {
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.border-t {
    border-top-width: 1px;
    border-top-style: solid;
}

.border-l-4 {
    border-left-width: 4px;
    border-left-style: solid;
}

.border-white\/5 {
    border-color: var(--border-white-5);
}

.border-white\/10 {
    border-color: var(--border-white-10);
}

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

.border-primary\/30 {
    border-color: rgba(232, 106, 51, 0.3);
}

.border-primary\/50 {
    border-color: rgba(232, 106, 51, 0.5);
}

.rounded {
    border-radius: 0.25rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded-full {
    border-radius: 9999px;
}

/* ===================================
   Effects
   =================================== */
.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.shadow-2xl {
    box-shadow: var(--shadow-2xl);
}

.shadow-primary {
    box-shadow: var(--shadow-primary);
}

.opacity-0 {
    opacity: 0;
}

.opacity-100 {
    opacity: 1;
}

.overflow-hidden {
    overflow: hidden;
}

.overflow-y-auto {
    overflow-y: auto;
}

/* ===================================
   Positioning
   =================================== */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.sticky {
    position: sticky;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.top-0 {
    top: 0;
}

.right-0 {
    right: 0;
}

.bottom-0 {
    bottom: 0;
}

.left-0 {
    left: 0;
}

.top-4 {
    top: 1rem;
}

.right-4 {
    right: 1rem;
}

.z-10 {
    z-index: 10;
}

.z-40 {
    z-index: 40;
}

.z-50 {
    z-index: 50;
}

/* ===================================
   Transitions & Animations
   =================================== */
.transition {
    transition-property: all;
    transition-duration: var(--transition-normal);
}

.transition-colors {
    transition-property: color, background-color, border-color;
    transition-duration: var(--transition-normal);
}

.transition-transform {
    transition-property: transform;
    transition-duration: var(--transition-normal);
}

.transition-opacity {
    transition-property: opacity;
    transition-duration: var(--transition-normal);
}

.duration-300 {
    transition-duration: 300ms;
}

.duration-500 {
    transition-duration: 500ms;
}

.duration-700 {
    transition-duration: 700ms;
}

.duration-1000 {
    transition-duration: 1000ms;
}

.ease-out {
    transition-timing-function: ease-out;
}

.ease-in-out {
    transition-timing-function: ease-in-out;
}

.transform {
    transform: translateZ(0);
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}

.hover\:scale-110:hover {
    transform: scale(1.1);
}

.hover\:-translate-y-1:hover {
    transform: translateY(-0.25rem);
}

.hover\:-translate-y-2:hover {
    transform: translateY(-0.5rem);
}

.translate-x-0 {
    transform: translateX(0);
}

.translate-x-full {
    transform: translateX(100%);
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

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

    to {
        transform: rotate(360deg);
    }
}

.animate-spin {
    animation: spin 1s linear infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(12deg);
    }

    50% {
        transform: translateY(-20px) rotate(12deg);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    border-radius: 9999px;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.btn-primary {
    background-color: var(--primary);
    color: black;
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid var(--border-white-10);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: var(--primary);
}

/* ===================================
   Header / Navigation
   =================================== */
.header {
    position: fixed;
    width: 100%;
    z-index: 50;
    background-color: rgba(11, 22, 18, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-white-5);
}

.header-inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
}

@media (min-width: 768px) {
    .header-inner {
        height: 6rem;
        padding: 0 1.5rem;
    }
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-gray-300);
    transition: color var(--transition-fast);
}

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

.nav-link.active {
    color: var(--text-white);
}

.logo {
    height: 2.5rem;
    width: auto;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    border: 1px solid var(--border-white-10);
    border-radius: 0.5rem;
    padding: 0.25rem;
}

.lang-btn {
    padding: 0.375rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
    background: transparent;
    color: var(--text-gray-400);
}

.lang-btn:hover {
    color: var(--text-white);
}

.lang-btn.active {
    background-color: var(--primary);
    color: black;
}

/* Cart Icon */
.cart-icon {
    position: relative;
    padding: 0.5rem;
    background-color: var(--surface-dark);
    border-radius: 9999px;
    border: 1px solid var(--border-white-10);
    cursor: pointer;
    transition: border-color var(--transition-fast);
}

.cart-icon:hover {
    border-color: rgba(232, 106, 51, 0.5);
}

.cart-badge {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    display: flex;
    height: 1.25rem;
    width: 1.25rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background-color: var(--primary);
    font-size: 0.625rem;
    font-weight: 700;
    color: black;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: block;
    padding: 0.5rem;
    color: var(--text-white);
    cursor: pointer;
    background: transparent;
    border: none;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 60;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-panel {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 18rem;
    background-color: var(--surface-dark);
    z-index: 70;
    transform: translateX(100%);
    transition: transform var(--transition-normal);
}

.mobile-panel.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-white-10);
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: var(--text-gray-300);
    transition: all var(--transition-fast);
}

.mobile-menu-link:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--primary);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 5rem;
    overflow: hidden;
    background-color: var(--background-dark);
    min-height: 100vh;
}

@media (min-width: 1024px) {
    .hero {
        padding-top: 12rem;
        padding-bottom: 8rem;
    }
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--background-dark) 0%, rgba(11, 22, 18, 0.7) 50%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .hero-content {
        flex-direction: row;
        align-items: center;
        gap: 5rem;
        padding: 0 2rem;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 1rem;
    background-color: var(--surface-dark);
    border: 1px solid rgba(232, 106, 51, 0.3);
    border-radius: 9999px;
}

.hero-badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background-color: var(--primary);
    margin-right: 0.5rem;
    animation: pulse 2s infinite;
}

.hero-badge-text {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.hero-logo {
    height: 6rem;
    width: auto;
}

@media (min-width: 1024px) {
    .hero-logo {
        height: 9rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-gray-400);
    max-width: 32rem;
    font-weight: 300;
    line-height: 1.75;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar-stack {
    display: flex;
}

.avatar-stack>*+* {
    margin-left: -0.75rem;
}

.avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    border: 2px solid var(--background-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
}

/* ===================================
   Features Section
   =================================== */
.features {
    padding: 6rem 0;
    background-color: var(--background-dark);
}

.features-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .features-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

.features-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .features-title {
        font-size: 3rem;
    }
}

.feature-card {
    background-color: var(--surface-dark);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-white-5);
    transition: all var(--transition-normal);
}

.feature-card:hover {
    border-color: rgba(232, 106, 51, 0.5);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
    background-color: var(--primary);
}

.feature-card:hover .feature-icon .material-symbols-outlined {
    color: black;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.feature-description {
    font-size: 0.875rem;
    color: var(--text-gray-500);
    line-height: 1.75;
}

/* ===================================
   Product Cards
   =================================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.product-card {
    cursor: pointer;
    transition: all var(--transition-normal);
}

.product-card:hover {
    transform: translateY(-0.25rem);
}

.product-image-container {
    position: relative;
    background-color: var(--surface-dark);
    border-radius: 1rem;
    padding: 1.5rem;
    overflow: hidden;
    height: 20rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-white-5);
    transition: border-color var(--transition-normal);
}

.product-card:hover .product-image-container {
    border-color: rgba(232, 106, 51, 0.3);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--primary);
    color: black;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    z-index: 10;
}

.product-badge.sale {
    background-color: #ef4444;
    color: white;
}

.product-badge.new {
    background-color: #E86A33;
    color: white;
}

.product-favorite {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    padding: 0.5rem;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    border-radius: 9999px;
    color: var(--text-gray-400);
    transition: color var(--transition-fast);
    cursor: pointer;
    border: none;
}

.product-favorite:hover {
    color: var(--primary);
}

.product-image {
    width: 12rem;
    height: 12rem;
    object-fit: contain;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-info {
    margin-top: 1rem;
}

.product-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-white);
    transition: color var(--transition-fast);
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card:hover .product-name {
    color: var(--primary);
}

.product-category {
    font-size: 0.875rem;
    color: var(--text-gray-500);
    margin-bottom: 0.75rem;
}

.product-price-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (min-width: 640px) {
    .product-price-row {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.product-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-white);
}

.product-original-price {
    font-size: 0.875rem;
    color: var(--text-gray-400);
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.add-to-cart-btn {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary);
    transition: color var(--transition-fast);
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
}

.add-to-cart-btn:hover {
    color: var(--text-white);
}

.add-to-cart-btn.added {
    color: var(--text-white);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background-color: black;
    color: var(--text-white);
    padding: 5rem 0 2.5rem;
    border-top: 1px solid var(--border-white-10);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.footer-logo {
    height: 2.5rem;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-description {
    font-size: 0.875rem;
    color: var(--text-gray-500);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.footer-title {
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

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

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

.footer-links a {
    font-size: 0.875rem;
    color: var(--text-gray-500);
    transition: color var(--transition-fast);
}

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

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    background-color: var(--surface-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    transition: all var(--transition-normal);
}

.footer-social a:hover {
    background-color: var(--primary);
    color: black;
}

.footer-social a.whatsapp:hover {
    background-color: #25D366;
    color: white;
}

.footer-bottom {
    border-top: 1px solid var(--border-white-10);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--text-gray-600);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.875rem;
    color: var(--text-gray-600);
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--text-white);
}

/* ===================================
   Utilities
   =================================== */
.hidden {
    display: none !important;
}

@media (min-width: 768px) {
    .md\:flex {
        display: flex !important;
    }

    .md\:hidden {
        display: none !important;
    }

    .md\:block {
        display: block !important;
    }
}

@media (min-width: 1024px) {
    .lg\:flex {
        display: flex !important;
    }

    .lg\:hidden {
        display: none !important;
    }

    .lg\:block {
        display: block !important;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Material Symbols */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Backdrop Blur */
.backdrop-blur-md {
    backdrop-filter: blur(12px);
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

/* Object Fit */
.object-cover {
    object-fit: cover;
}

.object-contain {
    object-fit: contain;
}

/* Intro Animation */
.intro-animation {
    position: fixed;
    inset: 0;
    z-index: 100;
    overflow: hidden;
}

.intro-animation.fade-out {
    pointer-events: none;
}

.intro-triangle {
    position: absolute;
    inset: 0;
    transition: transform 1s ease-in-out;
}

.intro-orange {
    background-color: var(--primary);
    clip-path: polygon(0 0, 100% 0, 0 100%);
    transform-origin: top left;
}

.intro-orange.splitting {
    transform: translate(-100%, -100%);
}

.intro-black {
    background-color: #000;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    transform-origin: bottom right;
}

.intro-black.splitting {
    transform: translate(100%, 100%);
}

.intro-center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.5s ease;
}

.intro-center.splitting {
    opacity: 0;
    transform: scale(1.5);
}

.intro-ball {
    width: 40vmin;
    max-width: 16rem;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.5));
    animation: introPulse 2s ease-in-out infinite;
}

@media (min-width: 768px) {
    .intro-ball {
        width: 20rem;
        max-width: none;
        height: 20rem;
    }
}

@keyframes introPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.intro-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 49.5%, rgba(255, 255, 255, 0.3) 49.5%, rgba(255, 255, 255, 0.3) 50.5%, transparent 50.5%);
    transition: opacity 0.5s ease;
}

.intro-glow.splitting {
    opacity: 0;
}

/* Search Dropdown */
.search-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 1rem;
    width: 22rem;
    background-color: var(--surface-dark);
    border: 1px solid var(--border-white-10);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-fast);
}

.search-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-input {
    width: 100%;
    padding: 0.5rem 1rem;
    background-color: var(--background-dark);
    border: 1px solid var(--border-white-10);
    border-radius: 0.5rem;
    color: var(--text-white);
    font-size: 0.875rem;
    outline: none;
    transition: border-color var(--transition-fast);
}

.search-input::placeholder {
    color: var(--text-gray-500);
}

.search-input:focus {
    border-color: var(--primary);
}

.search-result {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background-color var(--transition-fast);
    border-bottom: 1px solid var(--border-white-5);
}

.search-result:last-child {
    border-bottom: none;
}

.search-result:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.search-result-image {
    width: 3rem;
    height: 3rem;
    border-radius: 0.25rem;
    background-color: rgba(255, 255, 255, 0.05);
    overflow: hidden;
    flex-shrink: 0;
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video Modal */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(4px);
    pointer-events: none;
}

.video-modal.active {
    display: flex;
    pointer-events: auto;
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 56rem;
    margin: 0 1rem;
}

.video-modal-close {
    position: absolute;
    top: -3rem;
    right: 0;
    color: var(--text-white);
    cursor: pointer;
    transition: color var(--transition-fast);
    background: transparent;
    border: none;
}

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

.video-modal video {
    width: 100%;
    border-radius: 1rem;
}

/* ===================================
   Certificate Preview Cards
   =================================== */
.cert-preview-card {
    width: 78px;
    height: 110px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all var(--transition-normal);
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
}

.cert-preview-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(232, 106, 51, 0.2);
}

.cert-preview-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 1024px) {
    .lg\:flex-row {
        flex-direction: row;
    }

    .lg\:flex-nowrap {
        flex-wrap: nowrap;
    }
}

/* Added Utilities */
.bg-transparent {
    background-color: transparent !important;
}

.border-none {
    border: none !important;
}

.outline-none {
    outline: none !important;
}

/* Global Overflow Fix */
html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}