:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --muted-color: #777777;
    --border-color: #e5e5e5;
    --font-main: 'Neue-Helvetica', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-logo: 'Cinzel Decorative', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: none;
}

button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
    text-align: inherit;
}


html {
    scroll-behavior: smooth;
    font-size: 14px;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.2;
}

/* Custom Cursor */
.cursor {
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
    background: white;
}

.cursor.hover {
    transform: scale(4);
}

/* Header - Zara Style */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2.5rem 2rem;
    z-index: 100;
    background: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    color: #000000;
}

.menu-toggle {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 500;
}

.header-brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
}

.logo {
    font-family: var(--font-logo);
    font-weight: 700;
    font-size: 3.5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    line-height: 1;
}

/* Slogan removed from header */

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: inherit;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Offcanvas Menu */
/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 2000;
    display: none;
    padding: 2.5rem 2rem;
    overflow-y: auto;
}

.search-overlay.open {
    display: block;
    animation: fadeIn 0.4s ease both;
}

.search-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding-top: 5rem;
}

.close-search {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 1.5rem;
    font-weight: 300;
}

.search-input-wrapper {
    width: 100%;
    position: relative;
    margin-bottom: 4rem;
}

#search-input {
    width: 100%;
    border: none;
    font-size: 3rem;
    font-weight: 300;
    text-transform: uppercase;
    outline: none;
    padding: 1rem 0;
}

.search-underline {
    width: 100%;
    height: 1px;
    background: #000;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

#search-input:focus + .search-underline {
    transform: scaleX(1);
}

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
}

.search-result-item {
    cursor: pointer;
    animation: fadeUp 0.6s both;
}

.search-result-img {
    width: 100%;
    aspect-ratio: 2/3;
    background: #f4f4f4;
    object-fit: contain;
    margin-bottom: 1rem;
}

.search-result-info {
    font-size: 11px;
    text-transform: uppercase;
}

.offcanvas-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 350px;
    height: 100vh;
    background: #ffffff;
    color: #000000;
    z-index: 1000;
    transition: left 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    box-shadow: none;
}

.offcanvas-menu.open {
    left: 0;
}

.menu-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: flex-start;
}

.close-menu {
    font-size: 1.2rem;
    cursor: pointer;
    font-weight: 300;
}

.menu-content {
    padding: 0 2rem 4rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.main-categories {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-categories a {
    text-decoration: none;
    color: #000000;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
}

.menu-category {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: #999;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-weight: 600;
    list-style: none;
}

.menu-accordion {
    border-bottom: none;
}

.accordion-header {
    padding: 1.5rem 0;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    width: 100%;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-body.open {
    max-height: 1000px;
}

.fighter-list, .garment-list {
    list-style: none;
    padding-bottom: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.garment-list {
    grid-template-columns: 1fr;
}

.fighter-list a, .garment-list a {
    text-decoration: none;
    color: var(--muted-color);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.fighter-list a:hover, .garment-list a:hover {
    color: #000000;
}

.section-title {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.about-section p {
    font-size: 10px;
    color: var(--muted-color);
    line-height: 1.5;
}

.contact-email {
    font-size: 11px;
    color: #000000;
    text-decoration: none;
    border-bottom: 1px solid #000000;
}

/* Media query for mobile menu */
@media (max-width: 768px) {
    .offcanvas-menu {
        width: 100%;
    }
}

/* Hero Section */
.hero {
    display: none; /* Zara goes straight to products or uses a massive full screen image. We will skip the hero text to focus on products like a Zara category page. */
}


/* ===================== HERO SECTION ===================== */
.hero-section {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 2rem;
}

.hero-eyebrow {
    font-size: 9px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 1.5rem;
    animation: fadeUp 1s 0.2s both;
}

.hero-headline {
    display: flex;
    flex-direction: column;
    line-height: 0.88;
    margin: 0;
    padding: 0;
}

.hero-line {
    font-family: var(--font-logo);
    font-size: clamp(2.5rem, 8vw, 6.5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    color: #0a0a0a;
    display: block;
    animation: fadeUp 1s both;
}

.hero-line:nth-child(1) { animation-delay: 0.3s; }
.hero-line:nth-child(2) { animation-delay: 0.5s; }
.hero-line:nth-child(3) { animation-delay: 0.7s; }

.hero-line--outline {
    color: transparent;
    -webkit-text-stroke: 2px #0a0a0a;
}

.hero-sub {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #666;
    margin-top: 2.5rem;
    line-height: 2;
    animation: fadeUp 1s 0.9s both;
}

.hero-cta {
    display: inline-block;
    margin-top: 2.5rem;
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #0a0a0a;
    text-decoration: none;
    border-bottom: 1px solid #0a0a0a;
    padding-bottom: 2px;
    transition: letter-spacing 0.3s ease, opacity 0.3s ease;
    animation: fadeUp 1s 1.1s both;
}

.hero-cta:hover {
    letter-spacing: 6px;
    opacity: 0.5;
}



@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
/* ========================================================= */

/* Collection Section - Strict Grid */
.collection {
    padding: 80px 0 0 0; /* Space for header */
    width: 100%;
}

.section-header {
    padding: 2rem;
    text-align: left;
}

.section-header h3 {
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.label {
    display: none;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px; /* Very tight Zara gap */
    padding: 0 2px;
}

/* Roster Headers in Grid */
/* View Selector */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.view-selector {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.view-mode-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    opacity: 0.2;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
}

.view-mode-btn.active {
    opacity: 1;
}

.grid-icon-2 {
    display: flex;
    gap: 2px;
}
.grid-icon-2 span {
    width: 6px;
    height: 14px;
    background: #000;
}

.grid-icon-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
}
.grid-icon-4 span {
    width: 6px;
    height: 6px;
    background: #000;
}

/* Products Grid Dynamic Columns */
.products-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr) !important;
}

.products-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr) !important;
}

@media (max-width: 768px) {
    .view-selector { display: none; } /* On mobile we usually force 2 or 1 */
}

.roster-header {
    grid-column: 1 / -1;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3rem 0 1.5rem 0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    letter-spacing: 2px;
}

.roster-header::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.product-card {
    background: #ffffff;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.zalando-gallery {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.main-image {
    position: relative;
    width: 100%;
    background: #f2f2f2; /* Light editorial grey background */
}

.t-shirt-composite {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4; /* Vertical fashion ratio */
    overflow: hidden;
}

/* Center the t-shirt within the vertical 3:4 container */
.fabric-texture, .color-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130%;
    height: 130%;
    object-fit: contain;
    z-index: 2; /* Ensure color shows over the base but under details */
}

.t-shirt-composite {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: transparent;
}


.fabric-texture {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130%;
    height: 130%;
    object-fit: contain;
    z-index: 2;
    filter: brightness(0.15) contrast(1.2); /* Default Black */
    transition: filter 0.3s ease;
    pointer-events: none;
}

.type-sweatshirt .fabric-texture,
.type-hoodie .fabric-texture {
    filter: brightness(0.12) contrast(1); /* Softer black for heavy fabrics */
}

.shirt-graphic {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35%;
    height: auto;
    object-fit: contain;
    z-index: 20;
    opacity: 1 !important;
    mix-blend-mode: normal;
    margin-top: -5%;
    transition: all 0.3s ease;
}

/* Minimalist Thumbnails Overlay */
.thumbnails {
    display: flex;
    gap: 4px;
    padding: 8px 0;
    margin: 0;
}

.thumb-item {
    width: 30px;
    height: 40px;
    cursor: pointer;
    opacity: 0.4;
    transition: opacity 0.2s ease;
    background: #f2f2f2;
}

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

.thumb-item:hover, .thumb-item.active {
    opacity: 1;
}

.thumb-color-sync {
    width: 100%;
    height: 100%;
    background: #000000;
}

/* Product Info - Zara Style */
.product-info-container {
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.product-info h4 {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text-color);
    margin: 0;
}

.product-price {
    font-size: 11px;
    font-weight: 400;
}

.product-info p {
    color: var(--muted-color);
    font-size: 10px;
    margin: 0;
    text-transform: lowercase;
}

/* Minimalist Swatches */
.color-picker {
    display: flex;
    gap: 4px;
    margin-top: 4px;
}

.swatch {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.1);
}

.swatch.active {
    border: 1px solid #000000;
}

/* Premise Section */
.premise {
    display: none; /* Hide premise for extreme minimalism */
}

/* Definitive Reference Footer */
.ref-footer {
    padding: 10rem 4rem;
    background: #ffffff;
    margin-top: 5rem;
    color: #000;
    font-family: 'Inter', sans-serif;
}

.ref-footer-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.ref-footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
}

.ref-footer-brand {
    max-width: 450px;
}

.ref-footer-logo {
    font-family: var(--font-logo);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.ref-footer-tagline {
    font-size: 9px;
    letter-spacing: 1.5px;
    color: #999;
    line-height: 2;
    text-transform: uppercase;
    max-width: 320px;
}

.ref-footer-socials {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.ref-footer-socials a {
    color: #000;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.ref-footer-socials a:hover {
    opacity: 1;
}

.ref-footer-divider {
    position: relative;
    width: 100%;
    height: 1px;
    background: #f0f0f0;
    margin: 6rem 0;
}

.ref-footer-dot {
    position: absolute;
    left: 20%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 7px;
    height: 7px;
    background: #000;
    border-radius: 50%;
}

.ref-footer-middle {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8rem;
}

.ref-footer-title {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
}

.ref-footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ref-footer-list a {
    font-size: 9px;
    color: #bbb;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.ref-footer-list a:hover {
    color: #000;
}

@media (max-width: 900px) {
    .ref-footer-top {
        flex-direction: column;
        gap: 4rem;
        align-items: center;
        text-align: center;
    }
    .ref-footer-middle {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    .ref-footer-dot {
        left: 50%;
    }
}

/* Responsive */
/* Responsive Optimizations */
@media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    header { padding: 1.5rem 1rem; }
    .logo { font-size: 2.2rem; }
    .nav-links { display: none; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 10px; }
    .hero-section { min-height: 50vh; }
    .hero-line { font-size: 3.5rem; }
}

@media (max-width: 480px) {
    header { padding: 1rem; background: transparent; mix-blend-mode: difference; color: white; }
    .header-brand { top: 50%; transform: translate(-50%, -50%); }
    .logo { font-size: 1.4rem; letter-spacing: 2px; }
    .menu-toggle { font-size: 11px; }
    
    .hero-section { min-height: 40vh; padding-top: 100px; padding-bottom: 40px; }
    .hero-content { padding: 1rem; }
    .hero-headline { margin-top: 20px; gap: 5px; }
    .hero-line { font-size: 2.2rem; }
    .hero-eyebrow { font-size: 8px; letter-spacing: 2px; margin-bottom: 0.5rem; }
    .hero-sub { font-size: 8px; letter-spacing: 1px; margin-top: 1rem; line-height: 1.5; }
    .hero-cta { margin-top: 1.5rem; font-size: 8px; }
    
    .products-grid { grid-template-columns: 1fr; gap: 30px; padding: 20px 10px; }
    .cart-offcanvas { width: 100%; }
    .checkout-container { width: 95%; padding: 1.5rem; }
    .zalando-gallery { flex-direction: column; }
    .thumbnails { flex-direction: row; order: 2; margin-top: 15px; overflow-x: auto; justify-content: flex-start; padding-bottom: 5px; }
    .thumb-item { width: 50px; height: 50px; flex-shrink: 0; }
}


/* --- CART & CHECKOUT STYLES --- */

.add-to-cart-btn {
    width: 100%;
    padding: 1rem;
    margin-top: 1rem;
    background: #000;
    color: #fff;
    border: none;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
}

.add-to-cart-btn:hover {
    background: #333;
}

.cart-offcanvas {
    position: fixed;
    top: 0;
    right: -100%;
    width: 400px;
    height: 100vh;
    background: #fff;
    color: #000;
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -2px 0 15px rgba(0,0,0,0.1);
}

.cart-offcanvas.open {
    right: 0;
}

.cart-header {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.cart-header h3 {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.close-cart {
    font-size: 1.2rem;
    cursor: pointer;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.empty-cart-msg {
    text-align: center;
    color: #888;
    font-size: 12px;
    margin-top: 2rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 1rem;
}

.cart-item-img {
    width: 80px;
    height: 106px;
    object-fit: contain;
    background: #f5f5f5;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item-title {
    font-size: 12px;
    font-weight: 600;
}

.cart-item-color {
    font-size: 11px;
    color: #666;
    margin-top: 0.3rem;
}

.cart-item-price {
    font-size: 12px;
    font-weight: 500;
}

.remove-item {
    font-size: 10px;
    color: #999;
    cursor: pointer;
    text-decoration: underline;
    align-self: flex-start;
}

.cart-footer {
    padding: 2rem;
    border-top: 1px solid #eee;
    background: #fff;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.checkout-btn {
    width: 100%;
    padding: 1.2rem;
    background: #000;
    color: #fff;
    border: none;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.checkout-btn:hover:not(:disabled) {
    background: #333;
}

.checkout-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Checkout Modal */
.checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.8);
    z-index: 3000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.checkout-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.checkout-container {
    background: #fff;
    width: 90%;
    max-width: 500px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.checkout-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.checkout-header h2 {
    font-size: 16px;
    margin: 0;
}

.close-checkout {
    font-size: 1.2rem;
    cursor: pointer;
}

.checkout-body {
    padding: 2rem;
}

.payment-methods {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.payment-method {
    flex: 1;
    text-align: center;
    padding: 0.8rem;
    border: 1px solid #ddd;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.2s;
}

.payment-method.active {
    border-color: #000;
    background: #f9f9f9;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-size: 11px;
    margin-bottom: 0.5rem;
    color: #666;
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    font-size: 13px;
    font-family: inherit;
    box-sizing: border-box;
}

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

.form-row .form-group {
    flex: 2;
}

.form-row .form-group.small {
    flex: 1;
}

.secure-badge {
    text-align: center;
    margin: 1.5rem 0;
    font-size: 10px;
    color: #28a745;
}

.pay-btn {
    width: 100%;
    padding: 1.2rem;
    background: #000;
    color: #fff;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.hidden {
    display: none !important;
}

#payment-processing {
    text-align: center;
    padding: 3rem 0;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1.5rem auto;
}

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

#payment-success {
    text-align: center;
    padding: 2rem 0;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: #28a745;
    color: white;
    font-size: 30px;
    line-height: 60px;
    border-radius: 50%;
    margin: 0 auto 1.5rem auto;
}

.continue-btn {
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid #000;
    color: #000;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
}

/* --- MENU TABS --- */
.menu-tabs {
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    margin-bottom: 2rem;
    position: relative;
    border-bottom: none;
}

.tab-btn {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 10px 0;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
    background: none;
    border: none;
}

.tab-btn.active {
    color: #000;
}

.tab-indicator {
    position: absolute;
    bottom: -1px;
    left: 40px;
    width: 45px;
    height: 1.5px;
    background: #000;
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.tab-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-pane.active {
    display: block;
}

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

.tab-info {
    font-size: 0.7rem;
    color: #888;
    margin-top: 2rem;
    line-height: 1.6;
    font-style: italic;
}

.contact-email {
    color: #000;
    text-decoration: underline;
    font-weight: 500;
}

@media (max-width: 768px) {
    .cart-offcanvas {
        width: 100%;
    }
}

/* --- LEGAL MODAL STYLES --- */
.legal-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    overflow-y: auto;
}

.legal-modal.open {
    display: block;
    opacity: 1;
}

.legal-modal-content {
    max-width: 800px;
    margin: 8rem auto;
    padding: 2rem;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.close-legal {
    position: fixed;
    top: 2rem;
    right: 3rem;
    font-size: 2.5rem;
    font-weight: 300;
    cursor: pointer;
    color: #000;
    z-index: 10001;
}

.legal-h2 {
    font-family: var(--font-logo);
    font-size: 2rem;
    letter-spacing: 4px;
    margin-bottom: 4rem;
    text-align: center;
}

.legal-body {
    font-size: 12px;
    line-height: 1.8;
    color: #333;
    letter-spacing: 0.5px;
}

.legal-body p {
    margin-bottom: 2rem;
}

.legal-body strong {
    color: #000;
    font-weight: 700;
}

@media (max-width: 768px) {
    .legal-modal-content {
        margin: 4rem auto;
        padding: 1.5rem;
    }
    .close-legal {
        top: 1rem;
        right: 1.5rem;
    }
}
/* Search Highlight */
.product-card.search-highlight {
    animation: searchHighlight 2s ease;
}

@keyframes searchHighlight {
    0%, 100% { box-shadow: none; }
    20%, 80% { box-shadow: 0 0 0 4px #000; }
}
/* Search Result Enhancements */
.search-result-composite {
    width: 60px;
    height: 75px;
    margin-right: 20px;
    position: relative;
    overflow: hidden;
    background: #f8f8f8;
    border: 1px solid #eee;
    flex-shrink: 0;
}

.search-base {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.15);
}

.search-graphic {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 15px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
}

.search-result-item:hover {
    background: #fafafa;
}
/* PlayStation Hero Feature */
.hero-feature {
    height: 90vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.hero-feature .hero-content {
    z-index: 2;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-feature .hero-eyebrow {
    color: #fff;
    font-weight: 500;
}

.hero-feature .hero-line {
    color: #fff;
}

.hero-feature .hero-line--outline {
    -webkit-text-stroke: 1px #fff;
}

.hero-feature .hero-sub {
    color: #eee;
}

.hero-feature .hero-cta {
    color: #fff;
    border-bottom: 1px solid #fff;
}

.hero-actions {
    margin-top: 2rem;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #050505;
    padding: 6rem 0;
    overflow: hidden;
    border-top: 1px solid #222;
}

.testimonials-title {
    text-align: center;
    color: #fff;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    margin-bottom: 4rem;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scrollReviews 40s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

.review-card {
    background: #111;
    border: 1px solid #333;
    padding: 2rem;
    margin: 0 1rem;
    width: 350px;
    flex-shrink: 0;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
}

.review-meta {
    display: flex;
    flex-direction: column;
}

.review-stars {
    color: #f5c518;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.review-name {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

.review-text {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
}

@keyframes scrollReviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .review-card {
        width: 300px;
    }
}
