@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

html, body {
    overflow-x: hidden;
}

@media (min-width: 768px) {
    .mobile-only {
        display: none !important;
    }
}

:root {

    --primary: #e02020;
    --primary-hover: #c81a1a;
    --primary-light: rgba(224, 32, 32, 0.12);
    --dark: #0d0f12;
    --dark-2: #161a20;
    --dark-3: #1e2430;
    --gray-900: #111827;
    --gray-700: #374151;
    --gray-500: #6b7280;
    --gray-300: #d1d5db;
    --gray-100: #f3f4f6;
    --white: #ffffff;
    --accent: #f59e0b;
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.2);

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--gray-700);
    line-height: 1.65;
 /*   background-color: var(--gray-100);*/
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

.container {
    max-width: 1270px;
    margin: 0 auto;
    padding: 0;
}

.grid {
    display: grid;
    gap: 2rem;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.mt-4 {
    margin-top: 1rem;
}

.bg-dark-section {
    background-color: var(--dark-2);
}

.section {
    padding: 3rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 99px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.bg-dark-section .section-title {
    color: var(--white);
}

.bg-dark-section .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.bg-dark-section .section-tag {
    background: rgba(224, 32, 32, 0.2);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 560px;
    margin: 0 auto;
}

.section-title.text-left {
    text-align: left;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(224, 32, 32, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-hover) 0%, #a01515 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(224, 32, 32, 0.45);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.22);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-glass-dark {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-glass-dark:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cart-icon-link {
    position: relative;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
    padding: 0.5rem 0.75rem;
    border-radius: 10px;
}

.cart-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.cart-text {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
}

.cart-icon-link:hover {
    color: var(--primary);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--primary);
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.navbar {
    background: #ffffff;
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
}

.logo {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.logo-bold {
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo-light {
    font-weight: 400;
    color: var(--dark);
}

.nav-links {
    display: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
    transform: scaleX(0);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.mobile-menu-btn {
    background: none;
    border: none;
    color: var(--dark);
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 1rem;
    background: var(--white);
    border-top: 1px solid var(--gray-300);
}

.mobile-menu a {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-300);
    color: var(--gray-700);
    font-weight: 500;
}

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 50%, rgba(224, 32, 32, 0.18) 0%, transparent 65%),
        radial-gradient(ellipse at 10% 80%, rgba(224, 32, 32, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, #0d0f12 0%, #1a1f2e 100%);
    background-image: url("/images/bg3.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: top;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

.p1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -80px;
    animation-delay: 0s;
}

.p2 {
    width: 200px;
    height: 200px;
    bottom: 50px;
    right: 200px;
    animation-delay: 2s;
    opacity: 0.08;
}

.p3 {
    width: 80px;
    height: 80px;
    top: 40%;
    left: 40%;
    animation-delay: 4s;
    opacity: 0.2;
}

@keyframes float {


    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.05);
    }

}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding-bottom: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(224, 32, 32, 0.25);
    border: 1px solid rgba(0, 0, 0, 0.3);
    color: #ffcaca;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 99px;
    margin-top: 1.2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0px 0px 8px 0px rgb(255, 255, 255);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {


    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }

}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.hero-highlight {
    background: linear-gradient(135deg, var(--primary) 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 2.5rem;
    max-width: 560px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    margin-bottom: 3.5rem;
}

.hero-cta {
    font-size: 1.05rem;
    padding: 1rem 2rem;
}

.hero-stats {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-stat strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.hero-stat span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

.categories {
    background: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.category-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    padding: 1.5rem;
    color: var(--dark);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.category-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--dark);
}

.category-card:hover::before {
    opacity: 1;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    color: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.category-card:hover .category-icon {
    background: var(--primary);
    color: var(--white);
}

.category-body {
    flex: 1;
    position: relative;
    z-index: 1;
}

.category-body h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.category-body p {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.4;
}

.category-arrow {
    font-size: 1.25rem;
    color: var(--gray-300);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.category-card:hover .category-arrow {
    color: var(--primary);
    transform: translateX(4px);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.about-visual {
    position: relative;
    min-height: 400px;
}

.about-card-main {
    background: linear-gradient(135deg, var(--primary) 0%, #a01515 100%);
    color: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.about-number {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -3px;
}

.about-number-label {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-top: 0.5rem;
}

.about-card-secondary {
    position: absolute;
    background: var(--dark-3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: white;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.about-card-secondary strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
}

.about-card-secondary span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.ac1 {
    bottom: 40px;
    right: -20px;
}

.ac2 {
    top: -20px;
    right: 40px;
}

.about-content .about-lead {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.about-content p {
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 1rem;
}

.about-content .section-title {
    color: var(--white);
}

.feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
    font-size: 0.75rem;
}

.feature-item h4 {
    color: var(--white);
    margin-bottom: 0.2rem;
    font-size: 0.95rem;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin: 0;
}

.services {
    background: var(--gray-100);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--gray-300);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.service-icon {
    width: 52px;
    height: 52px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: white;
}

.service-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.testimonials-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

.testimonial-card {
    background: var(--dark-3);
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 2rem;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(224, 32, 32, 0.3);
}

.tc-featured {
    background: linear-gradient(135deg, rgba(224, 32, 32, 0.15) 0%, rgba(224, 32, 32, 0.05) 100%);
    border-color: rgba(224, 32, 32, 0.3);
}

.stars {
    color: var(--accent);
    letter-spacing: 2px;
    font-size: 0.95rem;
}

.quote {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-style: italic;
}

.author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.author h5 {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 0.1rem;
}

.author small {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.75rem;
}

.cta-section {
    background: linear-gradient(rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.9)), url('/images/bg2.png') no-repeat center center;
    background-size: cover;
}

.cta-card {
    background: linear-gradient(135deg, var(--dark-3) 0%, rgba(224, 32, 32, 0.1) 100%);
    border: 1px solid rgba(224, 32, 32, 0.2);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
}

.cta-card h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.55);
}

.cta-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.cta-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-shrink: 0;
}

.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.55);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer h3,
.footer h4 {
    color: var(--white);
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.footer p {
    font-size: 0.875rem;
    line-height: 1.7;
}

.footer ul {
    list-style: none;
}

.footer li {
    margin-bottom: 0.6rem;
    font-size: 0.875rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.5);
}

.footer a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.8rem;
}

.catalogue-header {
    background: #f3f4f6;
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.catalogue-header h1 {
    color: #171717;
    margin-bottom: 0;
    font-size: clamp(2.8rem, 7vw, 2.5rem);
    font-weight: 900;
    position: relative;
    letter-spacing: -1px;
    line-height: 1.05;
    z-index: 444;
}

.catalogue-header p {
    color: rgb(0 0 0 / 66%);
}

.catalogue-header-pdp-style {
    padding: 2.5rem 0 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--gray-300);
}

.catalogue-header-pdp-style h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.catalogue-header-pdp-style p {
    color: var(--gray-500);
    font-size: 1.1rem;
}

.catalogue-body {
    padding: 0;
}

.text-white {
    color: white;
}

.catalogue-layout {
    display: grid;
    grid-template-columns: 329px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.sidebar {
    background: transparent;
    border-radius: var(--radius);
    padding: 0;
    position: sticky;
    top: 6rem;
    color: inherit;
    height: auto;
}

.sidebar h3 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 1rem;
}

.sidebar ul {
    list-style: none;
}

.sidebar li {
    margin-bottom: 0.25rem;
}

.sidebar a {
    display: block;
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--gray-700);
    font-weight: 500;
    transition: var(--transition);
}

.sidebar a:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.sidebar a.active {
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 700;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(224, 32, 32, 0.1);
}

.product-thumb {
    height: 220px;
    background: #fcfcfc;
    display: block;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px dotted #d7d7d7;
    padding-top: 85%;
}

.product-thumb img.is-placeholder {
    padding: 1.5rem;
}

.product-thumb img {
    transition: transform 0.6s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 96%;
    max-height: 96%;
    object-fit: contain;
}

.product-card:hover .product-thumb img {
    transform: translate(-50%, -50%) scale(1.08);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(70, 255, 39, 0.15);
    color: #1a8a0d;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.4rem 0.75rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    border: 1px solid rgba(70, 255, 39, 0.2);
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: linear-gradient(to bottom, transparent, rgba(248, 249, 250, 0.3));
    flex-grow: 1;
}

.product-meta-top {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    align-items: center;
    gap: 0.75rem;
}

.product-title-row {
    margin-bottom: 0.5rem;
    order: 1;
}

.product-brand-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    order: 2;
    margin-top: 0.25rem;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.product-cat-col,
.product-brand-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.spec-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
    margin-right: 4px;
}

.product-cat-tag {
    font-size: 0.7rem;
    font-weight: 600;
    color: #718096;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    text-transform: uppercase;
    background: rgba(224, 32, 32, 0.08);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.product-brand-name {
    font-size: 0.75rem;
    font-weight: 700;
    color: #2d3748;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    margin-left: 8px;
    letter-spacing: -0.2px;
    background: #f7fafc;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a202c;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 3.1rem;
    text-decoration: none;
    margin-bottom: 1rem;
    transition: color 0.2s;
}

.product-part-number {
    font-size: 0.7rem;
    color: var(--gray-500);
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.02em;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.product-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.product-price-box {
    display: flex;
    flex-direction: column;
    min-width: 80px;
    align-items: flex-start;
    margin-top: 10px;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.product-price small {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-500);
}

.product-card .btn-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--dark);
    color: white;
    border-radius: 10px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.product-card .btn-cart:hover {
    background: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(224, 32, 32, 0.3);
}

.empty-state {
    text-align: center;
    padding: 6rem 2rem;
    background: #f8fafc;
    border-radius: 20px;
    border: 2px dashed #e2e8f0;
    color: var(--gray-500);
}

.empty-state svg {
    color: var(--gray-300);
    margin-bottom: 1rem;
}

.empty-state h3 {
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.cart-layout {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
    align-items: start;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--gray-300);
}

.cart-table th,
.cart-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-300);
}

.cart-table th {
    background: #f8fafc;
    font-weight: 700;
    color: #64748b;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    padding: 1.25rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.cart-item-thumb {
    width: 48px;
    height: 48px;
    background: var(--gray-100);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.btn-remove {
    display: flex;
    padding: 0.5rem;
    color: #94a3b8;
    border-radius: var(--radius);
    transition: all 0.2s;
    background: none;
    border: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.btn-remove:hover {
    background: #fef2f2;
    color: #ef4444;
    border-radius: 8px;
}

.cart-summary {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    position: sticky;
    top: 2rem;
}

.cart-summary h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-300);
    color: var(--dark);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-300);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.summary-total {
    padding-top: 1.25rem;
    font-size: 1.125rem;
    border-bottom: none;
    border-top: 1px solid #e2e8f0;
    margin-top: 1.25rem;
    align-items: flex-start;
}

.checkout-layout {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr;
    align-items: start;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--dark);
    transition: var(--transition);
    outline: none;
    background: var(--white);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(224, 32, 32, 0.1);
}

select.form-control option {
    color: #000;
}

textarea.form-control {
    resize: vertical;
}

.alert-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius);
}

.alert-error ul {
    padding-left: 1.25rem;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.product-detail-thumb {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-lg);
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow: hidden;
}

.product-detail-cat a {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 99px;
    margin-bottom: 1rem;
}

.product-detail-name {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 850;
    color: var(--gray-900);
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
    margin: 0;
}

.product-detail-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -1px;
    margin-bottom: 1.25rem;
}

.product-detail-stock {
    margin-bottom: 1.5rem;
}

.stock-available {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #16a34a;
    font-weight: 600;
    font-size: 0.9rem;
    background: #dcfce7;
    padding: 0.4rem 0.85rem;
    border-radius: 99px;
}

.stock-unavailable {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #dc2626;
    font-weight: 600;
    font-size: 0.9rem;
    background: #fee2e2;
    padding: 0.4rem 0.85rem;
    border-radius: 99px;
}

.product-detail-description {
    border-top: 1px solid var(--gray-300);
    padding-top: 1.25rem;
    margin-bottom: 1.25rem;
    color: var(--gray-700);
    line-height: 1.75;
}

.product-detail-compat {
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}

.product-detail-compat h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.product-detail-compat p {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.product-detail-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.qty-input {
    width: 50px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    background: transparent;
    color: #1e293b;
    -moz-appearance: textfield;
    appearance: textfield;
}

.product-guarantees {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    border-top: 1px solid var(--gray-300);
    padding-top: 1.25rem;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-500);
}

.guarantee-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

.cart-table-wrap {
    overflow-x: auto;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.4;
    transition: 0.3s;
}

.step.active {
    opacity: 1;
}

.step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--dark);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.step.active .step-num {
    background: var(--primary);
}

.step-label {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #0f172a;
}

.step-line {
    flex: 0 0 40px;
    height: 2px;
    background: var(--gray-300);
    margin-top: -20px;
}

.checkout-section {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.section-title-sm {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 1rem;
}

.summary-card {
    background: #ffffff;
    color: white;
    padding: 2rem;
    border-radius: 20px;
    position: sticky;
    top: 2rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.summary-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 800;
}

.summary-row-mini {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.9rem;
    align-items: flex-start;
    padding: 1rem 0;
}

.mini-name {
    color: #475569;
    font-size: 0.9rem;
    font-weight: 500;
}

.mini-name small {
    color: #94a3b8;
    margin-left: 0.25rem;
}

.summary-total-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    font-weight: 800;
    padding: 0.75rem 0;
    color: #475569;
}

.total-price {
    color: var(--primary);
    font-size: 1.5rem;
}

/* FAQ: vedi public/css/faq.css */

.ribbon-wrapper {
    width: 85px;
    height: 88px;
    overflow: hidden;
    position: absolute;
    top: -3px;
    right: -3px;
    z-index: 10;
}

.ribbon {
    font-size: 0.75rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    line-height: 20px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    width: 120px;
    display: block;
    background: #4067d0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    top: 15px;
    right: -28px;
    letter-spacing: 0.05em;
    padding: 7px 0;
    left: -5px;
    background-color: var(--primary);
}

.search-container {
    display: flex;
    align-items: center;
}

.search-trigger {
    background: none;
    border: none;
    color: var(--dark);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.2s;
}

.search-trigger:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--primary);
}

.search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    z-index: 1000;
    padding: 1.5rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border-top: 1px solid var(--gray-200);
}

.search-dropdown::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
}

.search-form {
    display: flex;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    background: var(--gray-100);
    border-radius: 99px;
    padding: 0.25rem;
    border: 1px solid var(--gray-200);
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
    color: var(--dark);
    outline: none;
    width: 100%;
}

.search-submit {
    background: var(--primary);
    color: white;
    border: none;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.search-submit:hover {
    background: #c81c1c;
    transform: scale(1.05);
}

.price-old {
    text-decoration: line-through;
    color: #a0aec0;
    font-size: 0.85rem;
    font-weight: 500;
}

.price-value {
    font-weight: 800;
    color: #1a202c;
    font-size: 1.5rem;
    line-height: 1;
}

.price-value.is-discounted {
    color: #e02020;
}

.price-suffix {
    font-size: 0.7rem;
    color: #a0aec0;
    margin-left: 2px;
    margin-top: 0.25rem;
}

.product-spec-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 1.25rem 0;
    margin-bottom: 1.25rem;
    padding-top: 1rem;
    border-top: 1px dashed #edf2f7;
}

.product-part-number,
.product-ean {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 0.35rem;
    display: flex;
    justify-content: space-between;
}

.spec-value {
    font-weight: 700;
    color: var(--gray-900);
    font-family: monospace;
    font-size: 1rem;
    text-align: right;
    max-width: 60%;
}

.btn-cart-premium {
    border: none;
    background: #1e293b;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.6rem 1.25rem;
    min-width: 44px;
    height: 44px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    line-height: 1;
    min-height: 42px;
}

.btn-cart-premium:hover {
    background: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(224, 32, 32, 0.25);
}

.btn-cart-premium span {
    display: none;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
}

.cart-suggestions {
    width: 100%;
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid var(--gray-200);
}

.suggestions-title {
    margin-bottom: 3rem;
    color: var(--dark);
    font-size: 1.8rem;
    text-align: center;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.cart-suggestions .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.detail-price-old {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.25rem;
}

.detail-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.detail-price.is-discounted {
    color: var(--primary);
}

.search-dropdown-inner {
    max-width: 900px;
    margin: 0 auto;
}

.search-input-group {
    position: relative;
    flex: 1;
}

.search-spinner {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border: 3px solid rgba(0, 0, 0, 0.05);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spinSearch 0.8s linear infinite;
}

@keyframes spinSearch {

    to {
        transform: translateY(-50%) rotate(360deg);
    }

}

.autocomplete-results {
    background: var(--white);
    border-radius: 16px;
    animation: fadeInScale 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 1.5rem;
}

@keyframes fadeInScale {

    from {
        opacity: 0;
        transform: scale(0.98);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }

}

.results-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 3rem;
}

.results-title {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.results-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-200);
}

.results-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem;
    border-radius: 14px;
    transition: all 0.2s ease;
    text-decoration: none;
    color: var(--dark);
    border: 1px solid transparent;
}

.result-item:hover {
    background: #f8fafc;
    border-color: #e2e8f0;
    transform: translateX(6px);
}

.result-img {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    overflow: hidden;
    background: #f1f5f9;
    flex-shrink: 0;
    padding: 4px;
}

.result-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.result-info {
    flex: 1;
    min-width: 0;
}

.result-name {
    font-weight: 700;
    font-size: 1rem;
    color: #1e293b;
    margin-bottom: 0.2rem;
}

.result-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.result-pricing {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.result-price-old {
    text-decoration: line-through;
    color: var(--gray-400);
    font-size: 0.8rem;
    font-weight: 500;
}

.result-discount-badge {
    font-size: 0.7rem;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    padding: 1px 4px;
    border-radius: 4px;
    font-weight: 700;
}

.result-code {
    color: var(--gray-500);
    font-family: monospace;
    background: #f1f5f9;
    padding: 1px 6px;
    border-radius: 4px;
}

.result-price {
    color: var(--primary);
    font-weight: 800;
    font-size: 1rem;
}

.results-sub-section {
    margin-bottom: 2rem;
}

.compact-result {
    font-size: 0.95rem;
    padding: 0.6rem 1rem;
    font-weight: 500;
    color: #475569;
}

.view-all-results {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem;
    background: rgba(224, 32, 32, 0.05);
    border-radius: 10px;
    transition: all 0.2s ease;
}

.view-all-results:hover {
    background: var(--primary);
    color: white;
}

.no-results {
    padding: 3rem;
    text-align: center;
    color: var(--gray-500);
    font-style: italic;
    background: #f8fafc;
    border-radius: 12px;
    border: 2px dashed #e2e8f0;
}

.price-slider-container {
    padding: 0 10px 25px 10px;
    margin-top: 10px;
}

.noUi-target {
    background: #2d3748;
    border: none;
    box-shadow: none;
    height: 4px;
}

.noUi-connect {
    background: var(--primary);
}

.noUi-handle {
    width: 18px !important;
    height: 18px !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    border: 2px solid var(--primary) !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2) !important;
    cursor: pointer !important;
    top: -8px !important;
    right: -9px !important;
}

.noUi-handle::before,
.noUi-handle::after {
    display: none !important;
}

.noUi-handle:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(224, 32, 32, 0.15) !important;
}

.price-range-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #ffffff;
    font-weight: 600;
    margin-top: 12px;
}

.price-range-label span {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    font-size: 0.75rem;
}

.catalogue-layout .tech-sidebar {
    gap: 18px;
}

.catalogue-layout .tech-sb-section {
    border: 1px solid #e3e3e3;
    border-radius: 16px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
    background: #ffffff;
}

.catalogue-layout .tech-sb-title {
    padding: 18px 22px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .02em;
    border-bottom: 1px solid #e7e7e7 !important;
}

.catalogue-layout .tech-sb-section> :not(.tech-sb-title) {
    padding: 18px 20px;
    /*padding-top: 0px;*/
}

.catalogue-layout .tech-cat-item {
    min-height: 54px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    border: 1px solid #e4e4e4;
    background: #fff;
    border-radius: 8px;
}

.catalogue-layout .tech-cat-item.active {
    background: #fff;
    color: #000000;
}

.catalogue-layout .tech-cat-toggle-expand {
    width: 100%;
    min-height: 58px;
    border: 1px solid #b1afaf;
    border-radius: 8px;
    background: #e7e7e7;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 700;
}

.catalogue-layout .tech-search-wrap {
    min-height: 46px;
    border-radius: 6px;
}

.catalogue-layout .tech-btn-submit {
    min-height: 48px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
}

.catalogue-main {
    padding: 2rem;
    padding-top: 0;
}

.sidebar-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.sidebar-section:last-child {
    border-bottom: none;
}

.sidebar-section-title {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.sidebar-field {
    margin-bottom: 1.25rem;
}

.sidebar-field label {
    display: block;
    font-size: .8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .6);
    margin-bottom: .5rem;
}

.sidebar-select {
    width: 100%;
    background: #2d3748;
    border: 1px solid #4a5568;
    border-radius: 10px;
    color: #ffffff !important;
    padding: .8rem;
    font-size: .9rem;
    transition: all .2s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(224, 32, 32, 0.15);
    background: #364152;
}

.sidebar-cat-list {
    list-style: none;
    padding: 0;
}

.sidebar-cat-list li {
    margin-bottom: 0.25rem;
}

.sidebar-cat-item-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    transition: background 0.2s;
}

.sidebar-cat-item-wrap:hover {
    background: rgba(255, 255, 255, .05);
}

.sidebar-cat-list a {
    display: block;
    padding: .6rem .8rem;
    border-radius: 8px;
    font-size: .9rem;
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    transition: all 0.25s ease;
}

.sidebar-cat-list a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.sidebar-cat-list a.active {
    background: linear-gradient(135deg, var(--primary), #e02020);
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(224, 32, 32, 0.3);
}

.cat-count {
    font-size: 0.85em;
    color: #46ff27;
    opacity: 1;
}

.sidebar-sub-list {
    list-style: none;
    padding-left: 1rem;
    margin-top: 0.25rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    margin-left: 0.5rem;
}

.catalogue-main nav[role="navigation"] {
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
}

.catalogue-main nav[role="navigation"]>div:first-child {
    display: none;
}

.catalogue-main nav[role="navigation"]>div:last-child {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.catalogue-main nav[role="navigation"] a,
.catalogue-main nav[role="navigation"] span {
    min-width: 38px;
    height: 38px;
    /*padding: 0 0.7rem;*/
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
   /* border: 1px solid #e5e7eb;*/
    background: #ffffff;
    color: #334155;
    font-weight: 600;
    text-decoration: none;
    transition: all .18s ease;
    margin-left: 2px;
    margin-right: 2px;
}
span.inline-flex.rtl\:flex-row-reverse.shadow-sm.rounded-md {
    box-shadow: none !important;
}
div[x-show="showPreview"] img {
    background:white;
    padding: 20px;
}
.catalogue-main nav[role="navigation"] a:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
    transform: translateY(-1px);
}

.catalogue-main nav[role="navigation"] span[aria-current="page"] {
    background: linear-gradient(135deg, var(--primary), #c91414);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 6px 16px rgba(224, 32, 32, 0.28);
}

.catalogue-main nav[role="navigation"] span[aria-disabled="true"] {
    opacity: 0.45;
    cursor: not-allowed;
}

.product-name:hover {
    color: var(--primary);
}

.empty-state-icon-box {
    background: var(--gray-100);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.search-summary-wrapper {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.search-count {
    font-size: 1.1rem;
    color: #4a5568;
}

.search-count strong {
    color: var(--dark);
    font-weight: 800;
}

.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin-top:20px;
}

.filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #4a5568;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: all 0.2s;
}

.filter-pill svg {
    color: var(--primary);
    opacity: 0.8;
}

.remove-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: #f1f5f9;
    color: #94a3b8;
    border-radius: 50%;
    font-size: 14px;
    line-height: 1;
    text-decoration: none !important;
    margin-left: 0.25rem;
    transition: all 0.2s;
}

.remove-filter:hover {
    background: #fee2e2;
    color: #ef4444;
}

.clear-all-link {
    font-size: 0.85rem;
    color: #718096;
    text-decoration: underline;
    margin-left: 0.5rem;
}

.clear-all-link:hover {
    color: var(--primary);
}

.catalogue-body nav {
    background: transparent;
    padding: 1.5rem 0;
    margin-top: 1.5rem;
    border-top: 1px solid #edf2f7;
    display: flex;
    justify-content: center;
}

.catalogue-body .hidden.sm\:flex-1 {
    display: flex !important;
    flex-direction: column-reverse;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
}

.catalogue-body nav span.relative.z-0 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    box-shadow: none !important;
}

.catalogue-body nav span.relative.z-0>a,
.catalogue-body nav span.relative.z-0>span,
.catalogue-body nav span.relative.z-0>span>span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 0.5rem;
    border-radius: 12px !important;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    color: #4a5568 !important;
    border: 1px solid #e2e8f0 !important;
    margin: 0 0.25rem !important;
}

.catalogue-body nav span.relative.z-0 span[aria-current="page"]>span,
.catalogue-body nav span[aria-current="page"],
.catalogue-body nav span[aria-current="page"] span {
    background: var(--primary) !important;
    color: #ffffff !important;
    border-color: var(--primary) !important;
    box-shadow: 0 4px 10px rgba(224, 32, 32, 0.2) !important;
    z-index: 2;
}

.catalogue-body nav span.relative.z-0>a:hover {
    background: #f8fafc;
    border-color: #cbd5e0 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.detail-breadcrumb-wrap {
    background: #111827;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.breadcrumb-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.breadcrumb-list {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-list a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-list a:hover {
    color: #fff;
}

.breadcrumb-current {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.detail-search-form {
    position: relative;
    width: 100%;
    max-width: 320px;
}

.detail-search-form input {
    width: 100%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.65rem 1rem 0.65rem 2.75rem;
    color: #fff;
    font-size: 0.85rem;
    outline: none;
    transition: all 0.3s;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.detail-search-form input:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

.detail-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.35);
}

.premium-tech-specs {
    background: white;
    border-radius: 24px;
    border: 1px solid var(--gray-100);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 0.65rem 2.5rem;
    border-bottom: 1px dotted oklch(0.86 0 0);
    transition: background 0.2s ease;
    align-items: center;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-row:nth-child(even) {
    background: #f8fafc;
}

.spec-row:hover {
    background: var(--gray-50);
}

.btn-wishlist-broad {
    background: white;
    border: 2px solid var(--gray-200);
    padding: 1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    font-weight: 700;
    color: var(--gray-600);
}

.btn-wishlist-broad:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
    border-color: var(--primary);
    color: var(--primary);
}

.wishlist-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    font-weight: 700;
    font-size: 1rem;
    color: #475569;
}

.wishlist-icon-group svg {
    display: none;
}

.btn-wishlist-broad .heart-empty {
    display: block;
}

.btn-wishlist-broad.active .heart-empty {
    display: none;
}

.btn-wishlist-broad.active .heart-filled {
    display: block;
}

.btn-wishlist-broad .wishlist-text-remove {
    display: none;
}

.btn-wishlist-broad.active .wishlist-text-add {
    display: none;
}

.btn-wishlist-broad.active .wishlist-text-remove {
    display: block;
    color: #ef4444;
}

.btn-wishlist-broad.active {
    border-color: var(--primary);
    background: var(--primary-light);
    color: var(--primary);
}

.layout-v1-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.v1-gallery {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.v1-gallery img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.v1-info-sticky {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 6rem;
}

.v1-accordion {
    border-bottom: 1px solid #e2e8f0;
}

.v1-accordion:first-of-type {
    border-top: 1px solid #e2e8f0;
}

.v1-accordion summary {
    list-style: none;
    cursor: pointer;
    padding: 1.25rem 0;
    font-weight: 600;
    font-size: 1.125rem;
    color: #0f172a;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.v1-accordion summary::-webkit-details-marker {
    display: none;
}

.v1-accordion summary::after {
    content: '+';
    font-size: 1.75rem;
    line-height: 1;
    font-weight: 300;
    color: #94a3b8;
    transition: transform 0.2s ease;
}

.v1-accordion[open] summary::after {
    content: 'âˆ’';
}

.v1-accordion-content {
    padding-bottom: 1.25rem;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
}

.product-main-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.detail-badge-stock {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #22c55e;
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

.image-wrapper {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-gallery-grid {
    display: flex;
    gap: 12px;
    margin-top: 1.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    padding-top: 0.25rem;
}

.product-gallery-grid::-webkit-scrollbar {
    height: 6px;
}

.product-gallery-grid::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}

.product-gallery-grid::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.gallery-thumb {
    width: 85px;
    height: 85px;
    border-radius: 14px;
    border: 2px solid transparent;
    cursor: pointer;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    background: #fff;
}

.gallery-thumb.active {
    border-color: var(--primary);
}

.gallery-thumb:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
    padding: 4px;
}

.product-detail-info-sec {
    position: sticky;
}

.product-detail-specs-sec {
    border-radius: 20px;
    padding: 0;
}

.detail-column-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.8rem 2.5rem;
    border-bottom: 1px solid var(--gray-100);
    background: oklch(0.94 0 0 / 0.5);
    color: var(--gray-900);
}

.detail-column-header h3 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.detail-column-header svg {
    color: var(--primary);
}

.detail-column-header i {
    color: #e02020;
}

.info-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.brand-badge {
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(224, 32, 32, 0.2);
}

.category-link a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.price-action-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.detail-price-box {
    display: flex;
    flex-direction: column;
}

.detail-price-sub {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 0.5rem;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-pill .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-pill.available {
    background: #f0fdf4;
    color: #16a34a;
}

.status-pill.available .dot {
    background: #16a34a;
}

.status-pill.unavailable {
    background: #fef2f2;
    color: #ef4444;
}

.status-pill.unavailable .dot {
    background: #ef4444;
}

.product-divider {
    height: 1px;
    background: #e2e8f0;
    margin-bottom: 2.5rem;
}

.product-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail-section {
    margin-bottom: 3rem;
}

.detail-section h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.description-content {
    color: #334155;
    line-height: 1.85;
    font-size: 1.05rem;
    padding: 1.5rem 2.5rem;
    background: #ffffff;
}

.compat-table-wrapper {
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.compat-table {
    width: 100%;
    border-collapse: collapse;
}

.compat-table th {
    text-align: left;
    padding: 1rem 1.5rem;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 700;
    text-transform: uppercase;
}

.compat-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.95rem;
    color: #1e293b;
    font-weight: 500;
}

.compat-table tr:last-child th,
.compat-table tr:last-child td {
    border-bottom: none;
}

.checkout-stepper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 560px;
    margin: 0 auto 2.5rem;
    position: relative;
    padding: 1.5rem 0;
}

.stepper-bg-line {
    position: absolute;
    top: calc(1.5rem + 20px);
    left: calc(50% - 140px);
    right: calc(50% - 140px);
    height: 2px;
    background: #e5e7eb;
    z-index: 1;
}

.stepper-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    text-align: center;
    flex: 1;
}

.step-dot-wrap {
    width: 40px;
    height: 40px;
    margin-top:-24px;
    border-radius: 50%;
    background: #f1f5f9;
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.step-dot-wrap.active {
    background: #dc2626;
    border-color: #dc2626;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.25);
}

.step-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #94a3b8;
    display: none; /* sostituito da step-number */
}

.step-dot.active {
    background: #fff;
}

.step-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    font-weight: 700;
    color: #94a3b8;
    line-height: 1;
    transition: color 0.25s ease;
}

.step-dot-wrap.active .step-number {
    color: #fff;
}

.step-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
    line-height: 1.3;
    transition: color 0.25s ease;
}

.stepper-step:has(.step-dot-wrap.active) .step-label {
    color: #dc2626;
}

.step-label-sub {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    color: #cbd5e1;
    margin-top: 2px;
}

.cart-table td {
    padding: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
}

.cart-row:last-child td {
    border-bottom: none;
}

.cart-item-display {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 12px;
    border: 1px solid #edf2f7;
    background: #fff;
    padding: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    object-fit: contain;
}

.cart-item-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    border: 1px dashed #cbd5e1;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
}

.cart-item-title {
    font-weight: 700;
    font-size: 1.05rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.cart-item-link {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.2s;
}

.cart-item-link:hover {
    color: var(--primary);
}

.cart-item-code-badge {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 0.35rem;
    font-family: monospace;
    display: inline-flex;
    background: #f1f5f9;
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    font-weight: 600;
}

.cart-price-col {
    color: var(--gray-500);
    font-weight: 500;
    vertical-align: middle;
}

.cart-price-stack {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    align-items: flex-start;
}

.cart-price-old {
    text-decoration: line-through;
    font-size: 0.85rem;
    color: #9ca3af;
    line-height: 1;
}

.cart-price-current {
    font-weight: 700;
    color: var(--dark);
    font-size: 1.05rem;
    line-height: 1;
}

.cart-discount-badge {
    font-size: 0.7rem;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
}

.cart-qty-input {
    width: 80px;
    padding: 0.4rem 0.6rem;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    font-weight: 600;
    outline: none;
    transition: border-color 0.2s;
}

.cart-qty-input:focus {
    border-color: var(--primary);
}

.cart-subtotal-col {
    font-weight: 800;
    color: var(--primary);
    font-size: 1.1rem;
    vertical-align: middle;
}

.cart-footer-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.qty-select {
    width: 70px;
    padding: 0.45rem 0.5rem;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    font-weight: 600;
    background: white;
    cursor: pointer;
    font-size: 0.9rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.6rem center;
    padding-right: 1.8rem;
}

.qty-select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.cart-back-link {
    color: var(--gray-500);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    transition: color 0.2s;
}

.cart-back-link:hover {
    color: var(--dark);
}

.shipping-promo-box {
    margin-bottom: 1.25rem;
    background: #f0fdf4;
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    border: 1px solid #bbf7d0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.shipping-promo-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #dcfce7;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16a34a;
}

.shipping-promo-content {
    flex: 1;
}

.shipping-promo-text {
    font-size: 0.85rem;
    color: #16a34a;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.shipping-promo-applied {
    margin-bottom: 1.25rem;
    background: #f0fdf4;
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    border: 1px solid #bbf7d0;
    font-size: 0.85rem;
    color: #16a34a;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.progress-container {
    background: #dcfce7;
    border-radius: 99px;
    height: 6px;
    overflow: hidden;
}

.progress-fill {
    background: #16a34a;
    height: 100%;
    border-radius: 99px;
    transition: 0.3s;
}

.summary-row.original-price {
    color: var(--gray-500);
    margin-bottom: 0.25rem;
}

.summary-row.original-price .line-through {
    text-decoration: line-through;
    opacity: 0.7;
}

.summary-row.savings {
    color: #854d0e;
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 1.25rem;
    background: rgba(234, 179, 8, 0.08);
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px dashed rgba(234, 179, 8, 0.4);
}

.total-price-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.price-formatted {
    display: flex;
    align-items: baseline;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.price-int {
    font-size: 1.75rem;
}

.price-sep {
    font-size: 1.1rem;
    margin: 0 1px;
}

.price-decimal {
    font-size: 1rem;
    align-self: flex-start;
    margin-top: 0.1rem;
}

.price-currency {
    font-size: 1.25rem;
    margin-left: 0.25rem;
}

.vat-info {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 500;
    margin-top: 0.25rem;
}

.summary-trust-badges {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.trust-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--gray-500);
}

.cart-empty-wrap {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.empty-state-card {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: white;
    padding: 3rem 4rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.empty-state-icon {
    flex-shrink: 0;
    color: #cbd5e1;
}

.empty-state-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    flex: 1;
    min-width: 250px;
}

.empty-state-title {
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
    font-weight: 800;
}

.empty-state-text {
    margin-bottom: 1.5rem;
    color: var(--gray-500);
    font-size: 1.05rem;
}

.checkout-header-wrap {
    padding: 2.5rem 0;
}

.checkout-body-wrap {
    padding: 3rem 0;
}

.checkout-steps .step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-400);
}

.checkout-steps .step.active {
    color: var(--primary);
}

.checkout-steps .step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.checkout-steps .step.active .step-num {
    background: var(--primary);
    color: white;
}

.checkout-steps .step-label {
    font-weight: 700;
    font-size: 0.95rem;
}

.checkout-steps .step-line {
    width: 60px;
    height: 2px;
    background: #f1f5f9;
}

.checkout-card-wrap {
    padding: 1.25rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    background: white;
    margin-bottom: 1.5rem;
}

.checkout-error-feedback {
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.checkout-actions-group {
    display: flex;
    gap: 1rem;
}

.checkout-trust-notice {
    margin-top: 1.5rem;
    text-align: center;
    color: var(--gray-500);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.mini-price-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.mini-price-old {
    text-decoration: line-through;
    font-size: 0.75rem;
    color: #9ca3af;
    line-height: 1.2;
}

.mini-price-promo {
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.mini-price-normal {
    font-weight: 600;
    color: var(--dark);
}

.summary-total-final {
    border-top: 2px solid var(--gray-300);
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    font-weight: 700;
}

.total-price strong {
    color: var(--primary);
    font-size: 1.25rem;
}

.free-text {
    color: #16a34a;
    font-weight: 700;
}

.wishlist-icon-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.75rem;
    font-weight: 500;
}

.wishlist-icon-link:hover {
    color: var(--primary);
}

.wishlist-icon-wrapper {
    position: relative;
    margin-bottom: 2px;
}

.wishlist-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #e02020;
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(224, 32, 32, 0.3);
    border: 2px solid #fff;
}

.btn-wishlist {
    background: white;
    border: 1px solid var(--gray-200);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    padding: 0;
}

.btn-wishlist:hover {
    color: #e02020;
    transform: scale(1.05);
}

.btn-wishlist svg {
    transition: all 0.3s ease;
}

.btn-wishlist.active {
    color: #e02020;
    border-color: #e02020;
    background: #fff5f5;
}

.btn-wishlist.active svg {
    fill: #e02020;
    animation: heartbeat 1.5s ease-in-out infinite alternate;
}

@keyframes heartbeat {

    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }

}

.btn-wishlist-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #64748b;
    height: 52px;
    padding: 0 1.25rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 52px;
}

.btn-wishlist-detail:hover {
    border-color: #fecdd3;
    color: #e11d48;
    background: #fff1f2;
    transform: scale(1.05);
}

.btn-wishlist-detail.active {
    border-color: #e11d48;
    color: white;
    background: #e11d48;
}

.btn-wishlist-detail.active svg {
    fill: #e02020;
}

.wishlist-empty-state {
    text-align: center;
    padding: 4rem 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    max-width: 600px;
    margin: 0 auto;
}

.wishlist-empty-state svg {
    margin: 0 auto 1.5rem;
    color: var(--gray-300);
}

.wishlist-empty-state h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.wishlist-empty-state p {
    color: var(--gray-500);
    margin-bottom: 2rem;
}

.product-detail-buy-box.premium-card {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-detail-buy-box.premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.buy-box-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.price-section {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-discount-tag {
    background: #fee2e2;
    color: #ef4444;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 800;
    width: fit-content;
    margin-bottom: 4px;
}

.price-main-wrap {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.price-current {
    font-size: 2.75rem;
    font-weight: 900;
    color: #1e293b;
    letter-spacing: -1px;
    line-height: 1;
}

.price-current.is-discounted {
    color: #e11d48;
}

.price-original {
    font-size: 1.25rem;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 500;
}

.price-tax-info {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    float: right;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 100px;
    width: 174px;
    font-size: 0.85rem;
    text-align: center;
    font-weight: 700;
}

.status-indicator.in-stock {
    background: #f0fdf4;
    color: #16a34a;
}

.status-indicator.out-of-stock {
    background: #fef2f2;
    color: #ef4444;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}

.status-indicator.available-soon {
    background: #fffbeb;
    color: #d97706;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    width: auto;
    white-space: nowrap;
    font-size: 0.8rem;
}

.btn-wishlist-inline {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: fit-content;
    align-self: center;
    margin-top: 1rem;
    padding: 8px 24px;
    border: 1.5px solid #d1d1d1;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-wishlist-inline:hover {
    border-color: #e11d48;
    background: #fff1f2;
}

.btn-wishlist-inline .wishlist-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
}

.btn-wishlist-inline:hover .wishlist-content-wrapper {
    color: #e11d48;
}

.btn-wishlist-inline.active {
    border-color: #e11d48;
    background: #fff1f2;
}

.btn-wishlist-inline.active .wishlist-content-wrapper {
    color: #e11d48;
}

.btn-wishlist-inline:hover .wishlist-icon-group {
    transform: scale(1.1);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    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);
    }

}

.product-brief-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 2rem;
    border-top: 1px solid #f1f5f9;
    padding-top: 1.5rem;
}

.buy-actions-area {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.oem-codes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.oem-item {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease;
}

.oem-item:hover {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.qty-selector {
    display: flex;
    align-items: center;
    background: #f1f5f9;
    border-radius: 12px;
    padding: 4px;
    width: fit-content;
    border: 1px solid #e2e8f0;
}

.qty-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: none;
    border-radius: 8px;
    color: #1e293b;
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.qty-btn:hover {
    background: #f8fafc;
    color: #e11d48;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.buy-section-controls {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
}

.btn-buy-now {
    flex: 1;
    height: 52px;
    padding: 0 2.5rem;
    background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.25);
}

.btn-buy-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(225, 29, 72, 0.35);
    filter: brightness(1.1);
}

.btn-buy-now:active {
    transform: translateY(0);
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table th,
.specs-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.9rem;
}

.specs-table tr:last-child th,
.specs-table tr:last-child td {
    border-bottom: none;
}

.specs-table th {
    background: var(--gray-50);
    width: 40%;
    color: var(--gray-600);
    font-weight: 600;
    text-align: left;
}

.specs-table td {
    color: var(--dark);
    font-weight: 500;
}

.mt-8 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.bg-white {
    background: #ffffff;
}

.bg-light {
    background: #f8fafc;
}

.catalogue-header .container {
    padding-top: 4rem;
    padding-bottom: 0;
}

.catalogue-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
    pointer-events: none;
}

.premium-description-box {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #eef2f6;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.description-scroll-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.description-scroll-link:hover {
    gap: 10px;
    color: var(--primary-hover);
}

.product-detail-hero {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.category-tag {
    background: white;
    color: var(--gray-600);
    padding: 6px 16px;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid var(--gray-200);
    transition: all 0.2s ease;
}

.category-tag:hover {
    background: var(--gray-50);
    border-color: var(--gray-300);
}

.v1-gallery img:hover {
    transform: scale(1.01);
}

.trust-box-detail {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem 1rem;
    background: white;
    margin-bottom: 1.5rem;
    border-radius: 20px;
    border: 1px solid var(--gray-100);
}

.trust-icon-box {
    flex-shrink: 0;
    padding: 10px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon-box.primary {
    background: rgba(224, 32, 32, 0.08);
    color: var(--primary);
}

.trust-icon-box.success {
    background: rgba(5, 150, 105, 0.08);
    color: #059669;
}

.trust-item h5 {
    margin: 0;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--gray-900);
}

.trust-item p {
    margin: 4px 0 0;
    font-size: 0.8rem;
    color: var(--gray-500);
    line-height: 1.4;
}

.gallery-item-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.gallery-item-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stock-status {
    margin-right: -31px;
}

.tech-sidebar {
    background: transparent;
    border-radius: 16px;
    padding: 0;
    color: #f9fafb;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
}

.tech-sb-section {
    display: flex;
    flex-direction: column;
    /*gap: 1.25rem;*/
}

.tech-sb-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #000000;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin: 0;
    border: none;
    padding: 0;
}

.tech-sb-title i {
    color: var(--primary);
    opacity: 0.8;
}

.tech-vehicle-mimic {
    background: #fff;
    padding: 1rem;
    border-radius: 10px;
    border-left: 3px solid var(--primary);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: inset 20px 0 20px -20px rgba(224, 32, 32, 0.3);
    color: #f9fafb;
    cursor: pointer;
    transition: transform 0.2s ease;
    border: 2px solid var(--primary);
}

.tech-vehicle-mimic-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000000;
    flex-shrink: 0;
    font-size: 1.5rem;
}

.tech-vehicle-mimic-text h5 {
    margin: 0 0 0.25rem 0;
    font-size: 0.9rem;
    color: #000000;
    font-weight: 700;
}

.tech-vehicle-mimic-text p {
    margin: 0;
    font-size: 0.8rem;
    color: #000000;
}

.tech-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.tech-cat-item-wrap {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-direction: column;
}

.tech-cat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0.75rem 0.6rem 1rem;
    border-radius: 0 6px 6px 0;
    text-decoration: none;
    color: #9ca3af;
    font-size: 0.9rem;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border-left: 2px solid transparent;
    flex-grow: 1;
    background: transparent;
    padding-left: 1rem;
}

.tech-cat-item:hover {
    background: linear-gradient(90deg, rgba(224, 32, 32, 0.08) 0%, transparent 100%);
    color: #f9fafb;
    border-left-color: rgba(224, 32, 32, 0.5);
    transform: translateX(2px);
}

.tech-cat-item.active {
    background: linear-gradient(90deg, rgba(224, 32, 32, 0.15) 0%, rgba(224, 32, 32, 0.02) 100%);
    color: var(--primary);
    font-weight: 700;
    border: 1px solid var(--color-gray-400);
    margin-bottom: 0.5rem;
    justify-content: flex-start;
    display: flex;
}

.tech-cat-toggle-expand {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #9ca3af;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 0.5rem;
}

.tech-cat-toggle-expand:hover {
    background: #1f2937;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.1);
}

.tech-cat-count {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
}

.tech-cat-item.active .tech-cat-count {
    background: var(--primary);
    color: #fff;
}

.tech-cat-toggle-btn {
    background: none;
    border: none;
    color: #9ca3af;
    padding: 0.5rem;
    cursor: pointer;
    transition: color 0.2s;
    border-radius: 6px;
    margin-left: 0.25rem;
}

.tech-cat-toggle-btn:hover {
    color: #f9fafb;
}

.tech-sub-list {
    list-style: none;
    padding-left: 1.5rem;
    margin: 0.25rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.tech-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.tech-search-wrap {
    position: relative;
}

.tech-search-wrap i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 0.85rem;
}

.tech-text-input {
    width: 100%;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid var(--color-gray-400);
    color: #111;
    padding: 0.7rem 1rem 0.7rem 2.5rem;
    border-radius: 10px;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.2s ease;
}

.tech-text-input::placeholder {
    color: #6b7280;
}

.tech-text-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(224, 32, 32, 0.15);
    /*  background: #111827;*/
}

.tech-slider-wrap {
    margin-top: 0.5rem;
}

.tech-slider-wrap .noUi-target {
    background: #374151;
    border: none;
    box-shadow: none;
    height: 4px;
}

.tech-slider-wrap .noUi-connect {
    background: var(--primary);
}

.tech-slider-wrap .noUi-handle {
    width: 16px;
    height: 16px;
    background: #fff;
    border: 3px solid var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    right: -8px;
    top: -6px;
}

.tech-slider-wrap .noUi-handle::before,
.tech-slider-wrap .noUi-handle::after {
    display: none;
}

.tech-slider-values {
    display: flex;
    justify-content: space-between;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.8rem;
    color: #9ca3af;
    margin-top: 1rem;
}

.tech-select-wrap {
    position: relative;
}

.tech-select-wrap i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
}

.tech-select {
    width: 100%;
    appearance: none;
    background: #fff;
    border: 1px solid var(--color-gray-400);
    color: #000000;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    outline: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tech-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(224, 32, 32, 0.15);
}

.tech-checkbox-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--color-black);
    cursor: pointer;
    margin-top: 0.5rem;
    padding: 0.5rem 0;
}

.tech-checkbox-input {
    appearance: none;
    width: 36px;
    height: 20px;
    background: #374151;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    outline: none;
    transition: background 0.3s ease;
}

.tech-checkbox-input::after {
    content: '';
    position: absolute;
    left: 2px;
    top: 2px;
    width: 16px;
    height: 16px;
    background: #9ca3af;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.tech-checkbox-input:checked {
    background: var(--primary);
}

.tech-checkbox-input:checked::after {
    left: calc(100% - 18px);
    background: #fff;
}


.tech-btn-clear {
    text-align: center;
    display: block;
    color: #9ca3af;
    font-size: 0.85rem;
    text-decoration: none;
    margin-top: 0.5rem;
    transition: color 0.2s;
}

.tech-btn-clear:hover {
    color: #ef4444;
}

.tech-filters-collapse {
    transition: all 0.3s ease;
    overflow: hidden;
}

.tech-sb-title.collapsible {
    cursor: pointer;
    user-select: none;
}

.tech-sb-title.collapsible:hover {
    color: var(--primary);
}

div.header {
    background-color: rgb(255, 255, 255);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
    display: grid;
    grid-template-columns: auto 1fr auto 1fr auto;
    grid-template-rows: 30px auto;
    height: auto;
    width: 100%;
    position: relative;
    visibility: visible;
    z-index: 10;
    padding-bottom: 0;
}

/* === GRIGLIA PRINCIPALE ===
   6 colonne: menu (2) | logo (3-4) | indicatori (5).
   2 righe: topbar 30px + corpo. La search è assoluta in basso (tema spaceship). */
div.header.header--spaceship-one {
    grid-template-columns: 0px minmax(0, 1.4fr) minmax(0, 0.6fr) minmax(0, 0.6fr) minmax(0, 1.4fr) 0px !important;
    grid-template-rows: 30px auto !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09) !important;
}

/* === LOGO (cols 3-4, span righe 1-2) === */
div.header>div.header__logo {
    grid-column-start: 3 !important;
    grid-column-end: 5 !important;
    grid-row: 1 / 3 !important;
    align-self: center !important;
    justify-self: center !important;
    justify-content: center !important;
    height: auto !important;
    padding: 0 16px 0 !important;
    width: 100% !important;
    z-index: 3;
}

div.header>div.header__logo>a.logo,
div.header>div.header__logo>a.logo:hover {
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    text-decoration: none;
}

div.header>div.header__logo .logo__slogan {
    text-align: center;
    width: 100%;
}

div.header>div.header__logo .logo__image {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* === FASCIA RICERCA (assoluta, centrata sotto il logo — layout spaceship) === */
div.header>div.header__search {
    grid-column: 3 / 5 !important;
    grid-row: 2 !important;
    position: absolute !important;
    bottom: -24px !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: 480px !important;
    max-width: calc(100vw - 40px) !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 0 !important;
    display: block !important;
    z-index: 4;
}

div.header>div.header__search>div.search {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    top: 0 !important;
}

div.header::before,
div.header::after,
div.header>div.header__navbar::before,
div.header>div.header__navbar::after,
div.header>div.header__navbar>div.header__navbar-menu>div.main-menu>ul.main-menu__list::before,
div.header>div.header__navbar>div.header__navbar-menu>div.main-menu>ul.main-menu__list::after,
div.header>div.header__logo::before,
div.header>div.header__logo::after,
div.header>div.header__indicators::before,
div.header>div.header__indicators::after {
    display: block;
    visibility: visible;
}

/* === INDICATORS (row 2, col 5) ===
   Riga icone centrata, gap uniforme 20px, padding orizzontale 20px. */
div.header>div.header__indicators {
    align-self: center;
    display: flex;
    grid-column-start: 5;
    grid-row-start: 2;
    justify-self: end !important;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    padding: 0 20px;
    visibility: visible;
}

div.header>div.header__indicators .indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
}

/* Carrello: layout orizzontale (icona + badge | prezzo) con gap 15px e prezzo in bold */
div.header>div.header__indicators a#cart-nav-trigger {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

div.header>div.header__indicators a#cart-nav-trigger .indicator__value {
    font-weight: bold;
}

/* === 4 BARRE CENTRATE ===
   Rossa (topbar-start), Nera (topbar-end), Menu bianco (navbar), Indicators. */
.topbar.topbar--spaceship-start,
.topbar.topbar--spaceship-end {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 20px;
    padding: 0 20px;
}

div.header>div.header__navbar {
    justify-content: flex-start !important;
    justify-self: start !important;
}

div.header>div.header__navbar>div.header__navbar-menu>div.main-menu>ul.main-menu__list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
    margin: 0;
    list-style: none;
}

div.header>div.header__megamenu-area.megamenu-area {
    grid-column-end: 6;
    grid-column-start: 2;
    grid-row-start: 1;
    height: 30px;
    position: static;
    visibility: visible;
    width: 100%;
}

/* === Right-side topbar override per il layout a 6 colonne === */
/* Il bg scuro slanted deve coprire le celle 5-6 (mirror della striscia rossa a sinistra) */
div.header>div.header__topbar-end-bg {
    grid-column-start: 5;
    grid-column-end: 7;
    grid-row-start: 1;
    height: 30px;
    overflow: hidden;
    position: static;
    visibility: visible;
    width: 100%;
}

div.header>div.header__topbar-end-bg::before {
    background-color: rgb(51, 51, 51);
    border-bottom-left-radius: 2.5px;
    content: "";
    display: block;
    height: 30px;
    transform: matrix(1, 0, 0.57735, 1, 0, 0);
    visibility: visible;
    width: 100%;
}

/* I link account (login/register) vivono nella cella 5, mirror di topbar-start in cella 2 */
div.header>div.header__topbar-end {
    grid-column-start: 5;
    grid-row-start: 1;
    height: 30px;
    padding-left: 20px;
    position: static;
    visibility: visible;
    width: 100%;
    z-index: 1;
}

div.header>div.header__topbar-start-bg {
    grid-column-end: 3;
    grid-column-start: 1;
    grid-row-start: 1;
    height: 30px;
    overflow: hidden;
    position: static;
    visibility: visible;
    width: 100%;
}

div.header>div.header__topbar-start-bg::before {
    background-color: rgb(229, 39, 39);
    border-bottom-right-radius: 2.5px;
    content: "";
    display: block;
    height: 30px;
    transform: matrix(1, 0, -0.57735, 1, 0, 0);
    visibility: visible;
    width: 100%;
}

div.header>div.header__topbar-start {
    grid-column-start: 2;
    grid-row-start: 1;
    height: 30px;
    padding-right: 20px;
    position: static;
    visibility: visible;
    width: 100%;
    z-index: 1;
}

div.header>div.header__navbar {
    align-items: center;
    align-self: center;
    display: flex;
    grid-column-start: 2;
    grid-row-start: 2;
    height: auto;
    min-height: 56px;
    position: static;
    visibility: visible;
    width: 100%;
}

/* Regole base condivise (le grid-area sono definite più in alto col layout a 6 col) */
div.header>div.header__logo {
    align-items: center;
    display: flex;
    visibility: visible;
}

div.header>div.header__search {
    visibility: visible;
}

/*
outline-color: rgb(140, 140, 140);

position: absolute;

right: 76.7222px;

text-decoration-color: rgb(140, 140, 140);

text-emphasis-color: rgb(140, 140, 140);

top: 12.3333px;

visibility: visible;

}
*/


div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-1"]>a[data-css-ext="css-ext-4"]::after,

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-5"]>a[data-css-ext="css-ext-8"]::after,

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-9"]>a[data-css-ext="css-ext-12"]::after,

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-13"]>a[data-css-ext="css-ext-16"]::after,

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-17"]>a[data-css-ext="css-ext-20"]::after,

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-21"]>a[data-css-ext="css-ext-24"]::after,

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-25"]>a[data-css-ext="css-ext-28"]::after,

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-29"]>a[data-css-ext="css-ext-32"]::after,

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-33"]>a[data-css-ext="css-ext-36"]::after,

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-37"]>a[data-css-ext="css-ext-40"]::after,

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-41"]>a[data-css-ext="css-ext-44"]::after,

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-45"]>a[data-css-ext="css-ext-48"]::after,

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-49"]>a[data-css-ext="css-ext-52"]::after,

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-53"]>a[data-css-ext="css-ext-56"]::after,

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-57"]>a[data-css-ext="css-ext-60"]::after,

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-61"]>a[data-css-ext="css-ext-64"]::after,

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-65"]>a[data-css-ext="css-ext-68"]::after,

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-69"]>a[data-css-ext="css-ext-72"]::after,

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-73"]>a[data-css-ext="css-ext-76"]::after,

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-77"]>a[data-css-ext="css-ext-80"]::after,

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-81"]>a[data-css-ext="css-ext-84"]::after,

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-85"]>a[data-css-ext="css-ext-88"]::after,

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-89"]>a[data-css-ext="css-ext-92"]::after,

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-93"]>a[data-css-ext="css-ext-96"]::after,

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-97"]>a[data-css-ext="css-ext-100"]::after,

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-101"]>a[data-css-ext="css-ext-104"]::after,

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-105"]>a[data-css-ext="css-ext-108"]::after,

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-109"]>a[data-css-ext="css-ext-112"]::after,

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-113"]>a[data-css-ext="css-ext-116"]::after,

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-117"]>a[data-css-ext="css-ext-120"]::after {
    border-block-end-color: rgb(140, 140, 140);
    border-block-start-color: rgb(140, 140, 140);
    border-bottom-color: rgb(140, 140, 140);
    border-inline-end-color: rgb(140, 140, 140);
    border-inline-start-color: rgb(140, 140, 140);
    border-left-color: rgb(140, 140, 140);
    border-right-color: rgb(140, 140, 140);
    border-top-color: rgb(140, 140, 140);
    caret-color: rgb(140, 140, 140);
    color: rgb(140, 140, 140);
    column-rule-color: rgb(140, 140, 140);
    cursor: pointer;
    outline-color: rgb(140, 140, 140);
    text-decoration-color: rgb(140, 140, 140);
    text-emphasis-color: rgb(140, 140, 140);
    visibility: visible;
}

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-5"]>a[data-css-ext="css-ext-8"]::before,

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-25"]>a[data-css-ext="css-ext-28"]::before,

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-45"]>a[data-css-ext="css-ext-48"]::before,

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-65"]>a[data-css-ext="css-ext-68"]::before,

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-85"]>a[data-css-ext="css-ext-88"]::before,

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-105"]>a[data-css-ext="css-ext-108"]::before {
    background-color: rgb(69, 99, 179);
    block-size: 1px;
    border-block-end-color: rgb(140, 140, 140);
    border-block-start-color: rgb(140, 140, 140);
    border-bottom-color: rgb(140, 140, 140);
    border-inline-end-color: rgb(140, 140, 140);
    border-inline-start-color: rgb(140, 140, 140);
    border-left-color: rgb(140, 140, 140);
    border-right-color: rgb(140, 140, 140);
    border-top-color: rgb(140, 140, 140);
    caret-color: rgb(140, 140, 140);
    color: rgb(140, 140, 140);
    column-rule-color: rgb(140, 140, 140);
    content: "";
    cursor: pointer;
    display: block;
    height: 1px;
    inset-block-start: 12.3333px;
    inset-inline-end: 104.069px;
    outline-color: rgb(140, 140, 140);
    position: absolute;
    right: 104.069px;
    text-decoration-color: rgb(140, 140, 140);
    text-emphasis-color: rgb(140, 140, 140);
    top: 12.3333px;
    visibility: visible;
}

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-9"]>a[data-css-ext="css-ext-12"]::before,

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-29"]>a[data-css-ext="css-ext-32"]::before,

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-49"]>a[data-css-ext="css-ext-52"]::before,

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-69"]>a[data-css-ext="css-ext-72"]::before,

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-89"]>a[data-css-ext="css-ext-92"]::before,

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-109"]>a[data-css-ext="css-ext-112"]::before {
    background-color: rgb(69, 99, 179);
    block-size: 1px;
    border-block-end-color: rgb(140, 140, 140);
    border-block-start-color: rgb(140, 140, 140);
    border-bottom-color: rgb(140, 140, 140);
    border-inline-end-color: rgb(140, 140, 140);
    border-inline-start-color: rgb(140, 140, 140);
    border-left-color: rgb(140, 140, 140);
    border-right-color: rgb(140, 140, 140);
    border-top-color: rgb(140, 140, 140);
    caret-color: rgb(140, 140, 140);
    color: rgb(140, 140, 140);
    column-rule-color: rgb(140, 140, 140);
    content: "";
    cursor: pointer;
    display: block;
    height: 1px;
    inset-block-start: 12.3333px;
    inset-inline-end: 55.3611px;
    outline-color: rgb(140, 140, 140);
    position: absolute;
    right: 55.3611px;
    text-decoration-color: rgb(140, 140, 140);
    text-emphasis-color: rgb(140, 140, 140);
    top: 12.3333px;
    visibility: visible;
}

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-13"]>a[data-css-ext="css-ext-16"]::before,

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-33"]>a[data-css-ext="css-ext-36"]::before,

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-53"]>a[data-css-ext="css-ext-56"]::before,

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-73"]>a[data-css-ext="css-ext-76"]::before,

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-93"]>a[data-css-ext="css-ext-96"]::before,

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-113"]>a[data-css-ext="css-ext-116"]::before {
    background-color: rgb(69, 99, 179);
    block-size: 1px;
    border-block-end-color: rgb(140, 140, 140);
    border-block-start-color: rgb(140, 140, 140);
    border-bottom-color: rgb(140, 140, 140);
    border-inline-end-color: rgb(140, 140, 140);
    border-inline-start-color: rgb(140, 140, 140);
    border-left-color: rgb(140, 140, 140);
    border-right-color: rgb(140, 140, 140);
    border-top-color: rgb(140, 140, 140);
    caret-color: rgb(140, 140, 140);
    color: rgb(140, 140, 140);
    column-rule-color: rgb(140, 140, 140);
    content: "";
    cursor: pointer;
    display: block;
    height: 1px;
    inset-block-start: 12.3333px;
    inset-inline-end: 94.7222px;
    outline-color: rgb(140, 140, 140);
    position: absolute;
    right: 94.7222px;
    text-decoration-color: rgb(140, 140, 140);
    text-emphasis-color: rgb(140, 140, 140);
    top: 12.3333px;
    visibility: visible;
}

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-17"]>a[data-css-ext="css-ext-20"]::before,

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-37"]>a[data-css-ext="css-ext-40"]::before,

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-57"]>a[data-css-ext="css-ext-60"]::before,

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-77"]>a[data-css-ext="css-ext-80"]::before,

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-97"]>a[data-css-ext="css-ext-100"]::before,

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-117"]>a[data-css-ext="css-ext-120"]::before {
    background-color: rgb(69, 99, 179);
    block-size: 1px;
    border-block-end-color: rgb(140, 140, 140);
    border-block-start-color: rgb(140, 140, 140);
    border-bottom-color: rgb(140, 140, 140);
    border-inline-end-color: rgb(140, 140, 140);
    border-inline-start-color: rgb(140, 140, 140);
    border-left-color: rgb(140, 140, 140);
    border-right-color: rgb(140, 140, 140);
    border-top-color: rgb(140, 140, 140);
    caret-color: rgb(140, 140, 140);
    color: rgb(140, 140, 140);
    column-rule-color: rgb(140, 140, 140);
    content: "";
    cursor: pointer;
    display: block;
    height: 1px;
    inset-block-start: 12.3333px;
    inset-inline-end: 108.083px;
    outline-color: rgb(140, 140, 140);
    position: absolute;
    right: 108.083px;
    text-decoration-color: rgb(140, 140, 140);
    text-emphasis-color: rgb(140, 140, 140);
    top: 12.3333px;
    visibility: visible;
}

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>a.shop-now {
    block-size: 22px;
    border-block-end-color: rgb(69, 99, 179);
    border-block-start-color: rgb(69, 99, 179);
    border-bottom-color: rgb(69, 99, 179);
    border-inline-end-color: rgb(69, 99, 179);
    border-inline-start-color: rgb(69, 99, 179);
    border-left-color: rgb(69, 99, 179);
    border-right-color: rgb(69, 99, 179);
    border-top-color: rgb(69, 99, 179);
    caret-color: rgb(69, 99, 179);
    color: rgb(69, 99, 179);
    column-rule-color: rgb(69, 99, 179);
    cursor: pointer;
    display: inline-block;
    height: 22px;
    inline-size: 41.1389px;
    margin-block-start: 5px;
    margin-top: 5px;
    outline-color: rgb(69, 99, 179);
    position: relative;
    text-decoration-color: rgb(69, 99, 179);
    text-emphasis-color: rgb(69, 99, 179);
    visibility: visible;
    width: 41.1389px;
}

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>a.shop-now::before {
    background-color: rgb(69, 99, 179);
    block-size: 1px;
    border-block-end-color: rgb(69, 99, 179);
    border-block-start-color: rgb(69, 99, 179);
    border-bottom-color: rgb(69, 99, 179);
    border-inline-end-color: rgb(69, 99, 179);
    border-inline-start-color: rgb(69, 99, 179);
    border-left-color: rgb(69, 99, 179);
    border-right-color: rgb(69, 99, 179);
    border-top-color: rgb(69, 99, 179);
    bottom: 2px;
    caret-color: rgb(69, 99, 179);
    color: rgb(69, 99, 179);
    column-rule-color: rgb(69, 99, 179);
    content: "";
    cursor: pointer;
    display: block;
    height: 1px;
    inset-block-end: 2px;
    inset-block-start: 19px;
    inset-inline-end: 41.1389px;
    outline-color: rgb(69, 99, 179);
    position: absolute;
    right: 41.1389px;
    text-decoration-color: rgb(69, 99, 179);
    text-emphasis-color: rgb(69, 99, 179);
    top: 19px;
    visibility: visible;
}

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>a.shop-now::after {
    border-block-end-color: rgb(69, 99, 179);
    border-block-start-color: rgb(69, 99, 179);
    border-bottom-color: rgb(69, 99, 179);
    border-inline-end-color: rgb(69, 99, 179);
    border-inline-start-color: rgb(69, 99, 179);
    border-left-color: rgb(69, 99, 179);
    border-right-color: rgb(69, 99, 179);
    border-top-color: rgb(69, 99, 179);
    caret-color: rgb(69, 99, 179);
    color: rgb(69, 99, 179);
    column-rule-color: rgb(69, 99, 179);
    cursor: pointer;
    outline-color: rgb(69, 99, 179);
    text-decoration-color: rgb(69, 99, 179);
    text-emphasis-color: rgb(69, 99, 179);
    visibility: visible;
}

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-21"],

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-25"],

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-29"],

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-33"],

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-37"],

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-41"],

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-45"],

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-49"],

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-53"],

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-57"],

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-81"],

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-85"],

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-89"],

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-93"],

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-97"],

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-101"],

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-105"],

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-109"],

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-113"],

div.halo-row.halo-row-custom.column-3>div.halo-item>div.collection-card.layout-2>div.content>ul.sub-collection>li[data-css-ext="css-ext-117"] {
    block-size: 22px;
    display: block;
    height: 22px;
    inline-size: 144.097px;
    margin-block-end: 12px;
    margin-bottom: 12px;
    position: static;
    visibility: visible;
    width: 144.097px;
}

.indicator__counter.wishlist-badge,
.topbar__menu-body,
.departments__menu,
.search__dropdown.search__dropdown--suggestions.suggestions:not(.search__dropdown--open),
.search__dropdown--suggestions.suggestions:not(.search__dropdown--open) .suggestions__group,
.indicator__content,
.mobile-menu__indicator-counter.wishlist-badge {
    display: none !important;
}



.selector-content,
.tech-sub-list {
}

[x-cloak] {
    display: none !important;
}

.fa-solid.fa-angle-right {
    font-size: 0.7em;
    margin-right: 0.4rem;
    opacity: 0.5;
}

.tech-form-group button {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

.tech-cat-item-wrap>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    width: 100%;
}

.tech-sidebar .tech-form-group {
    margin-top: 0.5rem !important;
    gap: 0.5rem !important;
    display: flex;
    flex-direction: column;
}

.tech-sidebar .tech-cat-item {
    padding-left: 1rem !important;
}

.tech-sidebar .tech-cat-item.active {
    margin-bottom: 0.5rem !important;
    justify-content: flex-start !important;
    display: flex !important;
}

.tech-sidebar .filter-label {
    font-size: 0.75rem;
    color: #111111;
    margin-bottom: 0.25rem;
}

.tech-sidebar .tech-cat-item-wrap {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.tech-sidebar .tech-form-group>div:not(.tech-slider-wrap) {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 0rem !important;
}

/* Fix for vehicle selector full width */
.tech-sidebar .sidebar-vehicle-selector .tech-form-group > div {
    display: block !important;
    width: 100% !important;
}

.tech-sidebar .tech-sb-title {
    margin: 0 !important;
    border: none !important;
    padding-bottom: 5px !important;
    border-bottom: 1px solid #e7e7e7 !important;
}

.tech-sidebar .fa-solid.fa-angle-right {
    font-size: 0.7em !important;
    margin-right: 0.4rem !important;
    opacity: 0.5 !important;
}

.tech-sidebar .tech-vehicle-mimic {
    cursor: pointer !important;
    transition: transform 0.2s ease !important;
}

.catalogue-layout .tech-cat-toggle-expand {
    width: 100%;
    min-height: 58px;
    border: 1px solid #b1afaf;
    border-radius: 8px;
    background: #e7e7e7;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 700;
}

.tech-sidebar .selector-content,
.tech-sidebar .tech-sub-list {
}

.tech-btn-submit {
    background: var(--primary) !important;
    color: #fff;
    border: none;
    padding: 0.8rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

/* Force blue for vehicle selector in sidebar */
.sidebar-vehicle-selector .tech-btn-submit {
    background: #3b82f6 !important;
}

.sidebar-vehicle-selector .tech-btn-submit:hover {
    background: #2563eb !important;
}

.tech-btn-submit:hover {
    background: #c2410c !important;
    transform: translateY(-2px) !important;
}

@media (min-width:768px) {
    .nav-links {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }
}

@media (min-width:640px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width:1024px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width:1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:1023px) {

    .ac1,
    .ac2 {
        position: static;
        margin-top: 1rem;
        display: inline-block;
    }
}

@media (min-width:640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width:1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width:768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width:768px) {
    .cta-card {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

@media (min-width:640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width:1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

@media (min-width:1024px) {
    .catalogue-layout {
        grid-template-columns: 380px minmax(0, 1fr);
        align-items: start;
    }
}

@media (min-width: 1024px) {
    .products-grid.related-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width:1024px) {
    .cart-layout {
        grid-template-columns: 2fr 1fr;
        align-items: start;
    }
}

@media (min-width:1024px) {
    .checkout-layout {
        grid-template-columns: 2fr 1fr;
    }
}

@media (min-width:900px) {
    .product-detail-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (min-width:1024px) {
    .checkout-layout {
        grid-template-columns: 1fr 380px;
    }
}

@media (max-width: 768px) {
    .results-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .search-dropdown {
        padding: 1.5rem 0;
        height: calc(100vh - 5rem);
        overflow-y: auto;
    }
}

@media (max-width: 1200px) {
    .catalogue-layout {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1024px) {
    .sidebar {
        position: sticky;
        top: 80px;
        min-height: auto;
        border-right: none;
        box-shadow: none;
        border-radius: 0;
    }
}

@media (min-width: 1200px) {
    .catalogue-main {
        padding: 3rem 0rem;
        padding-top: 0;
    }
}

@media (min-width: 1200px) {
    .btn-cart-premium span {
        display: inline;
    }
}

@media (max-width: 640px) {
    .spec-row {
        flex-direction: column;
        gap: 4px;
    }

    .spec-value {
        text-align: left;
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    .layout-v1-split {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

@media (min-width: 1024px) {
    .v1-gallery {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .v1-info-sticky {
        position: sticky;
        top: 120px;
    }
}

@media (min-width: 1024px) {
    .related-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .cart-layout {
        grid-template-columns: 1fr 380px;
    }
}

@media (min-width: 1024px) {
    .checkout-layout {
        grid-template-columns: 1fr 400px;
    }
}

@media (max-width: 576px) {
    .buy-section-controls {
        flex-direction: column;
    }

    .buy-section-controls .qty-selector {
        width: 100%;
        justify-content: space-between;
    }

    .buy-section-controls .btn-wishlist-detail {
        width: 100%;
    }
}

@media (min-width: 1024px) {
    .layout-v1-split {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

@media (min-width: 640px) {
    .trust-box-detail {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .tech-sidebar {
        position: sticky;
        top: 15px;
        /*max-height: calc(100vh - 100px);*/
        overflow-y: auto;
    }

    .tech-sidebar::-webkit-scrollbar {
        width: 6px;
    }

    .tech-sidebar::-webkit-scrollbar-track {
        background: transparent;
    }

    .tech-sidebar::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 3px;
    }

    .tech-sidebar::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.2);
    }
}

@media (min-width: 1024px) {
    .tech-sidebar {
        position: sticky;
        top: 15px;
        /* max-height: calc(100vh - 100px);*/
        overflow-y: auto;
    }
}

.catalogue-layout .tech-sb-title {
    padding: 18px 22px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .02em;
    border-bottom: 1px solid #e7e7e7 !important;
}

.search__dropdown--open {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
    transition-delay: 0s !important;
    display: block !important;
}

form.search__body {
    position: relative;
    /* Già presente */
    z-index: 9999 !important;
}

/* =========================================
   COOKIE CONSENT BANNER
   ========================================= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #111;
    color: #ddd;
    z-index: 99999;
    padding: 16px 20px;
    border-top: 1px solid #333;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.4);
    font-size: 0.9rem;
    display: none; /* hidden by default, shown via JS */
}

.cookie-banner.show {
    display: block;
}

.cookie-banner-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
}

.cookie-banner p {
    margin: 0;
    line-height: 1.4;
    flex: 1 1 320px;
}

.cookie-banner .cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cookie-banner .cookie-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 3px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.2s;
}

.cookie-banner .cookie-btn.primary {
    background: #e02020;
    color: #fff;
}

.cookie-banner .cookie-btn.primary:hover {
    background: #c81a1a;
}

.cookie-banner .cookie-btn.secondary {
    background: transparent;
    color: #ccc;
    border-color: #555;
}

.cookie-banner .cookie-btn.secondary:hover {
    border-color: #888;
    color: #fff;
}

.cookie-banner .cookie-btn.link {
    background: none;
    color: #aaa;
    text-decoration: underline;
    padding: 8px 4px;
    font-size: 0.8rem;
}

.cookie-banner .cookie-btn.link:hover {
    color: #fff;
}
    /* Aumenta questo valore */
}


.wishlist-count-badge {
    margin-top: 1.5rem;
}

body.search_suggestions_open .catalogue-header .container>div,
body.search_suggestions_open .hero-container-text {
    z-index: 1;
    position: relative;
}

img.img-immagineprodotto:hover {
    cursor: zoom-in !important;
}

img.img-placeholder {
    filter: grayscale(1);
}

section.hero {
    margin-top: -3rem;
    padding-top: 2rem;
}

.text-white {
    color: #FFF;
}

main {
    padding-top: 0;
}

/* Homepage e pagina prodotti — mantiene il padding originale */
.page--home main,
.page--prodotti main {
    padding-top: 3rem;
}


/* ==========================================================================
   PRECISION INDUSTRIAL — USER AREA DESIGN SYSTEM
   ========================================================================== */

:root {
    --user-surface: #ffffff;
    --user-bg: #f8fafc;
    --user-border: rgba(0, 0, 0, 0.06);
    --user-border-tech: rgba(0, 0, 0, 0.1);
    --user-accent: #dc2626;
    --user-accent-soft: rgba(220, 38, 38, 0.05);
    --user-mono: 'JetBrains Mono', monospace;
    --user-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.05);
}

.user-technical-card {
    background: var(--user-surface);
    border: 1px solid var(--user-border);
    border-radius: 16px;
    box-shadow: var(--user-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.user-technical-card:hover {
    border-color: var(--user-border-tech);
    transform: translateY(-2px);
    box-shadow: 0 15px 50px -12px rgba(0, 0, 0, 0.08);
}

.user-technical-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
}

.user-mono-label {
    font-family: var(--user-mono);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gray-500);
}

.user-mono-value {
    font-family: var(--user-mono);
    font-weight: 600;
}

.user-id-badge {
    background: var(--dark);
    color: white;
    font-family: var(--user-mono);
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.user-sidebar-glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--user-border);
    border-radius: 16px;
}

.user-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-500);
    border-left: 4px solid transparent;
    transition: var(--transition);
}

.user-nav-link:hover {
    background: var(--gray-100);
    color: var(--dark);
}

.user-nav-link.active {
    background: var(--user-accent-soft);
    color: var(--user-accent);
    border-left-color: var(--user-accent);
}

.user-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
}

.user-status-dot--active {
    background: #10b981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
}

/* Global Technical Typography */
.tech-mono {
    font-family: var(--user-mono) !important;
    letter-spacing: -0.01em;
}

.price-mono {
    font-family: var(--user-mono) !important;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.label-mono {
    font-family: var(--user-mono);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400);
}

body.search_suggestions_open header {
    z-index: 1000;
    position: relative;
}


.hero .error-page h1 {
    font-size: 7rem;
}
.hero .error-page h2 {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    color: var(--white);
    margin-bottom: 1.25rem;
}
.justify-self-center {
    justify-self:center;
}

.select-wrapper .select-icon {
    display: none !important;
}

/* ============================================================
   SHARED PAGE HERO — componente riutilizzabile per pagine interne
   (FAQ, Contatti, Carrello, Checkout, ecc.)
   ============================================================ */

.page-hero {
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    padding: 2.5rem 0 2rem;
}
.page-hero.page-hero-dark {
    background:var(--dark-2, #161a20);
}
.page-hero__inner {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.page-hero__left {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.page-hero__label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #dc2626;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.page-hero__label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background: #dc2626;
    border-radius: 2px;
    flex-shrink: 0;
}

.page-hero__title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 900;
    color: #111;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0;
}
.page-hero-dark .page-hero__title {
    color: #fff;
}

.page-hero__subtitle {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0;
    font-weight: 400;
}
.page-hero-dark .page-hero__subtitle {
    color: #ccc;
}

.page-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #f3f4f6;
    color: #374151;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 99px;
    border: 1px solid #e5e7eb;
}

@media (max-width: 768px) {
    .page-hero { padding: 1.75rem 0 1.5rem; }
    .page-hero__inner { flex-direction: column; align-items: flex-start; padding: 0 1rem; }
}

/* Sfondo bianco per le pagine interne con page-hero */
.catalogue-body,
.product-page {
    background: #fff;
}

/* ── Navbar Fixed / Sticky ── */
.site__header--sticky {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.site__header--sticky .header {
    box-shadow: none;
}

.site__header--scrolled .header {
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

/* Icona lucchetto — feedback visivo stato attivo */
.topbar__button-label .fa-lock {
    color: #4ade80; /* verde = bloccato */
}

.topbar__button-label .fa-lock-open {
    color: rgba(255, 255, 255, 0.6); /* grigio = libero */
}


/* ============================================================
   NAVBAR HOVER ENHANCEMENTS
   ============================================================ */

/* ── Topbar center tagline ── */
.header__topbar-center-bg {
    grid-column: 3 / 5;
    grid-row: 1;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    z-index: 1;
}

.header__topbar-center-tagline {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #888;
    white-space: nowrap;
}

/* ── Logo typography ── */
div.header>div.header__logo .logo__slogan {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 2px;
}

div.header>div.header__logo .logo__image h2 {
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0;
}

div.header>div.header__logo .logo__image .logo-bold {
    color: var(--primary);
}

div.header>div.header__logo .logo__image .logo-light {
    color: var(--dark);
}

/* ── Main menu links (Home, Prodotti, FAQs) ── */
.main-menu__link {
    position: relative;
    transition: color 0.2s ease !important;
    font-weight: 600;
}

.main-menu__link--active {
    color: var(--primary) !important;
}

.main-menu__link--active::after {
    left: 0 !important;
    right: 0 !important;
}

.main-menu__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    right: 50%;
    height: 2px;
    background: #dc2626;
    border-radius: 2px;
    transition: left 0.25s ease, right 0.25s ease;
}

.main-menu__link:hover::after,
.main-menu__item--hover > .main-menu__link::after {
    left: 0;
    right: 0;
}

/* ── Indicators: wishlist, compare, account, cart ── */
.indicator__button {
    transition: color 0.18s ease !important;
    border-radius: 0 !important;
    background: transparent !important;
    position: relative;
}

/* Rimuovere il background grigio alto del framework */
.indicator:hover .indicator__button,
.indicator--open .indicator__button {
    background: transparent !important;
    color: #dc2626 !important;
}

/* Linea rossa animata come nei link navbar */
.indicator__button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    height: 2px;
    background: #dc2626;
    border-radius: 2px;
    transition: left 0.25s ease, right 0.25s ease;
}

.indicator__button:hover::after,
.indicator--open .indicator__button::after {
    left: 0;
    right: 0;
}

.indicator__icon {
    transition: color 0.18s ease !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: none !important;
}

.indicator__button:hover .indicator__icon,
.indicator__button:hover .indicator__icon i,
.indicator__button:hover .indicator__icon svg {
    color: #dc2626;
    transform: none !important;
}

.indicator__value {
    transition: color 0.18s ease !important;
}

.indicator__button:hover .indicator__value {
    color: #dc2626 !important;
}

.indicator__button:hover {
    color: #dc2626;
}

/* ── Topbar buttons (Logout, Area admin, Registrati, ecc.) ── */
.topbar--spaceship-end .topbar__button,
.topbar--spaceship-start .topbar__button {
    background: transparent !important;
    position: relative;
    transition: color 0.18s ease;
}

/* Niente box bianco/grigio al passaggio del mouse */
.topbar--spaceship-end .topbar__button:hover,
.topbar--spaceship-end .topbar__menu--open .topbar__menu-button,
.topbar--spaceship-start .topbar__button:hover,
.topbar--spaceship-start .topbar__menu--open .topbar__menu-button {
    background: transparent !important;
}

/* Linea rossa animata coerente con il resto della navbar */
.topbar--spaceship-end .topbar__button::after,
.topbar--spaceship-start .topbar__button::after {
    content: '';
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 0;
    height: 2px;
    background: #dc2626;
    border-radius: 2px 2px 0 0;
    transition: left 0.25s ease, right 0.25s ease;
    pointer-events: none;
}

.topbar--spaceship-end .topbar__button:hover::after,
.topbar--spaceship-start .topbar__button:hover::after {
    left: 10px;
    right: 10px;
}

/* Esclude il pulsante "Ciao, {nome}" (è un <span>, non un <a>/<button>) dall'underline */
.topbar__item-button > span.topbar__button::after {
    display: none;
}

/* Hover label/title in rosso per coerenza con gli indicator */
.topbar--spaceship-end a.topbar__button:hover .topbar__button-label,
.topbar--spaceship-end a.topbar__button:hover .topbar__button-title,
.topbar--spaceship-end button.topbar__button:hover .topbar__button-label,
.topbar--spaceship-end button.topbar__button:hover .topbar__button-title {
    color: #ff6b6b !important;
}

/* Nascondi badge carrello a zero */
.indicator__counter:empty,
.indicator__counter[data-count="0"] {
    display: none !important;
}

/* Mobile header: ombra al scroll */
.site__mobile-header--scrolled .mobile-header {
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}

span.search__button-icon i.fa.fa-search {
    margin-left: -23px;
}

/* Indicatori header: icone e testi centrati nel bottone */
.indicator__button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

.indicator__button .indicator__icon {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
}

.indicator__button .indicator__icon i,
.indicator__button .indicator__icon svg {
    display: block;
    margin: 0 auto;
    text-align: center;
}

.indicator__button .indicator__value,
.indicator__button .indicator__title {
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: center !important;
}

div.header>div.header__indicators a#cart-nav-trigger {
    align-items: center !important;
    justify-content: center !important;
}