/* Reset e Variáveis */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #1d1f26;
  --bg-secondary: #2c2f38;
  --bg-card: #353842;
  --bg-input: #252830;
  --border-color: #343743;
  --text-primary: #ffffff;
  --text-secondary: #686f82;
  --text-tertiary: #8e94a4;
  --accent-color: #ff7269;
  --accent-hover: #ff5a50;
  --success-color: #4caf50;
  --warning-color: #ff9800;
  --error-color: #f44336;
  --shadow: 0px 4px 104px rgba(0, 0, 0, 0.29);
  --shadow-sm: 0px 10px 25px rgba(32, 35, 46, 1);
  --radius: 15px;
  --radius-lg: 20px;
  --radius-xl: 50px;
  --transition: all 0.3s ease;
}

/* FinisherHeader Background Effect - Efeito de Fumaça */
#finisher-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: -1 !important;
  pointer-events: none !important;
  background: transparent !important;
  overflow: hidden !important;
}

/* Garantir que elementos dentro do container de fumaça sejam transparentes */
#finisher-header .smoke-cloud {
  background-color: transparent !important;
}

/* Canvas do FinisherHeader */
#finisher-header canvas {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: -1 !important;
  pointer-events: none !important;
}

/* Efeito de Fumaça/Nuvem - Movimento Horizontal */
.smoke-cloud {
  background-color: transparent !important;
  position: absolute;
  bottom: 0;
  width: 250.625em;
  height: 43.75em;
  animation: smokeMove 80s linear infinite;
  z-index: 1;
  opacity: 0.5;
  overflow: hidden;
}

.smoke-cloud svg {
  width: 100%;
  height: 100%;
  display: block;
}

@keyframes smokeMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Múltiplas camadas de fumaça para efeito mais realista */
.smoke-cloud:nth-child(1) {
  animation-duration: 80s;
  opacity: 0.4;
}

.smoke-cloud:nth-child(2) {
  animation-duration: 100s;
  animation-direction: reverse;
  opacity: 0.3;
  bottom: 10%;
}

.smoke-cloud:nth-child(3) {
  animation-duration: 120s;
  opacity: 0.35;
  bottom: 20%;
}

html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  font-family: "Gilroy", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
}

/* FinisherHeader Background Effect */
#finisher-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* Desktop scroll - ensure proper scrolling */
@media (min-width: 769px) {
  html {
    height: auto;
    overflow-y: auto;
  }

  body {
    height: auto;
    min-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
  }
}

/* Ensure content is not hidden behind bottom navigation on mobile */
@media (max-width: 768px) {
  body {
    padding-bottom: 120px; /* Space for bottom navigation on mobile */
  }
}

/* Floating Download APK Button */
.floating-download-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
  color: var(--text-primary);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(255, 114, 105, 0.4);
  z-index: 9999;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.floating-download-btn:hover {
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 114, 105, 0.6);
}

.floating-download-btn:active {
  transform: translateY(0) scale(1);
}

.floating-download-btn svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .floating-download-btn {
    bottom: 100px; /* Above bottom navigation */
    right: 16px;
    width: 48px;
    height: 48px;
  }

  .floating-download-btn svg {
    width: 20px;
    height: 20px;
  }
}

/* PWA Install Notification */
.pwa-install-notification {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 500px;
  margin: 0 auto;
  z-index: 10000;
  animation: slideUpNotification 0.4s ease-out;
}

@keyframes slideUpNotification {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.pwa-install-notification.hiding {
  animation: slideDownNotification 0.3s ease-in forwards;
}

@keyframes slideDownNotification {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(100px);
    opacity: 0;
  }
}

.pwa-notification-content {
  background: linear-gradient(
    135deg,
    var(--bg-card) 0%,
    var(--bg-secondary) 100%
  );
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.pwa-notification-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-hover));
}

.pwa-notification-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  box-shadow: 0 4px 12px rgba(255, 114, 105, 0.3);
}

.pwa-notification-icon svg {
  width: 24px;
  height: 24px;
}

.pwa-notification-text {
  flex: 1;
  min-width: 0;
}

.pwa-notification-text h4 {
  margin: 0 0 4px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.pwa-notification-text p {
  margin: 0;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.pwa-notification-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.pwa-notification-btn {
  border: none;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-size: 14px;
  font-weight: 500;
}

.pwa-notification-btn:hover {
  background-color: var(--bg-input);
  color: var(--text-primary);
}

.pwa-notification-install {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
  color: var(--text-primary);
  padding: 8px 16px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(255, 114, 105, 0.3);
}

.pwa-notification-install:hover {
  background: linear-gradient(135deg, var(--accent-hover), var(--accent-color));
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 114, 105, 0.4);
}

.pwa-notification-close,
.pwa-notification-ignore {
  width: 32px;
  height: 32px;
  padding: 0;
}

.pwa-notification-close svg,
.pwa-notification-ignore svg {
  width: 16px;
  height: 16px;
}

/* Desktop styles */
@media (min-width: 769px) {
  .pwa-install-notification {
    bottom: 30px;
    left: auto;
    right: 30px;
    max-width: 420px;
  }

  .pwa-notification-content {
    padding: 20px;
  }

  .pwa-notification-text h4 {
    font-size: 17px;
  }

  .pwa-notification-text p {
    font-size: 14px;
  }
}

/* Mobile styles */
@media (max-width: 768px) {
  .pwa-install-notification {
    bottom: 100px !important; /* Above bottom navigation */
    left: 16px !important;
    right: 16px !important;
    z-index: 10001 !important; /* Ensure it's above bottom nav */
    max-width: calc(100% - 32px) !important;
    display: block !important; /* Force display when shown */
  }

  .pwa-install-notification[style*="display: none"] {
    display: none !important;
  }

  .pwa-notification-content {
    padding: 14px;
    gap: 10px;
  }

  .pwa-notification-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .pwa-notification-icon svg {
    width: 20px;
    height: 20px;
  }

  .pwa-notification-text h4 {
    font-size: 15px;
  }

  .pwa-notification-text p {
    font-size: 12px;
  }

  .pwa-notification-install {
    padding: 8px 14px;
    font-size: 13px;
  }

  .pwa-notification-actions {
    gap: 6px;
  }
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  color: var(--text-primary);
}

p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Buttons */
.btn {
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary {
  background-color: var(--accent-color);
  color: var(--text-primary);
  box-shadow: 0 0 10px rgba(255, 114, 105, 0.5),
              0 0 20px rgba(255, 114, 105, 0.3),
              0 0 30px rgba(255, 114, 105, 0.2);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  animation: neonGlow 2s ease-in-out infinite alternate;
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(255, 114, 105, 0.8),
              0 0 30px rgba(255, 114, 105, 0.6),
              0 0 45px rgba(255, 114, 105, 0.4),
              0 0 60px rgba(255, 114, 105, 0.2);
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.8),
               0 0 25px rgba(255, 114, 105, 0.6);
}

@keyframes neonGlow {
  from {
    box-shadow: 0 0 10px rgba(255, 114, 105, 0.5),
                0 0 20px rgba(255, 114, 105, 0.3),
                0 0 30px rgba(255, 114, 105, 0.2);
  }
  to {
    box-shadow: 0 0 15px rgba(255, 114, 105, 0.7),
                0 0 30px rgba(255, 114, 105, 0.5),
                0 0 45px rgba(255, 114, 105, 0.3);
  }
}

.btn-secondary {
  background-color: var(--bg-card);
  color: var(--text-primary);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.2),
              0 0 15px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: neonGlowSecondary 2.5s ease-in-out infinite alternate;
}

.btn-secondary:hover {
  background-color: var(--bg-secondary);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.4),
              0 0 25px rgba(255, 255, 255, 0.2),
              0 0 35px rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes neonGlowSecondary {
  from {
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.2),
                0 0 15px rgba(255, 255, 255, 0.1);
  }
  to {
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.3),
                0 0 25px rgba(255, 255, 255, 0.15);
  }
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  box-shadow: 0 0 10px rgba(255, 114, 105, 0.4),
              inset 0 0 10px rgba(255, 114, 105, 0.1);
  text-shadow: 0 0 8px rgba(255, 114, 105, 0.6);
  animation: neonGlowOutline 2s ease-in-out infinite alternate;
}

.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--text-primary);
  box-shadow: 0 0 15px rgba(255, 114, 105, 0.8),
              0 0 30px rgba(255, 114, 105, 0.6),
              0 0 45px rgba(255, 114, 105, 0.4);
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.8),
               0 0 25px rgba(255, 114, 105, 0.6);
}

@keyframes neonGlowOutline {
  from {
    box-shadow: 0 0 10px rgba(255, 114, 105, 0.4),
                inset 0 0 10px rgba(255, 114, 105, 0.1);
  }
  to {
    box-shadow: 0 0 15px rgba(255, 114, 105, 0.6),
                inset 0 0 15px rgba(255, 114, 105, 0.2);
  }
}

/* Cards */
.card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow),
              0 0 15px rgba(255, 114, 105, 0.1),
              0 0 30px rgba(255, 114, 105, 0.05);
  border: 1px solid rgba(255, 114, 105, 0.1);
  animation: neonGlowCard 3s ease-in-out infinite alternate;
}

.card-product {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 10px;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(255, 114, 105, 0.15),
              0 0 20px rgba(255, 114, 105, 0.08);
  border: 1px solid rgba(255, 114, 105, 0.1);
  animation: neonGlowCard 3s ease-in-out infinite alternate;
}

.card-product:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(255, 114, 105, 0.4),
              0 0 40px rgba(255, 114, 105, 0.3),
              0 0 60px rgba(255, 114, 105, 0.2),
              0 0 80px rgba(255, 114, 105, 0.1);
  border-color: rgba(255, 114, 105, 0.4);
}

@keyframes neonGlowCard {
  from {
    box-shadow: 0 0 10px rgba(255, 114, 105, 0.15),
                0 0 20px rgba(255, 114, 105, 0.08);
  }
  to {
    box-shadow: 0 0 15px rgba(255, 114, 105, 0.25),
                0 0 30px rgba(255, 114, 105, 0.15);
  }
}

/* Inputs */
.input {
  width: 100%;
  padding: 12px 16px;
  background-color: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-size: 14px;
  transition: var(--transition);
}

.input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(255, 114, 105, 0.1);
}

.input::placeholder {
  color: var(--text-secondary);
}

/* Container */
.container {
  max-width: 360px;
  margin: 0 auto;
  padding: 20px;
}

.container-full {
  width: 100%;
  padding: 20px;
}

/* Mobile First */
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

/* Utilities */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.mt-1 {
  margin-top: 8px;
}

.mt-2 {
  margin-top: 16px;
}

.mt-3 {
  margin-top: 24px;
}

.mb-1 {
  margin-bottom: 8px;
}

.mb-2 {
  margin-bottom: 16px;
}

.mb-3 {
  margin-bottom: 24px;
}

.hidden {
  display: none;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-1 {
  gap: 8px;
}

.gap-2 {
  gap: 16px;
}

.gap-3 {
  gap: 24px;
}

/* Loading Spinner */
.spinner {
  border: 3px solid var(--bg-card);
  border-top: 3px solid var(--accent-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 20px auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Toast Notifications */
.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--bg-card);
  color: var(--text-primary);
  padding: 16px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 10000;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.toast.success {
  border-left: 4px solid var(--success-color);
}

.toast.error {
  border-left: 4px solid var(--error-color);
}

.toast.warning {
  border-left: 4px solid var(--warning-color);
}

.toast.info {
  border-left: 4px solid var(--accent-color);
  background-color: var(--bg-card);
}

/* Modal */
.modal {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-color: rgba(0, 0, 0, 0.8) !important;
  display: none;
  align-items: center !important;
  justify-content: center !important;
  z-index: 10000 !important;
  padding: 20px !important;
  overflow-y: auto !important;
}

.modal[style*="flex"] {
  display: flex !important;
}

.modal-content {
  background-color: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 24px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  margin: auto;
  position: relative;
  pointer-events: auto;
  z-index: 10001 !important;
}

.modal-content * {
  pointer-events: auto;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.modal-close {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--text-primary);
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--border-color);
}

.timeline-item {
  position: relative;
  margin-bottom: 24px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--bg-card);
  border: 2px solid var(--border-color);
}

.timeline-item.active::before {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.timeline-item.completed::before {
  background-color: var(--success-color);
  border-color: var(--success-color);
}

/* Carousel */
.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.carousel-container {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-item {
  min-width: 100%;
  height: 200px;
  position: relative;
}

/* Desktop: Carousel item com altura maior */
@media (min-width: 769px) {
  .carousel-item {
    height: 500px;
  }
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: var(--text-primary);
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.carousel-nav:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.carousel-nav.prev {
  left: 10px;
}

.carousel-nav.next {
  right: 10px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  margin-bottom: 0;
  padding: 0;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--text-secondary);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active {
  background-color: var(--accent-color);
  width: 24px;
  border-radius: 4px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    135deg,
    var(--bg-card) 0%,
    var(--bg-secondary) 100%
  );
  border-top: 2px solid var(--accent-color);
  padding: 20px;
  z-index: 10002;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  animation: slideUpBanner 0.4s ease-out;
}

@keyframes slideUpBanner {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.cookie-banner-text {
  flex: 1;
  min-width: 250px;
}

.cookie-banner-text h4 {
  margin: 0 0 8px 0;
  color: var(--text-primary);
  font-size: 18px;
}

.cookie-banner-text p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cookie-banner {
    padding: 16px;
  }

  .cookie-banner-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner-actions {
    width: 100%;
  }

  .cookie-banner-actions .btn {
    flex: 1;
  }
}

/* Promotion Notification */
.promotion-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  max-width: 400px;
  z-index: 10003;
  animation: slideInRight 0.4s ease-out;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.promotion-notification-content {
  background: linear-gradient(
    135deg,
    var(--accent-color) 0%,
    var(--accent-hover) 100%
  );
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 8px 24px rgba(255, 114, 105, 0.4);
  position: relative;
  color: var(--text-primary);
}

.promotion-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--text-primary);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  transition: background 0.2s;
}

.promotion-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.promotion-icon {
  font-size: 48px;
  text-align: center;
  margin-bottom: 12px;
}

.promotion-text {
  text-align: center;
  margin-bottom: 16px;
}

.promotion-text h4 {
  margin: 0 0 8px 0;
  font-size: 20px;
  color: var(--text-primary);
}

.promotion-text p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.promotion-notification-content .btn {
  width: 100%;
  background: var(--text-primary);
  color: var(--accent-color);
  font-weight: 600;
}

.promotion-notification-content .btn:hover {
  background: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
  .promotion-notification {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }
}

/* New Product Notification */
.new-product-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  max-width: 400px;
  z-index: 10003;
  animation: slideInRight 0.4s ease-out;
}

.new-product-notification-content {
  background: var(--bg-card);
  border: 2px solid var(--accent-color);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  position: relative;
}

.new-product-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--bg-input);
  border: none;
  color: var(--text-secondary);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  transition: all 0.2s;
}

.new-product-close:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.new-product-image {
  width: 100%;
  height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--bg-input);
}

.new-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.new-product-text {
  text-align: center;
  margin-bottom: 16px;
}

.new-product-text h4 {
  margin: 0 0 8px 0;
  font-size: 18px;
  color: var(--text-primary);
}

.new-product-text p {
  margin: 0 0 8px 0;
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 500;
}

.new-product-price {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-color);
}

.new-product-notification-content .btn {
  width: 100%;
}

@media (max-width: 768px) {
  .new-product-notification {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }
}
