@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --bg-dark: #09090b;
    --bg-card: #18181b;
    --bg-hover: #27272a;
    --text-primary: #f4f4f5;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --accent: #d4af37; /* Gold Accent */
    --accent-rgb: 212, 175, 55;
    --accent-hover: #f59e0b; /* Amber */
    --accent-hover-rgb: 245, 158, 11;
    --border-color: #27272a;
    --border-hover: #3f3f46;
    --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.5);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.02em;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header & Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(9, 9, 11, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: var(--transition);
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #ff0055, #00ff66, #00ffff, #ff00ff, #ff0055);
    background-size: 400% 100%;
    animation: rgbShift 8s linear infinite;
    z-index: 1002;
}

@keyframes rgbShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 400% 50%; }
}

@keyframes rgbTextShift {
    0% { color: #ff0055; }
    25% { color: #00ff66; }
    50% { color: #00ffff; }
    75% { color: #ff00ff; }
    100% { color: #ff0055; }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span {
    color: #ff0055;
    animation: rgbTextShift 6s linear infinite;
    text-shadow: 0 0 10px currentColor;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.nav-links a:hover,
.nav-links li.active a {
    color: var(--accent);
}

.mobile-only,
.mobile-menu-icon,
.mobile-submenu-icon {
    display: none !important;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-menu {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    padding-top: 72px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(9,9,11,0.2) 0%, rgba(9,9,11,0.9) 80%);
    z-index: 2;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.6;
    transform: scale(1.05);
    animation: zoomOut 20s infinite alternate;
}

@keyframes zoomOut {
    from { transform: scale(1.1); }
    to { transform: scale(1); }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
}

.hero-tagline {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent);
    margin-bottom: 16px;
    font-weight: 700;
}

.hero h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent);
    color: #000000;
    border: 1px solid var(--accent);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--bg-hover);
    border-color: var(--text-secondary);
    transform: translateY(-2px);
}

/* Category Grid Showcase */
.section {
    padding: 100px 0;
}

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

.section-header h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 400px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium);
}

.category-card.large {
    grid-column: span 8;
}

.category-card.small {
    grid-column: span 4;
}

.category-card.medium {
    grid-column: span 6;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(9,9,11,0.9) 0%, rgba(9,9,11,0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    z-index: 2;
}

.category-card h3 {
    font-size: 28px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.category-card p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-card:hover {
    border-color: var(--accent);
}
.container.container-full {
    max-width: 1600px;
}

/* Product Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 28px;
}

@media (min-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    background-color: #0b0b0d;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #1c1c1f;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    border-color: transparent;
    background-image: linear-gradient(#0b0b0d, #0b0b0d), linear-gradient(90deg, #ff0055, #00ff66, #00ffff, #ff0055);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-size: 100% 100%, 300% 100%;
    animation: rgbBorderShift 3s linear infinite;
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
}

@keyframes rgbBorderShift {
    0% { background-position: 0% 0%, 0% 0%; }
    100% { background-position: 0% 0%, 300% 0%; }
}

.product-spec-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
    margin-top: 8px;
}

.spec-chip {
    font-size: 10px;
    font-family: 'Oxanium', sans-serif;
    background-color: #141417;
    color: #a1a1aa;
    border: 1px solid #222225;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.product-card:hover .spec-chip {
    border-color: #3f3f46;
    color: #e4e4e7;
    background-color: #18181b;
}

.product-image-wrapper {
    position: relative;
    padding-top: 100%; /* Square ratio */
    background-color: #121214;
    overflow: hidden;
}

.product-image-wrapper::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(0, 255, 102, 0.04), transparent);
    pointer-events: none;
    z-index: 2;
}

.product-card:hover .product-image-wrapper::after {
    animation: scanline 2s linear infinite;
}

@keyframes scanline {
    0% { top: -100%; }
    100% { top: 100%; }
}

.product-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
    transition: var(--transition);
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.06);
}

.product-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #ff0055, #ff5500);
    color: #fff;
    padding: 4px 12px;
    font-size: 10px;
    font-family: 'Oxanium', sans-serif;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 0 10px rgba(255, 0, 85, 0.3);
    z-index: 2;
}

.product-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 11px;
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.08em;
    font-family: 'Oxanium', sans-serif;
}

.product-title {
    font-size: 17px;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--text-primary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 48px;
    font-family: 'Outfit', sans-serif;
}

.product-title a {
    color: var(--text-primary);
    transition: var(--transition);
}

.product-title a:hover {
    color: var(--accent);
}

.product-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.product-price {
    font-size: 18px;
    font-weight: 800;
    font-family: 'Oxanium', sans-serif;
    color: var(--text-primary);
}

.product-price del {
    font-size: 13px;
    color: var(--text-muted);
    margin-right: 8px;
    font-weight: 400;
}

.product-status {
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
}

.status-instock {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.status-outofstock {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.product-card .btn-secondary {
    background: #18181b;
    border: 1px solid #27272a;
    color: #e4e4e7;
    font-family: 'Oxanium', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 11px;
    padding: 10px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.product-card:hover .btn-secondary {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}

/* Responsive Shop Layout */
.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

@media (max-width: 992px) {
    .shop-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .shop-layout aside {
        border-right: none !important;
        padding-right: 0 !important;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 30px;
    }
}

/* Responsive Product Page Layout */
.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.product-image-box {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
    position: relative;
}

.product-features-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    font-size: 14px;
    color: var(--text-secondary);
}

@media (max-width: 992px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .product-image-box {
        height: 380px;
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .product-features-list {
        grid-template-columns: 1fr;
    }
}

/* Compare Matrix */
.comparison-table-wrapper {
    overflow-x: auto;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    background-color: var(--bg-card);
}

@media (min-width: 1024px) {
    .comparison-table-wrapper {
        overflow: visible;
    }
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.comparison-table th,
.comparison-table td {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    background-color: var(--bg-card);
}

.comparison-table th:last-child,
.comparison-table td:last-child {
    border-right: none;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table thead th {
    background-color: #121214;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    position: sticky;
    top: 72px;
    z-index: 10;
}

.comparison-table th:first-child {
    position: sticky;
    left: 0;
    top: 72px;
    z-index: 12;
    background-color: #121214;
    border-right: 1px solid var(--border-color);
}

.comparison-table td:first-child {
    position: sticky;
    left: 0;
    z-index: 11;
    background-color: var(--bg-card);
    border-right: 1px solid var(--border-color);
}

.comparison-table tbody tr:hover td:first-child {
    background-color: var(--bg-hover);
}

.comparison-table tbody tr:hover td {
    background-color: rgba(255, 255, 255, 0.03);
}

.comparison-product-header {
    text-align: center;
}

.comparison-product-header img {
    max-width: 120px;
    margin: 0 auto 16px;
}

.comparison-product-header h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.comparison-feature-name {
    font-weight: 600;
    color: var(--text-secondary);
    width: 200px;
}

/* Grid Layout for General Pages */
.page-header {
    background: linear-gradient(180deg, #121214 0%, var(--bg-dark) 100%);
    padding: 120px 0 60px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 18px;
}

/* World Class Gaming-mode Header */
.page-header.gaming-header {
    /* MXG Shifting Cosmic Nebula Background - START - DO NOT REMOVE THIS COMMENT */
    background-color: #070709;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 0, 85, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 90% 80%, rgba(0, 255, 255, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(120, 0, 255, 0.08) 0%, transparent 55%),
        url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h20v20H0V0zm20 20h20v20H20V20z' fill='%23ffffff' fill-opacity='.005' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-size: 200% 200%, auto;
    animation: driftNebula 15s ease infinite alternate;
    /* MXG Shifting Cosmic Nebula Background - END - DO NOT REMOVE THIS COMMENT */
    padding: 140px 0 80px;
    text-align: center;
    border-bottom: 2px solid #1f1f23;
    position: relative;
    overflow: hidden;
}

/* MXG Cosmic Nebula driftNebula Animation - START - DO NOT REMOVE THIS COMMENT */
@keyframes driftNebula {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 50% 100%; }
}
/* MXG Cosmic Nebula driftNebula Animation - END - DO NOT REMOVE THIS COMMENT */

.page-header.gaming-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(45deg, transparent 48%, rgba(212, 175, 55, 0.08) 50%, transparent 52%);
    background-size: 200% 100%;
    animation: laserSweep 15s linear infinite;
    pointer-events: none;
}

/* MXG Interactive Cursor-Tracking Glow - START - DO NOT REMOVE THIS COMMENT */
.page-header.gaming-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 0, 85, 0.16) 0%, transparent 40%);
    opacity: var(--mouse-glow-opacity, 0);
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
    animation: rgbMouseGlow 6s linear infinite;
}

@keyframes rgbMouseGlow {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}
/* MXG Interactive Cursor-Tracking Glow - END - DO NOT REMOVE THIS COMMENT */

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

/* Breadcrumb Styles */
.breadcrumb-container {
    margin-bottom: 24px;
}

.breadcrumb {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    background: rgba(18, 18, 20, 0.6);
    padding: 8px 18px;
    border-radius: 20px;
    border: 1px solid #27272a;
    gap: 6px 12px;
    font-size: 11px;
    font-family: 'Oxanium', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    max-width: 100%;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
}

.breadcrumb-item a {
    color: var(--text-muted);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 4px;
}

.breadcrumb-item a:hover {
    color: var(--accent);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '\002F';
    color: var(--text-muted);
    margin-right: 8px;
}

.breadcrumb-item.active {
    color: var(--accent);
    font-weight: 700;
}

/* Gaming Title Styling */
.gaming-title-wrapper {
    position: relative;
    z-index: 2;
}

.gaming-tagline {
    display: block;
    font-family: 'Oxanium', sans-serif;
    font-size: 12px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.gaming-title {
    font-family: 'Outfit', sans-serif;
    font-size: 54px !important;
    font-weight: 900 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.gaming-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff0055, #00ff66, #00ffff);
    background-size: 300% 100%;
    animation: rgbShift 6s linear infinite;
    margin: 16px auto;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.gaming-subtitle {
    color: var(--text-secondary);
    font-size: 15px !important;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    letter-spacing: 0.02em;
}

.page-content {
    padding: 80px 0;
}

.content-rich {
    max-width: 800px;
    margin: 0 auto;
}

.content-rich h2 {
    font-size: 28px;
    margin: 40px 0 20px;
}

.content-rich p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.8;
}

/* Accordion FAQs */
.accordion {
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid var(--border-color);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    background-color: var(--bg-card);
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.accordion-header:hover {
    background-color: var(--bg-hover);
}

.accordion-header::after {
    content: '+';
    font-size: 20px;
    font-weight: 400;
    color: var(--text-secondary);
    transition: var(--transition);
}

.accordion-item.active .accordion-header::after {
    content: '-';
    transform: rotate(180deg);
}

.accordion-content {
    background-color: var(--bg-dark);
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content-inner {
    padding: 20px 0;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

/* Forms */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(var(--accent-rgb), 0.15);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Redesigned World-Class Footer (Gigabyte Inspired) */
footer {
    background-color: #060608;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 60px 0 40px;
    font-family: 'Inter', sans-serif;
}

.footer-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
    margin-bottom: 48px;
    position: relative;
}

.footer-top-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: linear-gradient(90deg, #ff0055, #00ff66, #00ffff, #ff00ff, #ff0055);
    background-size: 400% 100%;
    animation: rgbShift 10s linear infinite;
    opacity: 0.85;
}

.footer-follow-us {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-follow-us span {
    font-family: 'Oxanium', sans-serif !important;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #e4e4e7;
}

.footer-follow-us a {
    color: #a1a1aa;
    font-size: 16px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-follow-us a:hover {
    color: #ffffff;
    transform: scale(1.1);
}

.footer-logo-text {
    margin: 0;
    font-size: 36px;
    font-weight: 800;
    font-family: 'Orbitron', sans-serif !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase;
    color: #ffffff;
}

.footer-region {
    display: flex;
    align-items: center;
    color: #a1a1aa;
    font-family: 'Oxanium', sans-serif !important;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-decoration: none;
}

.footer-region i {
    font-size: 15px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.footer-col h4 {
    font-family: 'Oxanium', sans-serif !important;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #a1a1aa;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-col ul a:hover {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #71717a;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.05em;
    text-align: center;
}

.footer-bottom a {
    color: #71717a;
    text-decoration: none;
    margin: 0 8px;
    transition: color 0.25s ease;
}

.footer-bottom a:hover {
    color: #ffffff;
}

/* =========================================================================
   3D INSTAGRAM REELS FOOTER SLIDER & MODAL
   ========================================================================= */
:root {
    --spk-card-border: rgba(255, 255, 255, 0.08);
    --spk-star-color: var(--accent);
    --spk-text-main: var(--text-primary);
    --spk-text-muted: var(--text-muted);
    --spk-card-bg: var(--bg-card);
}

.spk-footer-videos {
    position: relative;
    padding: 5rem 0 4rem 0;
    width: 100%;
    overflow: hidden;
    background-color: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.spk-section-title-wrap {
    text-align: center;
    margin-bottom: 2rem;
    padding: 0 20px;
}

.spk-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.spk-section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.spk-video-swiper-outer {
    position: relative;
    width: 100%;
    padding: 0 0 2rem 0;
    margin: 0 auto;
    max-width: 1400px;
}

.spk-video-swiper {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 40px;
}

.spk-video-slide {
    background-position: center;
    background-size: cover;
    width: 320px !important;
    height: 480px !important;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid var(--spk-card-border);
    background-color: #000;
    cursor: pointer;
}

.spk-video-slide-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.spk-video-slide-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.spk-video-slide:hover .spk-video-slide-thumb {
    transform: scale(1.06);
}

/* Hollow Circular Play Overlay Button */
.spk-video-slide-play-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0.85;
}

.spk-video-slide:hover .spk-video-slide-play-wrap {
    transform: translate(-50%, -50%) scale(1.08);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    opacity: 1;
    box-shadow: 0 10px 25px rgba(255,255,255,0.1);
}

.spk-video-slide-play-wrap svg {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

/* Bottom Dark Gradient Text Shield */
.spk-video-slide-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 55%;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.65) 45%, rgba(0,0,0,0) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Bottom Info Card Container */
.spk-video-slide-info {
    position: relative;
    z-index: 3;
    padding: 24px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.spk-video-slide-title {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.85;
    margin: 0;
    color: var(--accent);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.spk-video-slide-creator-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.spk-video-slide-name {
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0;
    color: #ffffff;
    letter-spacing: -0.015em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.spk-verified-check-badge {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.spk-video-slide-stars {
    display: flex;
    gap: 4px;
    align-items: center;
    margin-top: 2px;
}

.spk-video-slide-stars svg {
    width: 16px;
    height: 16px;
}

/* Premium Swiper Left/Right Nav Arrows - Glassmorphism */
.spk-swiper-nav-btn {
    width: 56px !important;
    height: 56px !important;
    border-radius: 50% !important;
    background: rgba(15, 23, 42, 0.65) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.spk-swiper-nav-btn::after {
    font-family: swiper-icons;
    font-size: 1.25rem !important;
    font-weight: bold !important;
    color: #ffffff !important;
    transition: all 0.3s ease !important;
}

.swiper-button-prev::after {
    content: 'prev' !important;
}
.swiper-button-next::after {
    content: 'next' !important;
}

.swiper-button-prev:hover::after {
    transform: translateX(-4px) !important;
}
.swiper-button-next:hover::after {
    transform: translateX(4px) !important;
}

.spk-swiper-nav-btn:hover {
    background: rgba(212, 175, 55, 0.85) !important;
    border-color: var(--accent) !important;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6) !important;
    transform: translateY(-50%) scale(1.08) !important;
}

@media (max-width: 768px) {
    .spk-swiper-nav-btn {
        display: none !important;
    }
    .spk-video-slide {
        width: 260px !important;
        height: 390px !important;
    }
    .spk-video-slide-info {
        padding: 16px;
    }
    .spk-video-slide-name {
        font-size: 1.1rem;
    }
    .spk-section-title {
        font-size: 1.75rem;
    }
}

/* Video Modal Lightbox Styling */
#spk-video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#spk-video-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.spk-video-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(9, 9, 11, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.spk-video-modal-container {
    position: relative;
    width: 90%;
    max-width: 480px;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
}

#spk-video-modal.active .spk-video-modal-container {
    transform: scale(1);
}

.spk-video-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 20px;
    line-height: 34px;
    text-align: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    border: none;
}

.spk-video-modal-close:hover {
    background: #ea4335;
    transform: rotate(90deg);
}

.spk-video-modal-iframe-wrap {
    position: relative;
    width: 100%;
    padding-top: 125%;
}

.spk-video-modal-iframe-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive Utilities */
@media (max-width: 1024px) {
    .category-card.large,
    .category-card.medium,
    .category-card.small {
        grid-column: span 6;
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 40px !important; }
    h2 { font-size: 32px !important; }
    
    /* MXG Mobile RGB Drawer - START - DO NOT REMOVE THIS COMMENT */
    .nav-links {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -310px; /* Slide out of view initially + safety margin for border */
        width: 300px;
        height: 100vh;
        background: #09090b; /* Solid dark background */
        padding: 95px 24px 40px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.9);
        border-left: 3px solid transparent;
        border-image: linear-gradient(180deg, #ff0055, #00ffff, #00ff66) 1;
        gap: 0;
        z-index: 999;
        overflow-y: auto;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        /* Simple RGB breathing border animation */
        animation: rgbBorderCycle 8s linear infinite;
    }
    
    .nav-links.mobile-active {
        right: 0 !important; /* Slide into view */
    }
    
    .btn-menu {
        display: block;
        position: relative;
        z-index: 1000;
    }
    
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 12px 0;
    }
    
    .nav-links li a {
        display: flex;
        align-items: center;
        width: 100%;
        font-family: 'Oxanium', sans-serif;
        font-size: 13px !important;
        font-weight: 600;
        letter-spacing: 0.08em;
        transition: padding-left 0.2s ease, color 0.2s ease;
        padding: 4px 0;
    }
    
    .nav-links li a:hover {
        padding-left: 8px;
        color: #00ffff !important;
        text-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
    }
    
    .dropdown-content-custom {
        padding: 5px 0 5px 15px !important;
    }
    
    .dropdown-content-custom a {
        display: flex !important;
        align-items: center;
        padding: 8px 0 !important;
        font-size: 12px !important;
        border: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
    
    .mobile-menu-icon {
        display: inline-block !important;
        margin-right: 12px;
        color: var(--accent);
        width: 20px;
        text-align: center;
        font-size: 14px;
        filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
    }
    
    .mobile-submenu-icon {
        display: inline-block !important;
        margin-right: 10px;
        color: var(--text-muted);
        font-size: 12px;
    }
    
    @keyframes rgbBorderCycle {
        0%, 100% {
            border-image: linear-gradient(180deg, #ff0055, #00ffff, #00ff66) 1;
        }
        33% {
            border-image: linear-gradient(180deg, #00ffff, #00ff66, #ff0055) 1;
        }
        66% {
            border-image: linear-gradient(180deg, #00ff66, #ff0055, #00ffff) 1;
        }
    }
    /* MXG Mobile RGB Drawer - END - DO NOT REMOVE THIS COMMENT */
    
    .hero {
        padding-top: 50px;
    }
    
    .category-card.large,
    .category-card.medium,
    .category-card.small {
        grid-column: span 12;
        height: 300px;
    }
    
    .footer-top-bar {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Main Product Slider (Secretlab Style)
   ========================================================================== */
.main-slider {
    position: relative;
    height: 100vh;
    min-height: 650px;
    background-color: #0c0c0c;
    overflow: hidden;
    padding-top: 72px;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    align-items: center;
    padding: 0 80px;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 60% 50%, #e0e0e0 0%, #bebebe 100%);
    z-index: 1;
}

.slide-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide-video.loaded {
    opacity: 1;
}

.slide-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(9, 9, 11, 0.85) 0%, rgba(9, 9, 11, 0.45) 25%, rgba(9, 9, 11, 0) 45%);
    z-index: 2;
    transition: background 0.3s ease;
}

@media (max-width: 768px) {
    .slide-video-overlay {
        background: linear-gradient(180deg, rgba(9, 9, 11, 0.9) 0%, rgba(9, 9, 11, 0.5) 60%, rgba(9, 9, 11, 0) 80%);
    }
}

.slide-video-overlay-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(240, 240, 243, 0.85) 0%, rgba(240, 240, 243, 0.45) 25%, rgba(240, 240, 243, 0) 45%);
    z-index: 2;
    transition: background 0.3s ease;
}

@media (max-width: 768px) {
    .slide-video-overlay-light {
        background: linear-gradient(180deg, rgba(240, 240, 243, 0.9) 0%, rgba(240, 240, 243, 0.5) 60%, rgba(240, 240, 243, 0) 80%);
    }
}

@media (min-width: 769px) {
    .slide[data-slide="0"],
    .slide[data-slide="1"] {
        align-items: flex-end;
        padding-bottom: 140px;
        padding-left: 60px;
    }
    .slide[data-slide="0"] .slide-content,
    .slide[data-slide="1"] .slide-content {
        max-width: 420px;
    }
}

/* Custom dark studio background for monitors */
.slide[data-slide="3"] .slide-bg {
    background: radial-gradient(circle at 60% 50%, #1a191d 0%, #08080a 100%);
}

.slide-content {
    position: relative;
    z-index: 3;
    max-width: 500px;
    margin-right: auto;
}

.slide-tag {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #121214;
    font-weight: 700;
    margin-bottom: 12px;
    display: block;
}

.slide[data-slide="0"] .slide-tag,
.slide[data-slide="3"] .slide-tag {
    color: var(--accent);
}

.slide-title {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.1;
    color: #121214;
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.slide[data-slide="0"] .slide-title,
.slide[data-slide="3"] .slide-title {
    color: #ffffff;
}

.slide[data-slide="0"] .slide-title {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.slide-desc {
    font-size: 15px;
    color: #3f3f46;
    margin-bottom: 32px;
    line-height: 1.6;
}

.slide[data-slide="0"] .slide-desc,
.slide[data-slide="3"] .slide-desc {
    color: var(--text-secondary);
}

.slide[data-slide="0"] .slide-desc {
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
}

/* Pill button style */
.slide .btn-primary {
    background-color: #121214;
    color: #ffffff;
    border-color: #121214;
    border-radius: 50px;
    padding: 14px 38px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.slide .btn-primary:hover {
    background-color: #333333;
    border-color: #333333;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

.slide[data-slide="0"] .btn-primary,
.slide[data-slide="3"] .btn-primary {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.slide[data-slide="0"] .btn-primary:hover,
.slide[data-slide="3"] .btn-primary:hover {
    background-color: #eaeaea;
    border-color: #eaeaea;
    color: #000000;
}

/* Products Layout Placement */
.slide-products-container {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 60%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.prod-img {
    position: absolute;
    max-height: 70%;
    max-width: 60%;
    object-fit: contain;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.22));
}

/* Chairs layout styling (Side-by-side overlapping look like Secretlab) */
.chairs-layout .img-left {
    transform: translate(-140px, 20px) scale(0.85);
    opacity: 0.95;
    z-index: 10;
}

.chairs-layout .img-center {
    transform: translate(0, 0) scale(1);
    z-index: 12;
}

.chairs-layout .img-right {
    transform: translate(140px, 20px) scale(0.85) rotateY(180deg);
    opacity: 0.95;
    z-index: 10;
}

/* Desks layout styling */
.desks-layout .img-left {
    transform: translate(-180px, 40px) scale(0.85);
    opacity: 0.8;
    z-index: 10;
}

.desks-layout .img-center {
    transform: translate(0, 0) scale(1);
    z-index: 12;
}

.desks-layout .img-right {
    transform: translate(180px, 40px) scale(0.85);
    opacity: 0.8;
    z-index: 10;
}

/* Arms and Monitor layouts */
.arms-layout .img-center,
.monitors-layout .img-center {
    transform: scale(1.15);
    z-index: 12;
}

/* Entrance Animations on Active Slide */
.slide.active .slide-title {
    animation: slideInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.slide.active .slide-desc {
    animation: slideInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.10s forwards;
}

.slide.active .btn-primary {
    animation: slideInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.20s forwards;
}

.slide.active .chairs-layout .img-left {
    animation: slideInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.slide.active .chairs-layout .img-center {
    animation: zoomInMain 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.slide.active .chairs-layout .img-right {
    animation: slideInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.slide.active .desks-layout .img-left {
    animation: slideInLeftDesk 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.slide.active .desks-layout .img-center {
    animation: zoomInMain 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.slide.active .desks-layout .img-right {
    animation: slideInRightDesk 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.slide.active .arms-layout .img-center,
.slide.active .monitors-layout .img-center {
    animation: zoomInMain 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

@keyframes zoomInMain {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translate(-200px, 20px) scale(0.85);
    }
    to {
        opacity: 0.95;
        transform: translate(-140px, 20px) scale(0.85);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translate(200px, 20px) scale(0.85) rotateY(180deg);
    }
    to {
        opacity: 0.95;
        transform: translate(140px, 20px) scale(0.85) rotateY(180deg);
    }
}

@keyframes slideInLeftDesk {
    from {
        opacity: 0;
        transform: translate(-240px, 40px) scale(0.85);
    }
    to {
        opacity: 0.8;
        transform: translate(-180px, 40px) scale(0.85);
    }
}

@keyframes slideInRightDesk {
    from {
        opacity: 0;
        transform: translate(240px, 40px) scale(0.85);
    }
    to {
        opacity: 0.8;
        transform: translate(180px, 40px) scale(0.85);
    }
}

/* MXG Gamer RGB Slider Controls - START - DO NOT REMOVE THIS COMMENT */
.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 24px;
    z-index: 10;
    background: rgba(10, 10, 12, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0px;
    padding: 10px 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 255, 204, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.3s ease;
}

/* GTA 6 / Cyberpunk Dual Accent sidebars */
.slider-controls::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    width: 4px;
    background: #ff0055;
    box-shadow: 0 0 10px rgba(255, 0, 85, 0.8);
}

.slider-controls::after {
    content: '';
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: -1px;
    width: 4px;
    background: #00ffcc;
    box-shadow: 0 0 10px rgba(0, 255, 204, 0.8);
}

.ctrl-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.ctrl-btn.ctrl-prev:hover {
    background: #ff0055;
    border-color: #ff0055;
    color: #ffffff;
    box-shadow: 0 0 12px rgba(255, 0, 85, 0.8);
    transform: scale(1.05);
}

.ctrl-btn.ctrl-next:hover {
    background: #00ffcc;
    border-color: #00ffcc;
    color: #0c0a0f;
    box-shadow: 0 0 12px rgba(0, 255, 204, 0.8);
    transform: scale(1.05);
}
/* MXG Gamer RGB Slider Controls - END - DO NOT REMOVE THIS COMMENT */

/* MXG Gamer RGB Slider Tabs - START - DO NOT REMOVE THIS COMMENT */
.slider-tabs {
    display: flex;
    gap: 32px;
}

.slider-tab {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 6px 4px;
    transition: all 0.3s ease;
}

.slider-tab span {
    font-family: 'Oxanium', 'Orbitron', sans-serif !important;
    font-size: 12px;
    font-weight: 700;
    color: #71717a;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-bottom: 6px;
    display: inline-block;
}

.slider-tab:hover span {
    color: #ffffff;
}

.slider-tab.active span {
    color: #00ffcc !important;
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
}

.tab-progress-line {
    width: 120px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.1);
    position: relative;
    border-radius: 0px;
    overflow: hidden;
    transform: skewX(-20deg);
}

.tab-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ff0055, #00ffcc, #0099ff, #ff0055) !important;
    background-size: 300% 100% !important;
    animation: rgbProgressRun 3s linear infinite;
    box-shadow: 0 0 8px rgba(0, 255, 204, 0.8);
}

@keyframes rgbProgressRun {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}
/* MXG Gamer RGB Slider Tabs - END - DO NOT REMOVE THIS COMMENT */

/* Slider responsiveness */
@media (max-width: 1024px) {
    .slide {
        padding: 0 40px;
    }
    .slide-products-container {
        width: 50%;
    }
    .chairs-layout .img-left {
        transform: translate(-100px, 20px) scale(0.8);
    }
    .chairs-layout .img-right {
        transform: translate(100px, 20px) scale(0.8) rotateY(180deg);
    }
    .desks-layout .img-left {
        transform: translate(-120px, 40px) scale(0.8);
    }
    .desks-layout .img-right {
        transform: translate(120px, 40px) scale(0.8);
    }
}

@media (max-width: 768px) {
    .main-slider {
        height: 75vh;
        min-height: 550px;
        padding-top: 72px;
        position: relative;
    }
    .slide {
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px 24px;
        text-align: center;
    }
    .slide-content {
        margin: 0 auto;
        max-width: 100%;
        z-index: 5;
    }
    .slide-title {
        font-size: 38px;
    }
    .slide-products-container {
        position: relative;
        transform: none;
        top: auto;
        right: auto;
        width: 100%;
        height: 350px;
        margin-top: 40px;
    }
    .chairs-layout .img-left {
        transform: translate(-70px, 20px) scale(0.75);
    }
    .chairs-layout .img-right {
        transform: translate(70px, 20px) scale(0.75) rotateY(180deg);
    }
    .desks-layout .img-left {
        transform: translate(-90px, 30px) scale(0.75);
    }
    .desks-layout .img-right {
        transform: translate(90px, 30px) scale(0.75);
    }
    .slider-controls {
        bottom: 20px;
        width: calc(100% - 32px);
        justify-content: space-between;
    }
    .slider-tabs {
        display: none; /* Hide text tabs on small mobile screens, use dots or navigation arrows */
    }
}

/* ==========================================================================
   Section 2: Press & Trustpilot Reviews Section
   ========================================================================== */
.press-reviews-section {
    height: 550px;
    padding: 0;
    background-color: #212124;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.press-title {
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.35;
}

.press-title strong {
    font-weight: 800;
}

.trustpilot-widget {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #a1a1aa;
}

.trustpilot-widget a {
    color: #ffffff;
    transition: color 0.2s ease;
}

.trustpilot-widget a:hover {
    color: var(--accent, #d4af37);
}

.tp-label {
    font-weight: 600;
    color: #ffffff;
}

.tp-stars {
    display: inline-flex;
    gap: 4px;
}

.tp-stars i {
    color: #ffffff;
    background-color: #00b67a;
    padding: 3px;
    font-size: 10px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
}

.tp-brand {
    font-weight: 700;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
}

.tp-brand i {
    color: #00b67a;
}

.press-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.press-carousel-track-container {
    overflow: hidden;
    width: 100%;
}

.press-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.press-card {
    flex: 0 0 33.3333%;
    width: 33.3333%;
    padding: 24px 32px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.press-card:last-child {
    border-right: none;
}

.press-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.press-logo span {
    color: var(--accent, #d4af37);
}

.press-card:hover .press-logo {
    color: rgba(255, 255, 255, 0.9);
}

.press-award {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--accent, #d4af37);
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    background: rgba(212, 175, 55, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
}

.press-quote {
    font-size: 16px;
    line-height: 1.6;
    color: #e4e4e7;
    font-style: italic;
    margin: 0;
    max-width: 320px;
}

.press-ctrl {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.press-ctrl:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.press-prev {
    left: 0;
}

.press-next {
    right: 0;
}

.press-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.press-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
}

.press-dot:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.press-dot.active {
    width: 24px;
    border-radius: 4px;
    background-color: var(--accent, #d4af37);
}

@media (max-width: 768px) {
    .press-reviews-section {
        height: auto;
        padding: 60px 0;
    }
    .press-title {
        font-size: 24px;
        font-weight: 300;
        padding: 0 16px;
    }
    .press-title strong {
        font-weight: 800;
    }
    .trustpilot-widget {
        margin-bottom: 30px;
        gap: 8px;
        font-size: 13px;
    }
    .press-carousel-wrapper {
        padding: 0 40px;
    }
    .press-card {
        flex: 0 0 100%;
        width: 100%;
        border-right: none;
        padding: 20px 16px;
        min-height: auto;
    }
    .press-next {
        right: 4px;
    }
}

/* ==========================================================================
   Section 3: Build your dream setup today (Secretlab Style tabbed carousel)
   ========================================================================== */
.setup-section {
    padding: 80px 0;
    background-color: #ffffff;
    color: #09090b;
    border-bottom: 1px solid #e4e4e7;
}

.setup-section .container {
    max-width: 1600px;
    width: 95%;
    padding: 0 40px;
}

.setup-title {
    font-size: 46px;
    font-weight: 800;
    color: #09090b;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    font-family: var(--font-heading);
}

.setup-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e4e4e7;
    padding-bottom: 18px;
    margin-bottom: 36px;
    gap: 20px;
}

.setup-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.setup-tabs::-webkit-scrollbar {
    display: none;
}

.setup-tab-btn {
    background: none;
    border: none;
    padding: 10px 22px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #71717a;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.25s ease;
    white-space: nowrap;
    font-family: var(--font-heading);
}

.setup-tab-btn:hover {
    color: #09090b;
    background-color: #f4f4f5;
}

.setup-tab-btn.active {
    background-color: #000000;
    color: #ffffff;
}

.setup-nav-arrows {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.setup-arrow-btn {
    background-color: #000000;
    color: #ffffff;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 13px;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.setup-arrow-btn:hover {
    background-color: #27272a;
}

.setup-arrow-btn:active {
    transform: scale(0.95);
}

.setup-content-wrapper {
    position: relative;
}

.setup-tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.setup-tab-content.active {
    display: block;
    opacity: 1;
}

.setup-carousel-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 24px;
    scroll-behavior: smooth;
}

.setup-carousel-track::-webkit-scrollbar {
    display: none;
}

.setup-card {
    flex: 0 0 calc(25% - 18px);
    width: calc(25% - 18px);
    background-color: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    scroll-snap-align: start;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.setup-card:hover {
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
    transform: translateY(-5px);
}

.setup-card-image-wrapper {
    position: relative;
    height: 280px;
    background-color: #fcfcfd;
    border-radius: 6px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
}

.setup-card-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.setup-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 3px;
    letter-spacing: 0.05em;
    z-index: 2;
}

.setup-badge.new {
    background-color: #09090b;
    color: #ffffff;
}

.setup-badge.sale {
    background-color: #dc2626;
    color: #ffffff;
}

.setup-badge.out-of-stock {
    background-color: #71717a;
    color: #ffffff;
}

.setup-card-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

.setup-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #09090b;
    margin: 0 0 8px 0;
    line-height: 1.35;
    min-height: 46px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: var(--font-heading);
}

.setup-card-desc {
    font-size: 12px;
    color: #71717a;
    margin: 0 0 16px 0;
}

.setup-card-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
    margin-top: auto;
    font-family: 'Outfit', sans-serif;
}

.setup-price-new {
    font-size: 18px;
    font-weight: 700;
    color: #09090b;
}

.setup-price-old {
    font-size: 14px;
    text-decoration: line-through;
    color: #a1a1aa;
}

.setup-card-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.setup-buy-btn {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    width: 100%;
    padding: 10px 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.2s ease;
    border: none;
    cursor: pointer;
}

.setup-buy-btn:hover {
    background-color: #27272a;
    color: #ffffff;
}

.setup-learn-more {
    font-size: 11px;
    font-weight: 700;
    color: #71717a;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}

.setup-learn-more:hover {
    color: var(--accent, #d4af37);
}

.setup-view-all-container {
    text-align: center;
    margin-top: 30px;
}

.setup-view-all {
    font-size: 13px;
    font-weight: 700;
    color: #09090b;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}

.setup-view-all:hover {
    color: var(--accent, #d4af37);
}

.no-products {
    text-align: center;
    color: #71717a;
    padding: 40px;
    width: 100%;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .setup-title {
        font-size: 32px;
    }
    .setup-card {
        flex: 0 0 calc(33.3333% - 14px);
        width: calc(33.3333% - 14px);
    }
}

@media (max-width: 768px) {
    .setup-section {
        padding: 50px 0;
    }
    .setup-title {
        font-size: 28px;
        margin-bottom: 20px;
        text-align: center;
    }
    .setup-header-row {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding-bottom: 12px;
    }
    .setup-tabs {
        width: 100%;
        justify-content: flex-start;
        padding: 4px 0;
    }
    .setup-card {
        flex: 0 0 calc(50% - 10px);
        width: calc(50% - 10px);
        padding: 16px;
    }
    .setup-card-image-wrapper {
        height: 180px;
    }
    .setup-nav-arrows {
        display: none; /* Swipe natively on mobile */
    }
}

@media (max-width: 480px) {
    .setup-card {
        flex: 0 0 100%;
        width: 100%;
    }
}

/* ==========================================================================
   Section 4: The MXG Difference (Video Background Section)
   ========================================================================== */
.diff-section {
    position: relative;
    height: 960px;
    min-height: 650px;
    background-color: #000000;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.diff-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.diff-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.75) 100%);
}

.diff-section .diff-container {
    position: relative;
    z-index: 3;
    height: 100%;
    max-width: 1600px;
    width: 95%;
    padding: 80px 40px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 100%;
    width: 100%;
}

.diff-col {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    padding: 40px 48px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-sizing: border-box;
}

.diff-col:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.diff-col-title {
    justify-content: center;
    padding-left: 0;
    border-left: none;
}

.diff-grid .diff-col:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    padding-left: 48px;
}

.diff-title {
    font-size: 52px;
    font-weight: 850;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.diff-text-wrapper {
    margin-bottom: 24px;
}

.diff-text-light {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.diff-text-bold {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.35;
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
}

@media (max-width: 1024px) {
    .diff-title {
        font-size: 40px;
    }
    .diff-text-bold {
        font-size: 18px;
    }
    .diff-col {
        padding: 30px;
    }
    .diff-grid .diff-col:first-child {
        padding-left: 30px;
    }
}

@media (max-width: 768px) {
    .diff-section {
        height: auto;
        min-height: auto;
        padding: 60px 0;
    }
    .diff-section .diff-container {
        padding: 20px;
        width: 100%;
    }
    .diff-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .diff-col {
        border-left: none !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 30px 20px !important;
        justify-content: flex-start;
        text-align: center;
        align-items: center;
    }
    .diff-col:last-child {
        border-bottom: none;
    }
    .diff-col-title {
        margin-bottom: 20px;
    }
    .diff-title {
        font-size: 38px;
        text-align: center;
    }
    .diff-text-light {
        font-size: 15px;
    }
    .diff-text-bold {
        font-size: 18px;
    }
}

/* ==========================================================================
   Section 5: Setup Inspiration hotspots slider (Anda Seat Style)
   ========================================================================== */
.hotspot-section {
    position: relative;
    width: 100%;
    background-color: #000000;
    overflow: hidden;
}

.hotspot-slider-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 878;
    overflow: hidden;
    background-color: #121214;
}

.hotspot-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hotspot-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 5;
}

.hotspot-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hotspot-point {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.hotspot-trigger {
    background-color: rgba(9, 9, 11, 0.85);
    color: #ffffff;
    border: 2px solid #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 11px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 2;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.hotspot-trigger:hover {
    transform: scale(1.2);
    background-color: var(--accent, #d4af37);
    color: #000000;
}

.hotspot-trigger::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: hotspotPulse 2s infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes hotspotPulse {
    0% {
        transform: scale(0.85);
        opacity: 1;
    }
    100% {
        transform: scale(1.45);
        opacity: 0;
    }
}

.hotspot-tooltip {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #ffffff;
    padding: 12px 14px;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    border: 1px solid #e4e4e7;
    width: 270px;
    position: absolute;
    z-index: 20;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

/* Tooltip placements */
.hotspot-tooltip.position-left {
    right: 46px;
    top: 50%;
    transform: translateY(-50%) translateX(12px);
}

.hotspot-tooltip.position-right {
    left: 46px;
    top: 50%;
    transform: translateY(-50%) translateX(-12px);
}

.hotspot-tooltip.position-top {
    bottom: 46px;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
}

.hotspot-tooltip.position-bottom {
    top: 46px;
    left: 50%;
    transform: translateX(-50%) translateY(-12px);
}

/* Show Tooltip state */
.hotspot-point:hover .hotspot-tooltip,
.hotspot-point.active .hotspot-tooltip {
    opacity: 1;
    pointer-events: auto;
}

.hotspot-point:hover .hotspot-tooltip.position-left,
.hotspot-point.active .hotspot-tooltip.position-left {
    transform: translateY(-50%) translateX(0);
}

.hotspot-point:hover .hotspot-tooltip.position-right,
.hotspot-point.active .hotspot-tooltip.position-right {
    transform: translateY(-50%) translateX(0);
}

.hotspot-point:hover .hotspot-tooltip.position-top,
.hotspot-point.active .hotspot-tooltip.position-top {
    transform: translateX(-50%) translateY(0);
}

.hotspot-point:hover .hotspot-tooltip.position-bottom,
.hotspot-point.active .hotspot-tooltip.position-bottom {
    transform: translateX(-50%) translateY(0);
}

.hotspot-tooltip img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    border-radius: 4px;
    background-color: #f4f4f5;
    flex-shrink: 0;
    mix-blend-mode: multiply;
}

.hotspot-tooltip-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

.hotspot-tooltip-title {
    font-size: 13px;
    font-weight: 700;
    color: #09090b;
    margin: 0 0 3px 0;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: var(--font-heading);
}

.hotspot-tooltip-price {
    font-size: 13px;
    font-weight: 700;
    color: #dc2626;
    font-family: 'Outfit', sans-serif;
}

.hotspot-tooltip-arrow {
    font-size: 11px;
    color: #a1a1aa;
    transition: transform 0.2s ease;
}

.hotspot-tooltip:hover .hotspot-tooltip-arrow {
    transform: translateX(4px);
    color: #09090b;
}

/* Slider Nav Controls */
.hotspot-slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
    background: rgba(9, 9, 11, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hotspot-nav-arrow {
    background: none;
    border: none;
    color: #ffffff;
    opacity: 0.6;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 12px;
}

.hotspot-nav-arrow:hover {
    opacity: 1;
    transform: scale(1.15);
    color: var(--accent, #d4af37);
}

.hotspot-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.hotspot-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hotspot-dot:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.hotspot-dot.active {
    width: 22px;
    border-radius: 4px;
    background-color: #ffffff;
}

/* Responsiveness overrides for Mobile Setup backgrounds */
@media (max-width: 768px) {
    .hotspot-slider-wrapper {
        aspect-ratio: 768 / 800;
    }
    
    .hotspot-slide[data-index="0"] .hotspot-point:nth-of-type(1) { top: 56%; left: 52%; }
    .hotspot-slide[data-index="0"] .hotspot-point:nth-of-type(2) { top: 62%; left: 32%; }
    .hotspot-slide[data-index="0"] .hotspot-point:nth-of-type(3) { top: 32%; left: 28%; }
    .hotspot-slide[data-index="0"] .hotspot-point:nth-of-type(4) { top: 26%; left: 35%; }
    
    .hotspot-tooltip {
        width: 220px;
        padding: 8px 10px;
    }
    
    .hotspot-tooltip img {
        width: 44px;
        height: 44px;
    }
    
    .hotspot-tooltip-title {
        font-size: 11px;
    }
    
    .hotspot-tooltip-price {
        font-size: 11px;
    }
    
    .hotspot-trigger {
        width: 28px;
        height: 28px;
        font-size: 9px;
    }
}

/* ==========================================================================
   Section 6: Used by the best in the business (Secretlab Style)
   ========================================================================== */
.sec6-wrapper {
    background-color: #000000;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.sec6-mobile-heading {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    text-align: center;
    margin: 40px 0 20px 0;
    letter-spacing: 0.05em;
}

.sec6-desktop-heading {
    display: none;
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.08em;
    width: 100%;
}

.sec6-flex-reverse {
    display: flex;
    flex-direction: column; /* Mobile: Nav first, Banners second */
}

/* Part 1: Banners & Content Container */
.sec6-slider-container {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #000000;
    display: flex;
    flex-direction: column;
}

.sec6-slider-track {
    position: relative;
    width: 100%;
    height: 320px; /* Mobile height */
    overflow: hidden;
}

.sec6-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 1;
}

.sec6-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.sec6-banner-desktop {
    display: none;
}

.sec6-banner-mobile {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.sec6-banner-mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sec6-banner-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}

/* Overlays & Testimonials (Static below banner on mobile) */
.sec6-overlay-content {
    position: relative;
    width: 100%;
    height: auto;
    padding: 30px 20px 50px 20px;
    background-color: #000000;
    z-index: 5;
}

.sec6-interactive-area {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sec6-nav-btn {
    display: none; /* Hidden on mobile */
}

.sec6-quote-wrapper {
    width: 100%;
}

.sec6-quote-inner {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sec6-quotes-block {
    position: relative;
    min-height: 120px;
}

.sec6-quote-item {
    display: none;
    opacity: 0;
    width: 100%;
}

.sec6-quote-item.active {
    display: block;
    opacity: 1;
}

.sec6-quote-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #e5e5e7;
    font-style: italic;
    font-weight: 400;
    text-align: center;
    margin: 0;
}

.sec6-author-block {
    border-left: none;
    padding-left: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: 70px;
}

.sec6-author-item {
    display: none;
    opacity: 0;
    width: 100%;
    text-align: center;
}

.sec6-author-item.active {
    display: block;
    opacity: 1;
}

.sec6-author-name {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 4px 0;
    letter-spacing: 0.05em;
}

.sec6-author-sub {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #a1a1a6;
    margin: 0 0 4px 0;
}

.sec6-author-desc {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #8e8e93;
    margin: 0;
}

/* Part 2: Navigation Thumbnails */
.sec6-thumbnails-nav {
    width: 100%;
    background-color: #000000;
}

.sec6-thumbnails-grid {
    display: flex;
    overflow-x: auto;
    padding: 10px 15px 30px 15px;
    gap: 15px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.sec6-thumbnails-grid::-webkit-scrollbar {
    display: none; /* Hide scrollbars on mobile */
}

.sec6-thumb-card {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    flex-shrink: 0;
    width: 120px;
    scroll-snap-align: start;
    outline: none;
}

.sec6-thumb-mob-wrapper {
    display: block;
    border-radius: 8px;
    padding: 2px;
    border: 2.5px solid transparent;
    overflow: hidden;
    aspect-ratio: 1;
    background-color: #111111;
    transition: border-color 0.3s ease;
}

.sec6-thumb-mob-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.sec6-thumb-card.active .sec6-thumb-mob-wrapper {
    border-color: #ffffff;
}

.sec6-thumb-desk-wrapper {
    display: none;
}

.sec6-thumb-name-text {
    display: none;
}

/* Desktop Styles (lg breakpoint) */
@media (min-width: 1024px) {
    .sec6-mobile-heading {
        display: none;
    }
    
    .sec6-desktop-heading {
        display: block;
        padding-top: 100px;
    }
    
    /* Banners & Content (Top part on desktop) */
    .sec6-slider-container {
        height: 650px;
        flex-direction: row;
    }
    
    .sec6-slider-track {
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }
    
    .sec6-banner-desktop {
        display: block;
        width: 100%;
        height: 100%;
    }
    
    .sec6-banner-desktop img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    
    .sec6-banner-mobile {
        display: none;
    }
    
    .sec6-overlay-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 0;
        background-color: transparent;
    }
    
    .sec6-interactive-area {
        height: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    /* Navigation Arrows */
    .sec6-nav-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.15);
        background-color: rgba(0, 0, 0, 0.4);
        color: #ffffff;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s ease;
    }
    
    .sec6-nav-btn:hover {
        background-color: #ffffff;
        color: #000000;
        border-color: #ffffff;
        transform: scale(1.05);
    }
    
    .sec6-prev-btn {
        left: 64px;
        position: absolute;
    }
    
    .sec6-next-btn {
        right: 64px;
        position: absolute;
    }
    
    .sec6-quote-wrapper {
        display: flex;
        justify-content: flex-end;
        padding-right: 12%;
    }
    
    .sec6-quote-inner {
        width: 40%;
        max-width: 460px;
        margin: 0 0 0 auto;
        gap: 20px;
    }
    
    .sec6-quotes-block {
        height: 160px;
        min-height: auto;
    }
    
    .sec6-quote-item {
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        opacity: 0;
        transform: translateY(15px);
        transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        pointer-events: none;
    }
    
    .sec6-quote-item.active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    
    .sec6-quote-text {
        font-size: 20px;
        text-align: left;
    }
    
    .sec6-author-block {
        border-left: 1px solid #1a1a1a;
        padding-left: 20px;
        text-align: left;
        align-items: flex-start;
        min-height: 120px;
        position: relative;
    }
    
    .sec6-author-item {
        display: block;
        position: absolute;
        top: 0;
        left: 20px;
        opacity: 0;
        transform: translateY(15px);
        transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        pointer-events: none;
        text-align: left;
    }
    
    .sec6-author-item.active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    
    .sec6-author-name {
        font-size: 16px;
        letter-spacing: 0.08em;
    }
    
    .sec6-author-sub {
        font-size: 13px;
    }
    
    .sec6-author-desc {
        font-size: 13px;
    }
    
    /* Navigation Thumbnails (Bottom part on desktop) */
    .sec6-thumbnails-nav {
        border-top: 1px solid #1a1a1a;
        border-bottom: 1px solid #1a1a1a;
    }
    
    .sec6-thumbnails-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0;
        gap: 0;
        overflow: visible;
    }
    
    .sec6-thumb-card {
        width: 100%;
        height: auto;
        display: block;
        text-align: left;
        scroll-snap-align: none;
    }
    
    .sec6-thumb-mob-wrapper {
        display: none;
    }
    
    .sec6-thumb-desk-wrapper {
        display: block;
        width: 100%;
        position: relative;
        overflow: hidden;
        border-right: 1px solid #1a1a1a;
        border-left: 1px solid #1a1a1a;
        margin-left: -1px; /* collapse borders */
        cursor: pointer;
    }
    
    .sec6-thumb-card:last-child .sec6-thumb-desk-wrapper {
        border-right: none;
    }
    
    .sec6-thumb-img-color,
    .sec6-thumb-img-bw {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        transition: opacity 0.5s ease, transform 0.5s ease;
    }
    
    .sec6-thumb-img-color {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        z-index: 2;
    }
    
    .sec6-thumb-img-bw {
        position: relative;
        opacity: 1;
        z-index: 1;
    }
    
    /* Hover scale effect */
    .sec6-thumb-card:hover .sec6-thumb-img-color,
    .sec6-thumb-card:hover .sec6-thumb-img-bw {
        transform: scale(1.05);
    }
    
    /* Reveal color image on active or hover */
    .sec6-thumb-card.active .sec6-thumb-img-color,
    .sec6-thumb-card:hover .sec6-thumb-img-color {
        opacity: 1;
    }
    
    .sec6-thumb-name-text {
        display: block;
        padding: 20px;
        margin: 0;
        font-family: 'Outfit', sans-serif;
        font-size: 15px;
        font-weight: 700;
        color: #8e8e93; /* grey when inactive */
        text-transform: uppercase;
        letter-spacing: 0.05em;
        transition: color 0.3s ease;
        background-color: #000000;
        border-right: 1px solid #1a1a1a;
        border-left: 1px solid #1a1a1a;
        margin-left: -1px;
    }
    
    .sec6-thumb-card:last-child .sec6-thumb-name-text {
        border-right: none;
    }
    
    .sec6-thumb-card.active .sec6-thumb-name-text {
        color: #ffffff; /* white when active */
    }
}

/* ==========================================================================
   Section: Be Inspired (UGC Image Grid) Styling
   ========================================================================== */
.mxg-ugc-section {
    padding: 64px 0;
    background-color: #ffffff;
}

@media (min-width: 1024px) {
    .mxg-ugc-section {
        padding: 128px 0;
    }
}

.mxg-ugc-header {
    max-width: 800px;
    margin: 0 auto 32px auto;
    text-align: center;
    padding: 0 16px;
}

@media (min-width: 1024px) {
    .mxg-ugc-header {
        margin-bottom: 40px;
    }
}

.mxg-ugc-title {
    font-size: 32px;
    font-weight: 800;
    color: #09090b;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    font-family: var(--font-heading);
}

.mxg-ugc-subtitle {
    font-size: 16px;
    color: #71717a;
    line-height: 1.6;
}

.mxg-ugc-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (min-width: 1024px) {
    .mxg-ugc-grid {
        flex-direction: row;
        gap: 32px;
        padding: 0 64px;
    }
}

.mxg-ugc-col {
    display: flex;
    gap: 24px;
}

@media (min-width: 1024px) {
    .mxg-ugc-col {
        flex-direction: column;
        gap: 32px;
        flex: 1;
        padding: 0;
    }
}

.mxg-ugc-col-1, .mxg-ugc-col-3 {
    padding: 0 16px;
}

@media (min-width: 1024px) {
    .mxg-ugc-col-1, .mxg-ugc-col-3 {
        padding: 0;
    }
}

.mxg-ugc-col-1 {
    align-items: flex-end;
}

.mxg-ugc-col-2 {
    width: 100%;
}

@media (min-width: 1024px) {
    .mxg-ugc-col-2 {
        width: 55%;
        flex: none;
    }
}

/* Instagram post card design */
.mxg-ugc-card {
    background: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    width: 100%;
    display: flex;
    flex-direction: column;
}

.mxg-ugc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

@media (min-width: 1024px) {
    .mxg-ugc-col-1 .mxg-ugc-card:first-child {
        width: 100%;
    }
    .mxg-ugc-col-1 .mxg-ugc-card:last-child {
        width: 80%;
    }
    .mxg-ugc-col-3 .mxg-ugc-card:first-child {
        width: 80%;
    }
    .mxg-ugc-col-3 .mxg-ugc-card:last-child {
        width: 100%;
    }
}

/* Card Header */
.mxg-ugc-card-header {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #f4f4f5;
    background: #ffffff;
}

.mxg-ugc-profile-pic {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.mxg-ugc-user-info {
    margin-left: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.mxg-ugc-username {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #09090b;
}

.mxg-ugc-verified {
    color: #3897f0;
    font-size: 11px;
    display: flex;
    align-items: center;
}

.mxg-ugc-instagram-icon {
    margin-left: auto;
    color: #a1a1aa;
    font-size: 16px;
}

/* Card Image container */
.mxg-ugc-img-container {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #000000;
}

/* Lock aspect ratios for crisp layout */
.mxg-ugc-col-1 .mxg-ugc-img-container,
.mxg-ugc-col-3 .mxg-ugc-img-container {
    aspect-ratio: 4 / 5;
}

.mxg-ugc-col-2 .mxg-ugc-img-container {
    aspect-ratio: 16 / 10;
}

.mxg-ugc-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mxg-ugc-img-container:hover img {
    transform: scale(1.04);
}

/* Heart burst animation overlay */
.mxg-heart-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: #ffffff;
    font-size: 64px;
    pointer-events: none;
    z-index: 5;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
}

.mxg-heart-overlay.animate {
    animation: heartBurst 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes heartBurst {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
    15% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.9;
    }
    30% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.9;
    }
    80% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.9;
    }
    100% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
}

/* Card Footer */
.mxg-ugc-card-footer {
    padding: 12px 16px;
    border-top: 1px solid #f4f4f5;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mxg-ugc-likes-bar {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mxg-like-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 18px;
    color: #18181b;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mxg-like-btn:hover {
    transform: scale(1.15);
}

.mxg-like-btn.liked {
    color: #ed4956;
    animation: likePop 0.3s ease;
}

@keyframes likePop {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.mxg-likes-count {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #18181b;
}

/* Featured Gear Tags */
.mxg-ugc-featured-gear {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.gear-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #71717a;
    font-weight: 500;
}

.gear-tag {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    background: #f4f4f5;
    color: #18181b;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid #e4e4e7;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.gear-tag:hover {
    background: #b59424;
    color: #ffffff;
    border-color: #b59424;
    box-shadow: 0 2px 8px rgba(181, 148, 36, 0.2);
}

/* ==========================================================================
   Section: Customer Reviews Masonry Wall Styling
   ========================================================================== */
.mxg-reviews-section {
    padding: 64px 0 128px 0;
    background-color: #ffffff;
    border-top: 1px solid #e4e4e7;
    position: relative;
    overflow: hidden;
}

.mxg-reviews-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: #09090b;
    text-align: center;
    margin-bottom: 48px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    padding: 0 16px;
}

@media (min-width: 1024px) {
    .mxg-reviews-title {
        font-size: 40px;
    }
}

.mxg-reviews-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-height: 900px;
    overflow-y: hidden;
    position: relative;
    padding: 0 16px;
}

@media (min-width: 1024px) {
    .mxg-reviews-container {
        flex-direction: row;
        justify-content: center;
        padding: 0 64px;
    }
}

/* Fade out gradient at the bottom */
.mxg-reviews-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
    pointer-events: none;
    z-index: 10;
}

.mxg-reviews-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
    flex: 1;
}

@media (min-width: 1024px) {
    .mxg-reviews-col {
        max-width: 348px;
    }
}

.mxg-review-card {
    background-color: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: var(--radius-lg, 8px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: max-content;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s ease;
}

.mxg-review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
}

.mxg-review-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
}

.mxg-review-headline {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #09090b;
    line-height: 1.3;
}

.mxg-review-stars {
    display: flex;
    gap: 4px;
    color: var(--accent, #d4af37);
    font-size: 12px;
}

.mxg-review-quote {
    font-size: 14px;
    color: #27272a;
    line-height: 1.6;
}

.mxg-reviewer-info {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mxg-reviewer-name-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mxg-reviewer-name {
    font-size: 14px;
    font-weight: 600;
    color: #09090b;
}

.mxg-verified-badge {
    display: inline-flex;
    align-items: center;
}

.mxg-reviewer-region {
    font-size: 12px;
    color: #71717a;
}

.mxg-review-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-top: 1px solid #e4e4e7;
    flex-shrink: 0;
}

.mxg-review-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mxg-review-card:hover .mxg-review-image img {
    transform: scale(1.03);
}

.mxg-ugc-container,
.mxg-reviews-wrapper {
    width: 100%;
    margin: 0 auto;
}

/* Gaming Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 12, 0.97);
    backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.search-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.search-close-btn {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 40px;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.search-close-btn:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

.search-overlay-content {
    width: 90%;
    max-width: 650px;
    text-align: center;
}

.search-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 24px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.search-overlay-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.search-input-wrapper {
    position: relative;
    width: 100%;
}

.search-overlay-form input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid #27272a;
    padding: 16px 0;
    font-size: 24px;
    color: var(--text-primary);
    font-family: 'Oxanium', sans-serif;
    text-align: center;
    letter-spacing: 0.05em;
    outline: none;
    transition: var(--transition);
}

.search-overlay-form input::placeholder {
    color: var(--text-muted);
}

.search-input-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff0055, #00ff66);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.search-overlay-form input:focus ~ .search-input-line {
    width: 100%;
}

.search-submit-btn {
    align-self: center;
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 12px 32px;
    font-family: 'Oxanium', sans-serif;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 4px;
}

.search-submit-btn:hover {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* Search Page Results Layout */
.search-pages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.search-page-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.search-page-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: transparent;
    transition: var(--transition);
}

.search-page-card:hover::before {
    background: #00ff66;
}

.search-page-card:hover {
    border-color: #3f3f46;
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(0, 255, 102, 0.03);
}

.search-page-card-title {
    font-size: 18px;
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.search-page-card-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.search-page-card-link {
    font-family: 'Oxanium', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.search-page-card-link:hover {
    color: #fff;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

/* MXG WATCH REVIEW BUTTON - START - DO NOT REMOVE THIS COMMENT */
.sec6-watch-btn {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #a1a1aa;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Oxanium', sans-serif;
    margin-top: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.sec6-watch-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.sec6-watch-btn:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(220, 39, 67, 0.5);
    transform: translateY(-2px);
}

.sec6-watch-btn:hover i {
    transform: scale(1.2) rotate(-5deg);
}
/* MXG WATCH REVIEW BUTTON - END - DO NOT REMOVE THIS COMMENT */

/* MXG Statistics Section */
.mxg-stats-section {
    background-color: #f9f9fb;
    position: relative;
    padding: 180px 0;
    border-top: 1px solid #e4e4e7;
    border-bottom: 1px solid #e4e4e7;
    overflow: hidden;
}

/* Elegant Light-Theme Pastel/RGB Flowing Borders */
.mxg-stats-section::before,
.mxg-stats-section::after {
    content: '';
    position: absolute;
    left: 0;
    width: 200%;
    height: 4px;
    background: linear-gradient(90deg, #ff6699, #66ffcc, #33ccff, #ff99ff, #ff6699);
    background-size: 50% 100%;
    animation: rgbFlow 10s linear infinite;
    z-index: 2;
}

.mxg-stats-section::before {
    top: 0;
}

.mxg-stats-section::after {
    bottom: 0;
}

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

/* Soft Floating Watercolor/Pastel Background Glows for Light Theme */
.mxg-stats-glow-left,
.mxg-stats-glow-right {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(130px);
    opacity: 0.18;
    pointer-events: none;
    z-index: 1;
}

.mxg-stats-glow-left {
    top: -200px;
    left: -200px;
    background: radial-gradient(circle, #ff6699, transparent 75%);
    animation: rgbGlowShiftLeft 15s ease-in-out infinite alternate;
}

.mxg-stats-glow-right {
    bottom: -200px;
    right: -200px;
    background: radial-gradient(circle, #33ccff, transparent 75%);
    animation: rgbGlowShiftRight 15s ease-in-out infinite alternate;
}

@keyframes rgbGlowShiftLeft {
    0% { transform: translate(0, 0) scale(1); filter: hue-rotate(0deg); }
    100% { transform: translate(120px, 60px) scale(1.15); filter: hue-rotate(360deg); }
}

@keyframes rgbGlowShiftRight {
    0% { transform: translate(0, 0) scale(1.15); filter: hue-rotate(360deg); }
    100% { transform: translate(-120px, -60px) scale(1); filter: hue-rotate(0deg); }
}

.mxg-stats-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 3;
}

.mxg-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 600px) {
    .mxg-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .mxg-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Premium White Cards with Pastel Glow Hover Effects */
.mxg-stat-item {
    background: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 12px;
    padding: 46px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.mxg-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 102, 153, 0.05), rgba(51, 204, 255, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.mxg-stat-item:hover {
    transform: translateY(-10px);
    border-color: rgba(181, 148, 36, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06), 0 0 25px rgba(51, 204, 255, 0.05);
}

.mxg-stat-item:hover::before {
    opacity: 1;
}

.mxg-stat-number {
    font-family: 'Oxanium', sans-serif;
    font-size: 54px;
    font-weight: 800;
    background: linear-gradient(135deg, #18181b 40%, #b59424 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    display: inline-block;
}

.mxg-stat-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #b59424;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 18px;
    display: block;
}

.mxg-stat-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #52525b;
    line-height: 1.6;
    margin: 0;
}


