/* ===========================
   CSS VARIABLES
=========================== */
@import "header.css";
@import "footer.css";
@import "hero.css";
@import "buttons.css";
@import "cards.css";
@import "woocommerce.css";
@import "animations.css";
@import "responsive.css"; 
@import "categories.css";

:root {
    /* Brand Colors */
    --primary: #FF6A00;
    --secondary: #A100FF;
    --accent: #00B8FF;
    
    --background: #0B0B0B;
    --surface: #171717;
    --surface2: #202020;
    --surface3: #2A2A2A;
    
    --white: #FFFFFF;
    --text: #F5F5F5;
    --text-light: #BFBFBF;
    --text-muted: #888888;
    
    --border: #2E2E2E;
    --border-light: rgba(255,255,255,0.08);
    
    --radius: 18px;
    --radius-sm: 10px;
    --radius-lg: 30px;
    
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    
    --shadow: 0 10px 35px rgba(0,0,0,0.35);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 30px rgba(255,106,0,0.15);
    
    --gradient: linear-gradient(135deg, #00B8FF, #FF6A00, #A100FF);
    --gradient-hover: linear-gradient(135deg, #A100FF, #FF6A00, #00B8FF);
    --gradient-subtle: linear-gradient(135deg, rgba(0,184,255,0.1), rgba(255,106,0,0.1));
    
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Oxanium', sans-serif;
    
    --header-height: 85px;
    --max-width: 1320px;
}

/* ===========================
   RESET & BASE
=========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background: var(--background);
    color: var(--text);
    font-family: var(--font-primary);
    overflow-x: hidden;
    line-height: 1.7;
    min-height: 100vh;
}

/* Selection */
::selection {
    background: var(--primary);
    color: var(--white);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--surface);
}
::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 10px;
}

/* ===========================
   TYPOGRAPHY
=========================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h4 { font-size: clamp(1.25rem, 2vw, 2rem); }
h5 { font-size: clamp(1rem, 1.5vw, 1.5rem); }

p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* ===========================
   LINKS & BUTTONS
=========================== */

a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    background: var(--gradient);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-hover);
    opacity: 0;
    transition: var(--transition);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,106,0,0.3);
}

.btn:hover::before {
    opacity: 1;
}

.btn > * {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 18px 42px;
    font-size: 1.125rem;
}

/* ===========================
   UTILITY CLASSES
=========================== */

.container {
    width: min(var(--max-width), 92%);
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    display: inline-block;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient);
    border-radius: 10px;
}

/* Grid */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Flex */
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Text */
.text-center { text-align: center; }
.text-gradient { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.text-muted { color: var(--text-muted); }

/* Spacing */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* ===========================
   HEADER
=========================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: radial-gradient(circle at center, #24140c 0%, #17100b 35%, #0b0b0b 75%, #050505 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    height: var(--header-height);
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.site-logo {
    flex-shrink: 0;
}

.site-logo img {
    max-height: 80px;
    width: auto;
    transition: var(--transition);
}

.site-logo:hover img {
    transform: scale(1.05);
}

/* Navigation */
.main-menu {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
}

.main-menu li {
    position: relative;
}

.main-menu a {
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.main-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
}

.main-menu a:hover::after {
    width: 100%;
}

.main-menu a:hover {
    color: var(--white);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-actions .btn {
    padding: 10px 24px;
    font-size: 0.875rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 10px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===========================
   HERO SECTION
=========================== */

.hero {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,106,0,0.15), transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-title {
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title .highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ===========================
   ANIMATIONS
=========================== */

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-slide {
    animation: slideIn 0.8s ease forwards;
}

/* ===========================
   CARDS
=========================== */

.card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 30px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.card-text {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===========================
   PRODUCTS (WooCommerce)
=========================== */

.product-card {
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
    background: var(--surface2);
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 14px;
    border-radius: 50px;
    background: var(--gradient);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 1rem;
    margin-bottom: 8px;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-add-to-cart {
    width: 100%;
    margin-top: 15px;
}

/* ===========================
   FOOTER
=========================== */

.site-footer {
    padding: 60px 0 30px;
    background: var(--surface);
    border-top: 1px solid var(--border-light);
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .site-logo {
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 300px;
}

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--surface2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gradient);
    color: var(--white);
    transform: translateY(-3px);
}

/* ===========================
   RESPONSIVE
=========================== */

/* Tablets */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .main-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--surface);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transform: translateY(-120%);
        transition: var(--transition);
        border-bottom: 1px solid var(--border-light);
        backdrop-filter: blur(16px);
    }
    
    .main-menu.open {
        transform: translateY(0);
    }
    
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .hero {
        min-height: auto;
        padding: 60px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-buttons .btn {
        text-align: center;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .header-actions .btn {
        display: none;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        width: 95%;
        padding: 0 0.5rem;
    }
    
    .card {
        padding: 20px;
    }
    
    .product-info {
        padding: 15px;
    }
}

/* ===========================
   PRINT STYLES
=========================== */

@media print {
    .site-header,
    .site-footer,
    .hero-buttons {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* ===========================
   PREMIUM TRUST BAR - ROG + APPLE + LAMBORGHINI INSPIRED
=========================== */

.trust-bar {
    position: relative;
    background: linear-gradient(
        180deg,
        rgba(17, 17, 17, 0.95) 0%,
        rgba(11, 11, 11, 0.98) 100%
    );
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding: 40px 0;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Premium Animated Background */
.trust-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 106, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(161, 0, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(0, 184, 255, 0.02) 0%, transparent 40%);
    animation: trustBgPulse 10s ease-in-out infinite;
    pointer-events: none;
}

@keyframes trustBgPulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* Glowing line above */
.trust-bar::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 106, 0, 0.3) 20%,
        rgba(161, 0, 255, 0.3) 50%,
        rgba(0, 184, 255, 0.3) 80%,
        transparent 100%
    );
}

.trust-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: default;
}

/* Glass effect on hover */
.trust-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 106, 0, 0.05),
        rgba(161, 0, 255, 0.05)
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 16px;
}

.trust-item:hover::before {
    opacity: 1;
}

/* Hover glow border */
.trust-item::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 16px;
    background: linear-gradient(
        135deg,
        rgba(255, 106, 0, 0.2),
        rgba(161, 0, 255, 0.2),
        rgba(0, 184, 255, 0.2)
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.trust-item:hover::after {
    opacity: 1;
}

.trust-item:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(255, 106, 0, 0.15);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(255, 106, 0, 0.05);
}

/* Premium Icon */
.trust-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    position: relative;
    background: linear-gradient(
        135deg,
        rgba(255, 106, 0, 0.10),
        rgba(161, 0, 255, 0.06)
    );
    border: 1px solid rgba(255, 106, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Icon glow on hover */
.trust-item:hover .trust-icon {
    transform: scale(1.05);
    background: linear-gradient(
        135deg,
        rgba(255, 106, 0, 0.18),
        rgba(161, 0, 255, 0.10)
    );
    border-color: rgba(255, 106, 0, 0.25);
    box-shadow: 0 0 30px rgba(255, 106, 0, 0.10);
}

/* Icon gradient for SVG/emoji */
.trust-icon .icon {
    background: linear-gradient(135deg, #FF6A00, #A100FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 30px;
    line-height: 1;
}

/* Alternative - if using SVG icons */
.trust-icon svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: url(#trustGradient);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Content */
.trust-content {
    flex: 1;
}

.trust-item h4 {
    color: #fff;
    margin: 0 0 4px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Oxanium', sans-serif;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.trust-item:hover h4 {
    background: linear-gradient(135deg, #FF6A00, #A100FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trust-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* Counter animation support */
.trust-item .counter {
    font-family: 'Oxanium', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #FF6A00, #A100FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===========================
   TRUST BAR - VARIANT WITH ICONS
=========================== */

/* If using font awesome or custom icons */
.trust-icon .fa {
    font-size: 28px;
    background: linear-gradient(135deg, #FF6A00, #A100FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 1200px) {
    .trust-container {
        gap: 20px;
    }
    
    .trust-item {
        padding: 16px 20px;
    }
}

@media (max-width: 992px) {
    .trust-bar {
        padding: 30px 0;
    }
    
    .trust-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .trust-item {
        padding: 16px 18px;
        gap: 14px;
    }
    
    .trust-icon {
        width: 54px;
        height: 54px;
        min-width: 54px;
        font-size: 22px;
    }
    
    .trust-icon .icon {
        font-size: 24px;
    }
    
    .trust-item h4 {
        font-size: 0.95rem;
    }
    
    .trust-item p {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .trust-bar {
        padding: 24px 0;
    }
    
    .trust-container {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 16px;
    }
    
    .trust-item {
        padding: 14px 16px;
        gap: 12px;
        border-radius: 12px;
    }
    
    .trust-item:hover {
        transform: translateY(-3px) scale(1.01);
    }
    
    .trust-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 20px;
        border-radius: 12px;
    }
    
    .trust-icon .icon {
        font-size: 20px;
    }
    
    .trust-item h4 {
        font-size: 0.9rem;
    }
    
    .trust-item p {
        font-size: 0.75rem;
    }
}

/* ===========================
   DARK MODE ENHANCEMENTS
=========================== */

@media (prefers-color-scheme: dark) {
    .trust-bar {
        background: linear-gradient(
            180deg,
            rgba(17, 17, 17, 0.95) 0%,
            rgba(11, 11, 11, 0.98) 100%
        );
    }
}

/* ===========================
   ANIMATION - STAGGERED ENTRY
=========================== */

.trust-item {
    opacity: 0;
    transform: translateY(20px);
    animation: trustFadeIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.trust-item:nth-child(1) { animation-delay: 0.05s; }
.trust-item:nth-child(2) { animation-delay: 0.10s; }
.trust-item:nth-child(3) { animation-delay: 0.15s; }
.trust-item:nth-child(4) { animation-delay: 0.20s; }

@keyframes trustFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   SVG GRADIENT DEFINITION (if using SVG)
=========================== */

.trust-svg-gradient {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}