.elementor-kit-49{--e-global-color-primary:#FFB400;--e-global-color-secondary:#4CC9F0;--e-global-color-text:#F2F2F2;--e-global-color-accent:#17FF37;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;--e-global-typography-5535e8e-font-family:"Prompt";--e-global-typography-5535e8e-font-size:3rem;--e-global-typography-5535e8e-font-weight:700;--e-global-typography-c83476d-font-family:"Prompt";--e-global-typography-c83476d-font-size:2.5rem;--e-global-typography-c83476d-font-weight:bold;--e-global-typography-ff8f921-font-family:"Prompt";--e-global-typography-ff8f921-font-size:2.3rem;--e-global-typography-ff8f921-font-weight:bold;--e-global-typography-887fca2-font-family:""Inter"";--e-global-typography-887fca2-font-size:1rem;--e-global-typography-887fca2-font-weight:400;--e-global-typography-2142591-font-family:""Inter"";--e-global-typography-2142591-font-size:1rem;--e-global-typography-2142591-font-weight:700;--e-global-typography-6e52843-font-family:""Inter"";--e-global-typography-6e52843-font-size:1rem;--e-global-typography-6e52843-font-weight:500;}.elementor-kit-49 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-kit-49{--e-global-typography-c83476d-font-size:1.9rem;--e-global-typography-ff8f921-font-size:1.9rem;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS *//* ===== SKIPGRIND - TACTICAL RAINBOW-GLASS THEME ===== */
/* Upgraded: Multi-Color Gradients + Polygon Buttons + HUD Brackets */

/* ===== 1. COLOR VARIABLES ===== */
:root {
    /* Tactical Rainbow Palette */
    --red: #FF2D2D;
    --red-dark: #CC0000;
    --green: #00FF88;
    --green-dark: #00CC6A;
    --blue: #00B4FF;
    --blue-dark: #0077CC;
    --orange: #FF9500;
    --orange-dark: #CC7700;
    --yellow: #FFD600;
    --yellow-dark: #CCAA00;
    
    /* Backgrounds (Deeper tactical blue-black) */
    --dark-bg: #050608;
    --card-bg: #0E1012;
    --section-bg: #0A0C0D;
    
    /* Text & Borders */
    --text: #ffffff;
    --text-muted: #8A8F98;
    --border: rgba(255, 255, 255, 0.06);
    
    /* Gradients */
    --grad-rg: linear-gradient(135deg, var(--red), var(--orange));
    --grad-gb: linear-gradient(135deg, var(--green), var(--blue));
    --grad-bo: linear-gradient(135deg, var(--blue), var(--orange));
    --grad-yr: linear-gradient(135deg, var(--yellow), var(--red));
    --grad-multi: linear-gradient(135deg, var(--red), var(--orange), var(--yellow), var(--green), var(--blue));
    
    /* Tactical Cuts */
    --tactical-cut: 8px;
    --corner-size: 16px;
    --corner-thickness: 2px;
    --bracket-color: var(--orange); /* Default bracket color */
}

/* ===== 2. GLOBAL RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background: var(--dark-bg);
    color: var(--text);
    font-family: 'Rajdhani', 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== 3. TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
    color: var(--text);
}

/* ===== 4. CURSOR GLOW EFFECT ===== */
.cursor-glow {
    width: 60px;
    height: 60px;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 149, 0, 0.3) 0%, rgba(255, 94, 0, 0.1) 50%, transparent 70%);
    border-radius: 50%;
    filter: blur(15px);
    transition: transform 0.1s ease-out;
    will-change: transform;
}

/* ===== 5. PREMIUM BUTTON EFFECTS - TACTICAL ANGULAR ===== */
.elementor-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
button,
input[type="submit"] {
    position: relative !important;
    background: var(--grad-rg) !important; /* Replaced orange with Red-Orange gradient */
    border: none !important;
    
    /* ANGULAR CLIP-PATH CUTS */
    border-radius: 0px !important; /* Set to 0 for clean clip-path cuts */
    clip-path: polygon(
        var(--tactical-cut) 0, 100% 0,
        100% calc(100% - var(--tactical-cut)), 
        calc(100% - var(--tactical-cut)) 100%,
        0 100%, 0 var(--tactical-cut)
    ) !important;
    
    color: #ffffff !important;
    font-family: 'Orbitron', 'Rajdhani', sans-serif !important;
    font-weight: 800 !important;
    font-size: 14px !important;
    padding: 14px 32px !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    cursor: pointer !important;
    overflow: visible !important;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
    box-shadow: 
        0 4px 15px rgba(255, 45, 45, 0.4),
        inset 0 1px 0 rgba(255,255,255,0.15) !important;
    z-index: 1 !important;
}

/* HUD-style top accent line */
.elementor-button::before,
.woocommerce a.button::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    opacity: 0.6;
    z-index: 2;
}

.elementor-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
    transform: translateY(-5px) scale(1.02) !important;
    box-shadow: 
        0 15px 35px rgba(255, 45, 45, 0.5),
        0 0 25px rgba(255, 149, 0, 0.25) !important;
    filter: brightness(1.15) !important;
}

.elementor-button::after,
.woocommerce a.button::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
    z-index: 0;
}

.elementor-button:hover::after,
.woocommerce a.button:hover::after {
    left: 100%;
}

.button-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: buttonRipple 0.6s ease-out;
    pointer-events: none;
}

@keyframes buttonRipple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Cart Button - Tactical Green/Blue Variant */
.woocommerce a.button.add_to_cart_button,
.woocommerce button.single_add_to_cart_button {
    background: var(--grad-gb) !important; /* Replaced orange with Green-Blue gradient */
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3) !important;
}

.woocommerce a.button.add_to_cart_button:hover,
.woocommerce button.single_add_to_cart_button:hover {
    box-shadow: 0 15px 35px rgba(0, 255, 136, 0.5), 0 0 25px rgba(0, 180, 255, 0.25) !important;
}

/* --- Button Color Variants (Add CSS classes in Elementor) --- */
.btn-green { background: var(--grad-gb) !important; box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3) !important; }
.btn-green:hover { box-shadow: 0 15px 35px rgba(0, 255, 136, 0.4), 0 0 25px rgba(0, 180, 255, 0.2) !important; }

.btn-blue { background: var(--grad-bo) !important; box-shadow: 0 4px 15px rgba(0, 180, 255, 0.3) !important; }
.btn-blue:hover { box-shadow: 0 15px 35px rgba(0, 180, 255, 0.4), 0 0 25px rgba(255, 140, 0, 0.2) !important; }

.btn-yellow { background: var(--grad-yr) !important; box-shadow: 0 4px 15px rgba(255, 214, 0, 0.3) !important; color: #000 !important; }
.btn-yellow:hover { box-shadow: 0 15px 35px rgba(255, 214, 0, 0.4), 0 0 25px rgba(255, 45, 45, 0.2) !important; }

.btn-multi { background: var(--grad-multi) !important; box-shadow: 0 4px 15px rgba(255, 149, 0, 0.3) !important; }
.btn-multi:hover { box-shadow: 0 15px 35px rgba(255, 149, 0, 0.4) !important; }


/* ===== 6. INTERACTIVE CARDS - TACTICAL CORNER BRACKETS ===== */
.game-card,
.product-card,
.feature-box,
.elementor-widget-icon-box,
.woocommerce ul.products li.product {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 0 !important; 
    clip-path: polygon(
        var(--tactical-cut) 0, 100% 0,
        100% calc(100% - var(--tactical-cut)), 
        calc(100% - var(--tactical-cut)) 100%,
        0 100%, 0 var(--tactical-cut)
    );
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: visible;
    cursor: pointer;
}

/* TACTICAL CORNER BRACKETS */
.game-card::before, .product-card::before, .feature-box::before,
.elementor-widget-icon-box::before, .woocommerce ul.products li.product::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px;
    width: var(--corner-size);
    height: var(--corner-size);
    border-top: var(--corner-thickness) solid var(--bracket-color);
    border-left: var(--corner-thickness) solid var(--bracket-color);
    z-index: 3;
    pointer-events: none;
    transition: all 0.4s;
}

.game-card::after, .product-card::after, .feature-box::after,
.elementor-widget-icon-box::after, .woocommerce ul.products li.product::after {
    content: '';
    position: absolute;
    bottom: -1px; right: -1px;
    width: var(--corner-size);
    height: var(--corner-size);
    border-bottom: var(--corner-thickness) solid var(--bracket-color);
    border-right: var(--corner-thickness) solid var(--bracket-color);
    z-index: 3;
    pointer-events: none;
    transition: all 0.4s;
}

/* Card Hover States */
.game-card:hover, .product-card:hover, .feature-box:hover,
.elementor-widget-icon-box:hover, .woocommerce ul.products li.product:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--bracket-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 149, 0, 0.1);
}

.game-card:hover::before, .game-card:hover::after,
.product-card:hover::before, .product-card:hover::after,
.woocommerce ul.products li.product:hover::before, .woocommerce ul.products li.product:hover::after {
    width: calc(var(--corner-size) + 5px);
    height: calc(var(--corner-size) + 5px);
    filter: brightness(1.5);
}

/* --- Bracket Color Variants (Add CSS classes in Elementor) --- */
.bracket-red { --bracket-color: var(--red); }
.bracket-green { --bracket-color: var(--green); }
.bracket-blue { --bracket-color: var(--blue); }
.bracket-yellow { --bracket-color: var(--yellow); }

/* Top Accent Line on Hover */
.top-accent { position: relative; }
.top-accent::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--grad-multi);
    background-size: 200% 100%;
    transform: scaleX(0);
    transition: transform 0.4s;
    z-index: 1;
}
.top-accent:hover::before {
    transform: scaleX(1);
    animation: gradientFlow 2s linear infinite;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ===== 7. WOOCOMMERCE PRODUCTS ===== */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 0 !important;
    padding: 0 !important;
}

.woocommerce ul.products li.product {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 0 !important;
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
    padding: 20px;
    transition: all 0.4s ease;
    margin: 0 !important;
}

.woocommerce ul.products li.product img {
    border-radius: 0 !important;
    clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
    transition: transform 0.5s;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.woocommerce ul.products li.product:hover img { transform: scale(1.1); }

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-weight: 700; font-size: 1.1rem; margin: 15px 0 10px; color: var(--text);
}
.woocommerce ul.products li.product:hover .woocommerce-loop-product__title { color: var(--green); }

.woocommerce ul.products li.product .price {
    color: var(--green); font-weight: 700; font-size: 1.3rem;
}

/* ===== 8. SALE BADGE - TACTICAL POLYGON ===== */
.woocommerce span.onsale {
    background: var(--grad-rg) !important;
    border-radius: 0 !important;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%) !important;
    width: auto !important; height: auto !important;
    min-height: 0 !important; min-width: 0 !important;
    padding: 5px 15px !important;
    margin: 0 !important;
    line-height: 1.4 !important;
    text-align: center !important;
    font-family: 'Orbitron', sans-serif !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 5px 20px rgba(255, 45, 45, 0.4) !important;
    z-index: 10 !important;
    position: absolute !important;
    top: 15px !important; right: 15px !important; left: auto !important;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
}

.woocommerce ul.products li.product:hover span.onsale {
    transform: scale(1.1) !important;
    box-shadow: 0 10px 30px rgba(255, 45, 45, 0.6) !important;
}

/* ===== 9. CART QUANTITY BUTTONS ===== */
.woocommerce .quantity {
    display: flex !important; align-items: center !important; gap: 0 !important;
    border: 2px solid var(--border) !important;
    border-radius: 0 !important;
    clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px) !important;
    overflow: hidden !important; background: var(--card-bg) !important;
}

.woocommerce .quantity input.qty {
    width: 50px !important; height: 40px !important; text-align: center !important;
    border: none !important; border-left: 1px solid var(--border) !important;
    border-right: 1px solid var(--border) !important; background: var(--card-bg) !important;
    color: var(--text) !important; font-size: 14px !important; font-weight: 600 !important;
    padding: 0 !important; margin: 0 !important;
}

.woocommerce .quantity .minus, .woocommerce .quantity .plus {
    width: 35px !important; height: 40px !important;
    background: rgba(0, 255, 136, 0.1) !important; border: none !important;
    color: var(--green) !important; font-size: 16px !important; font-weight: 700 !important;
    cursor: pointer !important; transition: all 0.3s !important;
    display: flex !important; align-items: center !important; justify-content: center !important;
}

.woocommerce .quantity .minus:hover, .woocommerce .quantity .plus:hover {
    background: var(--green) !important; color: #000 !important;
}

/* ===== 10. SEARCH BAR ===== */
.elementor-search-form__input {
    background: var(--card-bg) !important; border: 2px solid var(--border) !important;
    border-radius: 0 !important; clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px) !important;
    padding: 14px 20px !important; font-size: 1rem !important; color: var(--text) !important;
    transition: all 0.4s !important;
}

.elementor-search-form__input:focus {
    border-color: var(--blue) !important;
    box-shadow: 0 0 0 3px rgba(0, 180, 255, 0.2) !important;
    outline: none !important;
}

.elementor-search-form__submit {
    background: var(--grad-gb) !important; border-radius: 0 !important;
    clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px) !important;
    transition: all 0.3s !important; color: #000 !important; font-weight: 700 !important;
}

.elementor-search-form__submit:hover {
    transform: scale(1.05); filter: brightness(1.2);
}

/* ===== 11. SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark-bg); }
::-webkit-scrollbar-thumb { background: var(--grad-gb); border-radius: 0; clip-path: polygon(0 0, 100% 0, 80% 100%, 20% 100%); }
::-webkit-scrollbar-thumb:hover { background: var(--grad-bo); }

::selection { background: rgba(0, 180, 255, 0.3); color: #ffffff; }
::-moz-selection { background: rgba(0, 180, 255, 0.3); color: #ffffff; }

/* ===== 12. RESPONSIVE ===== */
@media (max-width: 1024px) {
    .woocommerce ul.products { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .woocommerce ul.products { grid-template-columns: repeat(2, 1fr); gap: 15px !important; }
    h1 { font-size: 28px !important; } h2 { font-size: 24px !important; }
    .elementor-button { font-size: 12px !important; padding: 10px 24px !important; --tactical-cut: 6px !important; }
}
@media (max-width: 480px) {
    .woocommerce ul.products { grid-template-columns: 1fr; }
    h1 { font-size: 24px !important; }
    .elementor-button { font-size: 11px !important; padding: 8px 18px !important; --tactical-cut: 5px !important; }
}/* End custom CSS */