/* ========================================
   GameWill - NYXI Style Rebuild
   Orange/Yellow accent replacing blue/purple
   ======================================== */

/* === Variables / Design Tokens === */
:root {
    /* Accent: Orange → Yellow gradient family */
    --gw-orange: #ff7a00;
    --gw-orange-light: #ff9500;
    --gw-yellow: #ffcc00;
    --gw-gold: #ffb800;
    --gw-amber: #ffaa33;

    /* Gradient tokens */
    --gradient-primary: linear-gradient(90deg, #ff7a00 0%, #ff9500 50%, #ffcc00 100%);
    --gradient-primary-reverse: linear-gradient(90deg, #ffcc00 0%, #ff9500 50%, #ff7a00 100%);
    --gradient-diagonal: linear-gradient(135deg, #ff7a00 0%, #ff9500 50%, #ffcc00 100%);
    --gradient-footer: linear-gradient(135deg, #ff7a00 0%, #ff5e00 50%, #ffcc00 100%);
    --gradient-radial: radial-gradient(circle at 30% 30%, rgba(255, 160, 0, 0.25), transparent 55%);

    /* Surfaces */
    --bg-black: #000000;
    --bg-dark: #0d0d0d;
    --bg-gray: #f5f5f7;
    --bg-white: #ffffff;
    --bg-card: #ffffff;
    --bg-overlay: rgba(0, 0, 0, 0.45);

    /* Text */
    --text-white: #ffffff;
    --text-black: #1d1d1f;
    --text-gray: #6e6e73;
    --text-muted: #86868b;
    --text-light: #f5f5f7;

    /* Lines */
    --border-light: rgba(255, 255, 255, 0.12);
    --border-dark: rgba(0, 0, 0, 0.08);

    /* Typography */
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-heading: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

    /* Spacing scale */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;
    --space-24: 96px;

    /* Layout */
    --container: 1400px;
    --announcement-height: 0px;
    --header-height: 72px;

    /* Motion */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-black);
    background: var(--bg-white);
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* === Utilities === */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

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

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

.section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gw-orange);
    margin-bottom: var(--space-3);
}

.section {
    padding: var(--space-20) 0;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    box-shadow: 0 4px 18px rgba(255, 122, 0, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 122, 0, 0.45);
    filter: brightness(1.05);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: var(--text-white);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: var(--gradient-primary);
    color: var(--text-white);
    border: none;
    min-width: 160px;
    padding: 14px 28px;
}

.btn-outline:hover {
    background: var(--gradient-primary-reverse);
    filter: brightness(1.05);
}

.btn-small {
    padding: 10px 20px;
    font-size: 13px;
}

/* === Announcement Bar === */
.announcement-bar {
    display: none;
    background: var(--bg-black);
    color: var(--text-white);
    text-align: center;
    padding: var(--space-3) var(--space-4);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1002;
    min-height: var(--announcement-height);
    align-items: center;
    justify-content: center;
}

.announcement-bar a {
    color: var(--text-white);
    transition: opacity var(--transition-fast);
}

.announcement-bar a:hover {
    opacity: 0.8;
}

.announcement-bar .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* === Header === */
.header {
    position: sticky;
    top: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1001;
    height: var(--header-height);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    position: relative;
}

.header-left {
    display: flex;
    align-items: center;
    gap: var(--space-5);
}

.menu-toggle {
    width: 44px;
    height: 44px;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    color: var(--text-white);
    border-radius: var(--radius-full);
    transition: background var(--transition-fast);
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: all var(--transition-base);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: var(--text-white);
}

.logo-mark {
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-white);
}

.header-right {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.header-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    border-radius: var(--radius-full);
    transition: background var(--transition-fast);
    position: relative;
}

.header-icon:hover {
    background: rgba(255, 255, 255, 0.1);
}

.header-icon svg {
    width: 22px;
    height: 22px;
}

.tk-link:hover {
    color: #ff0050;
    background: rgba(255, 0, 80, 0.1);
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: var(--gradient-primary);
    color: var(--text-white);
    font-size: 11px;
    font-weight: 800;
    border-radius: var(--radius-full);
    display: none;
    align-items: center;
    justify-content: center;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.desktop-nav a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    font-weight: 500;
    padding: var(--space-2) 0;
    position: relative;
    transition: color var(--transition-fast);
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--text-white);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    width: 100%;
}

/* === Mobile Menu === */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    background: var(--bg-black);
    z-index: 1003;
    transition: left var(--transition-slow);
    overflow-y: auto;
}

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

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

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

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-5) var(--space-6);
    border-bottom: 1px solid var(--border-light);
}

.mobile-menu-close {
    width: 44px;
    height: 44px;
    color: var(--text-white);
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-nav {
    padding: var(--space-6);
}

.mobile-menu-nav a {
    display: block;
    color: var(--text-white);
    font-size: 20px;
    font-weight: 600;
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--border-light);
    transition: color var(--transition-fast);
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a.active {
    color: var(--gw-orange-light);
}

/* === Hero Carousel === */
.hero {
    position: relative;
    width: 100%;
    height: calc(100svh - var(--announcement-height) - var(--header-height));
    min-height: 600px;
    max-height: 900px;
    background: var(--bg-black);
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

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

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.45) 40%, rgba(0,0,0,0.2) 100%);
}

.hero-content {
    position: absolute;
    bottom: 14%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 100%;
    max-width: 900px;
    padding: 0 var(--space-6);
    color: var(--text-white);
    text-align: center;
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.hero-slide.active .hero-content {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.hero-label {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--text-white);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-5);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.75rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-4);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 500;
    opacity: 0.92;
    margin: 0 auto var(--space-8);
    max-width: 600px;
    line-height: 1.55;
}

.hero-dots {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-3);
    z-index: 3;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all var(--transition-base);
}

.hero-dot.active {
    background: var(--gradient-primary);
    width: 32px;
    border-radius: 5px;
}

.hero-rewards {
    position: fixed;
    right: var(--space-6);
    bottom: 100px;
    z-index: 99;
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 12px 20px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(255, 122, 0, 0.4);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    transition: transform var(--transition-base);
}

.hero-rewards:hover {
    transform: translateY(-3px);
}

/* === Product Tabs === */
.product-tabs {
    background: var(--bg-white);
    padding-top: var(--space-12);
    padding-bottom: var(--space-4);
}

.tab-list {
    display: flex;
    gap: var(--space-3);
    justify-content: center;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-gray);
    background: var(--bg-gray);
    transition: all var(--transition-base);
}

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

.tab-btn:hover:not(.active) {
    background: #ebebed;
    color: var(--text-black);
}

/* === Product Grid === */
.products-section {
    background: var(--bg-white);
    padding-bottom: var(--space-20);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-5);
}

.product-card {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.product-card-image {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-gray);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.product-card-badge {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
    background: var(--gradient-primary);
    color: var(--text-white);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    z-index: 2;
}

.product-card-info {
    padding: var(--space-5);
}

.product-card-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: var(--space-2);
    line-height: 1.35;
}

.product-card-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--gw-orange);
    margin-bottom: var(--space-4);
}

.product-card-price .original {
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: var(--space-2);
    font-weight: 500;
}

.product-card-btn {
    width: 100%;
    padding: 12px;
    border-radius: var(--radius-full);
    background: var(--bg-black);
    color: var(--text-white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    transition: all var(--transition-base);
}

.product-card-btn:hover {
    background: var(--gradient-primary);
}

/* === Feature Showcase === */
.feature-showcase {
    background: var(--bg-gray);
    padding: var(--space-20) 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-6);
    align-items: stretch;
}

.showcase-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-8);
    color: var(--text-white);
    transition: transform var(--transition-base);
}

.showcase-card:hover {
    transform: translateY(-4px);
}

.showcase-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.showcase-card:hover img {
    transform: scale(1.04);
}

.showcase-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.1) 100%);
}

.showcase-content {
    position: relative;
    z-index: 2;
}

.showcase-label {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--text-white);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
}

.showcase-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-3);
}

.showcase-desc {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: var(--space-6);
    max-width: 440px;
    line-height: 1.6;
}

.showcase-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
}

.showcase-list-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 142px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-6);
    color: var(--text-white);
    transition: transform var(--transition-base);
}

.showcase-list-item:hover {
    transform: translateY(-3px);
}

.showcase-list-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.showcase-list-item:hover img {
    transform: scale(1.05);
}

.showcase-list-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.25) 60%, rgba(0,0,0,0) 100%);
}

.showcase-list-content {
    position: relative;
    z-index: 2;
}

.showcase-list-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: var(--space-1);
}

.showcase-list-link {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gw-yellow);
}

/* === Press Reviews === */
.press-section {
    background: var(--bg-black);
    color: var(--text-white);
    padding: var(--space-20) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.press-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-radial);
    opacity: 0.6;
}

.press-quote {
    position: relative;
    z-index: 2;
    max-width: 920px;
    margin: 0 auto var(--space-12);
}

.press-quote p {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: -0.01em;
}

.press-logos {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-10);
    flex-wrap: wrap;
    opacity: 0.85;
}

.press-logo {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--text-white);
}

/* === Horizontal Gallery === */
.horizontal-gallery {
    padding: var(--space-20) 0;
    background: var(--bg-white);
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--space-8);
}

.gallery-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--text-black);
}

.gallery-scroll {
    display: flex;
    gap: var(--space-5);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: var(--space-4);
    scrollbar-width: none;
}

.gallery-scroll::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    flex: 0 0 auto;
    scroll-snap-align: start;
    width: min(420px, 80vw);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.gallery-item.wide {
    width: min(720px, 85vw);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
    transition: transform var(--transition-slow);
}

.gallery-item.wide img {
    aspect-ratio: 16/10;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

.gallery-item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-6);
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--text-white);
}

.gallery-item-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: var(--space-1);
}

.gallery-item-desc {
    font-size: 13px;
    opacity: 0.9;
}

/* === News Section === */
.news-section {
    background: var(--bg-gray);
    padding: var(--space-20) 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.news-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.news-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.news-card-content {
    padding: var(--space-6);
}

.news-card-tag {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gw-orange);
    margin-bottom: var(--space-2);
}

.news-card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--text-black);
    line-height: 1.35;
    margin-bottom: var(--space-3);
}

.news-card-excerpt {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* === Social Wall === */
.social-section {
    background: var(--bg-white);
    padding: var(--space-20) 0;
}

.social-header {
    text-align: center;
    margin-bottom: var(--space-10);
}

.social-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--text-black);
}

.social-wall {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-3);
}

.social-item {
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

.social-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.social-item:hover img {
    transform: scale(1.08);
}

.social-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.social-item:hover .social-item-overlay {
    opacity: 1;
}

.social-item-overlay svg {
    width: 32px;
    height: 32px;
    color: var(--text-white);
}

/* === CTA Fullbleed === */
.cta-fullbleed {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-white);
    overflow: hidden;
}

.cta-fullbleed img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-fullbleed::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.cta-fullbleed-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: var(--space-8);
}

.cta-fullbleed-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--space-5);
    letter-spacing: -0.02em;
}

.cta-fullbleed-desc {
    font-size: 18px;
    opacity: 0.92;
    margin-bottom: var(--space-8);
    line-height: 1.6;
}

/* === Service Benefits === */
.benefits-section {
    background: var(--bg-gray);
    padding: var(--space-20) 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-5);
}

.benefit-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--space-8) var(--space-6);
    text-align: center;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-5);
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
}

.benefit-icon svg {
    width: 26px;
    height: 26px;
}

.benefit-title {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 800;
    color: var(--text-black);
    margin-bottom: var(--space-2);
}

.benefit-desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

.benefit-card.featured {
    background: var(--bg-black);
    color: var(--text-white);
    grid-column: span 1;
}

.benefit-card.featured .benefit-title {
    color: var(--text-white);
    font-size: 22px;
    line-height: 1.25;
}

.benefit-card.featured .benefit-desc {
    color: rgba(255, 255, 255, 0.75);
}

/* === Feature Blocks === */
.features-section {
    background: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.feature-block {
    text-align: center;
    padding: var(--space-8) var(--space-6);
    background: var(--bg-gray);
    border-radius: var(--radius-lg);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.feature-block:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.feature-block-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-5);
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
}

.feature-block-icon svg {
    width: 28px;
    height: 28px;
}

.feature-block-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--text-black);
    margin-bottom: var(--space-3);
}

.feature-block-desc {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.65;
}

/* === CTA Section === */
.cta-section {
    position: relative;
    background: var(--bg-black);
    color: var(--text-white);
    padding: var(--space-24) 0;
    text-align: center;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-radial);
    opacity: 0.5;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--space-5);
    letter-spacing: -0.02em;
}

.cta-desc {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: var(--space-8);
    line-height: 1.6;
}

/* === GW Section Base === */
.gw-section {
    padding: var(--space-20) 0;
}

.gw-section-header {
    margin-bottom: var(--space-16);
}

.gw-section-header--split {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: var(--space-8);
}

.gw-section-header-right {
    max-width: 400px;
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
}

.gw-section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--text-black);
}

.gw-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gw-orange);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.02em;
    transition: gap var(--transition-fast);
}

.gw-link:hover {
    gap: 10px;
}

/* === GW Products === */
.gw-products {
    background: var(--bg-white);
}

.gw-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
}

.gw-product-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--bg-gray);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.gw-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.gw-product-card__info {
    padding: var(--space-12) var(--space-10);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gw-product-card__eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gw-orange);
    margin-bottom: var(--space-4);
}

.gw-product-card__title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-5);
    color: var(--text-black);
}

.gw-product-card__features {
    list-style: none;
    margin-bottom: var(--space-8);
}

.gw-product-card__features li {
    font-size: 14px;
    color: var(--text-gray);
    padding: var(--space-1) 0;
    position: relative;
    padding-left: var(--space-4);
}

.gw-product-card__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gradient-primary);
}

.gw-product-card__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gw-product-card__price {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-black);
}

.gw-product-card__link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    color: var(--text-white);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.gw-product-card__link:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(255, 122, 0, 0.4);
}

.gw-product-card__media {
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    padding: 0;
    background: var(--bg-white);
    overflow: hidden;
}

.gw-product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* === GW Why === */
.gw-why {
    background: var(--bg-black);
    color: var(--text-white);
}

.gw-why .gw-section-title {
    color: var(--text-white);
}

.gw-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
}

.gw-why-card {
    text-align: center;
    padding: var(--space-10) var(--space-6);
}

.gw-why-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: rgba(255, 122, 0, 0.12);
    color: var(--gw-orange);
}

.gw-why-card__title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: var(--space-3);
}

.gw-why-card__desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* === GW Ecosystem === */
.gw-ecosystem {
    background: var(--bg-gray);
}

.gw-ecosystem-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.gw-ecosystem-text p {
    font-size: 16px;
    color: var(--text-gray);
    margin: var(--space-4) 0 var(--space-6);
}

.gw-ecosystem-media img {
    border-radius: var(--radius-lg);
    width: 100%;
    object-fit: cover;
}

/* === GW Stats === */
.gw-stats {
    background: var(--bg-black);
    color: var(--text-white);
}

.gw-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
}

.gw-stat-item {
    display: flex;
    align-items: center;
    gap: var(--space-5);
    padding: var(--space-6);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
}

.gw-stat-item__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(255, 122, 0, 0.1);
    color: var(--gw-orange);
    flex-shrink: 0;
}

.gw-stat-item__number {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gw-stat-item__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-top: 2px;
}

/* === GW Responsive === */
@media (max-width: 1024px) {
    .gw-products-grid {
        grid-template-columns: 1fr;
    }
    .gw-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gw-ecosystem-content {
        grid-template-columns: 1fr;
    }
    .gw-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gw-section-header--split {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .gw-product-card {
        grid-template-columns: 1fr;
    }
    .gw-product-card__media {
        padding: 0;
    }
    .gw-product-card__media img {
        max-height: none;
        object-fit: cover;
    }
    .gw-why-grid {
        grid-template-columns: 1fr;
    }
    .gw-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* === Showcase Section === */
.showcase-section {
    padding: var(--space-20) 0;
    background: var(--bg-white);
}

.showcase-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.showcase-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.showcase-text {
    padding: var(--space-8) 0;
}

.showcase-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-white);
    background: var(--gradient-primary);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
    display: inline-block;
}

.showcase-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-black);
    margin-bottom: var(--space-5);
}

.showcase-desc {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: var(--space-8);
}

@media (max-width: 1024px) {
    .showcase-block {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }
    
    .showcase-text {
        text-align: center;
        padding: 0;
    }
    
    .showcase-image {
        max-height: 400px;
        object-fit: cover;
    }
}

@media (max-width: 768px) {
    .showcase-section {
        padding: var(--space-16) 0;
    }
    
    .showcase-title {
        font-size: 1.75rem;
    }
}

/* === Footer === */
.footer {
    background: var(--gradient-footer);
    color: var(--text-white);
    padding: var(--space-16) 0 var(--space-8);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    filter: blur(60px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: var(--space-10);
    position: relative;
    z-index: 2;
    margin-bottom: var(--space-12);
}

.footer-col-title {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-5);
}

.footer-links li {
    margin-bottom: var(--space-3);
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--text-white);
    text-decoration: underline;
}

.footer-subscribe p {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: var(--space-4);
    line-height: 1.5;
}

.footer-form {
    display: flex;
    gap: var(--space-2);
}

.footer-form input {
    flex: 1;
    padding: var(--space-3) var(--space-4);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    outline: none;
}

.footer-form button {
    padding: var(--space-3) var(--space-5);
    background: var(--bg-black);
    color: var(--text-white);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    transition: background var(--transition-fast);
}

.footer-form button:hover {
    background: rgba(0, 0, 0, 0.8);
}

.footer-social {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-6);
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--text-white);
    color: var(--gw-orange);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: var(--space-6);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
}

.footer-payments {
    display: flex;
    gap: var(--space-2);
    align-items: center;
    flex-wrap: wrap;
}

.payment-icon {
    height: 26px;
    width: auto;
    background: var(--bg-white);
    border-radius: 4px;
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 800;
    color: var(--text-black);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========================================
   Product Detail Page
   ======================================== */
/* Page title banner — keeps header proportions consistent with home hero */
.page-hero {
    position: relative;
    background: var(--bg-black) url('../images/banner1.png') center/cover no-repeat;
    color: var(--text-white);
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-hero--docking {
    background-image: url('../images/banner2.png');
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.page-hero-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gw-yellow);
    margin-bottom: var(--space-3);
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.page-hero-subtitle {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    opacity: 0.9;
    line-height: 1.6;
    margin-top: var(--space-4);
}

.product-detail-hero {
    background: var(--bg-gray);
    padding: var(--space-10) 0 var(--space-16);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: var(--space-12);
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: calc(var(--header-height) + var(--space-6));
}

.product-main-image {
    aspect-ratio: 1;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: var(--space-8);
    transition: opacity var(--transition-base);
}

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-3);
}

.product-thumbnail {
    aspect-ratio: 1;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-base);
}

.product-thumbnail:hover,
.product-thumbnail.active {
    border-color: var(--gw-orange);
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: var(--space-3);
}

.product-detail-info {
    padding-top: var(--space-4);
}

.product-detail-label {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--text-white);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
}

.product-detail-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--text-black);
    line-height: 1.1;
    margin-bottom: var(--space-4);
}

.product-detail-price {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.product-detail-price .current {
    font-size: 36px;
    font-weight: 900;
    color: var(--gw-orange);
}

.product-detail-price .original {
    font-size: 22px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-detail-desc {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: var(--space-8);
}

.product-detail-features {
    margin-bottom: var(--space-8);
}

.product-detail-features h4 {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-4);
    color: var(--text-black);
}

.product-detail-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-2) 0;
    font-size: 17px;
    color: var(--text-gray);
}

.product-detail-features li::before {
    content: '';
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    background: var(--gradient-primary);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}

.product-detail-actions {
    display: flex;
    gap: var(--space-4);
    align-items: center;
    flex-wrap: wrap;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.quantity-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-black);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-full);
    overflow: hidden;
    background: var(--bg-white);
}

.quantity-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-black);
    background: transparent;
    transition: all var(--transition-fast);
}

.quantity-btn:hover {
    background: var(--bg-gray);
    color: var(--gw-orange);
}

.quantity-value {
    width: 50px;
    height: 42px;
    text-align: center;
    border: none;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-black);
    background: transparent;
    outline: none;
}

/* ========================================
   About Page
   ======================================== */
.about-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bg-black);
    color: var(--text-white);
    overflow: hidden;
}

.about-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-radial);
    opacity: 0.7;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: var(--space-12) var(--space-6);
}

.about-hero-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gw-yellow);
    margin-bottom: var(--space-4);
}

.about-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: var(--space-5);
    letter-spacing: -0.03em;
}

.about-hero-subtitle {
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.6;
}

.stats-section {
    background: var(--bg-white);
    padding: var(--space-16) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.stat-card {
    text-align: center;
    padding: var(--space-8) var(--space-6);
    background: var(--bg-gray);
    border-radius: var(--radius-lg);
    transition: transform var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-6px);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--space-2);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-gray);
}

.company-section {
    background: var(--bg-gray);
    padding: var(--space-20) 0;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto var(--space-12);
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 900;
    color: var(--text-black);
    margin-bottom: var(--space-4);
}

.section-header p {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.65;
}

.company-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
}

.company-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.company-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.company-card-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    margin-bottom: var(--space-5);
}

.company-card-icon svg {
    width: 26px;
    height: 26px;
}

.company-card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--text-black);
    margin-bottom: var(--space-3);
}

.company-card-desc {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.65;
}

/* ========================================
   Cart Modal
   ======================================== */
.cart-modal {
    position: fixed;
    top: 0;
    right: -460px;
    width: 460px;
    max-width: 100%;
    height: 100vh;
    background: var(--bg-white);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
    z-index: 10001;
    transition: right 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

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

.cart-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-6);
    border-bottom: 1px solid var(--border-dark);
}

.cart-modal-header h2 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 900;
}

.cart-close {
    width: 40px;
    height: 40px;
    font-size: 28px;
    color: var(--text-gray);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.cart-close:hover {
    background: var(--bg-gray);
    color: var(--text-black);
}

.cart-modal-items {
    flex: 1;
    overflow-y: auto;
    padding: var(--space-6);
}

.empty-cart {
    text-align: center;
    color: var(--text-muted);
    padding: var(--space-12) 0;
}

.cart-item {
    display: flex;
    gap: var(--space-4);
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--border-dark);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-md);
    background: var(--bg-gray);
}

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

.cart-item-details h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: var(--space-1);
}

.cart-item-details p {
    font-size: 15px;
    font-weight: 800;
    color: var(--gw-orange);
    margin-bottom: var(--space-3);
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.qty-btn {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-dark);
    border-radius: 4px;
    font-size: 14px;
    color: var(--text-black);
    transition: all var(--transition-fast);
}

.qty-btn:hover {
    border-color: var(--gw-orange);
    color: var(--gw-orange);
}

.remove-item {
    width: 28px;
    height: 28px;
    color: var(--text-muted);
    font-size: 20px;
    transition: color var(--transition-fast);
}

.remove-item:hover {
    color: #e74c3c;
}

.cart-modal-footer {
    padding: var(--space-6);
    border-top: 1px solid var(--border-dark);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-5);
    font-size: 18px;
    font-weight: 700;
}

.total-price {
    font-size: 24px;
    font-weight: 900;
    color: var(--gw-orange);
}

.checkout-btn {
    width: 100%;
}

/* Cart Notification */
.cart-notification {
    position: fixed;
    top: calc(var(--announcement-height) + var(--header-height) + var(--space-4));
    right: var(--space-6);
    background: var(--bg-white);
    border-left: 4px solid var(--gw-orange);
    border-radius: var(--radius-md);
    padding: var(--space-5);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transform: translateX(450px);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 340px;
}

.cart-notification.show {
    transform: translateX(0);
}

.cart-notification h4 {
    font-size: 13px;
    font-weight: 800;
    color: var(--gw-orange);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-1);
}

.cart-notification p {
    font-size: 14px;
    color: var(--text-gray);
}

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

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

@media (max-width: 1024px) {
    .menu-toggle {
        display: flex;
    }

    .desktop-nav {
        display: none;
    }

    .products-grid,
    .benefits-grid,
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .showcase-grid,
    .company-grid {
        grid-template-columns: 1fr;
    }

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

    .showcase-card {
        min-height: 380px;
    }

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

    .showcase-list-item {
        min-height: 180px;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .product-gallery {
        position: static;
    }

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

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

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    .container {
        padding: 0 var(--space-4);
    }

    .hero {
        min-height: 480px;
    }

    .hero-content {
        bottom: 16%;
        left: 50%;
        transform: translateX(-50%);
        padding: 0 var(--space-4);
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-dots {
        bottom: var(--space-5);
    }

    .hero-rewards {
        right: var(--space-4);
        bottom: 80px;
        padding: 10px 16px;
        font-size: 12px;
    }

    .products-grid,
    .benefits-grid,
    .news-grid,
    .stats-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .showcase-card {
        min-height: 340px;
        padding: var(--space-6);
    }

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

    .showcase-list-item {
        min-height: 160px;
    }

    .gallery-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-4);
    }

    .press-logos {
        gap: var(--space-6);
    }

    .press-logo {
        font-size: 18px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .product-detail-actions {
        flex-direction: column;
        align-items: center;
    }

    .buy-now-btn {
        width: 100%;
        max-width: 320px;
    }

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

@media (max-width: 480px) {
    .logo {
        font-size: 20px;
    }

    .logo-mark {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .header-icon {
        width: 38px;
        height: 38px;
    }

    .tab-btn {
        padding: 10px 18px;
        font-size: 12px;
    }

    .btn {
        padding: 12px 22px;
        font-size: 14px;
    }

    .product-card-info {
        padding: var(--space-4);
    }

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

/* === Scroll Reveal === */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* === WooCommerce Page Spacing === */
.woocommerce-page main#main-content {
    padding-top: 80px;
    padding-bottom: 80px;
}

.woocommerce-cart-form {
    margin-bottom: 60px;
}

.shop_table td {
    padding: 28px 16px;
}

.cart_totals {
    padding: 48px;
}

#order_review {
    padding: 48px;
}

#customer_details {
    gap: 60px;
}

.woocommerce-billing-fields,
.woocommerce-shipping-fields,
.woocommerce-additional-fields {
    margin-bottom: 48px;
}

.woocommerce-checkout h3 {
    margin-bottom: 32px;
}

.gw-cart-page,
.gw-checkout-page {
    padding: 60px 0 40px;
}

.gw-cart-empty .return-to-shop {
    margin-top: 30px;
}

.gw-cart-empty .return-to-shop .btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--gradient-primary);
    color: var(--text-white);
    border-radius: var(--radius-full);
    font-weight: 700;
    text-decoration: none;
}

/* === Hide ALL product listings on cart page === */
.woocommerce-cart .products,
.woocommerce-cart .cross-sells,
.woocommerce-cart .upsells,
.woocommerce-cart .related,
.woocommerce-cart .wc-block-grid,
.woocommerce-cart .wp-block-woocommerce-product-best-sellers,
.woocommerce-cart .wp-block-woocommerce-handpicked-products,
.woocommerce-cart .wp-block-woocommerce-product-category,
.woocommerce-cart .wp-block-woocommerce-product-new {
    display: none !important;
}

/* Hide ALL headings in cart page content EXCEPT the page title */
.woocommerce-cart .entry-content h2,
.woocommerce-cart .entry-content h3,
.woocommerce-cart .entry-content h4,
.woocommerce-cart .entry-content h5,
.woocommerce-cart .entry-content h6,
.woocommerce-cart .entry-content .wp-block-heading {
    display: none !important;
}

/* Hide any section/div that looks like a product listing block */
.woocommerce-cart .entry-content .wp-block-woocommerce,
.woocommerce-cart .entry-content .wc-block-product-grid,
.woocommerce-cart .entry-content section[class*="product"],
.woocommerce-cart .entry-content div[class*="product-grid"] {
    display: none !important;
}
