/* ==========================================================================
   LIT'S HOT ROLL - ESTILOS PERSONALIZADOS E DESIGN SYSTEM
   ========================================================================== */

/* Importação das Fontes Poppins (títulos) e Montserrat (corpo/leitura) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Poppins:wght@600;700;800;900&display=swap');

:root {
  /* Cores Principais - Design System */
  --brand-primary: #EC3338;
  --brand-dark: #A90104;
  --brand-deep: #9E0812;
  --brand-light: #F6474C;
  --brand-pale: #FFD2CD;
  --white: #FFFFFF;
  --black: #0D0D0D;
  --gray-light: #F3F4F6;
  --gray-medium: #9CA3AF;
  --gray-dark: #374151;
  --success: #22C55E;

  /* Espaçamento */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 80px;

  /* Arredondamento */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
}

/* Reset e Configurações Globais */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--black);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
}

.font-title {
  font-family: 'Poppins', sans-serif;
}

/* Padrão de Fundo Radial sobre Vermelho (Oficial do Design System) */
.bg-pattern-radial {
  background: 
    radial-gradient(
      circle at center,
      transparent 0 35%,
      rgba(255, 255, 255, 0.04) 36% 37%,
      transparent 38%
    ),
    var(--brand-primary);
  background-size: 80px 80px;
}

.bg-pattern-radial-dark {
  background: 
    radial-gradient(
      circle at center,
      transparent 0 35%,
      rgba(255, 255, 255, 0.03) 36% 37%,
      transparent 38%
    ),
    var(--brand-dark);
  background-size: 80px 80px;
}

/* Elemento Japonês / Torii */
.torii-icon {
  display: inline-block;
  width: 24px;
  height: 20px;
  background-color: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2 3h20v2H2V3zm3 4h14v2H5V7zm3 4h8v11H8V11zm-4.5 0h3v11h-3V11zm15 0h3v11h-3V11z'/%3E%3C/svg%3E") no-repeat center;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2 3h20v2H2V3zm3 4h14v2H5V7zm3 4h8v11H8V11zm-4.5 0h3v11h-3V11zm15 0h3v11h-3V11z'/%3E%3C/svg%3E") no-repeat center;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--white);
}

::-webkit-scrollbar-thumb {
  background: var(--brand-primary);
  border-radius: var(--radius-pill);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--brand-dark);
}

/* Tarjas / Badges */
.badge-lits {
  background-color: var(--brand-dark);
  color: var(--white);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
}

/* Efeito de Card no Catálogo */
.product-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px -10px rgba(236, 51, 56, 0.15);
  border-color: rgba(236, 51, 56, 0.2);
}

/* Modais de Transição Suave */
.modal-overlay {
  transition: opacity 0.3s ease;
}

.modal-content {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Carrinho Flutuante */
.cart-floating {
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Estilos de Botão do WhatsApp Personalizados */
.btn-whatsapp {
  background-color: #25D366;
  color: white;
  transition: all 0.2s ease;
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  transform: scale(1.03);
}

/* Tab Active Styles */
.tab-active {
  background-color: var(--brand-primary);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(236, 51, 56, 0.2);
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* Menu Toggle Animation */
.mobile-menu {
  transition: transform 0.3s ease-in-out;
}

/* Estilização para as imagens que serão recortes */
.product-image-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  background-color: var(--gray-light);
}

.product-image-container img {
  transition: transform 0.5s ease;
}

.product-card:hover .product-image-container img {
  transform: scale(1.06);
}

/* Detalhes Orientais */
.japanese-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.japanese-divider::before,
.japanese-divider::after {
  content: "";
  height: 2px;
  background: linear-gradient(to right, transparent, var(--brand-primary), transparent);
  flex-grow: 1;
}

/* Sombra Suave */
.shadow-soft {
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
}

/* Condições Comerciais Grid */
.condicao-card {
  border-left: 4px solid var(--brand-primary);
  transition: transform 0.2s ease;
}

.condicao-card:hover {
  transform: translateX(4px);
}
