/*
Theme Name: Universo Volley
Theme URI: https://universovolley.com
Author: Universo Volley
Author URI: https://universovolley.com
Description: Tema WordPress + WooCommerce feito à medida para a Universo Volley, loja de ténis de voleibol que vende para toda a Europa. Pronto para PT/EN/ES. Rápido, responsivo e pronto a usar.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Tested up to: 6.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: universo-volley
Tags: e-commerce, woocommerce, custom-colors, custom-logo, custom-menu, responsive-layout

Universo Volley WordPress Theme, Copyright 2026
Universo Volley is distributed under the terms of the GNU GPL.
*/

/* =========================================================
   0. DESIGN TOKENS
   ========================================================= */
:root {
  --uv-navy: #0f1b3c;
  --uv-navy-dark: #091026;
  --uv-orange: #ff6b35;
  --uv-orange-dark: #e2551f;
  --uv-white: #ffffff;
  --uv-fog: #f5f6f9;
  --uv-gray-100: #eef0f4;
  --uv-gray-300: #c9cddb;
  --uv-gray-500: #7b8299;
  --uv-gray-700: #444b63;
  --uv-success: #1f9d55;
  --uv-danger: #e0392b;

  --uv-font-heading: 'Poppins', 'Segoe UI', Arial, sans-serif;
  --uv-font-body: 'Inter', 'Segoe UI', Arial, sans-serif;

  --uv-radius-sm: 6px;
  --uv-radius-md: 12px;
  --uv-radius-lg: 20px;

  --uv-shadow-sm: 0 2px 8px rgba(15, 27, 60, 0.08);
  --uv-shadow-md: 0 8px 24px rgba(15, 27, 60, 0.12);
  --uv-shadow-lg: 0 16px 40px rgba(15, 27, 60, 0.16);

  --uv-container: 1240px;
  --uv-transition: 0.2s ease;
}

/* =========================================================
   1. RESET / BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--uv-font-body);
  color: var(--uv-navy);
  background: var(--uv-white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--uv-transition); }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--uv-font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.6em;
  color: var(--uv-navy);
}
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }
.uv-container {
  width: 100%;
  max-width: var(--uv-container);
  margin: 0 auto;
  padding: 0 24px;
}
.screen-reader-text {
  position: absolute !important;
  clip: rect(1px,1px,1px,1px);
  width: 1px; height: 1px; overflow: hidden;
}

/* =========================================================
   2. BUTTONS
   ========================================================= */
.uv-btn, .button, button.button, input[type="submit"],
.woocommerce a.button, .woocommerce button.button,
.woocommerce #respond input#submit, .woocommerce input.button,
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--uv-orange) !important;
  color: var(--uv-white) !important;
  border: none;
  border-radius: 999px !important;
  padding: 14px 30px !important;
  font-weight: 700;
  font-family: var(--uv-font-heading);
  font-size: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: all var(--uv-transition);
  box-shadow: var(--uv-shadow-sm);
}
.uv-btn:hover, .button:hover, button.button:hover, input[type="submit"]:hover,
.woocommerce a.button:hover, .woocommerce button.button:hover,
.woocommerce #respond input#submit:hover, .woocommerce input.button:hover {
  background: var(--uv-orange-dark) !important;
  transform: translateY(-2px);
  box-shadow: var(--uv-shadow-md);
}
.uv-btn--outline {
  background: transparent !important;
  color: var(--uv-white) !important;
  border: 2px solid var(--uv-white) !important;
}
.uv-btn--outline:hover {
  background: var(--uv-white) !important;
  color: var(--uv-navy) !important;
}
.uv-btn--navy { background: var(--uv-navy) !important; }
.uv-btn--navy:hover { background: var(--uv-navy-dark) !important; }

/* =========================================================
   3. TOP BAR + HEADER
   ========================================================= */
.uv-topbar {
  background: var(--uv-navy);
  color: var(--uv-gray-300);
  font-size: 13px;
}
.uv-topbar .uv-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}
.uv-topbar a { color: var(--uv-gray-300); }
.uv-topbar a:hover { color: var(--uv-orange); }
.uv-topbar__links { display: flex; gap: 18px; }

.uv-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--uv-white);
  box-shadow: var(--uv-shadow-sm);
}
.uv-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}
.uv-logo { display: flex; align-items: center; flex-shrink: 0; }
.uv-logo img { height: 44px; width: auto; }

.uv-nav { flex: 1; display: flex; justify-content: center; }
.uv-nav ul { display: flex; gap: 34px; }
.uv-nav a {
  font-family: var(--uv-font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--uv-navy);
  padding: 6px 0;
  position: relative;
}
.uv-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--uv-orange);
  transition: width var(--uv-transition);
}
.uv-nav a:hover, .uv-nav .current-menu-item > a { color: var(--uv-orange); }
.uv-nav a:hover::after, .uv-nav .current-menu-item > a::after { width: 100%; }
.uv-nav .sub-menu {
  position: absolute;
  background: var(--uv-white);
  box-shadow: var(--uv-shadow-md);
  border-radius: var(--uv-radius-sm);
  padding: 10px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--uv-transition);
}
.uv-nav li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(4px); }
.uv-nav .sub-menu a { display: block; padding: 8px 10px; }
.uv-nav .menu-item-has-children { position: relative; }

.uv-header__actions { display: flex; align-items: center; gap: 20px; }
.uv-icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--uv-fog);
  color: var(--uv-navy);
  transition: background var(--uv-transition);
}
.uv-icon-btn:hover { background: var(--uv-gray-100); }
.uv-icon-btn svg { width: 20px; height: 20px; }
.uv-cart-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--uv-orange);
  color: var(--uv-white);
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  min-width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
}
.uv-search-toggle, .uv-menu-toggle { display: none; }

@media (max-width: 900px) {
  .uv-nav { display: none; }
  .uv-menu-toggle {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; background: var(--uv-fog); border-radius: 50%; border: none;
  }
  .uv-mobile-nav {
    display: none;
    position: fixed; inset: 0 0 0 auto;
    width: 82%; max-width: 340px; height: 100vh;
    background: var(--uv-navy);
    z-index: 999;
    padding: 26px 24px;
    overflow-y: auto;
  }
  .uv-mobile-nav.is-open { display: block; }
  .uv-mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
  .uv-mobile-nav a {
    display: block; padding: 14px 4px; color: var(--uv-white);
    font-family: var(--uv-font-heading); font-weight: 600; font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .uv-mobile-nav a:hover { color: var(--uv-orange); }
  .uv-mobile-close { background: none; border: none; color: var(--uv-white); font-size: 26px; margin-bottom: 10px; }
  .uv-mobile-overlay {
    display: none; position: fixed; inset: 0; background: rgba(9,16,38,0.6); z-index: 998;
  }
  .uv-mobile-overlay.is-open { display: block; }
}

/* =========================================================
   4. HERO
   ========================================================= */
.uv-hero {
  position: relative;
  background: linear-gradient(120deg, var(--uv-navy) 55%, var(--uv-navy-dark) 100%);
  color: var(--uv-white);
  overflow: hidden;
}
.uv-hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  padding: 80px 24px;
  min-height: 480px;
}
.uv-hero__eyebrow {
  display: inline-block;
  color: var(--uv-orange);
  font-family: var(--uv-font-heading);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 14px;
}
.uv-hero h1 {
  color: var(--uv-white);
  font-size: clamp(32px, 5vw, 54px);
  margin-bottom: 20px;
}
.uv-hero h1 span { color: var(--uv-orange); }
.uv-hero p {
  color: var(--uv-gray-300);
  font-size: 17px;
  max-width: 480px;
  margin-bottom: 30px;
}
.uv-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.uv-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.uv-hero__visual img {
  border-radius: var(--uv-radius-lg);
  box-shadow: var(--uv-shadow-lg);
}
.uv-hero__blob {
  position: absolute;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(255,107,53,0.35), transparent 70%);
  z-index: 0;
  filter: blur(10px);
}
@media (max-width: 860px) {
  .uv-hero__inner { grid-template-columns: 1fr; text-align: center; padding: 56px 24px; }
  .uv-hero p { margin-left: auto; margin-right: auto; }
  .uv-hero__actions { justify-content: center; }
}

/* =========================================================
   5. TRUST BAR
   ========================================================= */
.uv-trustbar {
  background: var(--uv-fog);
  border-bottom: 1px solid var(--uv-gray-100);
}
.uv-trustbar__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 22px 24px;
}
.uv-trust-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 600; color: var(--uv-navy);
}
.uv-trust-item svg { width: 26px; height: 26px; color: var(--uv-orange); flex-shrink: 0; }

/* =========================================================
   6. SECTIONS / GENERIC
   ========================================================= */
.uv-section { padding: 72px 24px; }
.uv-section--tight { padding: 48px 24px; }
.uv-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}
.uv-section-head__eyebrow {
  color: var(--uv-orange);
  font-family: var(--uv-font-heading);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 13px;
  display: block;
  margin-bottom: 10px;
}
.uv-section-head h2 { font-size: clamp(26px, 3.4vw, 38px); }
.uv-section-head p { color: var(--uv-gray-700); }
.uv-section--navy { background: var(--uv-navy); color: var(--uv-white); }
.uv-section--navy h2, .uv-section--navy h3 { color: var(--uv-white); }
.uv-section--fog { background: var(--uv-fog); }

/* =========================================================
   7. CATEGORY GRID
   ========================================================= */
.uv-cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.uv-cat-card {
  position: relative;
  border-radius: var(--uv-radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--uv-navy);
  box-shadow: var(--uv-shadow-sm);
  transition: transform var(--uv-transition), box-shadow var(--uv-transition);
}
.uv-cat-card:hover { transform: translateY(-6px); box-shadow: var(--uv-shadow-md); }
.uv-cat-card img { width: 100%; height: 100%; object-fit: cover; opacity: 0.75; }
.uv-cat-card__label {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 20px;
  background: linear-gradient(0deg, rgba(15,27,60,0.92), transparent);
  color: var(--uv-white);
  font-family: var(--uv-font-heading);
  font-weight: 700;
  font-size: 17px;
}
@media (max-width: 900px) { .uv-cats-grid { grid-template-columns: repeat(2, 1fr); } }

/* =========================================================
   8. PRODUCT GRID (WooCommerce)
   ========================================================= */
ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 28px !important;
  margin: 0 !important;
  padding: 0 !important;
}
ul.products li.product {
  list-style: none;
  background: var(--uv-white);
  border-radius: var(--uv-radius-md);
  overflow: hidden;
  box-shadow: var(--uv-shadow-sm);
  transition: transform var(--uv-transition), box-shadow var(--uv-transition);
  position: relative;
}
ul.products li.product:hover { transform: translateY(-6px); box-shadow: var(--uv-shadow-md); }
ul.products li.product a { display: block; }
ul.products li.product img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
ul.products li.product .uv-product-body { padding: 16px 18px 20px; }
ul.products li.product h2, ul.products li.product h3 {
  font-size: 15px;
  margin: 0 0 6px;
}
ul.products li.product .price {
  font-family: var(--uv-font-heading);
  font-weight: 700;
  color: var(--uv-orange);
  font-size: 16px;
}
ul.products li.product .price del { color: var(--uv-gray-500); font-weight: 400; margin-right: 6px; }
ul.products li.product .price ins { text-decoration: none; }
ul.products li.product .onsale {
  position: absolute; top: 14px; left: 14px;
  background: var(--uv-orange); color: var(--uv-white);
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px; z-index: 2;
}
ul.products li.product .star-rating { font-size: 13px; margin-bottom: 6px; }
ul.products li.product .added_to_cart { display: block; margin-top: 8px; font-size: 12px; }
ul.products li.product .button {
  margin: 12px 18px 18px !important;
  width: calc(100% - 36px);
  padding: 11px 20px !important;
  font-size: 12px !important;
}
@media (max-width: 1100px) { ul.products { grid-template-columns: repeat(3, 1fr) !important; } }
@media (max-width: 760px) { ul.products { grid-template-columns: repeat(2, 1fr) !important; gap: 16px !important; } }
@media (max-width: 460px) { ul.products { grid-template-columns: 1fr !important; } }

.uv-view-all { text-align: center; margin-top: 40px; }

/* =========================================================
   9. FEATURE / BENEFITS
   ========================================================= */
.uv-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.uv-feature-card {
  background: var(--uv-white);
  border-radius: var(--uv-radius-md);
  padding: 30px 26px;
  box-shadow: var(--uv-shadow-sm);
  text-align: left;
}
.uv-feature-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(255,107,53,0.12);
  color: var(--uv-orange);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.uv-feature-card__icon svg { width: 26px; height: 26px; }
.uv-feature-card h3 { font-size: 18px; margin-bottom: 8px; }
.uv-feature-card p { color: var(--uv-gray-700); font-size: 14.5px; margin: 0; }
@media (max-width: 860px) { .uv-features { grid-template-columns: 1fr; } }

/* =========================================================
   10. CTA BANNER
   ========================================================= */
.uv-cta {
  background: linear-gradient(120deg, var(--uv-orange), var(--uv-orange-dark));
  border-radius: var(--uv-radius-lg);
  color: var(--uv-white);
  padding: 56px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  margin: 0 24px;
}
.uv-cta h2 { color: var(--uv-white); margin-bottom: 8px; font-size: 28px; }
.uv-cta p { color: rgba(255,255,255,0.9); margin: 0; }

/* =========================================================
   11. TESTIMONIALS
   ========================================================= */
.uv-testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.uv-testimonial {
  background: var(--uv-white);
  border-radius: var(--uv-radius-md);
  padding: 26px;
  box-shadow: var(--uv-shadow-sm);
}
.uv-testimonial__stars { color: var(--uv-orange); margin-bottom: 10px; font-size: 14px; }
.uv-testimonial p { color: var(--uv-gray-700); font-style: italic; }
.uv-testimonial__author { display: flex; align-items: center; gap: 12px; margin-top: 14px; }
.uv-testimonial__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--uv-navy); color: var(--uv-white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: var(--uv-font-heading);
}
.uv-testimonial__author strong { display: block; font-size: 14px; }
.uv-testimonial__author span { font-size: 12px; color: var(--uv-gray-500); }
@media (max-width: 860px) { .uv-testimonials { grid-template-columns: 1fr; } }

/* =========================================================
   12. NEWSLETTER
   ========================================================= */
.uv-newsletter { text-align: center; }
.uv-newsletter form {
  display: flex; gap: 10px; max-width: 460px; margin: 24px auto 0;
  flex-wrap: wrap; justify-content: center;
}
.uv-newsletter form input[type="email"] {
  flex: 1; min-width: 220px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid var(--uv-gray-300);
  font-size: 14px;
}
.uv-newsletter__msg {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
}

/* =========================================================
   13. FOOTER
   ========================================================= */
.uv-footer { background: var(--uv-navy-dark); color: var(--uv-gray-300); }
.uv-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding: 60px 24px 40px;
}
.uv-footer__brand img { height: 40px; margin-bottom: 16px; }
.uv-footer__brand p { font-size: 14px; color: var(--uv-gray-500); max-width: 280px; }
.uv-footer h4 {
  color: var(--uv-white);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.uv-footer ul li { margin-bottom: 10px; }
.uv-footer a { font-size: 14px; color: var(--uv-gray-300); }
.uv-footer a:hover { color: var(--uv-orange); }
.uv-footer__social { display: flex; gap: 10px; margin-top: 18px; }
.uv-footer__social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
}
.uv-footer__social svg { width: 16px; height: 16px; }
.uv-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
  font-size: 13px;
  color: var(--uv-gray-500);
}
.uv-footer__payments { display: flex; gap: 8px; align-items: center; }
.uv-footer__payments span {
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 700;
}
@media (max-width: 900px) {
  .uv-footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .uv-footer__top { grid-template-columns: 1fr; }
}

/* =========================================================
   14. BREADCRUMB / PAGE HEADER
   ========================================================= */
.uv-page-header {
  background: var(--uv-navy);
  color: var(--uv-white);
  padding: 44px 24px;
  text-align: center;
}
.uv-page-header h1 { color: var(--uv-white); margin-bottom: 6px; }
.woocommerce-breadcrumb {
  color: var(--uv-gray-300) !important;
  font-size: 13px;
}
.woocommerce-breadcrumb a { color: var(--uv-gray-300) !important; }
.woocommerce-breadcrumb a:hover { color: var(--uv-orange) !important; }

/* =========================================================
   15. WOOCOMMERCE GENERAL OVERRIDES
   ========================================================= */
.woocommerce-page .uv-container,
.woocommerce .uv-container { padding-top: 40px; padding-bottom: 60px; }

.woocommerce-ordering select,
.woocommerce-result-count { font-size: 14px; }
.woocommerce-result-count { color: var(--uv-gray-700); }

.woocommerce div.product .woocommerce-tabs ul.tabs li a { font-family: var(--uv-font-heading); font-weight: 600; }
.woocommerce div.product p.price, .woocommerce div.product span.price {
  color: var(--uv-orange);
  font-family: var(--uv-font-heading);
  font-size: 26px;
}
.woocommerce div.product .product_title { font-size: 30px; margin-bottom: 10px; }
.woocommerce span.onsale {
  background: var(--uv-orange) !important;
  border-radius: 999px;
}
.woocommerce ul.product_list_widget li img { border-radius: 8px; }

.woocommerce table.shop_table { border-radius: var(--uv-radius-md); overflow: hidden; border-color: var(--uv-gray-100); }
.woocommerce table.shop_table th { background: var(--uv-fog); font-family: var(--uv-font-heading); }

.woocommerce-checkout #payment { background: var(--uv-fog) !important; border-radius: var(--uv-radius-md); }
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .woocommerce form .form-row select {
  border-radius: var(--uv-radius-sm);
  border: 1px solid var(--uv-gray-300);
  padding: 10px 12px;
}

.woocommerce-message, .woocommerce-info, .woocommerce-error, .woocommerce-noreviews {
  border-top-color: var(--uv-orange) !important;
  border-radius: var(--uv-radius-sm);
}
.woocommerce-message::before, .woocommerce-info::before { color: var(--uv-orange) !important; }

/* Star rating fill */
.woocommerce .star-rating span::before, .woocommerce p.stars a::before { color: var(--uv-orange); }

/* Mini cart widget */
.widget_shopping_cart .total { font-family: var(--uv-font-heading); font-weight: 700; color: var(--uv-orange); }

/* =========================================================
   16. LANGUAGE SWITCHER
   ========================================================= */
.uv-lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--uv-fog);
  border-radius: 999px;
  padding: 3px;
  margin-right: 4px;
}
.uv-lang-switcher__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--uv-font-heading);
  color: var(--uv-gray-500);
  letter-spacing: 0.02em;
}
.uv-lang-switcher__item.is-active {
  background: var(--uv-white);
  color: var(--uv-navy);
  box-shadow: var(--uv-shadow-sm);
}
.uv-lang-switcher--placeholder .uv-lang-switcher__item:not(.is-active) {
  opacity: 0.45;
  cursor: default;
}
.uv-mobile-nav .uv-lang-switcher {
  background: rgba(255,255,255,0.08);
  margin: 0 0 20px;
  width: fit-content;
}
.uv-mobile-nav .uv-lang-switcher__item { color: var(--uv-gray-300); }
.uv-mobile-nav .uv-lang-switcher__item.is-active { background: var(--uv-orange); color: var(--uv-white); }

/* =========================================================
   17. BRANDS STRIP
   ========================================================= */
.uv-brands__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.uv-brand-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 84px;
  background: var(--uv-fog);
  border-radius: var(--uv-radius-md);
  font-family: var(--uv-font-heading);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.02em;
  color: var(--uv-navy);
  text-transform: uppercase;
  transition: all var(--uv-transition);
  border: 1px solid transparent;
}
.uv-brand-tile:hover {
  background: var(--uv-white);
  border-color: var(--uv-gray-100);
  box-shadow: var(--uv-shadow-md);
  color: var(--uv-orange);
  transform: translateY(-3px);
}
@media (max-width: 700px) {
  .uv-brands__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .uv-brand-tile { height: 64px; font-size: 15px; }
}

/* =========================================================
   18. MOBILE-FIRST: FIXED BOTTOM NAV BAR
   ========================================================= */
.uv-mobile-bar {
  display: none;
}
.uv-hide-mobile { display: flex; }

@media (max-width: 900px) {
  .uv-hide-mobile { display: none !important; }

  .uv-mobile-bar {
    display: flex;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 500;
    background: var(--uv-white);
    border-top: 1px solid var(--uv-gray-100);
    box-shadow: 0 -4px 16px rgba(15,27,60,0.08);
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
  .uv-mobile-bar__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 9px 4px 7px;
    color: var(--uv-gray-500);
    font-size: 10px;
    font-weight: 600;
    font-family: var(--uv-font-heading);
    min-height: 52px;
  }
  .uv-mobile-bar__item svg { width: 21px; height: 21px; }
  .uv-mobile-bar__item:active, .uv-mobile-bar__item:hover { color: var(--uv-orange); }
  .uv-mobile-bar__icon-wrap { position: relative; display: flex; }
  .uv-mobile-bar__icon-wrap .uv-cart-count {
    position: absolute; top: -6px; right: -8px;
  }

  /* Deixa espaço para a barra fixa não tapar conteúdo/rodapé */
  body { padding-bottom: 62px; }

  /* Botões com alvo de toque confortável em ecrãs pequenos */
  .uv-btn, .button, button.button, input[type="submit"],
  .woocommerce a.button, .woocommerce button.button,
  .woocommerce #respond input#submit, .woocommerce input.button {
    min-height: 46px;
    padding: 13px 26px !important;
  }

  ul.products li.product .button { min-height: 42px; }
}

@media (min-width: 901px) {
  .uv-mobile-bar { display: none !important; }
  body { padding-bottom: 0; }
}

/* =========================================================
   20. COOKIE CONSENT BANNER
   ========================================================= */
.uv-cookie-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 900;
  max-width: 640px;
  margin: 0 auto;
  background: var(--uv-white);
  border-radius: var(--uv-radius-md);
  box-shadow: var(--uv-shadow-lg);
  border: 1px solid var(--uv-gray-100);
  overflow: hidden;
}
.uv-cookie-banner[hidden] { display: none; }
.uv-cookie-banner__inner { padding: 20px 22px; }
.uv-cookie-banner__text {
  font-size: 13px;
  color: var(--uv-gray-700);
  margin: 0 0 16px;
  line-height: 1.55;
}
.uv-cookie-banner__text a { color: var(--uv-orange); font-weight: 600; }
.uv-cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.uv-cookie-banner__actions .uv-btn {
  padding: 10px 16px !important;
  font-size: 11px !important;
  flex: 1;
  min-width: 120px;
  text-align: center;
}
.uv-btn--outline-dark {
  background: transparent !important;
  color: var(--uv-navy) !important;
  border: 1.5px solid var(--uv-gray-300) !important;
}
.uv-btn--outline-dark:hover { border-color: var(--uv-navy) !important; }

.uv-cookie-panel {
  border-top: 1px solid var(--uv-gray-100);
  padding: 16px 22px 20px;
  background: var(--uv-fog);
}
.uv-cookie-panel[hidden] { display: none; }
.uv-cookie-panel__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--uv-gray-100);
}
.uv-cookie-panel__row:last-of-type { border-bottom: none; }
.uv-cookie-panel__row strong { font-size: 13px; color: var(--uv-navy); font-family: var(--uv-font-heading); }
.uv-cookie-panel__row p { font-size: 12px; color: var(--uv-gray-700); margin: 4px 0 0; }
.uv-cookie-panel__save { margin-top: 14px; text-align: right; }
.uv-cookie-panel__save .uv-btn { padding: 9px 18px !important; font-size: 11px !important; }

.uv-switch { position: relative; display: inline-block; width: 40px; height: 22px; flex-shrink: 0; }
.uv-switch input { opacity: 0; width: 0; height: 0; }
.uv-switch span {
  position: absolute; inset: 0; cursor: pointer;
  background: var(--uv-gray-300); border-radius: 999px; transition: background var(--uv-transition);
}
.uv-switch span::before {
  content: ''; position: absolute; left: 3px; top: 3px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--uv-white); transition: transform var(--uv-transition);
}
.uv-switch input:checked + span { background: var(--uv-orange); }
.uv-switch input:checked + span::before { transform: translateX(18px); }
.uv-switch--disabled { opacity: 0.6; }
.uv-switch--disabled span { cursor: default; }

.uv-cookie-reopen {
  position: fixed;
  left: 16px; bottom: 16px;
  z-index: 890;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--uv-navy);
  border: none;
  box-shadow: var(--uv-shadow-md);
  display: flex; align-items: center; justify-content: center;
}
.uv-cookie-reopen[hidden] { display: none; }
.uv-cookie-reopen i {
  width: 18px; height: 18px;
  border: 2px solid var(--uv-white);
  border-radius: 50%;
  position: relative;
  display: block;
}
.uv-cookie-reopen i::before, .uv-cookie-reopen i::after {
  content: '';
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--uv-white);
}
.uv-cookie-reopen i::before { top: 3px; left: 5px; }
.uv-cookie-reopen i::after { bottom: 3px; right: 3px; }

@media (max-width: 900px) {
  .uv-cookie-banner { bottom: 74px; left: 10px; right: 10px; }
  .uv-cookie-reopen { bottom: 74px; left: 10px; }
}

/* =========================================================
   21. UTILITIES
   ========================================================= */
.uv-text-center { text-align: center; }
.uv-mt-0 { margin-top: 0; }
@media (max-width: 700px) {
  .uv-section { padding: 48px 20px; }
  .uv-hero__actions .uv-btn { width: 100%; text-align: center; }
}
