﻿body {
    background: #0a0a0a;
}

/* LAYOUT */
.domoled-shop {
    display: flex;
    gap: 40px;
    color: #eaeaea;
}

/* SIDEBAR */
.domoled-sidebar {
    width: 260px;
    padding-right: 20px;
    border-right: 1px solid rgba(0, 255, 255, 0.1);
}

.domoled-sidebar h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #00f7ff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* LINK CATEGORIE */
.domoled-sidebar a {
    display: block;
    padding: 8px 10px;
    color: #aaa;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}

/* HOVER NEON */
.domoled-sidebar a:hover,
.domoled-sidebar a.active {
    color: #00f7ff;
    background: rgba(0, 247, 255, 0.08);
    box-shadow: 0 0 10px rgba(0,247,255,0.3);
}

/* GRID */
.domoled-products {
    flex: 1;
}

.domoled-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD PRODOTTO */
.product {
    background: white; /*#111;*/
    border-radius: 12px;
    padding: 15px;
    transition: 0.4s;
    border: 1px solid rgba(0,255,255,0.08);
    position: relative;
}

/* EFFETTO GLOW */
.product:hover {
    transform: translateY(-6px);
    box-shadow:
        0 0 10px rgba(0,255,255,0.2),
        0 0 25px rgba(0,255,255,0.15);
}

/* LINEA NEON TOP */
.product::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, transparent, #00f7ff, transparent);
    opacity: 0;
    transition: 0.4s;
}

.product:hover::before {
    opacity: 1;
}

/* TITOLI */
.woocommerce-loop-product__title {
    color: #eaeaea;
}

/* PREZZO */
.price {
    color: #00f7ff;
}

/* BOTTONE */
.button {
    background: transparent;
    border: 1px solid #00f7ff;
    color: #00f7ff;
    border-radius: 6px;
    transition: 0.3s;
}

.button:hover {
    background: #00f7ff;
    color: #000;
    box-shadow: 0 0 10px #00f7ff;
}
/* PAGINAZIONE NEON */
.domoled-pagination {
    margin-top: 40px;
    display: flex;
    gap: 10px;
}

.domoled-pagination a {
    padding: 8px 14px;
    border: 1px solid #00f7ff;
    color: #00f7ff;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}

.domoled-pagination a:hover {
    background: #00f7ff;
    color: #000;
    box-shadow: 0 0 10px #00f7ff;
}
/* FIX GRID SU UL */
ul.domoled-grid {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ASSICURA 3 COLONNE SEMPRE */
ul.domoled-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
/* RESET COMPLETO WOO COLUMNS */
ul.products.columns-1,
ul.products.columns-2,
ul.products.columns-3,
ul.products.columns-4,
ul.products.columns-5 {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
}
/* BLOCCA WIDTH FORZATO */
ul.products li.product {
    width: 100% !important;
    float: none !important;
}