/* ═══════════════════════════════════════════
   ECOMMERCE DEMO — CSS
   Catálogo Kubu · Tienda en línea integrada con Odoo
═══════════════════════════════════════════ */

:root {
  --primary: #714B67;
  --primary-light: #8F6B82;
  --primary-dark: #5B3A53;
  --primary-50: #f5f0f4;
  --primary-100: #ebe0e8;
  --accent: #00A09D;
  --accent-light: #00c4c0;
  --accent-50: #e6f7f7;
  --warning: #f59e0b;
  --success: #16a34a;
  --red: #dc2626;
  --dark: #1f1f1f;
  --dark-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;

  --font-main: 'Inter', sans-serif;
  --font-head: 'Plus Jakarta Sans', sans-serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.07);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.10);

  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --tr: .3s ease;

  --nav-h: 64px;
  --sidebar-w: 280px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  background: var(--gray-50);
  color: var(--dark-700);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; object-fit: cover; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ═══════════════════════════════════════════
   KUBU BAR
═══════════════════════════════════════════ */
.kubu-bar {
  background: var(--primary);
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  color: rgba(255,255,255,.9);
  position: sticky;
  top: 0;
  z-index: 2000;
}
.kubu-bar strong { color: #fff; }
.kubu-bar-r { display: flex; gap: 12px; }
.kubu-bar a {
  background: rgba(255,255,255,.2);
  color: #fff;
  padding: 4px 14px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .78rem;
  transition: var(--tr);
}
.kubu-bar a:hover { background: rgba(255,255,255,.35); }

/* ═══════════════════════════════════════════
   STORE NAVBAR
═══════════════════════════════════════════ */
.store-nav {
  position: sticky;
  top: 33px;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  z-index: 1000;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.store-nav-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.store-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  flex-shrink: 0;
}
.store-logo-icon {
  width: 36px; height: 36px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .9rem;
}

/* Search bar */
.store-search {
  flex: 1;
  max-width: 520px;
  position: relative;
}
.store-search input {
  width: 100%;
  padding: 10px 16px 10px 42px;
  border: 2px solid var(--gray-200);
  border-radius: 50px;
  font-size: .9rem;
  font-family: var(--font-main);
  color: var(--dark);
  background: var(--gray-50);
  transition: var(--tr);
  outline: none;
}
.store-search input:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(113,75,103,.1);
}
.store-search input::placeholder { color: var(--gray-400); }
.store-search i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  font-size: .9rem;
}

/* Nav actions */
.store-nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.nav-action-btn {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: var(--gray-600);
  transition: var(--tr);
  position: relative;
}
.nav-action-btn:hover { background: var(--primary-50); color: var(--primary); }

.cart-badge {
  position: absolute;
  top: 2px; right: 2px;
  width: 18px; height: 18px;
  background: var(--red);
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-account-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--white);
  background: var(--primary);
  transition: var(--tr);
}
.nav-account-btn:hover { background: var(--primary-dark); }

/* Hamburger */
.store-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
}
.store-hamburger span {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--tr);
}

/* ═══════════════════════════════════════════
   STORE CATEGORIES BAR
═══════════════════════════════════════════ */
.store-categories {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.store-categories::-webkit-scrollbar { display: none; }
.store-categories-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.cat-link {
  padding: 12px 18px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--gray-500);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: var(--tr);
}
.cat-link:hover { color: var(--primary); }
.cat-link.active {
  color: var(--primary);
  font-weight: 700;
  border-bottom-color: var(--primary);
}

/* ═══════════════════════════════════════════
   HERO BANNER
═══════════════════════════════════════════ */
.store-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 60%, #3d2236 100%);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.store-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.store-hero-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.store-hero-text { max-width: 560px; }
.store-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.15);
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,.2);
}
.store-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
}
.store-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 24px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  transition: var(--tr);
  box-shadow: 0 4px 16px rgba(0,160,157,.3);
}
.hero-cta:hover { background: var(--accent-light); transform: translateY(-2px); }

.store-hero-stats {
  display: flex;
  gap: 32px;
}
.hero-stat {
  text-align: center;
}
.hero-stat-val {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.hero-stat-val span { color: var(--accent-light); }
.hero-stat-lbl {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   MAIN LAYOUT
═══════════════════════════════════════════ */
.store-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 32px 24px 80px;
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr;
  gap: 32px;
  align-items: start;
}

/* ═══════════════════════════════════════════
   SIDEBAR / FILTERS
═══════════════════════════════════════════ */
.store-sidebar {
  position: sticky;
  top: 130px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.filter-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.filter-title {
  font-family: var(--font-head);
  font-size: .92rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.filter-title i { color: var(--gray-400); font-size: .75rem; }

/* Category filter */
.filter-categories {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.filter-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: .88rem;
  color: var(--gray-600);
  transition: var(--tr);
  cursor: pointer;
}
.filter-cat:hover { background: var(--primary-50); color: var(--primary); }
.filter-cat.active {
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
}
.filter-cat-count {
  font-size: .75rem;
  font-weight: 600;
  background: var(--gray-100);
  padding: 2px 8px;
  border-radius: 50px;
  color: var(--gray-500);
}
.filter-cat.active .filter-cat-count {
  background: rgba(255,255,255,.25);
  color: var(--white);
}

/* Price filter */
.price-range {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.price-input {
  flex: 1;
  padding: 8px 12px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-size: .85rem;
  font-family: var(--font-main);
  color: var(--dark);
  text-align: center;
  outline: none;
  transition: var(--tr);
}
.price-input:focus { border-color: var(--primary); }
.price-sep { font-size: .8rem; color: var(--gray-400); }

.price-slider {
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background: var(--gray-200);
  position: relative;
  margin: 16px 0;
}
.price-slider-fill {
  position: absolute;
  height: 100%;
  background: var(--primary);
  border-radius: 4px;
  left: 10%;
  right: 20%;
}

/* Rating filter */
.filter-ratings {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.filter-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--tr);
}
.filter-rating-row:hover { background: var(--gray-50); }
.filter-stars { color: var(--warning); font-size: .85rem; display: flex; gap: 2px; }
.filter-stars .empty { color: var(--gray-300); }
.filter-rating-label { font-size: .82rem; color: var(--gray-500); }

/* Filter button */
.filter-apply-btn {
  width: 100%;
  padding: 10px;
  background: var(--primary);
  color: var(--white);
  border-radius: 10px;
  font-size: .88rem;
  font-weight: 600;
  transition: var(--tr);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.filter-apply-btn:hover { background: var(--primary-dark); }

/* Odoo badge in sidebar */
.odoo-integration-card {
  background: linear-gradient(135deg, var(--primary-50), var(--accent-50));
  border: 1px solid var(--primary-100);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}
.odoo-integration-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.odoo-integration-card h4 {
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.odoo-integration-card p {
  font-size: .78rem;
  color: var(--gray-500);
  line-height: 1.5;
}
.odoo-versions {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 12px;
  flex-wrap: wrap;
}
.odoo-v {
  background: var(--primary);
  color: var(--white);
  font-size: .68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
}

/* ═══════════════════════════════════════════
   PRODUCT GRID TOOLBAR
═══════════════════════════════════════════ */
.products-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
  flex-wrap: wrap;
}
.products-count {
  font-size: .9rem;
  color: var(--gray-500);
}
.products-count strong { color: var(--dark); }

.toolbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sort-select {
  padding: 8px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-size: .85rem;
  font-family: var(--font-main);
  color: var(--dark);
  background: var(--white);
  outline: none;
  cursor: pointer;
  transition: var(--tr);
}
.sort-select:focus { border-color: var(--primary); }

.view-toggle {
  display: flex;
  gap: 4px;
}
.view-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--gray-400);
  border: 1.5px solid var(--gray-200);
  transition: var(--tr);
}
.view-btn.active { color: var(--primary); border-color: var(--primary); background: var(--primary-50); }
.view-btn:hover { border-color: var(--primary); color: var(--primary); }

/* ═══════════════════════════════════════════
   PRODUCT CARDS
═══════════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--tr);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: var(--primary-100);
  box-shadow: 0 12px 36px rgba(113,75,103,.12);
  transform: translateY(-4px);
}

/* Image */
.product-img {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--gray-100);
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-img img { transform: scale(1.06); }

.product-badges {
  position: absolute;
  top: 12px; left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-badge {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.badge-sale { background: var(--red); color: var(--white); }
.badge-new { background: var(--accent); color: var(--white); }
.badge-top { background: var(--warning); color: var(--white); }

.product-wishlist {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--gray-400);
  box-shadow: var(--shadow-sm);
  transition: var(--tr);
  cursor: pointer;
}
.product-wishlist:hover { color: var(--red); transform: scale(1.1); }
.product-wishlist.liked { color: var(--red); }

.product-quick-actions {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.6));
  padding: 16px;
  display: flex;
  gap: 8px;
  transform: translateY(100%);
  transition: transform .3s ease;
}
.product-card:hover .product-quick-actions { transform: translateY(0); }
.quick-btn {
  flex: 1;
  padding: 8px;
  border-radius: 8px;
  font-size: .8rem;
  font-weight: 600;
  text-align: center;
  transition: var(--tr);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.quick-btn-primary { background: var(--accent); color: var(--white); }
.quick-btn-primary:hover { background: var(--accent-light); }
.quick-btn-secondary { background: rgba(255,255,255,.9); color: var(--dark); }
.quick-btn-secondary:hover { background: var(--white); }

/* Product info */
.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.product-category {
  font-size: .72rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .8px;
}
.product-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-desc {
  font-size: .82rem;
  color: var(--gray-500);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}
.product-stars { color: var(--warning); font-size: .8rem; display: flex; gap: 1px; }
.product-stars .empty { color: var(--gray-300); }
.product-rating-count {
  font-size: .75rem;
  color: var(--gray-400);
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--gray-100);
}
.product-price {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
}
.product-price-old {
  font-size: .88rem;
  color: var(--gray-400);
  text-decoration: line-through;
}
.product-discount {
  font-size: .72rem;
  font-weight: 700;
  color: var(--red);
  background: #fef2f2;
  padding: 2px 8px;
  border-radius: 4px;
}

/* Add to cart button on card */
.product-add-cart {
  margin: 0 20px 20px;
  padding: 10px;
  background: var(--primary);
  color: var(--white);
  border-radius: 10px;
  font-size: .88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--tr);
}
.product-add-cart:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* ═══════════════════════════════════════════
   ODOO INTEGRATION BANNER
═══════════════════════════════════════════ */
.odoo-banner {
  margin-top: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.odoo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.odoo-banner > * { position: relative; z-index: 1; }

.odoo-banner h2 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--white);
}
.odoo-banner p {
  font-size: .95rem;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin-bottom: 20px;
}
.odoo-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.odoo-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: rgba(255,255,255,.9);
}
.odoo-features li i { color: var(--accent-light); font-size: .8rem; }

.odoo-banner-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.odoo-feature-box {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: var(--tr);
}
.odoo-feature-box:hover { background: rgba(255,255,255,.18); transform: translateY(-3px); }
.odoo-feature-box i {
  font-size: 1.3rem;
  margin-bottom: 8px;
  display: block;
}
.odoo-feature-box h4 {
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--white);
}
.odoo-feature-box p {
  font-size: .75rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 0;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.store-footer {
  background: var(--dark);
  color: rgba(255,255,255,.6);
  padding: 60px 0 0;
}
.store-footer-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.store-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand-col h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand-col p { font-size: .88rem; line-height: 1.7; margin-bottom: 16px; }
.footer-payment {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pay-icon {
  background: rgba(255,255,255,.08);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: .9rem;
  color: rgba(255,255,255,.5);
}

.footer-col h4 {
  color: var(--white);
  font-size: .88rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  padding: 4px 0;
  transition: color .3s;
}
.footer-col a:hover { color: var(--accent-light); }

.store-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
  gap: 12px;
}
.powered-odoo {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.5);
}
.powered-odoo i { color: var(--primary-light); }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .odoo-banner { grid-template-columns: 1fr; }
  .store-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .store-main { grid-template-columns: 1fr; }
  .store-sidebar { position: static; }
  .store-hero-wrap { flex-direction: column; text-align: center; }
  .store-hero-stats { justify-content: center; }
}

@media (max-width: 768px) {
  .store-hamburger { display: flex; }
  .store-search { display: none; }
  .nav-account-btn span { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .product-quick-actions { display: none; }
  .odoo-banner { padding: 32px 24px; }
  .odoo-banner-visual { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .store-footer-grid { grid-template-columns: 1fr; }
  .store-hero-stats { flex-direction: column; gap: 16px; }
  .odoo-banner-visual { grid-template-columns: 1fr; }
  .kubu-bar { font-size: .72rem; padding: 6px 16px; }
  .kubu-bar-r { gap: 6px; }
}
