﻿/*
Theme Name: YXY Theme Final
Theme URI: https://yxycompany.example.com/
Author: Anogh
Author URI: https://yxycompany.example.com/
Description: A refreshed variation of YXY theme lighter look and new colors.
Version: 3.00
Text Domain: yxy-theme-final
*/

/* ==========================================================================
   DESIGN SYSTEM: Precision Industrial Aesthetic
   ========================================================================== */

:root {
    /* Executive Light Theme Palette */
    --yxy-dark-950: #ffffff;
    /* Re-mapped to White */
    --yxy-dark-900: #f8fafc;
    /* Re-mapped to Slate-50 */
    --yxy-dark-800: #f1f5f9;
    /* Re-mapped to Slate-100 */
    --yxy-dark-700: #e2e8f0;
    /* Re-mapped to Slate-200 */
    --yxy-dark-600: #cbd5e1;
    /* Re-mapped to Slate-300 */

    /* Professional Text Colors */
    --yxy-slate-50: #0f172a;
    /* Deep Navy for Headings */
    --yxy-slate-100: #1e293b;
    --yxy-slate-200: #334155;
    --yxy-slate-300: #475569;
    /* Body Copy */
    --yxy-slate-400: #64748b;
    /* Muted Text */
    --yxy-slate-500: #94a3b8;

    /* Engineering Blue Accents */
    --yxy-cyan-500: #0ea5e9;
    /* Sky Blue 500 */
    --yxy-cyan-400: #0284c7;
    /* Sky Blue 600 */
    --yxy-cyan-300: #0369a1;
    /* Sky Blue 700 */
    --yxy-cyan-glow: rgba(14, 165, 233, 0.15);
    /* Subtle Blue Glow */

    /* Amber Warning/CTA */
    --yxy-amber-500: #f59e0b;
    --yxy-amber-400: #d97706;
    /* Darker amber for light bg */
    --yxy-amber-glow: rgba(245, 158, 11, 0.2);

    /* Premium Purple */
    --yxy-purple-500: #4f46e5;
    /* Indigo */
    --yxy-purple-400: #4338ca;
    --yxy-purple-glow: rgba(79, 70, 229, 0.15);

    /* Industrial Blue */
    --yxy-blue-500: #2563eb;
    --yxy-blue-400: #1d4ed8;
    --yxy-blue-glow: rgba(37, 99, 235, 0.15);

    /* Typography */
    --font-display: 'Archivo Black', 'Impact', system-ui, sans-serif;
    --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;

    /* Shadows (Soft & Professional) */
    --shadow-glow-cyan: 0 0 0 1px rgba(14, 165, 233, 0.2), 0 4px 6px -1px rgba(14, 165, 233, 0.1);
    --shadow-glow-purple: 0 0 0 1px rgba(79, 70, 229, 0.2), 0 4px 6px -1px rgba(79, 70, 229, 0.1);
    --shadow-glow-amber: 0 0 0 1px rgba(245, 158, 11, 0.2), 0 4px 6px -1px rgba(245, 158, 11, 0.1);

    --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-card-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);

    /* Glass Effects (Clear & Clean) */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(226, 232, 240, 0.8);
    --glass-backdrop: blur(12px);

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Noise texture overlay for backgrounds */
.yxy-noise::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
}

/* Staggered animation keyframes */
@keyframes yxy-fade-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes yxy-fade-scale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes yxy-glow-pulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

@keyframes yxy-float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes yxy-gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes yxy-border-glow {

    0%,
    100% {
        border-color: var(--yxy-cyan-500);
        box-shadow: 0 0 20px var(--yxy-cyan-glow);
    }

    50% {
        border-color: var(--yxy-purple-500);
        box-shadow: 0 0 20px var(--yxy-purple-glow);
    }
}

/* Reveal animation classes */
.yxy-reveal {
    opacity: 0;
    transform: translateY(30px);
}

.yxy-reveal.is-visible {
    animation: yxy-fade-up 0.8s var(--ease-out-expo) forwards;
}

.yxy-stagger-1 {
    animation-delay: 0.1s;
}

.yxy-stagger-2 {
    animation-delay: 0.2s;
}

.yxy-stagger-3 {
    animation-delay: 0.3s;
}

.yxy-stagger-4 {
    animation-delay: 0.4s;
}

.yxy-stagger-5 {
    animation-delay: 0.5s;
}

/* Text gradient utility */
.text-gradient {
    background: linear-gradient(135deg, var(--yxy-cyan-400), var(--yxy-purple-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-amber {
    background: linear-gradient(135deg, var(--yxy-amber-400), #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glass card utility */
.yxy-glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
}

/* ==========================================================================
   END DESIGN SYSTEM
   ========================================================================== */

.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    /* Fixed 3 columns as requested */
    gap: 32px;
    list-style: none;
    padding: 0;
    margin: 0;
}

@media (max-width: 1024px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }
}

.woocommerce ul.products li.product {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
    clear: none !important;
    position: relative;
    overflow: hidden;
}

.woocommerce ul.products:before,
.woocommerce ul.products:after {
    display: none !important;
    content: none !important;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 99, 235, 0.5);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.woocommerce ul.products li.product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.woocommerce ul.products li.product:hover::before {
    opacity: 1;
}

.woocommerce ul.products li.product img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    border-radius: 16px;
    margin-bottom: 8px;
    transition: transform 0.5s ease;
    mix-blend-mode: multiply;
}

.woocommerce ul.products li.product:hover img {
    transform: scale(1.08);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    color: #1e293b;
    margin: 0;
    font-family: 'Outfit', system-ui, sans-serif;
    /* Assuming font is available, else falls back */
}

.woocommerce ul.products li.product .price {
    font-weight: 600;
    color: #0f172a;
    margin-top: -4px;
    font-size: 15px;
}

.woocommerce ul.products li.product .button {
    width: 100%;
    text-align: center;
    border-radius: 999px;
    background: #0f172a;
    color: #f8fafc;
    font-size: 13px;
    padding: 9px 12px;
    transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.woocommerce ul.products li.product .button:hover {
    background: #020617;
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
}

.woocommerce ul.products li.product .button.is-added {
    background: #2563eb;
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.35);
}

.woocommerce ul.products li.product .yxy-view-cart-button,
.woocommerce ul.products li.product a.added_to_cart {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 8px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    padding: 8px 12px;
    font-size: 13px;
    color: #0f172a;
    background: rgba(255, 255, 255, 0.9);
    transition: border-color 140ms ease, color 140ms ease, background-color 140ms ease;
}

.woocommerce ul.products li.product .yxy-view-cart-button:hover,
.woocommerce ul.products li.product a.added_to_cart:hover {
    border-color: rgba(37, 99, 235, 0.6);
    color: #2563eb;
    background: #fff;
}

/* Custom view button styling */
/* Modern View Button */
.woocommerce ul.products li.product .yxy-view-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: auto;
    border-radius: 12px;
    border: none;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 0.02em;
}

.woocommerce ul.products li.product .yxy-view-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: #ffffff;
}

/* Make product cards clickable with JavaScript */
.woocommerce ul.products li.product {
    cursor: pointer;
}

/* Prevent click events on links within product cards from bubbling up */
.woocommerce ul.products li.product a,
.woocommerce ul.products li.product .yxy-view-button {
    cursor: pointer;
    position: relative;
    z-index: 10;
}

/* Hide any remaining add to cart buttons as fallback */
.woocommerce ul.products li.product .add_to_cart_button,
.woocommerce ul.products li.product .button.add_to_cart,
.woocommerce ul.products li.product .ajax_add_to_cart,
.woocommerce-page ul.products li.product .add_to_cart_button,
.woocommerce-page ul.products li.product .button.add_to_cart,
.woocommerce-page ul.products li.product .ajax_add_to_cart,
.yxy-modern-product-card .add_to_cart_button,
.yxy-modern-product-card .button.add_to_cart,
.yxy-modern-product-card .ajax_add_to_cart {
    display: none !important;
    visibility: hidden !important;
}



/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--yxy-slate-50);
    background: var(--yxy-dark-900);
    line-height: 1.6;
}

body.yxy-nav-open {
    overflow: hidden;
}

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

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

a:hover {
    color: var(--yxy-cyan-400);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.yxy-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(9, 9, 11, 0.92);
    backdrop-filter: blur(14px);
    color: #e5e7eb;
    border-bottom: 1px solid rgba(31, 41, 55, 0.8);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.65);
}

.yxy-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    position: relative;
    gap: 16px;
}

.yxy-header-right {
    display: flex;
    align-items: center;
    gap: 32px;
    z-index: 60;
    transition: transform 200ms ease, opacity 200ms ease;
    margin-left: auto;
}

.yxy-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.yxy-header-cart {
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    padding: 6px 18px;
    font-size: 13px;
    transition: border-color 150ms ease, color 150ms ease, background-color 150ms ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.yxy-header-cart:hover {
    border-color: rgba(59, 130, 246, 0.9);
    background-color: rgba(59, 130, 246, 0.08);
    color: #93c5fd;
}

.yxy-header-cart-icon svg {
    display: block;
}

.yxy-header-cart-text {
    font-weight: 600;
}

.yxy-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    background: transparent;
    color: inherit;
    gap: 6px;
    cursor: pointer;
    transition: border-color 150ms ease, background-color 150ms ease;
}

.yxy-nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 200ms ease, opacity 200ms ease;
}

.yxy-nav-toggle.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.yxy-nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.yxy-nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.yxy-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.65);
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease;
    z-index: 40;
    display: none;
}

body.yxy-nav-open .yxy-nav-overlay {
    opacity: 1;
    pointer-events: auto;
}

body.yxy-nav-ready .yxy-nav-overlay {
    display: block;
}

.yxy-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 18px;
    flex-shrink: 0;
}

.yxy-logo img {
    max-height: 58px;
    width: auto;
    height: auto;
    display: block;
    flex-shrink: 0;
}

.yxy-logo-wordmark {
    font-size: 24px;
    letter-spacing: 0.18em;
    color: #f8fafc;
    white-space: nowrap;
    text-transform: uppercase;
    line-height: 1.1;
}

.yxy-header a {
    color: inherit;
}

.yxy-logo a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.yxy-nav {
    display: flex;
    gap: 24px;
    font-size: 16.8px;
}

.yxy-nav li {
    list-style: none;
    display: flex;
    align-items: center;
    position: relative;
}

.yxy-nav li+li::before {
    content: "|";
    margin-right: 18px;
    color: rgba(226, 232, 240, 0.35);
    font-weight: 300;
}

.yxy-nav a {
    position: relative;
    padding-bottom: 2px;
    font-weight: 500;
    transition: color 140ms ease;
}

.yxy-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(to right, #38bdf8, #6366f1);
    transform-origin: left;
    transform: scaleX(0.4);
    opacity: 0;
    transition: transform 150ms ease-out, opacity 150ms ease-out;
}

.yxy-nav a:hover::after,
.yxy-nav a:focus-visible::after {
    opacity: 1;
    transform: scaleX(1);
}

.yxy-nav a:hover,
.yxy-nav a:focus-visible {
    color: #cbd5f5;
}

.yxy-hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top left, #1e40af, #020617 55%);
    color: #e5e7eb;
    isolation: isolate;
}

.yxy-hero-modern {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
    padding: 100px 0 60px;
    min-height: 90vh;
}

.yxy-hero-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 30%, var(--yxy-cyan-glow), transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 20%, var(--yxy-purple-glow), transparent 45%);
    filter: blur(100px);
    z-index: 0;
    opacity: 0.6;
    animation: yxy-glow-pulse 8s ease-in-out infinite;
}

#yxy-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.yxy-hero-modern-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 48px;
    align-items: center;
}

.yxy-hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(48px, 5.5vw, 76px);
    font-weight: 400;
    color: var(--yxy-slate-50);
    letter-spacing: -0.03em;
    line-height: 1.05;
    text-shadow: none;
    /* Removed neon glow */
}

/* Text Gradient for Light Theme */
.text-gradient,
.text-gradient-amber {
    background: linear-gradient(135deg, var(--yxy-cyan-500) 0%, var(--yxy-purple-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.yxy-hero-typed {
    position: relative;
    display: inline-block;
    padding-right: 10px;
}

.yxy-hero-typed::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    width: 3px;
    height: 80%;
    background: var(--yxy-cyan-400);
    animation: yxy-caret-blink 0.9s steps(1) infinite;
    box-shadow: 0 0 10px var(--yxy-cyan-glow);
}

@keyframes yxy-caret-blink {

    0%,
    45% {
        opacity: 1;
    }

    55%,
    100% {
        opacity: 0;
    }
}

.yxy-eyebrow {
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 500;
    color: var(--yxy-cyan-400);
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 999px;
}

.yxy-eyebrow::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--yxy-cyan-400);
    border-radius: 50%;
    animation: yxy-glow-pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--yxy-cyan-glow);
}

.yxy-hero-content p {
    margin-top: 20px;
    color: var(--yxy-slate-400);
    max-width: 520px;
    font-size: 18px;
    line-height: 1.7;
}

.yxy-hero-actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.yxy-hero-stats {
    margin-top: 32px;
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    row-gap: 16px;
}

.yxy-hero-stats>div {
    min-width: 140px;
}

.yxy-hero-stats span {
    display: block;
}

.yxy-hero-stats span:first-child {
    font-size: 32px;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--yxy-slate-50);
}

.yxy-hero-stats small,
.yxy-stat-label {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--yxy-slate-400);
}

.yxy-stat-item {
    padding: 16px 20px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    text-align: center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.yxy-stat-item:hover {
    border-color: var(--yxy-cyan-500);
    box-shadow: 0 0 20px var(--yxy-cyan-glow);
}

.yxy-stat-number {
    font-size: 28px;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--yxy-cyan-400);
    display: block;
}

.yxy-hero-visual {
    position: relative;
}

.yxy-hero-gallery {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    box-shadow: 0 40px 90px rgba(15, 23, 42, 0.35);
    height: 420px;
}

.yxy-hero-gallery-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 800ms ease, transform 800ms ease;
    transform: scale(1.03);
}

.yxy-hero-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.yxy-hero-gallery-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.yxy-hero-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.1), rgba(15, 23, 42, 0.4));
}

.yxy-snapshot {
    padding-top: 36px;
}

.yxy-snapshot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.yxy-snapshot-grid h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.yxy-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.yxy-capabilities-grid article {
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
}

.yxy-industries-marquee {
    overflow: hidden;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: rgba(255, 255, 255, 0.7);
    padding: 12px 0;
    position: relative;
}

.yxy-industries-track {
    display: flex;
    gap: 40px;
    animation: marquee 18s linear infinite;
    font-weight: 600;
    color: #0f172a;
    width: max-content;
}

.yxy-industries-track span {
    white-space: nowrap;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.yxy-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.yxy-case-grid article {
    padding: 28px;
    border-radius: 24px;
    background: #0f172a;
    color: #e2e8f0;
    box-shadow: 0 35px 80px rgba(15, 23, 42, 0.45);
}

.yxy-case-pill {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 11px;
    color: #a5b4fc;
    margin-bottom: 14px;
}

.yxy-case-grid ul {
    margin-top: 16px;
    padding-left: 22px;
}

.yxy-reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 600ms ease, transform 600ms ease;
}

.yxy-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.yxy-hero::before,
.yxy-hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(60px);
    opacity: 0.35;
    pointer-events: none;
}

.yxy-hero::before {
    width: 260px;
    height: 260px;
    background: #38bdf8;
    top: -80px;
    left: -40px;
}

.yxy-hero::after {
    width: 260px;
    height: 260px;
    background: #4f46e5;
    bottom: -90px;
    right: -30px;
}

.yxy-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 40px;
    padding: 72px 0 64px;
}

.yxy-hero-inner>div:first-child {
    max-width: 520px;
}

.yxy-hero-title {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    letter-spacing: 0.03em;
}

.yxy-hero-subtitle {
    margin-top: 16px;
    max-width: 460px;
    color: #9ca3af;
}

.yxy-hero-cta {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.yxy-btn-primary {
    background: linear-gradient(135deg, var(--yxy-cyan-500), var(--yxy-blue-500));
    color: var(--yxy-dark-900);
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 0 30px var(--yxy-cyan-glow), 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.yxy-btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--yxy-cyan-400), var(--yxy-purple-500));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.yxy-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px var(--yxy-cyan-glow), 0 20px 40px rgba(0, 0, 0, 0.4);
    color: var(--yxy-dark-900);
}

.yxy-btn-primary:hover::before {
    opacity: 1;
}

.yxy-btn-primary span,
.yxy-btn-primary svg {
    position: relative;
    z-index: 1;
}

.yxy-btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 0 20px var(--yxy-cyan-glow), 0 5px 15px rgba(0, 0, 0, 0.3);
}

.yxy-btn-outline {
    border-radius: 999px;
    border: 1px solid var(--glass-border);
    padding: 13px 26px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    color: var(--yxy-slate-50);
    transition: all 0.3s var(--ease-out-expo);
}

.yxy-btn-outline:hover {
    border-color: var(--yxy-cyan-500);
    color: var(--yxy-cyan-400);
    box-shadow: 0 0 30px var(--yxy-cyan-glow);
    background: rgba(6, 182, 212, 0.1);
}

.yxy-hero-badges {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
    color: #9ca3af;
}

.yxy-hero-slider {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #020617;
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.75);
}

.yxy-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 900ms ease-in-out, transform 900ms ease-in-out;
    transform: scale(1.02);
}

.yxy-hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.yxy-hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.85), transparent 55%);
}

.yxy-hero-slide-caption {
    position: absolute;
    left: 20px;
    bottom: 18px;
    color: #e5e7eb;
    font-size: 13px;
}

.yxy-section {
    padding: 80px 0;
    position: relative;
}

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

.yxy-section-kicker {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--yxy-slate-400);
}

.yxy-section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 400;
    color: var(--yxy-slate-50);
    margin-top: 8px;
}

.yxy-section-subtitle {
    margin-top: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    color: var(--yxy-slate-400);
    line-height: 1.7;
}

.yxy-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--yxy-cyan-400);
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.25);
    border-radius: 999px;
    margin-bottom: 16px;
}

.yxy-bg-light {
    background: var(--yxy-dark-800);
}

.yxy-grid-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
    margin-top: 32px;
}

.yxy-category-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border-radius: 24px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--glass-border);
    min-height: 220px;
    transition: all 0.4s var(--ease-out-expo);
}

.yxy-category-card:hover {
    transform: translateY(-8px);
    border-color: var(--yxy-cyan-500);
    box-shadow: var(--shadow-card-hover), var(--shadow-glow-cyan);
}

.yxy-category-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--yxy-slate-50);
}

.yxy-category-card img {
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    height: 120px;
    object-fit: contain;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.yxy-grid-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.yxy-product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
    transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}

.yxy-product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(37, 99, 235, 0.75);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
}

.yxy-product-body {
    padding: 14px 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.yxy-product-title {
    font-size: 14px;
    font-weight: 600;
}

.yxy-product-meta {
    font-size: 12px;
    color: #6b7280;
}

.yxy-product-price {
    font-weight: 600;
    margin-top: 4px;
}

.yxy-product-actions {
    margin-top: 8px;
}

.yxy-product-actions .button {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    border: none;
    background: #111827;
    color: #f9fafb;
    text-decoration: none;
    transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.yxy-product-actions .button:hover {
    background-color: #020617;
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.45);
}

.yxy-advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.yxy-adv-card {
    padding: 16px 16px 18px;
    border-radius: 16px;
    background: radial-gradient(circle at top left, #1d4ed8, #020617);
    color: #e5e7eb;
    border: 1px solid rgba(148, 163, 184, 0.55);
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.8);
    transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}

.yxy-adv-card:hover {
    transform: translateY(-4px);
    border-color: rgba(191, 219, 254, 0.9);
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.95);
}

.yxy-adv-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.yxy-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.yxy-testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 18px 18px 16px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
    transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}

.yxy-testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.7);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
}

.yxy-testimonial-card p {
    position: relative;
    padding-left: 18px;
    font-size: 14px;
}

.yxy-testimonial-card p::before {
    content: "\201C";
    position: absolute;
    left: 0;
    top: -6px;
    font-size: 28px;
    color: #c7d2fe;
}

.yxy-testimonial-author {
    margin-top: 10px;
    font-weight: 600;
    font-size: 13px;
}

.yxy-footer {
    background: radial-gradient(circle at top, rgba(37, 99, 235, 0.08), transparent 55%) #010717;
    color: #cbd5f5;
    padding: 64px 0 30px;
    margin-top: 60px;
    border-top: 1px solid rgba(59, 130, 246, 0.15);
}

.yxy-footer-hero {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.3);
    margin-bottom: 32px;
}

.yxy-footer-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.yxy-footer-tagline {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #f8fafc;
    text-transform: uppercase;
}

.yxy-footer-blurb {
    margin: 8px 0 0;
    font-size: 14px;
    max-width: 360px;
    color: #a5b4fc;
}

.yxy-footer-cta-card {
    background: linear-gradient(120deg, rgba(59, 130, 246, 0.2), rgba(14, 165, 233, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: 20px;
    padding: 24px;
    max-width: 360px;
    color: #e0e7ff;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.45);
}

.yxy-footer-cta-card h3 {
    margin: 0 0 8px;
    font-size: 20px;
    color: #ffffff;
}

.yxy-footer-cta-card p {
    margin: 0 0 18px;
    font-size: 14px;
    color: #cbd5f5;
}

.yxy-footer-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f97316, #f43f5e);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: transform 150ms ease, box-shadow 150ms ease;
}

.yxy-footer-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.35);
}

.yxy-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.yxy-footer-block h4 {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 13px;
    color: #93c5fd;
    margin-bottom: 14px;
}

.yxy-footer-list,
.yxy-footer-info,
.yxy-footer-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
}

.yxy-footer-list a,
.yxy-footer-info a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 120ms ease, color 120ms ease;
}

.yxy-footer-list a:hover,
.yxy-footer-info a:hover {
    color: #60a5fa;
    border-color: rgba(96, 165, 250, 0.4);
}

.yxy-footer-info span {
    color: #9ca3af;
    margin-right: 6px;
}

.yxy-footer-bullets li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 10px;
    border-radius: 50%;
    background: #38bdf8;
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.6);
}

.yxy-footer-bullets li {
    display: flex;
    align-items: center;
}

.yxy-footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.yxy-footer-socials a,
.yxy-footer-socials .yxy-social-link {
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(99, 102, 241, 0.4);
    color: #e0e7ff;
    text-decoration: none;
    transition: background-color 150ms ease, transform 150ms ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    justify-content: center;
    position: relative;
}

.yxy-footer-socials a:hover,
.yxy-footer-socials .yxy-social-link:hover {
    background: rgba(99, 102, 241, 0.15);
    transform: translateY(-1px);
}

.yxy-social-link .yxy-social-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.8), rgba(56, 189, 248, 0.85));
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.4);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
}

.yxy-social--whatsapp .yxy-social-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.4);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2.1a9.9 9.9 0 0 0-9.9 9.9c0 1.75.45 3.46 1.31 4.99L2 22l5.16-1.34A9.87 9.87 0 0 0 12 21.9a9.9 9.9 0 0 0 0-19.8Zm5.73 14.05c-.24.68-1.18 1.24-1.9 1.4-.51.12-1.18.22-3.44-.74-2.89-1.2-4.74-4.14-4.89-4.34-.14-.2-1.16-1.54-1.16-2.94 0-1.4.72-2.08.98-2.37.24-.27.64-.39 1.03-.39.13 0 .25 0 .36.01.32.01.48.04.69.53.24.57.83 1.97.9 2.12.07.14.13.32.04.52-.1.2-.16.32-.31.49-.15.17-.32.38-.46.52-.15.15-.31.31-.14.61.17.3.76 1.25 1.64 2.02 1.13 1.01 2.08 1.32 2.38 1.46.3.14.48.12.66-.07.18-.2.76-.88.96-1.18.2-.3.4-.25.66-.15.27.1 1.68.79 1.96.93.28.14.46.21.53.33.07.12.07.72-.17 1.4Z'/%3E%3C/svg%3E");
}

.yxy-social--email .yxy-social-icon {
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    box-shadow: 0 0 10px rgba(14, 165, 233, 0.4);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M3 5.5A2.5 2.5 0 0 1 5.5 3h13A2.5 2.5 0 0 1 21 5.5v13a2.5 2.5 0 0 1-2.5 2.5h-13A2.5 2.5 0 0 1 3 18.5v-13ZM5.5 5a.5.5 0 0 0-.5.5v.38l6.77 4.24a1 1 0 0 0 1.06 0L19 5.88V5.5a.5.5 0 0 0-.5-.5h-13Zm13 3.97-4.93 3.09a3 3 0 0 1-3.14 0L5.5 8.97V18.5a.5.5 0 0 0 .5.5h13a.5.5 0 0 0 .5-.5V8.97Z'/%3E%3C/svg%3E");
}

.yxy-social--facebook .yxy-social-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.45);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M13.5 10.5V8.75c0-.72.48-.89.82-.89h1.63V5h-2.25C10.75 5 10 7.5 10 8.5v2H8v3h2v6h3v-6h2.25l.25-3h-2z'/%3E%3C/svg%3E");
}

.yxy-footer-bottom {
    margin-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #94a3b8;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    padding-top: 18px;
}

.yxy-shop-hero {
    padding: 64px 0;
    background: radial-gradient(circle at top left, #dbe7ff, #e8edff 35%, #f5f7fb 70%);
    position: relative;
    overflow: hidden;
}

.yxy-shop-hero::after {
    content: "";
    position: absolute;
    top: -120px;
    right: -160px;
    width: 360px;
    height: 360px;
    background: #c7d2fe;
    opacity: 0.35;
    filter: blur(60px);
    border-radius: 50%;
}

.yxy-shop-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    position: relative;
    z-index: 2;
}

.yxy-shop-eyebrow {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 14px;
}

.yxy-shop-title {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 700;
}

.yxy-shop-description,
.yxy-shop-subtitle {
    margin-top: 14px;
    color: #475569;
    max-width: 520px;
    font-size: 15px;
}

.yxy-shop-metrics {
    margin-top: 24px;
    display: flex;
    gap: 28px;
}

.yxy-shop-metrics>div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.yxy-shop-metric-value {
    font-size: 22px;
    font-weight: 600;
    color: #1d4ed8;
}

.yxy-shop-metric-label {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #94a3b8;
}

.yxy-shop-search-card {
    align-self: stretch;
    background: #ffffff;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.15);
    border: 1px solid rgba(148, 163, 184, 0.4);
    width: 100%;
}

.yxy-shop-search-label {
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #94a3b8;
}

.yxy-shop-search-field {
    margin-top: 14px;
    position: relative;
}

.yxy-shop-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.yxy-shop-search-input {
    width: 100%;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    padding: 12px 16px 12px 46px;
    font-size: 14px;
    background: rgba(15, 23, 42, 0.02);
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.yxy-shop-search-input:focus {
    border-color: rgba(37, 99, 235, 0.9);
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.4);
    background: #fff;
}

.yxy-shop-search-hint {
    margin-top: 10px;
    font-size: 12px;
    color: #94a3b8;
}

.yxy-shop {
    padding-top: 32px;
}

.yxy-shop-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 24px;
    align-items: flex-start;
}

.yxy-shop-filters {
    align-self: flex-start;
}

.yxy-filter-panel {
    border-radius: 18px;
    background: #ffffff;
    padding: 20px 18px 22px;
    border: 1px solid rgba(148, 163, 184, 0.45);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.yxy-filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.yxy-filter-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7280;
}

.yxy-filter-clear {
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    padding: 4px 10px;
    font-size: 12px;
    background: transparent;
    cursor: pointer;
    color: #6b7280;
    transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}

.yxy-filter-clear:hover {
    background-color: rgba(15, 23, 42, 0.04);
    border-color: rgba(107, 114, 128, 0.95);
    color: #111827;
}

.yxy-filter-group {
    margin-top: 14px;
}

.yxy-filter-group-title {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}

.yxy-filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.yxy-filter-checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    cursor: pointer;
}

.yxy-filter-checkbox-label input[type="checkbox"] {
    width: 14px;
    height: 14px;
}

.yxy-filter-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.yxy-filter-price-input {
    width: 100%;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    padding: 6px 10px;
    font-size: 13px;
    outline: none;
}

.yxy-filter-price-input:focus {
    border-color: rgba(37, 99, 235, 0.9);
}

.yxy-filter-price-sep {
    font-size: 13px;
    color: #6b7280;
}

.yxy-filter-price-slider {
    position: relative;
    margin-top: 14px;
    padding-top: 12px;
}

.yxy-filter-price-slider input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    background: transparent;
    position: absolute;
    left: 0;
    top: -6px;
    pointer-events: none;
}

.yxy-filter-price-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #2563eb;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
    pointer-events: auto;
    cursor: pointer;
}

.yxy-filter-price-slider input[type="range"]::-webkit-slider-runnable-track {
    height: 4px;
    background: transparent;
}

.yxy-filter-price-slider input[type="range"]::-moz-range-track {
    height: 4px;
    background: transparent;
}

.yxy-filter-price-slider input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #2563eb;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
    pointer-events: auto;
    cursor: pointer;
}

.yxy-filter-price-slider-track {
    position: relative;
    height: 4px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.35);
    z-index: 1;
}

.yxy-filter-price-slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #94a3b8;
    margin-top: 36px;
}

.yxy-shop-results-wrapper {
    min-width: 0;
}

.yxy-shop-toolbar {
    margin-bottom: 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 14px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 20px 45px rgba(148, 163, 184, 0.15);
}

.woocommerce-result-count {
    font-size: 13px;
    color: #6b7280;
}

.woocommerce-ordering select {
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    padding: 6px 14px;
    background: #fff;
    font-size: 13px;
}

.yxy-shop-results.is-loading {
    opacity: 0.55;
    pointer-events: none;
}

.woocommerce-breadcrumb {
    display: none;
}

.woocommerce nav.woocommerce-pagination {
    margin-top: 28px;
    display: flex;
    justify-content: center;
}

.woocommerce nav.woocommerce-pagination ul {
    display: inline-flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 999px;
    padding: 6px 10px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 15px 35px rgba(148, 163, 184, 0.25);
}

.woocommerce nav.woocommerce-pagination ul li {
    margin: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    transition: background-color 150ms ease, color 150ms ease, box-shadow 150ms ease;
}

.woocommerce nav.woocommerce-pagination ul li a:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
    background: #0f172a;
    color: #f8fafc;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.35);
}

body.woocommerce-cart {
    background: radial-gradient(circle at top, #e5efff, #f4f7fb);
}

.woocommerce-cart .entry-content {
    padding-top: 60px;
    padding-bottom: 60px;
}

.woocommerce-cart h1.entry-title {
    text-align: center;
    margin-bottom: 28px;
    font-size: 34px;
}

.woocommerce-cart .cart-empty {
    background: #0f172a;
    color: #f8fafc;
    padding: 18px 24px;
    border-radius: 18px;
    text-align: center;
    margin-bottom: 24px;
    box-shadow: 0 25px 55px rgba(15, 23, 42, 0.25);
}

.woocommerce-cart .return-to-shop .button {
    border-radius: 999px;
    background: #2563eb;
    color: #fff;
    padding: 10px 24px;
    font-weight: 600;
}

.woocommerce-cart form.woocommerce-cart-form {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.35);
    overflow-x: auto;
}

.woocommerce-cart table.shop_table {
    border: none;
    border-collapse: collapse;
}

.woocommerce-cart table.shop_table th {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 11px;
    color: #94a3b8;
    border: none;
    padding-bottom: 12px;
}

.woocommerce-cart table.shop_table td {
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    padding: 16px 12px;
}

.woocommerce-cart table.shop_table td.product-thumbnail img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1);
}

.woocommerce-cart table.shop_table td.actions .coupon input.input-text {
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    padding: 9px 16px;
}

.woocommerce-cart table.shop_table td.actions .coupon {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.woocommerce-cart table.shop_table td.actions .button,
.woocommerce-cart .cart_totals .button,
.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
    border-radius: 999px;
    background: linear-gradient(135deg, #111827, #4338ca);
    color: #f8fafc;
    font-weight: 600;
    padding: 11px 26px;
    transition: transform 150ms ease, box-shadow 150ms ease;
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover,
.woocommerce-cart table.shop_table td.actions .button:hover,
.woocommerce-cart .cart_totals .button:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 40px rgba(67, 56, 202, 0.35);
}

.woocommerce-cart .cart-collaterals {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.woocommerce-cart .cart_totals {
    background: #ffffff;
    border-radius: 24px;
    padding: 24px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.08);
}

.woocommerce-cart .cart_totals h2 {
    font-size: 20px;
    margin-bottom: 12px;
}

.woocommerce-cart .cart_totals table {
    border: none;
}

.woocommerce-cart .cart_totals table th,
.woocommerce-cart .cart_totals table td {
    border: none;
    padding: 10px 0;
}

.woocommerce-cart .cart_totals .wc-proceed-to-checkout {
    margin-top: 18px;
}

.woocommerce-cart table.shop_table td.product-remove a.remove {
    display: inline-flex;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.12);
    color: #dc2626 !important;
    font-size: 18px;
    border: 1px solid rgba(220, 38, 38, 0.25);
    transition: background-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.woocommerce-cart table.shop_table td.product-remove a.remove:hover {
    background: #dc2626;
    color: #fff !important;
    transform: translateY(-1px);
}

.woocommerce-cart table.shop_table td.product-remove a.remove::after {
    content: attr(title);
    position: absolute;
    opacity: 0;
    pointer-events: none;
    background: rgba(15, 23, 42, 0.9);
    color: #fff;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.05em;
    transform: translateY(10px);
    transition: opacity 120ms ease, transform 120ms ease;
}

.woocommerce-cart table.shop_table td.product-remove a.remove:hover::after {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .yxy-hero-gallery {
        height: 320px;
    }

    .woocommerce-cart form.woocommerce-cart-form {
        padding: 18px;
    }

    .woocommerce-cart table.shop_table td.product-thumbnail img {
        width: 58px;
        height: 58px;
    }
}

.yxy-footer-top {
    grid-template-columns: 1fr 1fr;
}

.yxy-footer-bottom {
    margin-top: 16px;
    font-size: 12px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
}

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

    .yxy-header-inner {
        align-items: center;
    }

    .yxy-header-right {
        position: fixed;
        left: 16px;
        right: 16px;
        top: 76px;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding: 24px 24px 28px;
        background: rgba(3, 7, 18, 0.96);
        border-radius: 28px;
        border: 1px solid rgba(59, 130, 246, 0.25);
        box-shadow: 0 35px 90px rgba(2, 6, 23, 0.65);
        opacity: 0;
        transform: translateY(-8px);
        pointer-events: none;
    }

    body.yxy-nav-open .yxy-header-right {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .yxy-nav {
        flex-direction: column;
        gap: 16px;
        width: 100%;
        font-size: 15px;
    }

    .yxy-nav a {
        padding: 6px 0;
    }

    .yxy-header-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .yxy-header-cart {
        width: 100%;
        text-align: center;
    }

    .yxy-hero-modern {
        padding: 70px 0 36px;
    }

    .yxy-hero-modern-inner,
    .yxy-hero-inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 32px;
    }

    .yxy-hero-gallery {
        height: 360px;
    }

    .yxy-hero-content p {
        max-width: 100%;
    }

    .yxy-hero-actions {
        justify-content: flex-start;
    }

    .yxy-section {
        padding: 50px 0;
    }

    .yxy-grid-categories {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .yxy-grid-products,
    .yxy-advantages-grid,
    .yxy-testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

    .yxy-snapshot-grid,
    .yxy-capabilities-grid,
    .yxy-case-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

    .yxy-shop-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .yxy-shop-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .yxy-shop-metrics {
        flex-wrap: wrap;
        gap: 18px;
    }

    .yxy-shop-filters {
        order: 2;
        width: 100%;
    }

    .yxy-shop-results-wrapper {
        order: 1;
    }

    .woocommerce ul.products {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 14px;
    }

    .yxy-hero-modern {
        padding-top: 60px;
    }

    .yxy-hero-gallery {
        height: 300px;
    }

    .yxy-hero-content h1 {
        font-size: clamp(32px, 8vw, 40px);
        line-height: 1.15;
    }

    .yxy-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .yxy-btn-primary,
    .yxy-btn-outline {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .yxy-hero-stats>div {
        min-width: 48%;
    }

    .yxy-snapshot-grid,
    .yxy-capabilities-grid,
    .yxy-case-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .yxy-grid-categories {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .yxy-grid-products,
    .yxy-advantages-grid,
    .yxy-testimonials-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .yxy-footer-top {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
    }

    .yxy-shop-hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .yxy-shop-search-card {
        margin-top: 12px;
        padding: 22px;
    }

    .yxy-shop-metrics>div {
        min-width: calc(50% - 14px);
    }

    /* Show mobile filters and hide desktop filters */
    .yxy-mobile-filters {
        display: block;
        margin-bottom: 24px;
    }

    .yxy-shop-layout .yxy-shop-filters {
        display: none;
    }

    .yxy-shop-toolbar {
        gap: 8px;
    }

    .yxy-shop-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .woocommerce-cart form.woocommerce-cart-form {
        padding: 20px;
    }

    .woocommerce-cart table.shop_table th,
    .woocommerce-cart table.shop_table td {
        padding: 12px 8px;
    }
}

@media (max-width: 640px) {
    .yxy-header-right {
        left: 12px;
        right: 12px;
    }

    .yxy-logo a {
        gap: 8px;
    }

    .yxy-logo-wordmark {
        font-size: 22px;
        letter-spacing: 0.25em;
        max-width: 220px;
        line-height: 1.15;
        white-space: normal;
    }

    .yxy-nav li+li::before {
        display: none;
    }

    .yxy-hero-gallery {
        height: 260px;
    }

    .yxy-hero-stats>div {
        min-width: 120px;
    }

    .yxy-shop-toolbar {
        padding: 12px;
    }

    .yxy-shop-search-card {
        padding: 18px;
    }

    .woocommerce-cart .cart_totals {
        padding: 18px;
    }

    .woocommerce-cart table.shop_table td.product-thumbnail img {
        width: 58px;
        height: 58px;
    }
}

/* Single Product Page - Alibaba Style */
.yxy-single-product-container {
    padding: 60px 0 80px;
    background: #ffffff !important;
}

.yxy-product-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 600px 1fr;
    gap: 40px;
    align-items: flex-start;
}

.yxy-product-gallery-section {
    position: sticky;
    top: 90px;
}

.yxy-product-details-section {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.1);
}

/* Product Gallery */

.yxy-product-gallery {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr) 56px;
    gap: 20px;
    background: #ffffff;
    border-radius: 28px;
    padding: 22px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.1);
    align-items: center;
}

.yxy-gallery-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 520px;
    overflow-y: auto;
    padding-right: 4px;
}

.yxy-gallery-thumbnails::-webkit-scrollbar {
    width: 4px;
}

.yxy-gallery-thumbnails::-webkit-scrollbar-track {
    background: rgba(148, 163, 184, 0.2);
    border-radius: 4px;
}

.yxy-gallery-thumbnails::-webkit-scrollbar-thumb {
    background: rgba(37, 99, 235, 0.5);
    border-radius: 4px;
}

.yxy-thumbnail {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 200ms ease, transform 150ms ease;
    flex-shrink: 0;
}

.yxy-thumbnail:hover {
    border-color: rgba(37, 99, 235, 0.5);
    transform: scale(1.05);
}

.yxy-thumbnail.active {
    border-color: #2563eb;
}

.yxy-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.yxy-gallery-main {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid rgba(148, 163, 184, 0.25);
}

.yxy-gallery-images {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
}

.yxy-main-image {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 500ms ease;
    pointer-events: none;
}

.yxy-main-image.active {
    opacity: 1;
    pointer-events: auto;
}

.yxy-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.yxy-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(148, 163, 184, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 150ms ease, border-color 150ms ease, transform 150ms ease;
    z-index: 10;
    color: #0f172a;
}

.yxy-gallery-nav:hover {
    background: #ffffff;
    border-color: #2563eb;
    transform: translateY(-50%) scale(1.1);
}

.yxy-gallery-prev {
    left: 16px;
}

.yxy-gallery-next {
    right: 16px;
}

.yxy-gallery-counter {
    position: absolute;
    bottom: 18px;
    right: 18px;
    background: rgba(15, 23, 42, 0.85);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(8px);
}

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

.yxy-action-btn {
    width: 48px;
    height: 48px;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 150ms ease, box-shadow 150ms ease;
    color: #475569;
}

.yxy-action-btn:hover {
    border-color: rgba(37, 99, 235, 0.7);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.2);
}

/* Product Details */
.yxy-product-title {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 16px;
}

.woocommerce div.product .woocommerce-product-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.woocommerce div.product .star-rating {
    color: #fbbf24;
}

.woocommerce div.product .woocommerce-review-link {
    color: #64748b;
    font-size: 14px;
    text-decoration: underline;
}

.yxy-supplier-info {
    padding: 12px 0;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    margin-bottom: 16px;
    font-size: 14px;
    color: #475569;
}

.yxy-supplier-label {
    color: #94a3b8;
    margin-right: 8px;
}

/* Price Section */
.yxy-price-section {
    margin-bottom: 24px;
}

.yxy-quantity-tier-controller {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    padding: 18px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 18px;
    background: #f8fafc;
    margin-bottom: 18px;
}

.yxy-quantity-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 200px;
}

.yxy-quantity-input-group label {
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #475569;
}

.yxy-requested-qty {
    width: 140px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.8);
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    background: #fff;
}

.yxy-requested-qty:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.yxy-live-price-panel {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: #fff7ed;
    border-radius: 14px;
    border: 1px solid #fed7aa;
    padding: 14px 18px;
    min-width: 200px;
}

.yxy-live-price-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #9a3412;
}

.yxy-live-price-value {
    font-size: 28px;
    color: #b91c1c;
    line-height: 1;
}

.yxy-live-price-tier {
    font-size: 13px;
    color: #92400e;
}

.yxy-total-price-panel {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 16px;
    background: #0f172a;
    color: #f1f5f9;
    border: 1px solid rgba(15, 23, 42, 0.4);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    min-width: 240px;
}

.yxy-total-price-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.yxy-total-price-label {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.yxy-total-price-hint {
    font-size: 12px;
    color: rgba(248, 250, 252, 0.75);
}

.yxy-total-price-value {
    font-size: 26px;
    font-weight: 700;
}

.yxy-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.yxy-primary-action-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.yxy-primary-action-row form.cart {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 0;
}

.yxy-primary-action-row form.cart .quantity {
    display: none;
}

.yxy-primary-action-row form.cart .single_add_to_cart_button {
    flex: 1;
    min-width: 220px;
    justify-content: center;
}

.yxy-atc-wrapper {
    flex: 1;
    min-width: 240px;
}

.yxy-atc-wrapper form.cart {
    width: 100%;
}

.yxy-atc-wrapper form.cart .single_add_to_cart_button {
    width: 100%;
    display: inline-flex;
    justify-content: center;
}

.yxy-whatsapp-button,
.yxy-alibaba-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 600;
    padding: 12px 26px;
    text-decoration: none;
    transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.yxy-whatsapp-button {
    background: #22c55e;
    color: #fff;
    box-shadow: 0 15px 30px rgba(34, 197, 94, 0.35);
}

.yxy-whatsapp-button:hover {
    transform: translateY(-2px);
    background: #16a34a;
}

.yxy-alibaba-button {
    background: transparent;
    border: 1px solid rgba(248, 113, 113, 0.6);
    color: #ef4444;
}

.yxy-alibaba-button:hover {
    transform: translateY(-1px);
    background: rgba(248, 113, 113, 0.08);
}

.yxy-action-buttons .single_add_to_cart_button {
    flex: 1;
    min-width: 220px;
}

@media (max-width: 640px) {
    .yxy-quantity-tier-controller {
        flex-direction: column;
    }

    .yxy-primary-action-row {
        flex-direction: column;
        width: 100%;
    }

    .yxy-action-buttons .single_add_to_cart_button,
    .yxy-whatsapp-button,
    .yxy-alibaba-button {
        width: 100%;
        justify-content: center;
    }

    .yxy-total-price-panel {
        width: 100%;
    }
}

.yxy-tiered-pricing-display {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border: 2px solid #fed7aa;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
}

.yxy-dispatch-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: #fff;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: #f59e0b;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.15);
}

.yxy-dispatch-badge svg {
    flex-shrink: 0;
}

.yxy-price-tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    margin-bottom: 12px;
}

.yxy-price-tier-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 150ms ease, box-shadow 150ms ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.yxy-price-tier-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.yxy-price-tier-card.is-active {
    border-color: #f97316;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.25);
}

/* New Self-Contained Tiered Pricing System */
.yxy-pricing-system {
    margin: 32px 0;
}

.yxy-tiers-container {
    margin-bottom: 24px;
}

.yxy-dispatch-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #f59e0b;
    font-weight: 500;
}

.yxy-tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 12px;
}

.yxy-tier-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.yxy-tier-card:hover {
    border-color: #f97316;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.15);
}

.yxy-tier-card.is-active {
    border-color: #f97316;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05), rgba(249, 115, 22, 0.1));
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.25);
}

.yxy-tier-qty {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
    font-weight: 500;
}

.yxy-tier-price {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
}

.yxy-pricing-note {
    text-align: center;
    color: #6b7280;
    margin: 0;
}

.yxy-calculator {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.yxy-qty-section {
    margin-bottom: 16px;
}

.yxy-qty-section label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.yxy-qty-input {
    width: 100%;
    max-width: 200px;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    transition: border-color 0.2s ease;
}

.yxy-qty-input:focus {
    outline: none;
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.yxy-pricing-display {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.yxy-unit-price,
.yxy-total-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.yxy-label {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.yxy-unit-value {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
}

.yxy-total-value {
    font-size: 24px;
    font-weight: 700;
    color: #dc2626;
}

.yxy-total-note {
    font-size: 11px;
    color: #9ca3af;
}

.yxy-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.yxy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 48px;
}

.yxy-btn svg {
    flex-shrink: 0;
}

.yxy-btn-primary {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.yxy-btn-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, #b91c1c, #dc2626);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.yxy-btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.yxy-btn-primary.loading {
    position: relative;
    color: transparent;
}

.yxy-btn-primary.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: yxy-spin 0.8s linear infinite;
}

.yxy-btn-primary.added {
    background: linear-gradient(135deg, #059669, #10b981);
}

.yxy-btn-whatsapp {
    background: #25d366;
    color: #ffffff;
}

.yxy-btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.yxy-btn-alibaba {
    background: #ffffff;
    color: #ff6a00;
    border: 2px solid #ff6a00;
}

.yxy-btn-alibaba:hover {
    background: #ff6a00;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 106, 0, 0.3);
}

@keyframes yxy-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .yxy-tiers-grid {
        grid-template-columns: 1fr;
    }

    .yxy-pricing-display {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .yxy-qty-input {
        max-width: 100%;
    }

    .yxy-actions {
        gap: 8px;
    }

    .yxy-btn {
        padding: 12px 20px;
        font-size: 15px;
    }
}

.yxy-tier-qty-label {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 8px;
    font-weight: 500;
}

.yxy-tier-price-value {
    font-size: 28px;
    font-weight: 700;
}

/* Floating Cart */
.yxy-floating-cart {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.yxy-floating-cart.show {
    right: 0;
}

.yxy-floating-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
    background: #f9fafb;
}

.yxy-floating-cart-header h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #111827;
}

.yxy-cart-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #6b7280;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.yxy-cart-close:hover {
    background: #e5e7eb;
    color: #111827;
}

.yxy-floating-cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.yxy-cart-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}

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

.yxy-cart-item-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    flex-shrink: 0;
}

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

.yxy-cart-item-name {
    font-weight: 500;
    color: #111827;
    margin-bottom: 4px;
}

.yxy-cart-item-qty {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 2px;
}

.yxy-cart-item-price {
    font-size: 14px;
    color: #374151;
}

.yxy-cart-item-total {
    font-weight: 600;
    color: #111827;
    align-self: flex-start;
}

.yxy-floating-cart-footer {
    padding: 20px;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
}

.yxy-cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 600;
    color: #111827;
}

.yxy-floating-cart-total {
    color: #dc2626;
}

/* Update header cart to be clickable */
.yxy-header-cart {
    position: relative;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.yxy-header-cart:hover {
    transform: translateY(-2px);
}

.yxy-cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #dc2626;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 12px;
    min-width: 18px;
    text-align: center;
}

/* Contact Page */
.yxy-contact-hero {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top right, rgba(252, 165, 165, 0.25), transparent 55%), #0f172a;
    color: #f8fafc;
}

.yxy-contact-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.25), transparent 40%);
    pointer-events: none;
}

.yxy-contact-hero .container {
    position: relative;
    z-index: 1;
}

.yxy-contact-hero-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: center;
}

.yxy-contact-hero h1 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.2;
    margin-bottom: 16px;
    color: #fff;
}

.yxy-contact-hero p {
    color: #cbd5f5;
}

.yxy-contact-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.yxy-contact-metrics div {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.4);
    border-radius: 16px;
    padding: 18px;
    text-align: center;
    backdrop-filter: blur(6px);
}

.yxy-contact-metrics span {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #fef3c7;
}

.yxy-contact-map-card {
    position: relative;
    border-radius: 24px;
    padding: 40px;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.85), rgba(30, 41, 59, 0.9));
    overflow: hidden;
    min-height: 360px;
    display: flex;
    align-items: center;
}

.yxy-contact-map-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.4), transparent 60%);
    pointer-events: none;
}

.yxy-contact-map-content {
    position: relative;
    z-index: 1;
}

.yxy-contact-map-card h3 {
    color: #fff;
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.yxy-contact-map-card ul {
    margin: 16px 0 0;
    padding-left: 20px;
    color: #cbd5f5;
}

.yxy-map-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(248, 250, 252, 0.08);
    border: 1px solid rgba(248, 250, 252, 0.2);
    font-weight: 500;
}

.yxy-contact-section {
    background: #f8fafc;
    padding: 80px 0;
}

.yxy-contact-layout {
    display: grid;
    grid-template-columns: 55% 20% 25%;
    gap: 40px;
    align-items: start;
}

.yxy-contact-process {
    order: 2;
}

.yxy-contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    order: 3;
}

.yxy-contact-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.05);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.yxy-contact-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.yxy-contact-card-head span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #dc2626;
    background: rgba(220, 38, 38, 0.08);
    border-radius: 999px;
    padding: 6px 12px;
    font-weight: 600;
}

.yxy-contact-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.yxy-contact-card a {
    color: #0f172a;
    font-weight: 600;
}

.yxy-contact-process {
    background: #0f172a;
    color: #e2e8f0;
    border-radius: 24px;
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.yxy-contact-process::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at bottom right, rgba(248, 113, 113, 0.2), transparent 50%);
    pointer-events: none;
}

.yxy-contact-process h4 {
    margin-top: 0;
    color: #fff;
}

.yxy-contact-process ol {
    margin: 16px 0 24px;
    padding-left: 20px;
    counter-reset: yxy-step;
}

.yxy-contact-process li {
    margin-bottom: 12px;
    color: #cbd5f5;
}

.yxy-contact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
}

.yxy-contact-stats div {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.4);
    border-radius: 18px;
    padding: 16px;
    text-align: center;
}

.yxy-contact-stats span {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #facc15;
}

.yxy-contact-form-card {
    background: #fff;
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.08);
    border: 1px solid #e2e8f0;
    order: 1;
}

.yxy-contact-form-head {
    margin-bottom: 32px;
}

.yxy-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.yxy-field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    color: #475569;
}

.yxy-field-group span {
    font-weight: 600;
    color: #0f172a;
}

.yxy-field-group input,
.yxy-field-group select,
.yxy-field-group textarea {
    border: 1.5px solid #cbd5f5;
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 15px;
    background: #f8fafc;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.yxy-field-group input:focus,
.yxy-field-group select:focus,
.yxy-field-group textarea:focus {
    outline: none;
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
    background: #fff;
}

.yxy-field-group textarea {
    resize: vertical;
}

.yxy-field-group.is-required span::after {
    content: '*';
    color: #dc2626;
    margin-left: 4px;
}

.yxy-contact-form-footer {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #475569;
}

.yxy-form-notice {
    border-radius: 16px;
    padding: 16px 20px;
    margin-bottom: 20px;
    font-weight: 500;
}

.yxy-form-notice--success {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.5);
    color: #047857;
}

.yxy-form-notice--error {
    background: rgba(248, 113, 113, 0.12);
    border: 1px solid rgba(248, 113, 113, 0.5);
    color: #b91c1c;
}

.yxy-contact-form button {
    align-self: flex-start;
    min-width: 260px;
}

@media (max-width: 1024px) {
    .yxy-contact-layout {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .yxy-contact-form-card {
        order: -1;
    }

    .yxy-contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .yxy-contact-hero {
        padding: 80px 0 60px;
    }

    .yxy-contact-map-card {
        padding: 28px;
    }

    .yxy-contact-form-card {
        padding: 28px;
    }

    .yxy-form-grid {
        grid-template-columns: 1fr;
    }

    .yxy-contact-form button {
        width: 100%;
        min-width: unset;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .yxy-floating-cart {
        width: 100%;
        right: -100%;
    }
}

/* Cart Page Styles */
.yxy-cart-page {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.yxy-cart-header {
    text-align: center;
    margin-bottom: 40px;
}

.yxy-cart-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.yxy-cart-header p {
    font-size: 18px;
    color: #6b7280;
}

.yxy-cart-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

.yxy-cart-items {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 24px;
}

.yxy-cart-item-row {
    display: grid;
    grid-template-columns: 80px 1fr 120px 120px 50px;
    gap: 20px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
}

.yxy-cart-item-row:last-child {
    border-bottom: none;
}

.yxy-cart-item-image img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
}

.yxy-cart-item-details h3 {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.yxy-item-price {
    font-size: 14px;
    color: #6b7280;
}

.yxy-cart-item-quantity input {
    width: 80px;
    padding: 8px 12px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
}

.yxy-cart-item-total {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
}

.yxy-remove-item {
    background: none;
    border: none;
    color: #dc2626;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.yxy-remove-item:hover {
    background: #fee2e2;
}

.yxy-cart-summary {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 24px;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.yxy-cart-totals {
    margin-bottom: 24px;
}

.yxy-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    padding: 16px 0;
    border-top: 2px solid #e5e7eb;
}

.yxy-grand-total {
    color: #dc2626;
}

.yxy-cart-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.yxy-empty-cart {
    text-align: center;
    padding: 80px 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.yxy-empty-cart h2 {
    font-size: 28px;
    color: #111827;
    margin-bottom: 16px;
}

.yxy-empty-cart p {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 24px;
}

/* Checkout Page Styles */
.yxy-checkout-page {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.yxy-checkout-header {
    text-align: center;
    margin-bottom: 40px;
}

.yxy-checkout-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.yxy-checkout-header p {
    font-size: 18px;
    color: #6b7280;
}

.yxy-checkout-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

.yxy-order-summary {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 24px;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.yxy-order-summary h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.yxy-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid #f3f4f6;
}

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

.yxy-summary-item-details {
    flex: 1;
}

.yxy-item-name {
    font-weight: 500;
    color: #111827;
    margin-bottom: 4px;
}

.yxy-item-qty {
    font-size: 13px;
    color: #6b7280;
}

.yxy-summary-item strong {
    font-weight: 600;
    color: #111827;
}

.yxy-summary-total {
    padding: 20px 0;
    border-top: 2px solid #e5e7eb;
    font-size: 20px;
    font-weight: 700;
    color: #111827;
}

.yxy-checkout-form {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 32px;
}

.yxy-checkout-form h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.yxy-form-note {
    color: #6b7280;
    margin-bottom: 24px;
    font-size: 14px;
}

.yxy-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.yxy-form-group {
    margin-bottom: 20px;
}

.yxy-form-group label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.yxy-form-group input,
.yxy-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s ease;
}

.yxy-form-group input:focus,
.yxy-form-group textarea:focus {
    outline: none;
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.yxy-checkout-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.yxy-order-success {
    text-align: center;
    padding: 80px 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.yxy-success-icon {
    font-size: 64px;
    color: #059669;
    margin-bottom: 24px;
}

.yxy-order-success h2 {
    font-size: 32px;
    color: #111827;
    margin-bottom: 16px;
}

.yxy-order-success p {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 16px;
}

/* Responsive Design */
@media (max-width: 968px) {

    .yxy-cart-content,
    .yxy-checkout-content {
        grid-template-columns: 1fr;
    }

    .yxy-cart-summary,
    .yxy-order-summary {
        position: static;
    }

    .yxy-cart-item-row {
        grid-template-columns: 60px 1fr 80px 80px 40px;
        gap: 12px;
    }

    .yxy-cart-item-image img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 640px) {
    .yxy-form-row {
        grid-template-columns: 1fr;
    }

    .yxy-checkout-actions {
        flex-direction: column;
        gap: 12px;
    }

    .yxy-cart-item-row {
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: center;
    }

    .yxy-cart-item-image {
        display: flex;
        justify-content: center;
    }
}

.yxy-pricing-disclaimer {
    margin: 0;
    color: #92400e;
    font-size: 12px;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
    font-size: 32px;
    font-weight: 700;
    color: #dc2626;
    line-height: 1;
}

.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
    color: #94a3b8;
    font-size: 20px;
    font-weight: 500;
    margin-right: 12px;
}

.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins {
    text-decoration: none;
}

/* Add to Cart */
.woocommerce div.product form.cart {
    margin-bottom: 24px;
}

.woocommerce div.product form.cart .quantity {
    margin-right: 12px;
}

.woocommerce div.product form.cart .quantity input.qty {
    width: 80px;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    font-size: 15px;
    text-align: center;
}

.woocommerce div.product form.cart button.single_add_to_cart_button {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 150ms ease, box-shadow 150ms ease;
}

.woocommerce div.product form.cart button.single_add_to_cart_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.4);
}

/* Variations */
.woocommerce div.product form.cart .variations {
    margin-bottom: 20px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 16px;
    padding: 16px;
}

.woocommerce div.product form.cart .variations td {
    padding: 10px 0;
}

.woocommerce div.product form.cart .variations label {
    font-weight: 600;
    font-size: 14px;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.woocommerce div.product form.cart .variations select {
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    font-size: 14px;
}

/* Product Meta */
.yxy-product-meta {
    padding: 16px 0;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    margin-bottom: 20px;
}

.woocommerce div.product .product_meta {
    font-size: 13px;
    color: #64748b;
    line-height: 1.8;
}

.woocommerce div.product .product_meta>span {
    display: block;
}

.woocommerce div.product .product_meta span.posted_in,
.woocommerce div.product .product_meta span.tagged_as,
.woocommerce div.product .product_meta span.sku_wrapper {
    font-weight: 500;
}

/* Product Highlights */
.yxy-product-highlights {
    margin-bottom: 24px;
}

.yxy-product-highlights h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.woocommerce div.product .woocommerce-product-details__short-description {
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
}

/* Product Tabs */
.yxy-product-tabs-wrapper {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 16px 20px;
    position: relative;
}

.yxy-product-tabs-wrapper::before {
    content: "";
    position: absolute;
    inset: 20px 32px 0;
    border-radius: 28px;
    background: radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.16), transparent 50%),
        radial-gradient(circle at 90% 0, rgba(236, 72, 153, 0.12), transparent 45%);
    filter: blur(10px);
    z-index: 0;
    pointer-events: none;
}

.woocommerce div.product .woocommerce-tabs {
    position: relative;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.08);
    z-index: 1;
}

.woocommerce div.product .woocommerce-tabs ul.tabs,
.woocommerce .wc-tabs-wrapper ul.wc-tabs {
    border-bottom: 2px solid rgba(226, 232, 240, 0.8);
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    gap: 12px;
    list-style: none;
    flex-wrap: wrap;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li,
.woocommerce .wc-tabs-wrapper ul.wc-tabs li {
    margin: 0;
    background: transparent;
    border: none;
    position: relative;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce .wc-tabs-wrapper ul.wc-tabs li::before {
    content: "";
    position: absolute;
    inset: 4px 0 -10px;
    border-radius: 999px;
    background: transparent;
    transition: all 200ms ease;
    z-index: -1;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a,
.woocommerce .wc-tabs-wrapper ul.wc-tabs li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    color: #475569;
    transition: all 200ms ease;
    border: none;
    background: rgba(148, 163, 184, 0.14);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a::after,
.woocommerce .wc-tabs-wrapper ul.wc-tabs li a::after {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0;
    transition: opacity 200ms ease;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active::before,
.woocommerce .wc-tabs-wrapper ul.wc-tabs li.active::before {
    background: linear-gradient(120deg, #2563eb, #7c3aed);
    filter: blur(6px);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce .wc-tabs-wrapper ul.wc-tabs li.active a {
    background: linear-gradient(120deg, #2563eb, #7c3aed);
    color: #ffffff;
    box-shadow: 0 15px 25px rgba(37, 99, 235, 0.25);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a::after,
.woocommerce .wc-tabs-wrapper ul.wc-tabs li.active a::after {
    opacity: 0.8;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a:focus-visible,
.woocommerce .wc-tabs-wrapper ul.wc-tabs li a:focus-visible {
    outline: 2px solid rgba(37, 99, 235, 0.4);
    outline-offset: 2px;
}

.woocommerce div.product .woocommerce-tabs .panel,
.woocommerce .wc-tabs-wrapper .wc-tab {
    padding: 28px;
    margin: 0;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.8), #fff);
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
    animation: tabFade 220ms ease;
}

.woocommerce div.product .woocommerce-tabs .panel h2,
.woocommerce .wc-tabs-wrapper .wc-tab h2 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #0f172a;
}

.woocommerce div.product .woocommerce-tabs .panel p,
.woocommerce div.product .woocommerce-tabs .panel ul,
.woocommerce div.product .woocommerce-tabs .panel li,
.woocommerce .wc-tabs-wrapper .wc-tab p,
.woocommerce .wc-tabs-wrapper .wc-tab ul,
.woocommerce .wc-tabs-wrapper .wc-tab li {
    color: #475569;
    line-height: 1.8;
    font-size: 15px;
}

.woocommerce div.product .woocommerce-tabs .panel ul,
.woocommerce .wc-tabs-wrapper .wc-tab ul {
    padding-left: 20px;
    list-style: none;
}

.woocommerce div.product .woocommerce-tabs .panel ul li,
.woocommerce .wc-tabs-wrapper .wc-tab ul li {
    position: relative;
    margin-bottom: 8px;
    padding-left: 22px;
}

.woocommerce div.product .woocommerce-tabs .panel ul li::before,
.woocommerce .wc-tabs-wrapper .wc-tab ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

.woocommerce div.product .woocommerce-tabs .panel p+p,
.woocommerce div.product .woocommerce-tabs .panel p+ul,
.woocommerce div.product .woocommerce-tabs .panel ul+p,
.woocommerce .wc-tabs-wrapper .wc-tab p+p,
.woocommerce .wc-tabs-wrapper .wc-tab p+ul,
.woocommerce .wc-tabs-wrapper .wc-tab ul+p {
    margin-top: 12px;
}

.woocommerce div.product .woocommerce-tabs #comments ol.commentlist,
.woocommerce .wc-tabs-wrapper #comments ol.commentlist {
    margin: 0;
    padding: 0;
    list-style: none;
}

.woocommerce div.product .woocommerce-tabs #comments ol.commentlist li,
.woocommerce .wc-tabs-wrapper #comments ol.commentlist li {
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
}

.woocommerce div.product .woocommerce-tabs #reviews #review_form_wrapper,
.woocommerce .wc-tabs-wrapper #reviews #review_form_wrapper {
    margin-top: 24px;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    padding-top: 24px;
}

@keyframes tabFade {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Related Products */
.yxy-related-products {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 16px;
}

.woocommerce div.product .related {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.1);
}

.woocommerce div.product .related h2 {
    font-size: 24px;
    margin-bottom: 24px;
}

/* Responsive - Single Product */
@media (max-width: 1024px) {
    .yxy-product-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .yxy-product-gallery-section {
        position: static;
    }
}

@media (max-width: 768px) {
    .yxy-product-gallery {
        flex-direction: column-reverse;
    }

    .yxy-gallery-thumbnails {
        flex-direction: row;
        max-height: none;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        padding-right: 0;
        padding-bottom: 8px;
    }

    .yxy-thumbnail {
        width: 60px;
        height: 60px;
    }

    .yxy-product-details-section {
        padding: 24px;
    }

    .yxy-product-title {
        font-size: 22px;
    }

    .woocommerce div.product p.price,
    .woocommerce div.product span.price {
        font-size: 26px;
    }

    .woocommerce div.product .woocommerce-tabs {
        padding: 24px;
    }

    .woocommerce div.product .related {
        padding: 24px;
    }
}

@media (max-width: 640px) {
    .yxy-single-product-container {
        padding: 20px 0 40px;
    }

    .yxy-thumbnail {
        width: 52px;
        height: 52px;
    }

    .yxy-gallery-nav {
        width: 36px;
        height: 36px;
    }

    .yxy-gallery-prev {
        left: 8px;
    }

    .yxy-gallery-next {
        right: 8px;
    }

    .woocommerce div.product .woocommerce-tabs ul.tabs {
        flex-wrap: wrap;
    }

    .woocommerce div.product .woocommerce-tabs ul.tabs li a {
        padding: 10px 16px;
        font-size: 14px;
    }
}

/* --- Modern Front Page Redesign Styles --- */

/* General Utilities */
.text-gradient {
    background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.yxy-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.yxy-bg-light {
    background-color: #f8fafc;
}

.yxy-center-btn {
    text-align: center;
    margin-top: 40px;
}

/* Hero Updates */
.yxy-hero-modern h1 {
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.1;
    margin-bottom: 24px;
}

.yxy-stat-item {
    text-align: left;
}

.yxy-stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    margin-bottom: 4px;
}

.yxy-stat-label {
    font-size: 13px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.yxy-card-stack {
    position: relative;
    height: 220px;
    width: 100%;
}

.yxy-card-visual {
    position: absolute;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: transform 0.5s ease;
}

.yxy-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* Ensure no extra space */
}

.yxy-card-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.yxy-card-slide.is-active {
    opacity: 1;
    z-index: 2;
}

.yxy-card-visual.main-card {
    width: 640px;
    max-width: 100%;
    aspect-ratio: 640 / 217;
    height: auto;
    max-height: 217px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    position: absolute;
}

.yxy-card-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.yxy-pulse {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

/* Features Grid */
.yxy-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.yxy-feature-box {
    background: #fff;
    padding: 32px;
    border-radius: 24px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

.yxy-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -5px rgba(15, 23, 42, 0.1);
    border-color: #bfdbfe;
}

.yxy-feature-icon {
    width: 56px;
    height: 56px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.yxy-feature-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0f172a;
}

.yxy-feature-box p {
    color: #64748b;
    line-height: 1.6;
}

/* Category Showcase */
.yxy-category-showcase {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 40px;
}

@media (max-width: 1200px) {
    .yxy-category-showcase {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .yxy-category-showcase {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .yxy-category-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.yxy-cat-card {
    position: relative;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 18px 18px 20px;
    text-decoration: none;
    color: #0f172a;
    background: #fff;
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.07);
    border: 1px solid rgba(148, 163, 184, 0.25);
}

/* Shop by Category */
.yxy-shop-by-category {
    overflow: hidden;
}

.yxy-sbc-strip {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 2px 0;
    margin-top: 2px;
    scrollbar-width: thin;
    scrollbar-color: #2563eb #e2e8f0;
}

.yxy-sbc-strip::-webkit-scrollbar {
    height: 8px;
}

.yxy-sbc-strip::-webkit-scrollbar-track {
    background: #e2e8f0;
    border-radius: 999px;
}

.yxy-sbc-strip::-webkit-scrollbar-thumb {
    background: #2563eb;
    border-radius: 999px;
}

.yxy-sbc-chip {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 8px 9px 9px;
    min-width: 102px;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: #fff;
    color: #0f172a;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.yxy-sbc-chip:hover {
    border-color: #2563eb;
    box-shadow: 0 10px 28px rgba(37, 99, 235, 0.18);
    transform: translateY(-2px);
}

.yxy-sbc-chip.is-active {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 14px 32px rgba(37, 99, 235, 0.3);
}

.yxy-sbc-chip-img {
    width: 74px;
    height: 74px;
    border-radius: 16px;
    overflow: hidden;
    background: #f8fafc;
    display: grid;
    place-items: center;
    border: 1px solid #e2e8f0;
}

.yxy-sbc-chip-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yxy-sbc-chip span {
    font-size: 12px;
    text-align: center;
    line-height: 1.35;
    max-width: 124px;
    display: block;
    min-height: 32px;
    word-break: break-word;
}

.yxy-sbc-panels {
    margin-top: 12px;
}

.yxy-sbc-panel {
    display: none;
}

.yxy-sbc-panel.is-active {
    display: block;
}

.yxy-sbc-product-grid {
    margin-top: 4px;
    gap: 18px;
}

@media (max-width: 1024px) {
    .yxy-sbc-strip {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .yxy-sbc-strip::-webkit-scrollbar {
        display: none;
    }

    .yxy-sbc-chip {
        min-width: 98px;
        padding: 8px 9px;
    }

    .yxy-sbc-chip-img {
        width: 68px;
        height: 68px;
    }
}

@media (max-width: 640px) {
    .yxy-sbc-strip {
        gap: 10px;
    }

    .yxy-sbc-chip {
        min-width: 92px;
        box-shadow: 0 6px 16px rgba(15, 23, 42, 0.05);
    }
}

.yxy-cat-bg {
    position: relative;
    inset: auto;
    width: 100%;
    height: 190px;
    border-radius: 18px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f8fafc;
    transition: transform 0.6s ease;
}

.yxy-cat-overlay {
    display: none;
}

.yxy-cat-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.yxy-cat-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f172a;
}

.yxy-cat-link {
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: inline-block;
    color: #60a5fa;
}

.yxy-cat-card:hover .yxy-cat-bg {
    transform: scale(1.1);
}

.yxy-cat-card:hover .yxy-cat-link {
    opacity: 1;
    transform: translateY(0);
}

/* Modern Product Grid */
.yxy-product-grid-modern {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 40px;
}

@media (max-width: 1200px) {
    .yxy-product-grid-modern {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .yxy-product-grid-modern {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .yxy-product-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.yxy-modern-product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.yxy-modern-product-card:hover {
    box-shadow: 0 20px 40px -5px rgba(15, 23, 42, 0.1);
    transform: translateY(-5px);
}

.yxy-mp-image {
    position: relative;
    aspect-ratio: 1;
    background: #f8fafc;
    overflow: hidden;
}

.yxy-mp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.yxy-modern-product-card:hover .yxy-mp-image img {
    transform: scale(1.05);
}

.yxy-sale-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ef4444;
    color: #fff;
    padding: 4px 10px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.yxy-mp-actions {
    position: absolute;
    bottom: 12px;
    right: 12px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: flex;
    gap: 8px;
    align-items: center;
}

.yxy-modern-product-card:hover .yxy-mp-actions {
    opacity: 1;
    transform: translateY(0);
}

.yxy-view-btn {
    background: #2563eb;
    color: #fff;
    border-radius: 99px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.yxy-view-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

.yxy-mp-actions .button {
    background: #0f172a;
    color: #fff;
    border-radius: 99px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

.yxy-mp-details {
    padding: 20px;
}

.yxy-mp-cat {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.yxy-mp-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
}

.yxy-mp-title a {
    color: #0f172a;
    text-decoration: none;
}

.yxy-mp-price {
    font-weight: 700;
    color: #2563eb;
    font-size: 16px;
}

/* Capabilities Visual */
.yxy-capabilities-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    grid-auto-rows: 240px;
}

.yxy-cap-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
}

.yxy-cap-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.yxy-cap-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.yxy-cap-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.yxy-cap-item:hover img {
    transform: scale(1.1);
}

.yxy-cap-item:hover .yxy-cap-overlay,
.yxy-cap-item.large .yxy-cap-overlay {
    opacity: 1;
}

.yxy-cap-overlay h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.yxy-cap-overlay p {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.5;
}

/* Certifications */
.yxy-certifications {
    background: #fff;
    padding: 80px 0;
}

.yxy-cert-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.yxy-check-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.yxy-check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #475569;
    font-weight: 500;
}

.yxy-check-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 800;
}

.yxy-cert-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.yxy-cert-logo {
    aspect-ratio: 3/2;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    transition: all 0.3s ease;
}

.yxy-cert-logo:hover {
    border-color: #cbd5e1;
    transform: translateY(-3px);
}

.yxy-cert-placeholder {
    font-weight: 700;
    color: #94a3b8;
    font-size: 14px;
}

/* Testimonials Modern */
.yxy-testimonials-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 40px;
    grid-auto-rows: 1fr;
    perspective: 1200px;
}

.yxy-testimonial-box {
    background: #fff;
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.05);
    display: none;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: rotateY(-12deg) scale(0.98);
    transition: opacity 0.45s ease, transform 0.45s ease;
    transform-origin: left center;
    transform-style: preserve-3d;
}

.yxy-testimonial-box.is-active {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: rotateY(0deg) scale(1);
}

.yxy-testimonial-box.is-flip {
    animation: yxy-page-flip 0.7s ease both;
}

.yxy-stars {
    color: #fbbf24;
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.yxy-quote {
    font-size: 16px;
    line-height: 1.6;
    color: #334155;
    margin-bottom: 24px;
    font-style: italic;
}

.yxy-author strong {
    display: block;
    color: #0f172a;
    font-weight: 700;
}

.yxy-author span {
    display: block;
    color: #64748b;
}

/* CTA Section */
.yxy-cta-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 100px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.yxy-cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.yxy-cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.yxy-cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.yxy-cta-content p {
    color: #cbd5e1;
    font-size: 18px;
    margin-bottom: 32px;
}

.yxy-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.yxy-btn-white {
    background: #fff;
    color: #0f172a;
    padding: 12px 32px;
    border-radius: 99px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.yxy-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.yxy-btn-transparent {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px 32px;
    border-radius: 99px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.yxy-btn-transparent:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .yxy-hero-modern-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: left;
    }

    .yxy-hero-visual {
        order: 2;
    }

    .yxy-card-visual.main-card {
        width: 80%;
        max-width: 500px;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 0 auto;
    }

    .yxy-hero-content {
        order: 1;
    }
}

@media (max-width: 768px) {
    .yxy-hero-modern-inner {
        grid-template-columns: 1fr;
        text-align: center;
        display: flex;
        flex-direction: column;
    }

    .yxy-hero-content {
        order: 1;
    }

    .yxy-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .yxy-hero-actions {
        justify-content: center;
    }

    .yxy-hero-stats {
        justify-content: center;
    }

    .yxy-hero-visual {
        display: block !important;
        order: 2;
        margin-top: 32px;
        width: 100%;
        height: auto;
    }

    .yxy-hero-card-stack {
        position: static;
        width: 100%;
        height: auto;
        margin: 0 auto;
    }

    .yxy-card-visual.main-card {
        width: 100% !important;
        max-width: 100% !important;
        aspect-ratio: 640 / 217 !important;
        height: auto !important;
        max-height: none !important;
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        margin: 0 auto;
        opacity: 1 !important;
    }

    .yxy-card-stack {
        position: static;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 32px;
    }

    .yxy-card-visual {
        position: relative;
        width: 90%;
        max-width: 400px;
        height: 250px;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        margin: 0 auto;
        opacity: 1;
    }

    .yxy-card-visual.main-card,
    .yxy-card-visual.secondary-card {
        opacity: 1;
    }

    .yxy-capabilities-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .yxy-cap-item.large {
        grid-column: auto;
        grid-row: auto;
    }

    .yxy-cert-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Button Secondary Style (Cart/Checkout pages) */
.yxy-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    background: #ffffff;
    color: #374151;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 48px;
}

.yxy-btn-secondary:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    color: #111827;
}

/* Hide mobile filters on desktop */
@media (min-width: 769px) {
    .yxy-mobile-filters {
        display: none !important;
    }
}

/* Modern Dual Price Slider - Perfect Alignment Fix */
.yxy-filter-price-slider {
    position: relative;
    width: 100%;
    height: 30px;
    /* Reduced height container */
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* The Track */
.yxy-filter-price-slider-track {
    position: absolute;
    width: 100%;
    height: 4px;
    border-radius: 99px;
    background: #e2e8f0;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
}

/* The Inputs */
.yxy-filter-price-slider input[type="range"] {
    position: absolute;
    pointer-events: none;
    -webkit-appearance: none;
    z-index: 2;
    height: 0;
    /* Magic fix: Remove height so only thumb exists visually */
    width: 100%;
    opacity: 1;
    /* Keep opacity 1 so thumb is visible */
    margin: 0;
    padding: 0;
    background: transparent;
    top: 50%;
    /* Position exactly at center */
    transform: translateY(-50%);
    /* Center the zero-height element */
}

/* Webkit Thumb */
.yxy-filter-price-slider input[type="range"]::-webkit-slider-thumb {
    pointer-events: all;
    width: 20px;
    height: 20px;
    -webkit-appearance: none;
    border-radius: 50%;
    background: #ffffff;
    border: 4px solid #2563eb;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    margin-top: -10px;
    /* Center thumb: half of height (20px/2 = 10px) but since input is 0 height, we offset upwards */
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.yxy-filter-price-slider input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.25);
}

/* Firefox Thumb */
.yxy-filter-price-slider input[type="range"]::-moz-range-thumb {
    pointer-events: all;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffffff;
    border: 4px solid #2563eb;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    border: none;
    /* Reset default border if any */
    transform: translateY(0);
    /* Firefox centers uniquely */
    box-sizing: border-box;
}

/* Firefox Track - Make transparent */
.yxy-filter-price-slider input[type="range"]::-moz-range-track {
    background: transparent;
    border: none;
    height: 0;
}

/* Labels - positioned below slider */
.yxy-filter-price-slider-labels {
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
    pointer-events: none;
}

/* Fallback for WooCommerce Widget Price Filter (if used elsewhere) */
.woocommerce .widget_price_filter .price_slider {
    margin-bottom: 20px !important;
    background: #e2e8f0 !important;
    border-radius: 999px !important;
    height: 6px !important;
    border: none !important;
    margin-top: 15px !important;
    position: relative;
    text-align: left;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
    background: #2563eb !important;
    border-radius: 999px !important;
    height: 100% !important;
    top: 0 !important;
    position: absolute;
    z-index: 1;
    display: block;
    border: 0;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
    background: #2563eb !important;
    border: 2px solid #ffffff !important;
    border-radius: 50% !important;
    width: 16px !important;
    height: 16px !important;
    top: 50% !important;
    margin-top: -8px !important;
    cursor: pointer !important;
    outline: none !important;
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.4) !important;
    position: absolute;
    z-index: 2;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-handle:hover,
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle:active {
    transform: scale(1.1);
    background: #1d4ed8 !important;
}

.woocommerce .widget_price_filter .price_slider_amount {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
}

.woocommerce .widget_price_filter .price_slider_amount .button {
    font-size: 13px !important;
    padding: 6px 14px !important;
    border-radius: 999px !important;
    background: #0f172a !important;
    color: #fff !important;
    font-weight: 500 !important;
    order: 2;
}

.woocommerce .widget_price_filter .price_slider_amount .button:hover {
    background: #2563eb !important;
}

.woocommerce .widget_price_filter .price_label {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #475569 !important;
    order: 1;
}

/* ... (previous content) ... */

/* ==========================================================================
   DARK THEME CERTIFICATIONS & TESTIMONIALS
   ========================================================================== */

/* Certifications Section */
.yxy-certifications {
    background: var(--yxy-dark-950);
    position: relative;
    padding: 80px 0;
}

.yxy-cert-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.yxy-cert-text h2 {
    font-family: var(--font-display);
    color: var(--yxy-slate-50);
    font-size: 32px;
    margin-bottom: 20px;
}

.yxy-cert-text p {
    color: var(--yxy-slate-400);
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.7;
}

.yxy-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.yxy-check-list li {
    position: relative;
    padding-left: 32px;
    color: var(--yxy-slate-200);
    font-weight: 500;
}

.yxy-check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background: rgba(6, 182, 212, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yxy-cyan-400);
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.2);
}

.yxy-cert-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.yxy-cert-logo {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-out-expo);
    color: var(--yxy-slate-300);
    font-weight: 600;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.yxy-cert-logo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(6, 182, 212, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.yxy-cert-logo:hover {
    border-color: var(--yxy-cyan-500);
    box-shadow: 0 0 20px var(--yxy-cyan-glow);
    color: var(--yxy-cyan-400);
    transform: translateY(-5px);
}

.yxy-cert-logo:hover::before {
    opacity: 1;
}

/* Testimonials Section */
.yxy-bg-light {
    background: var(--yxy-dark-900) !important;
}

.yxy-testimonial-box {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 32px;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.yxy-testimonial-box:hover {
    border-color: var(--yxy-amber-500);
    box-shadow: 0 0 30px var(--yxy-amber-glow);
    transform: translateY(-5px);
}

.yxy-stars {
    color: var(--yxy-amber-400);
    margin-bottom: 20px;
    font-size: 14px;
    letter-spacing: 2px;
}

.yxy-quote {
    color: var(--yxy-slate-300);
    font-style: italic;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.yxy-author strong {
    display: block;
    color: var(--yxy-slate-50);
    font-family: var(--font-display);
    font-size: 16px;
}

.yxy-author span {
    color: var(--yxy-slate-500);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
    display: block;
}

/* CTA Section */
.yxy-cta-section {
    background: linear-gradient(135deg, var(--yxy-dark-900), var(--yxy-dark-800));
    padding: 80px 0;
    position: relative;
    border-top: 1px solid var(--glass-border);
}

.yxy-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.15), transparent 60%);
    pointer-events: none;
}

.yxy-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.yxy-cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    color: var(--yxy-slate-50);
    margin-bottom: 16px;
    text-shadow: 0 0 30px var(--yxy-cyan-glow);
}

.yxy-cta-content p {
    color: var(--yxy-slate-400);
    font-size: 18px;
    margin-bottom: 32px;
}

.yxy-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.yxy-btn-white {
    background: var(--yxy-slate-50);
    color: var(--yxy-dark-950);
    padding: 14px 32px;
    border-radius: 999px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.yxy-btn-white:hover {
    background: var(--yxy-cyan-400);
    box-shadow: 0 0 40px var(--yxy-cyan-glow);
    transform: translateY(-2px);
}

.yxy-btn-transparent {
    background: transparent;
    border: 1px solid var(--yxy-slate-600);
    color: var(--yxy-slate-200);
    padding: 13px 31px;
    border-radius: 999px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.yxy-btn-transparent:hover {
    border-color: var(--yxy-slate-50);
    color: var(--yxy-slate-50);
    background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .yxy-cert-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .yxy-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .yxy-btn-white,
    .yxy-btn-transparent {
        width: 100%;
        text-align: center;
    }
}

/* ==========================================================================
   DARK INDUSTRIAL THEME ADDITIONS
   ========================================================================== */

/* Hero Card Visual */
.yxy-hero-card-stack {
    position: relative;
    width: 100%;
    height: 480px;
    perspective: 1500px;
}

.yxy-card-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateY(15deg) rotateX(5deg) scale(0.9);
    width: 320px;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        -20px 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: all 0.8s var(--ease-bounce);
    z-index: 1;
    background: var(--yxy-dark-800);
}

.yxy-card-slide.is-active {
    transform: translate(-50%, -50%) rotateY(-5deg) rotateX(5deg) scale(1);
    opacity: 1;
    z-index: 10;
    box-shadow:
        -30px 30px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px var(--yxy-cyan-500),
        0 0 40px var(--yxy-cyan-glow);
}

.yxy-card-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yxy-card-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--yxy-dark-900);
    border: 1px solid var(--yxy-cyan-500);
    color: var(--yxy-cyan-400);
    padding: 12px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 20;
    animation: yxy-float 6s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 11px;
}

.yxy-pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--yxy-cyan-500);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.2);
    animation: yxy-pulse-dot 2s infinite;
}

@keyframes yxy-pulse-dot {
    0% {
        box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(6, 182, 212, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(6, 182, 212, 0);
    }
}

/* Feature Cards (Glass-morphism) */
.yxy-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.yxy-feature-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
}

.yxy-feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--yxy-purple-500);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px var(--yxy-purple-glow);
}

.yxy-feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--yxy-cyan-400);
    font-size: 24px;
}

.yxy-feature-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--yxy-slate-50);
    margin-bottom: 12px;
}

.yxy-feature-card p {
    color: var(--yxy-slate-400);
    line-height: 1.6;
}

/* Product Grid (Dark Theme Overrides) */
.woocommerce ul.products li.product {
    background: var(--yxy-dark-800) !important;
    border: 1px solid var(--glass-border) !important;
    box-shadow: none !important;
}

.woocommerce ul.products li.product:hover {
    border-color: var(--yxy-cyan-500) !important;
    box-shadow: 0 0 30px var(--yxy-cyan-glow) !important;
    transform: translateY(-8px) !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: var(--yxy-slate-50) !important;
    font-family: var(--font-display) !important;
    font-weight: 400 !important;
    letter-spacing: 0.02em !important;
}

.woocommerce ul.products li.product .price {
    color: var(--yxy-cyan-400) !important;
    font-weight: 700 !important;
    font-size: 18px !important;
}

.woocommerce ul.products li.product .yxy-view-button {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: var(--yxy-slate-300) !important;
}

.woocommerce ul.products li.product:hover .yxy-view-button {
    background: var(--yxy-cyan-500) !important;
    border-color: var(--yxy-cyan-500) !important;
    color: var(--yxy-dark-900) !important;
    box-shadow: 0 0 20px var(--yxy-cyan-glow) !important;
}

/* Footer Enhancements */
.yxy-footer {
    background: var(--yxy-dark-950);
    border-top: 1px solid var(--yxy-dark-800);
    color: var(--yxy-slate-400);
}

.yxy-footer h1,
.yxy-footer h2,
.yxy-footer h3,
.yxy-footer h4,
.yxy-footer h5,
.yxy-footer h6 {
    color: var(--yxy-slate-50);
    font-family: var(--font-display);
}

.yxy-footer-heading {
    color: var(--yxy-slate-50);
    font-family: var(--font-display);
}

/* Responsive Adjustments for New Components */
@media (max-width: 768px) {
    .yxy-hero-modern {
        text-align: center;
        padding-top: 120px;
    }

    .yxy-hero-content h1 {
        font-size: 42px;
    }

    .yxy-hero-actions {
        justify-content: center;
    }

    .yxy-hero-stats {
        justify-content: center;
    }

    .yxy-hero-visual {
        margin-top: 60px;
        transform: scale(0.9);
    }

    .yxy-hero-card-stack {
        height: 380px;
    }

    .yxy-card-slide {
        width: 280px;
        height: 360px;
    }
}

/* Square Hero Slider */
.yxy-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.yxy-hero-slider-square {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1 / 1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 40px var(--yxy-cyan-glow);
    background: var(--yxy-dark-800);
}

.yxy-hero-slide-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 8s ease-out;
    transform: scale(1.1);
    z-index: 1;
}

.yxy-hero-slide-item.is-active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.yxy-hero-slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yxy-slider-progress {
    position: absolute;
    bottom: 24px;
    left: 24px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

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

.yxy-slider-dot.is-active {
    background: var(--yxy-cyan-400);
    box-shadow: 0 0 10px var(--yxy-cyan-glow);
    transform: scale(1.2);
}

.yxy-slider-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 10;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: var(--yxy-cyan-400);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Executive Light Theme Overrides */

body {
    background: var(--yxy-dark-950);
    color: var(--yxy-slate-300);
}

.yxy-header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--yxy-dark-700);
}

.yxy-nav a {
    color: var(--yxy-slate-200);
}

.yxy-nav a:hover,
.yxy-nav a.active {
    color: var(--yxy-cyan-500);
}

.yxy-hero-slider-square {
    background: #ffffff;
    box-shadow:
        0 20px 40px -4px rgba(0, 0, 0, 0.1),
        0 10px 15px -3px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(0, 0, 0, 0.03);
    /* Clean border */
}

/* Update slider badge for light theme */
.yxy-slider-badge {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--yxy-cyan-400);
    color: var(--yxy-cyan-400);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.yxy-btn-outline {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--yxy-dark-600);
    color: var(--yxy-slate-50);
}

.yxy-btn-outline:hover {
    border-color: var(--yxy-cyan-500);
    color: var(--yxy-cyan-500);
    background: #fff;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.15);
}

/* Feature & Testimonial Cards - Clean White */
.yxy-feature-card,
.yxy-testimonial-box,
.yxy-cert-logo {
    background: #ffffff;
    border: 1px solid var(--yxy-dark-700);
    /* Slate-200 */
    box-shadow: var(--shadow-card);
}

.yxy-feature-card:hover,
.yxy-testimonial-box:hover,
.yxy-cert-logo:hover {
    box-shadow: var(--shadow-card-hover), var(--shadow-glow-cyan);
    /* Cyan glow on hover is nice professional touch */
    border-color: var(--yxy-cyan-400);
    transform: translateY(-5px);
}

.yxy-feature-icon {
    background: var(--yxy-dark-800);
    /* Slate-100 */
    color: var(--yxy-cyan-500);
    border: none;
}

.yxy-hero-stats .yxy-stat-item {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--yxy-dark-700);
    color: var(--yxy-slate-50);
}

.yxy-stat-number {
    color: var(--yxy-cyan-500);
}

.yxy-stat-label {
    color: var(--yxy-slate-400);
}

.yxy-footer {
    background: #0f172a;
    /* Keep dark footer */
    color: #94a3b8;
}

.yxy-footer-heading,
.yxy-footer h4 {
    color: #f8fafc;
}

/* FIX: Header Visibility & Light Footer */

/* Force logo text to dark navy */
.yxy-logo-wordmark {
    color: var(--yxy-slate-50) !important;
    font-weight: 800;
    font-family: var(--font-display);
    letter-spacing: 0.5px;
}

/* Ensure navigation links are visible on light header */
.yxy-nav a {
    color: var(--yxy-slate-200) !important;
    font-weight: 500;
}

.yxy-nav a:hover,
.yxy-nav a.current-menu-item {
    color: var(--yxy-cyan-500) !important;
}

/* Light Theme Footer Override */
.yxy-footer {
    background: var(--yxy-dark-900) !important;
    /* Slate-50 */
    color: var(--yxy-slate-300) !important;
    border-top: 1px solid var(--yxy-dark-700);
}

.yxy-footer h4,
.yxy-footer-heading {
    color: var(--yxy-slate-50) !important;
    /* Deep Navy */
    text-shadow: none !important;
}

.yxy-footer a {
    color: var(--yxy-slate-300);
}

.yxy-footer a:hover {
    color: var(--yxy-cyan-400);
}

.yxy-footer-bottom {
    border-top: 1px solid var(--yxy-dark-700);
    color: var(--yxy-slate-400);
}

/* Footer CTA Box - Keep accessible but fit light theme */
.yxy-footer .yxy-cta-box {
    background: linear-gradient(135deg, var(--yxy-slate-50), #1e293b);
    color: white;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border: none;
}

.yxy-footer .yxy-cta-box h3,
.yxy-footer .yxy-cta-box p {
    color: white !important;
}

/* FIX: Footer Text Visibility (Light Theme) */

/* Footer Brand Text */
.yxy-footer-tagline {
    color: var(--yxy-slate-200) !important;
    /* #334155 (Dark Slate) */
    font-weight: 700;
}

.yxy-footer-blurb {
    color: var(--yxy-slate-300) !important;
    /* #475569 (Medium Slate) */
    font-weight: 500;
}

/* Footer CTA Box Text */
/* Ensure box background is solid dark for contrast */
.yxy-footer-cta-card {
    background: linear-gradient(135deg, #1e293b, #0f172a) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.2);
}

.yxy-footer-cta-card h3 {
    color: #ffffff !important;
}

.yxy-footer-cta-card p {
    color: #e2e8f0 !important;
    /* Slate-200 (Light Grey) */
    font-weight: 400;
}

/* Social Buttons Visibility */
.yxy-social-link {
    background: #ffffff;
    border: 1px solid #cbd5e1 !important;
    /* Slate-300 */
    color: #334155 !important;
    /* Slate-700 */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.yxy-social-link:hover {
    border-color: var(--yxy-cyan-500) !important;
    color: var(--yxy-cyan-600) !important;
    background: #f0f9ff;
}

/* Footer List Items & Contact Info */
.yxy-footer-list li,
.yxy-footer-list li a,
.yxy-footer-info li,
.yxy-footer-info li a,
.yxy-footer-bullets li {
    color: #475569 !important;
    /* Slate-600 */
}

.yxy-footer-list li a:hover,
.yxy-footer-info li a:hover {
    color: var(--yxy-cyan-500) !important;
}

/* FIX: Social Icons & Global Light Theme */

/* Define Social Icons with SVGs */
.yxy-social-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
    filter: grayscale(100%) opacity(0.7);
    /* Muted by default */
}

.yxy-social-link:hover .yxy-social-icon {
    filter: none;
    /* Color on hover */
    transform: scale(1.1);
}

/* WhatsApp Icon */
.yxy-social--whatsapp .yxy-social-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%2325D366' d='M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z'/%3E%3C/svg%3E");
}

/* Email Icon */
.yxy-social--email .yxy-social-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23EA4335' d='M48 64C21.5 64 0 85.5 0 112c0 15.1 7.1 29.3 19.2 38.4L236.8 313.6c11.4 8.5 27 8.5 38.4 0L492.8 150.4c12.1-9.1 19.2-23.3 19.2-38.4 0-26.5-21.5-48-48-48H48zM0 176V384c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V176L294.4 339.2c-22.8 17.1-54 17.1-76.8 0L0 176z'/%3E%3C/svg%3E");
}

/* Facebook Icon */
.yxy-social--facebook .yxy-social-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%231877F2' d='M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z'/%3E%3C/svg%3E");
}

/* GLOBAL LIGHT THEME ENFORCEMENT */

/* Ensure single product pages are clean white */
.single-product .site-content,
.archive .site-content {
    background: #f8fafc;
}

.woocommerce div.product {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: var(--shadow-card);
    padding: 40px;
    margin-top: 40px;
}

/* Clean Product Tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs {
    background: transparent;
    border-bottom: 2px solid var(--yxy-dark-700);
    padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    background: transparent;
    border: none;
    border-radius: 0;
    margin: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    color: var(--yxy-slate-300);
    font-weight: 600;
    padding: 15px 25px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: var(--yxy-cyan-500);
    border-bottom: 2px solid var(--yxy-cyan-500);
    margin-bottom: -2px;
}

/* Tables and Inputs Light Theme */
.woocommerce table.shop_attributes th,
.woocommerce table.shop_attributes td {
    background: transparent;
    color: var(--yxy-slate-300);
    border-bottom: 1px solid var(--yxy-dark-700);
}

.woocommerce .quantity .qty {
    background: #ffffff;
    border: 1px solid var(--yxy-dark-700);
    color: var(--yxy-slate-50);
}

.entry-summary h1.product_title {
    color: var(--yxy-slate-50);
    font-family: var(--font-display);
}

.price {
    color: var(--yxy-cyan-500) !important;
}

/* FIX: Single Product Page Cleanup */

/* Remove extraneous backgrounds from summary column */
.woocommerce div.product .entry-summary,
.woocommerce div.product .summary {
    background: transparent !important;
    /* Remove blue/lavender bg */
    box-shadow: none !important;
    border: none !important;
}

/* Ensure global product container acts as the card */
.woocommerce div.product {
    background: #ffffff !important;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05) !important;
    border: 1px solid #e2e8f0 !important;
    /* Slate-200 */
    padding: 40px !important;
}

/* Fix price color in single product */
.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: var(--yxy-cyan-500) !important;
    font-size: 24px;
    font-weight: 700;
}

/* Meta Data Clean up */
.product_meta {
    color: var(--yxy-slate-400) !important;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
    margin-top: 20px;
}

/* Force White Background on Single Product */
.single-product .site-content {
    background: #ffffff !important;
}