/*
Theme Name: Tam Tam Custom
Theme URI: https://example.com
Author: Alessio Bellucci
Author URI: https://example.com
Description: Tema custom dark, moderno, con supporto WooCommerce.
Version: 1.0.0
Text Domain: tamtam
*/

/* ============================================================
   GLOBAL DARK PREMIUM UI – BASE THEME + WOO
============================================================ */
/* =========================================================
   WPFORMS – STILE CUSTOM (DARK THEME)
   ========================================================= */
:root {
    --bg: #000000;
    --bg-elev: #0b0b0f;
    --bg-card: #111116;

    --text: #ffffff;
    --text-soft: #cfcfd6;
    --text-dim: #8b8b98;

    --primary: #3b2cff;
    --primary-soft: #5c4bff;
    --primary-glow: rgba(91, 75, 255, 0.45);

    --border: rgba(255,255,255,0.06);
    --border-strong: rgba(255,255,255,0.12);

    --radius: 18px;
    --radius-lg: 26px;

    --transition: 0.3s cubic-bezier(.4,0,.2,1);
}



/* CONTENITORE GENERALE */
.wpforms-container {
  max-width: 100%;
  margin: 0;
}

/* FORM */
.wpforms-container .wpforms-form {
  color: #ffffff;
}

/* LABEL */
.wpforms-container .wpforms-form label {
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 6px;
}

/* INPUT + TEXTAREA */
.wpforms-container .wpforms-form input[type="text"],
.wpforms-container .wpforms-form input[type="email"],
.wpforms-container .wpforms-form input[type="tel"],
.wpforms-container .wpforms-form textarea {
  width: 100%;
  background: #ffffff !important;
  color: #000000 !important;
  border: none !important;
  border-radius: 14px !important;
  padding: 14px 16px !important;
  font-size: 14px;
  outline: none !important;
  box-shadow: none !important;
}

/* PLACEHOLDER */
.wpforms-container .wpforms-form input::placeholder,
.wpforms-container .wpforms-form textarea::placeholder {
  color: #888888;
}

/* FOCUS */
.wpforms-container .wpforms-form input:focus,
.wpforms-container .wpforms-form textarea:focus {
  box-shadow: 0 0 0 2px rgba(30, 144, 255, 0.35) !important;
}

/* CAMPI AFFIANCATI (FIRST / LAST NAME) */
.wpforms-container .wpforms-field-name {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* TEXTAREA */
.wpforms-container .wpforms-form textarea {
  min-height: 160px;
  resize: vertical;
}

/* BOTTONE SUBMIT – COERENTE CON IL SITO */
.wpforms-container .wpforms-submit {
  background: #1e90ff !important;        /* colore brand */
  color: #ffffff !important;
  border: none !important;
  border-radius: 999px !important;
  padding: 14px 36px !important;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* HOVER BOTTONE */
.wpforms-container .wpforms-submit:hover {
  background: #187bcd !important;
  transform: translateY(-1px);
}

/* DISABLED */
.wpforms-container .wpforms-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ERRORI */
.wpforms-container .wpforms-error {
  color: #ff6b6b !important;
  font-size: 13px;
}

/* MESSAGGIO SUCCESSO */
.wpforms-container .wpforms-confirmation-container-full {
  background: rgba(30, 144, 255, 0.15) !important;
  border: 1px solid rgba(30, 144, 255, 0.4) !important;
  color: #ffffff !important;
  border-radius: 14px;
  padding: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
  .wpforms-container .wpforms-field-name {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   WPFORMS – CAMPI TUTTI A LARGHEZZA PIENA
   ========================================================= */

/* FORZA TUTTI I CAMPI A 100% */
.wpforms-container .wpforms-form .wpforms-field {
  width: 100% !important;
}

/* RIMUOVE IL LAYOUT A DUE COLONNE (FIRST / LAST NAME) */
.wpforms-container .wpforms-field-name {
  display: block !important;
}

/* INPUT + TEXTAREA = STESSA LARGHEZZA */
.wpforms-container .wpforms-form input[type="text"],
.wpforms-container .wpforms-form input[type="email"],
.wpforms-container .wpforms-form input[type="tel"],
.wpforms-container .wpforms-form textarea {
  width: 100% !important;
  box-sizing: border-box;
}

/* SPAZIATURA VERTICALE COERENTE */
.wpforms-container .wpforms-field {
  margin-bottom: 20px;
}



/* ========== RESET BASE ========== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
    line-height: 1.4;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius);
}

a {
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary);
}

/* ========== TIPOGRAFIA ========== */

h1, h2, h3, h4 {
    font-weight: 700;
    margin: 0 0 20px;
    line-height: 1.1;
}

h1 {
    font-size: clamp(2.8rem, 5vw, 4rem);
    letter-spacing: -0.04em;
}

h2 {
    font-size: clamp(2rem, 3.2vw, 3rem);
}

p {
    margin: 0 0 16px;
    font-size: 1.02rem;
    color: var(--text-dim);
}

/* ========== LAYOUT GENERALE ========== */

.wrapper,
.container,
section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* Header / navbar */

header,
.navbar {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-menu {
    display: flex;
    gap: 24px;
}

.navbar-menu a {
    font-size: 0.95rem;
    color: var(--text-dim);
}

.navbar-menu a:hover {
    color: var(--primary);
}
/* --- BASE --- */
.hamburger {
    display: none;
    flex-direction: column;
    width: 28px;
    height: 20px;
    justify-content: space-between;
    cursor: pointer;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: white;
    display: block;
}

.mobile-menu {
    display: none;
}

.mobile-menu.open {
    display: block;
}

@media (max-width: 900px) {
    .desktop-menu { display: none; }
    .hamburger { display: flex; }
}

/* ANIMAZIONE X */
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* --- MOBILE MENU --- */
.mobile-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 25px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.mobile-menu.open {
    display: block;
}
.mobile-menu-items li {
    margin-bottom: 15px;
}
.mobile-menu-items a {
    color: #000;
    font-size: 1.2rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .desktop-menu { display: none; }
    .hamburger { display: flex; }
}


/* Icone account / carrello */

.nav-icons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.nav-icons img,
.nav-icons svg {
    width: 22px;
    height: 22px;
    opacity: 0.8;
    transition: var(--transition);
}

.nav-icons img:hover,
.nav-icons svg:hover {
    opacity: 1;
}

/* ========== CARD E CONTAINER “GLASS” ========== */

.card,
.glass-card {
    background: var(--glass);
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
    transition: var(--transition);
}

.card:hover,
.glass-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
}

/* Glow di sfondo */

.glow {
    position: relative;
}

.glow::before {
    content: "";
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle, rgba(143,123,255,0.28), transparent 70%);
    filter: blur(60px);
    z-index: -1;
}

/* ========== BOTTONI (INCLUSI WOO) ========== */

.button,
.btn,
.wp-block-button__link,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce input[type="submit"].button {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius);
    padding: 12px 22px;
    border: none;
    color: #fff !important;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 0 16px rgba(143,123,255,0.35);
    transition: var(--transition);
}

.button:hover,
.btn:hover,
.wp-block-button__link:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce input[type="submit"].button:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
}

/* Stato disabilitato */

.woocommerce button.button:disabled,
.woocommerce button.button.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ========== FORM / INPUT (ANCHE WOO) ========== */

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
textarea,
select,
.woocommerce-input-wrapper .input-text {
    width: 100%;
    background: #050505;
    border-radius: 12px;
    border: 1px solid var(--border);
    padding: 10px 12px;
    color: var(--text);
    font-size: 0.95rem;
    transition: var(--transition);
}

input:focus,
textarea:focus,
select:focus,
.woocommerce-input-wrapper .input-text:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 1px rgba(143,123,255,0.4);
}

/* ============================================================
   HOOK BASE PER WOO (griglia molto light, il resto in shop.css)
============================================================ */

.woocommerce .page-title {
    margin-bottom: 30px;
}

.woocommerce .woocommerce-breadcrumb {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 20px;
}

.woocommerce ul.products {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Mantengo il grosso della griglia in shop.css, qui solo fallback */
.woocommerce ul.products li.product {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 18px;
    border: 1px solid var(--border);
}

/* Messaggi Woo */

.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
    background: #050505;
    border-radius: 12px;
    border-left: 3px solid var(--primary);
    padding: 14px 18px;
    color: var(--text);
    margin: 20px 0;
}

/* Checkout / carrello titoli */

.woocommerce-cart h1,
.woocommerce-checkout h1 {
    font-size: 2rem;
}

/* Footer */

footer {
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
    padding: 60px 40px;
    font-size: 0.9rem;
    color: var(--text-dim);
}

/* Responsive */

@media (max-width: 768px) {
    header,
    .navbar {
        padding: 16px 20px;
    }

    .wrapper,
    .container,
    section {
        padding: 60px 20px;
    }
}
/* ============================================================
   HEADER LAYOUT FIX + ICON SIZE FIX
============================================================ */

/* CONTAINER GENERALE HEADER */
.site-header {
    width: 100%;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 14px 40px;
}

.header-inner {
    display: flex;
    justify-content: space-between; /* 3 zone: sinistra - centro - destra */
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* SINISTRA: LOGO */
.site-logo img {
    height: 100px; /* dimensione corretta logo */
    width: auto;
    display: block;
}

/* CENTRO: MENU */
.header-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.menu-center-items {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-center-items li a {
    color: var(--text);
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
}

.menu-center-items li a:hover {
    color: var(--primary);
}

/* DESTRA: ICONE ACCOUNT + CARRELLO */
.header-right {
    display: flex;
    align-items: center;
    gap: 22px;
}

/* RIDUZIONE ICONA (SVG) */
.header-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--text);
    opacity: 0.85;
    transition: var(--transition);
}

.header-icon:hover svg {
    opacity: 1;
    fill: var(--primary);
}

/* BADGE QUANTITÀ CARRELLO */
.header-icon.cart svg {
    position: relative;
}

.cart-icon-badge, .header-icon .cart-count-badge {
    position: absolute;
    top: -6px;
    right: -10px;
    background: var(--primary);
    color: #fff;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 50px;
    font-weight: 600;
    line-height: 1;
    box-shadow: 0 0 10px rgba(143,123,255,0.5);
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .menu-center-items {
        gap: 24px;
    }

    .site-header {
        padding: 14px 20px;
    }

    .header-inner {
        flex-wrap: nowrap;
    }

    .header-center {
        display: none; /* nascondiamo il menu su mobile (possiamo aggiungere hamburger dopo) */
    }

    .header-right svg {
        width: 22px;
        height: 22px;
    }
}

/* ============================================================
   FOOTER ICON FIX
============================================================ */

footer svg,
footer img {
    width: 20px !important;
    height: 20px !important;
    opacity: 0.7;
    transition: var(--transition);
}

footer svg:hover,
footer img:hover {
    opacity: 1;
    transform: scale(1.1);
}



/* LAYOUT ACCOUNT */
.tt-account-page {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 80vh;
}

/* SIDEBAR */
.tt-account-sidebar {
  border-right: 1px solid rgba(255,255,255,0.1);
  padding: 40px 20px;
}

.tt-account-menu ul {
  list-style: none;
  padding: 0;
}

.tt-account-menu li {
  margin-bottom: 12px;
}

.tt-account-menu a {
  text-decoration: none;
  color: white;
  opacity: 0.8;
}

.tt-account-menu li.is-active a {
  opacity: 1;
  font-weight: bold;
}

/* CONTENUTO */
.tt-account-main {
  padding: 60px;
}

/* PROFILO */
.tt-account-profile {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}

.tt-account-avatar img {
  border-radius: 50%;
}

.tt-account-info h2 {
  margin: 0;
  font-size: 28px;
}

.tt-account-info p {
  margin: 5px 0 0;
  opacity: 0.7;
}



.tt-dashboard-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.tt-dashboard-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.tt-card {
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.1);
}

.tt-card-value {
  font-size: 32px;
  font-weight: bold;
}

.tt-last-order .tt-order-box {
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.1);
}



.tt-account-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
}

.tt-account-sidebar {
  border-right: 1px solid rgba(255,255,255,0.1);
}

.tt-account-content {
  padding: 40px 0;
}


/* VIDEO GUTENBERG */
.wp-block-video video,
.wp-block-embed iframe {
    width: 70%;
    aspect-ratio: 16 / 9;
    height: auto;
    border-radius: var(--radius);
}

h1 {
    text-align: center;
    width: 100%;
}
/* ============================================================
   DOKAN – LAYOUT STRUTTURATO (TAM TAM THEME)
============================================================ */

/* WRAPPER GENERALE */
.dokan-dashboard,
.dokan-store,
.dokan-store-wrap,
.dokan-dashboard-wrap {
    padding: 80px 20px;
}

/* CONTAINER CENTRALE */
.dokan-dashboard-content,
.dokan-single-store,
.dokan-store-products {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 50px;
    background: var(--bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

/* Spazio tra sezioni interne */
.dokan-dashboard-content > *,
.dokan-single-store > * {
    margin-bottom: 40px;
}

.dokan-dashboard-content > *:last-child,
.dokan-single-store > *:last-child {
    margin-bottom: 0;
}

/* ============================================================
   HEADER STORE & DASHBOARD
============================================================ */

.dokan-dashboard-header,
.dokan-store-header {
    margin-bottom: 50px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border);
}

.dokan-dashboard-header h1,
.dokan-store-header h1 {
    margin-bottom: 12px;
}

/* ============================================================
   PROFILE FRAME STORE
============================================================ */

.dokan-single-store .profile-frame {
    padding: 50px;
    margin-bottom: 50px;
    border-radius: var(--radius-lg);
    background: var(--glass);
    border: 1px solid var(--border);
}

/* ============================================================
   STORE TABS (Products / Reviews)
============================================================ */

.dokan-store-tabs {
    margin-top: 40px;
    padding: 40px;
    border-radius: var(--radius);
    background: var(--bg-card);
    border: 1px solid var(--border);
}

/* ============================================================
   AREA PRODOTTI
============================================================ */

.dokan-store-products {
    margin-top: 40px;
}

.dokan-store-products ul.products {
    margin-top: 40px;
    gap: 40px;
}

/* ============================================================
   CARD INTERNE DASHBOARD
============================================================ */

.dokan-dashboard-content .dokan-panel,
.dokan-orders-area,
.dokan-products-area,
.dokan-withdraw-content,
.dokan-reviews-content {
    padding: 40px;
    margin-bottom: 40px;
    border-radius: var(--radius);
    background: var(--bg-card);
    border: 1px solid var(--border);
}

/* ============================================================
   SIDEBAR
============================================================ */

.dokan-dashboard .dokan-dash-sidebar {
    padding: 50px 25px;
    border-right: 1px solid var(--border);
}

.dokan-dashboard-menu li a {
    padding: 16px 20px;
    border-radius: 14px;
    margin-bottom: 8px;
    display: block;
    transition: 0.2s ease;
}

.dokan-dashboard-menu li.active a,
.dokan-dashboard-menu li a:hover {
    background: var(--glass);
}

/* ============================================================
   FORM
============================================================ */

.dokan-form-group {
    margin-bottom: 28px;
}

.dokan-form-control {
    padding: 14px 16px;
}

/* ============================================================
   TABELLE
============================================================ */

.dokan-dashboard-content table {
    margin-top: 30px;
}

.dokan-dashboard-content table th,
.dokan-dashboard-content table td {
    padding: 16px 18px;
}

/* ============================================================
   BOTTONI
============================================================ */

.dokan-btn,
.dokan-btn-theme {
    padding: 14px 26px;
}

/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 900px) {

    .dokan-dashboard,
    .dokan-store,
    .dokan-store-wrap,
    .dokan-dashboard-wrap {
        padding: 50px 15px;
    }

    .dokan-dashboard-content,
    .dokan-single-store,
    .dokan-store-products {
        padding: 30px 20px;
    }

    .dokan-single-store .profile-frame {
        padding: 30px;
    }

    .dokan-store-tabs {
        padding: 25px;
    }

}
/* FIX SOLO BARRA FILTRO STORE LISTING */

#dokan-store-listing-filter-wrap {
    background: #000 !important;
    border: none !important;
    box-shadow: none !important;
}

#dokan-store-listing-filter-wrap * {
    color: var(--text-soft) !important;
}

/* ============================================================
   FORCE DARK MODE – STORE LISTING
============================================================ */

/* Barra superiore filtro */
.dokan-store-wrap,
.dokan-store-list-filter,
.dokan-store-listing-filter-wrap,
.dokan-store-listing-filter-wrap form {
    background: #000 !important;
}

/* Container totale lista store */
.dokan-store-listing,
.dokan-store-list {
    background: #000 !important;
}

/* Card singolo store */
.dokan-single-store,
.dokan-store-wrap .store-content,
.dokan-store-wrap .store-content-wrap {
    background: #000 !important;
}

/* Footer card store */
.dokan-store-wrap .store-footer {
    background: #000 !important;
}

/* Area interna tabs store */
.dokan-store-tabs,
.dokan-store-products {
    background: #000 !important;
}

/* Se WooCommerce forza il bianco */
.woocommerce,
.woocommerce-page {
    background: #000 !important;
}
/* ============================================================
   WORDPRESS IMAGES – CENTER FIX
============================================================ */

/* Immagini Gutenberg */
.wp-block-image {
    display: flex;
    justify-content: center;
}

/* Immagini singole */
.wp-block-image img {
    margin: 0 auto;
}

/* Compatibilità classica WP */
.aligncenter {
    display: block;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Rimuove eventuali float */
.alignleft,
.alignright {
    float: none !important;
}


/* ============================================================
   MEGA MENU – TAM TAM STREET
============================================================ */

/* Base */
.menu-center-items li {
    position: relative;
}

/* Mega panel */
.menu-center-items > li > ul {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    
    display: flex;
    gap: 40px;

    background: #0a0a0a;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 30px 40px;

    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;

    z-index: 9999;
    min-width: 700px;
    justify-content: center;
}

/* Mostra mega menu */
.menu-center-items > li:hover > ul {
    opacity: 1;
    visibility: visible;
}

/* Ogni voce figlia */
.menu-center-items > li > ul > li {
    list-style: none;
    min-width: 160px;
}

/* Link */
.menu-center-items > li > ul > li > a {
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    padding: 10px 0;
    text-align: center;
    color: var(--text);
    transition: var(--transition);
}

/* Hover */
.menu-center-items > li > ul > li > a:hover {
    color: var(--primary);
}

/* Rimuove dropdown laterali vecchi */
.menu-center-items li ul li ul {
    display: none;
}

.area-associazioni {
    display: flex;
    gap: 15px;
    align-items: center;
}

.area-associazioni a {
    text-decoration: none;
    font-weight: 600;
    padding: 6px 12px;
    border: 1px solid #000;
    transition: 0.3s ease;
}

.area-associazioni a:hover {
    background: #000;
    color: #fff;
}

.area-associazioni-section {
    padding: 60px 0;
    text-align: center;

}

.assoc-box {
    margin-top: 20px;
}

.assoc-btn {
    display: inline-block;
    margin: 10px;
    padding: 10px 18px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.assoc-btn.outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.assoc-btn:hover {
    opacity: 0.8;
}

/* ============================================================
   MARKET SWITCH – STILE MIGLIORATO
============================================================ */

.market-wrapper {
    max-width: 1400px;
    margin: auto;
    padding: 40px 20px;
}

/* CENTRATURA */
.market-switch {
    display: flex;
    justify-content: center;   /* centra i bottoni */
    align-items: center;
    gap: 16px;
    margin-bottom: 50px;
}

/* BOTTONI BASE (cliccabili) */
.switch-btn {
    padding: 12px 28px;
    border-radius: 50px; /* effetto pill */
    border: 1px solid #d0d5dd;
    background: #f2f4f7;  /* grigetto */
    color: #344054;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.25s ease;
}

/* HOVER */
.switch-btn:hover {
    background: #e4e7ec;
    border-color: #cbd5e1;
}

/* STATO ATTIVO (pagina corrente) */
.switch-btn.active {
    background: #1e3a8a;   /* blu elegante */
    border-color: #1e3a8a;
    color: #ffffff;
    cursor: default;
}

/* Disabilita hover quando attivo */
.switch-btn.active:hover {
    background: #1e3a8a;
}

/* ============================================================
   STORE CARD – REMOVE SHADOW
============================================================ */

.dokan-single-seller,
.dokan-single-seller .store-wrapper {
    box-shadow: none !important;
    filter: none !important;
}

