/* ═══════════════════════════════════════════════════
   OZRU Theme — Main Stylesheet
   ═══════════════════════════════════════════════════ */

:root {
  --ozru-red:       #cc1f1f;
  --ozru-red-dark:  #a81818;
  --ozru-dark:      #0a0a0a;
  --ozru-dark2:     #141414;
  --ozru-dark3:     #1e1e1e;
  --ozru-gray:      #6b7280;
  --ozru-offwhite:  #f2ede6;
  --ozru-offwhite2: #e8e2d9;
  --ozru-white:     #ffffff;
  --ozru-font:      'Inter', sans-serif;
}

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

.ozru-body {
  font-family: var(--ozru-font);
  background: var(--ozru-offwhite);
  color: var(--ozru-dark);
  margin: 0;
  padding: 0;
}

/* Remove margens que o WordPress/Elementor adicionam */
.ozru-body .elementor-section,
.ozru-body .elementor-container {
  max-width: 100% !important;
}

.ozru-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── TOP BAR ── */
.ozru-topbar {
  background: var(--ozru-red);
  color: var(--ozru-white);
  font-family: var(--ozru-font);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  z-index: 200;
  position: relative;
}
.ozru-topbar .sep { opacity: 0.5; }

/* ── HEADER ── */
.ozru-header {
  position: sticky;
  top: 0;
  z-index: 150;
  background: var(--ozru-dark);
  border-bottom: 1px solid #1e1e1e;
}
.ozru-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.ozru-logo {
  font-family: var(--ozru-font);
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ozru-white) !important;
  text-decoration: none !important;
  flex-shrink: 0;
  line-height: 1;
}
.ozru-logo img {
  height: 36px;
  width: auto;
}

/* Nav */
.ozru-nav { flex: 1; }
.ozru-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.1rem;
}
.ozru-nav-list li a {
  display: block;
  padding: 0.45rem 0.9rem;
  border-radius: 4px;
  font-family: var(--ozru-font);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9ca3af !important;
  text-decoration: none !important;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.ozru-nav-list li a:hover,
.ozru-nav-list li.current-menu-item > a,
.ozru-nav-list li.active > a {
  color: var(--ozru-white) !important;
  background: #1e1e1e;
}
.ozru-nav-list li.highlight > a,
.ozru-nav-list li.menu-item-outlet > a {
  color: var(--ozru-red) !important;
}

/* Ações header */
.ozru-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}
.ozru-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  transition: background 0.15s, color 0.15s;
  position: relative;
}
.ozru-icon-btn:hover { background: #1e1e1e; color: var(--ozru-white); }

.ozru-cart-btn {
  background: var(--ozru-red) !important;
  color: var(--ozru-white) !important;
}
.ozru-cart-btn:hover { background: var(--ozru-red-dark) !important; }

.ozru-cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--ozru-white);
  color: var(--ozru-dark);
  font-size: 0.6rem;
  font-weight: 900;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hamburger mobile */
.ozru-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 8px;
}
.ozru-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ozru-white);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* Mobile menu */
.ozru-mobile-menu {
  display: none;
  background: var(--ozru-dark2);
  border-top: 1px solid var(--ozru-dark3);
  padding: 1rem 1.5rem;
}
.ozru-mobile-menu.active { display: block; }
.ozru-mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.ozru-mobile-nav-list li a {
  display: block;
  padding: 0.65rem 0.75rem;
  font-family: var(--ozru-font);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ca3af !important;
  text-decoration: none !important;
  border-radius: 4px;
}
.ozru-mobile-nav-list li a:hover { color: var(--ozru-white) !important; background: var(--ozru-dark3); }

/* ── STRIP ANIMADO ── */
.ozru-strip {
  background: var(--ozru-red);
  padding: 0.85rem 0;
  overflow: hidden;
}
.ozru-strip-inner {
  display: flex;
  gap: 3.5rem;
  white-space: nowrap;
  animation: ozru-marquee 20s linear infinite;
}
.ozru-strip-inner span {
  font-family: var(--ozru-font);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ozru-white);
  flex-shrink: 0;
}
.ozru-strip-inner span::before { content: '★  '; }
@keyframes ozru-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── FOOTER ── */
.ozru-footer {
  background: var(--ozru-dark);
  color: #6b7280;
  padding: 4rem 0 0;
  border-top: 1px solid #1e1e1e;
  font-family: var(--ozru-font);
}
.ozru-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #1a1a1a;
}
.ozru-footer-logo {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ozru-white) !important;
  text-decoration: none !important;
  margin-bottom: 0.75rem;
  font-family: var(--ozru-font);
}
.ozru-footer-brand p {
  font-size: 0.85rem;
  margin: 0 0 1.25rem;
  line-height: 1.7;
}

.ozru-social { display: flex; gap: 0.75rem; }
.ozru-social-link {
  width: 36px;
  height: 36px;
  background: #141414;
  border: 1px solid #1e1e1e;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280 !important;
  text-decoration: none !important;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.ozru-social-link:hover {
  background: var(--ozru-red) !important;
  color: var(--ozru-white) !important;
  border-color: var(--ozru-red) !important;
}

.ozru-footer-col h4 {
  color: var(--ozru-white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}
.ozru-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.ozru-footer-col ul a {
  font-size: 0.85rem;
  color: #6b7280 !important;
  text-decoration: none !important;
  transition: color 0.15s;
}
.ozru-footer-col ul a:hover { color: var(--ozru-white) !important; }

.ozru-payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.ozru-payment-badge {
  background: #141414;
  color: #6b7280;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 3px;
  border: 1px solid #1e1e1e;
  text-transform: uppercase;
  font-family: var(--ozru-font);
}
.ozru-security {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: #4b5563;
}

.ozru-footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #374151;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.ozru-footer-bottom p { margin: 0; }

/* ── ÁREA MAIN (Elementor edita aqui) ── */
.ozru-main {
  min-height: 400px;
}

/* ── UTILITÁRIOS ELEMENTOR ── */

/* Botões OZRU para usar no Elementor */
.ozru-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.75rem;
  border-radius: 4px;
  font-family: var(--ozru-font);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
  text-decoration: none !important;
}
.ozru-btn-red {
  background: var(--ozru-red);
  color: var(--ozru-white) !important;
}
.ozru-btn-red:hover {
  background: var(--ozru-red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(204,31,31,0.4);
}
.ozru-btn-outline {
  border-color: rgba(255,255,255,0.2);
  color: var(--ozru-white) !important;
  background: transparent;
}
.ozru-btn-outline:hover {
  border-color: var(--ozru-white);
  background: rgba(255,255,255,0.06);
}
.ozru-btn-dark {
  background: var(--ozru-dark);
  color: var(--ozru-white) !important;
}

/* Badge de coleção */
.ozru-eyebrow {
  font-family: var(--ozru-font);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ozru-red);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.ozru-eyebrow::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--ozru-red);
  flex-shrink: 0;
}

/* Grid de categorias reutilizável */
.ozru-collections-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}
.ozru-collection-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: var(--ozru-dark2);
  border: 1px solid #1e1e1e;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 1.25rem 0.75rem;
  text-decoration: none !important;
  transition: border-color 0.2s, transform 0.2s;
}
.ozru-collection-card:hover {
  border-color: var(--ozru-red);
  transform: translateY(-3px);
}
.ozru-collection-icon {
  font-size: 2.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  opacity: 0.15;
}
.ozru-collection-name {
  font-family: var(--ozru-font);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ozru-white) !important;
  text-align: center;
  position: relative;
  z-index: 1;
}
.ozru-collection-sub {
  font-size: 0.65rem;
  color: #6b7280;
  text-align: center;
  margin-top: 0.2rem;
  position: relative;
  z-index: 1;
  font-family: var(--ozru-font);
}

/* Card de produto */
.ozru-product-card {
  background: var(--ozru-white);
  border: 1px solid var(--ozru-offwhite2);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
  font-family: var(--ozru-font);
}
.ozru-product-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}
.ozru-product-img {
  aspect-ratio: 3/4;
  background: var(--ozru-offwhite);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.ozru-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.ozru-product-card:hover .ozru-product-img img { transform: scale(1.06); }

.ozru-product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--ozru-red);
  color: var(--ozru-white);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 2px;
  text-transform: uppercase;
  font-family: var(--ozru-font);
}
.ozru-product-badge-new {
  background: var(--ozru-dark);
}

.ozru-product-info { padding: 1rem 1rem 1.25rem; }
.ozru-product-collection {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ozru-red);
  margin-bottom: 0.3rem;
}
.ozru-product-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ozru-dark);
  margin-bottom: 0.5rem;
}
.ozru-product-colors { display: flex; gap: 5px; margin-bottom: 0.5rem; }
.ozru-color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.1);
}
.ozru-price-wrap { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0.3rem; }
.ozru-price-old {
  font-size: 0.78rem;
  color: var(--ozru-gray);
  text-decoration: line-through;
}
.ozru-price-current {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--ozru-dark);
}
.ozru-price-installment {
  font-size: 0.72rem;
  color: var(--ozru-gray);
  display: block;
}
.ozru-cashback-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ozru-dark);
  background: var(--ozru-offwhite2);
  padding: 2px 7px;
  border-radius: 2px;
  margin-top: 0.35rem;
  font-family: var(--ozru-font);
}

/* Grid de produtos */
.ozru-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

/* Seção */
.ozru-section { padding: 3.5rem 0; }
.ozru-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}
.ozru-section-title {
  font-family: var(--ozru-font);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
}
.ozru-section-link {
  font-family: var(--ozru-font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ozru-red) !important;
  text-decoration: none !important;
}

/* Manifesto */
.ozru-manifesto {
  background: var(--ozru-dark);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ozru-manifesto::before {
  content: 'OZRU';
  position: absolute;
  font-size: 20vw;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: rgba(255,255,255,0.02);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  font-family: var(--ozru-font);
  pointer-events: none;
}
.ozru-manifesto-text {
  font-family: var(--ozru-font);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--ozru-white);
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 800px;
  margin: 1rem auto 2.5rem;
  position: relative;
  z-index: 1;
}
.ozru-manifesto-text .destaque { color: var(--ozru-red); }

/* ── RESPONSIVO ── */
@media (max-width: 1024px) {
  .ozru-products-grid { grid-template-columns: repeat(3, 1fr); }
  .ozru-collections-grid { grid-template-columns: repeat(3, 1fr); }
  .ozru-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .ozru-nav { display: none; }
  .ozru-hamburger { display: flex; }
  .ozru-collections-grid { grid-template-columns: repeat(2, 1fr); }
  .ozru-products-grid { grid-template-columns: repeat(2, 1fr); }
  .ozru-footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .ozru-topbar .sep { display: none; }
  .ozru-topbar { flex-wrap: wrap; gap: 0.25rem; }
}

@media (max-width: 480px) {
  .ozru-products-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
}
