/* ==========================================================================
   VibeCrua.com.br - Custom Premium Stylesheet (Modern E-Commerce Design System)
   Theme: Vibrant & Sophisticated Brazilian Palette (Green, Yellow, Blue, White)
   ========================================================================== */

/* DESIGN SYSTEM TOKENS */
:root {
  /* Colors */
  --primary-green: #064e3b;         /* Deep Forest Green */
  --primary-green-light: #059669;   /* Vibrant Emerald */
  --primary-green-glow: #10b981;    /* Glowing Green for active states */
  --accent-yellow: #eab308;         /* Rich Yellow Gold */
  --accent-yellow-light: #fef08a;   /* Soft Pastel Yellow */
  --accent-blue: #1d4ed8;           /* Intense Royal Blue */
  --accent-blue-light: #3b82f6;     /* Sky Blue */
  --text-dark: #1c1917;             /* Charcoal Black */
  --text-muted: #78716c;            /* Warm Slate Gray */
  --bg-light: #fafaf9;              /* Warm off-white "cru" */
  --bg-white: #ffffff;
  --bg-dark: #091310;               /* Extremely dark forest green (footer/dark states) */
  --border-color: #e7e5e4;          /* Warm borders */
  
  /* Alerts */
  --success: #10b981;
  --danger: #ef4444;
  
  /* Shadows & Borders */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.02);
  --shadow-md: 0 10px 20px rgba(6, 78, 59, 0.04);
  --shadow-lg: 0 20px 40px rgba(6, 78, 59, 0.08);
  --shadow-glow: 0 0 20px rgba(234, 179, 8, 0.3);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* BASE STYLES & RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

button, input, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  outline: none;
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Helpers */
.text-yellow { color: var(--accent-yellow) !important; }
.text-green { color: var(--primary-green-light) !important; }
.text-blue { color: var(--accent-blue-light) !important; }
.desktop-only { display: inline; }
@media (max-width: 768px) {
  .desktop-only { display: none !important; }
}

/* PROMOBAR */
.promobar {
  background: linear-gradient(135deg, #022c22 0%, #0c1a30 100%);
  color: var(--bg-white);
  padding: 10px 0;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  z-index: 100;
  position: relative;
  border-bottom: 2px solid var(--accent-yellow);
}

.promobar-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.promobar span i {
  margin-right: 6px;
}

/* MAIN HEADER */
.main-header {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 500;
  transition: var(--transition-normal);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo Design */
.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-green);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
}

.logo-accent {
  background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-dot {
  color: var(--accent-yellow);
}

/* Navigation Links */
.nav-menu ul {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-green-light);
  transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-green-light);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Search Box */
.search-box {
  display: flex;
  align-items: center;
  background-color: var(--bg-gray);
  border: 1px solid transparent;
  border-radius: var(--radius-full);
  padding: 6px 12px 6px 18px;
  transition: var(--transition-fast);
  width: 200px;
}

.search-box:focus-within {
  border-color: var(--primary-green-light);
  background-color: var(--bg-white);
  width: 250px;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}

.search-box input {
  width: 100%;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.search-box button {
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
}

.search-box button:hover {
  color: var(--primary-green-light);
}

/* Social Icon Buttons */
.social-quick-links {
  display: flex;
  gap: 8px;
}

.social-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background-color: var(--bg-gray);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.social-icon-btn.insta:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
  color: white;
}

.social-icon-btn.yt:hover {
  background-color: #ff0000;
  color: white;
}

.social-icon-btn.fb:hover {
  background-color: var(--accent-blue);
  color: white;
}

/* Cart Button */
.cart-btn {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background-color: var(--primary-green);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.cart-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(6, 78, 59, 0.2);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: var(--accent-yellow);
  color: var(--primary-green);
  font-size: 0.75rem;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid rgba(255, 255, 255, 0.9);
}

/* Mobile buttons */
.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

/* HERO SECTION */
.hero-section {
  position: relative;
  padding: 80px 0 100px;
  background: radial-gradient(circle at 10% 20%, rgba(6, 78, 59, 0.06) 0%, rgba(37, 99, 235, 0.03) 90%), var(--bg-light);
  overflow: hidden;
}

.hero-background-decor {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 45%;
  height: 80%;
  background: radial-gradient(circle, rgba(234, 179, 8, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.hero-text-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background-color: rgba(5, 150, 105, 0.1);
  color: var(--primary-green-light);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  width: fit-content;
  border: 1px solid rgba(5, 150, 105, 0.2);
}

.hero-badge i {
  color: var(--accent-yellow);
}

.hero-text-content h1 {
  font-size: 3.5rem;
  color: var(--primary-green);
  letter-spacing: -0.03em;
  font-weight: 800;
}

.highlight-text-gradient {
  background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--accent-blue-light) 50%, var(--accent-yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.hero-text-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}

/* Button design */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--primary-green) 100%);
  color: var(--bg-white);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(6, 78, 59, 0.2);
  transition: var(--transition-fast);
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6, 78, 59, 0.3);
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--border-color);
  color: var(--text-dark);
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: var(--transition-fast);
  cursor: pointer;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.8);
  border-color: var(--text-dark);
}

.hero-trust {
  display: flex;
  gap: 32px;
  margin-top: 20px;
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-item i {
  color: var(--primary-green-light);
  font-size: 1.1rem;
}

/* Hero card representation */
.hero-image-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.glowing-orb {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.15) 0%, rgba(37, 99, 235, 0.08) 50%, rgba(255, 255, 255, 0) 70%);
  z-index: 1;
  filter: blur(20px);
  animation: floatOrb 6s ease-in-out infinite;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(10px, -15px) scale(1.05); }
}

.hero-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  width: 100%;
  max-width: 380px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.8);
  z-index: 2;
  position: relative;
  transition: var(--transition-normal);
}

.hero-card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: var(--shadow-xl);
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: var(--primary-green);
  color: var(--accent-yellow);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  border: 2px solid var(--accent-yellow);
}

.hero-card-header h4 {
  font-size: 0.95rem;
}

.hero-card-header p {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-card-image {
  height: 220px;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.2) 0%, rgba(234, 179, 8, 0.2) 50%, rgba(37, 99, 235, 0.2) 100%),
              radial-gradient(circle, #fff 30%, #e2e8f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-image::before {
  content: '🇧🇷';
  font-size: 5rem;
  opacity: 0.25;
}

.hero-card-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: var(--accent-blue);
  color: var(--bg-white);
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
}

.hero-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.hero-card-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.hero-card-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}

.price-old {
  font-size: 0.9rem;
  text-decoration: line-through;
  color: var(--text-muted);
}

.price-current {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-green-light);
}

.btn-card-add {
  width: 100%;
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 12px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.btn-card-add:hover {
  background-color: var(--primary-green-light);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
}

/* SECTION HEADER */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-green-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* BENTO GRID */
.bento-section {
  padding: 100px 0;
  background-color: var(--bg-white);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

/* Bento card styling */
.bento-box {
  background-color: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.bento-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(5, 150, 105, 0.2);
}

.bento-header {
  margin-bottom: 24px;
}

.bento-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.bento-badge.yt { background-color: rgba(255, 0, 0, 0.1); color: #ff0000; }
.bento-badge.insta { background-color: rgba(214, 36, 159, 0.1); color: #d6249f; }
.bento-badge.fb { background-color: rgba(29, 78, 216, 0.1); color: var(--accent-blue); }
.bento-badge.pix { background-color: rgba(5, 150, 105, 0.1); color: var(--primary-green-light); }
.bento-badge.shipping { background-color: rgba(234, 179, 8, 0.1); color: #d97706; }

.bento-box h3 {
  font-size: 1.4rem;
  color: var(--primary-green);
}

/* Bento Column Spanning */
.span-large { grid-column: span 7; }
.span-medium { grid-column: span 5; }
.span-small { grid-column: span 4; }

/* Bento 1: YouTube details */
.yt-video-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
}

.yt-video-thumbnail {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(6, 78, 59, 0.4) 0%, rgba(30, 58, 138, 0.4) 100%),
              radial-gradient(circle, #f59e0b 20%, #000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: var(--transition-normal);
}

.yt-video-thumbnail::before {
  content: '🎥';
  font-size: 4rem;
  opacity: 0.35;
}

.yt-video-thumbnail:hover {
  transform: scale(1.02);
}

.play-overlay {
  width: 60px;
  height: 60px;
  background-color: var(--bg-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff0000;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: var(--transition-fast);
  z-index: 2;
}

.yt-video-thumbnail:hover .play-overlay {
  transform: scale(1.1);
  background-color: #ff0000;
  color: var(--bg-white);
}

.video-info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 12px 16px;
  color: var(--bg-white);
  font-size: 0.85rem;
  font-weight: 500;
  z-index: 2;
}

.bento-footer-text {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Bento 2: Instagram details */
.insta-feed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 16px;
  height: 220px;
}

.insta-post {
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
}

/* Dynamic background gradients for posts */
.insta-feed-grid .insta-post:nth-child(1) { background: linear-gradient(135deg, #10b981 0%, #1e3a8a 100%); }
.insta-feed-grid .insta-post:nth-child(1)::before { content: '🎧'; font-size: 2.2rem; opacity: 0.7; }

.insta-feed-grid .insta-post:nth-child(2) { background: linear-gradient(135deg, #fef08a 0%, #f59e0b 100%); }
.insta-feed-grid .insta-post:nth-child(2)::before { content: '👕'; font-size: 2.2rem; opacity: 0.7; }

.insta-feed-grid .insta-post:nth-child(3) { background: linear-gradient(135deg, #93c5fd 0%, #3b82f6 100%); }
.insta-feed-grid .insta-post:nth-child(3)::before { content: '🧴'; font-size: 2.2rem; opacity: 0.7; }

.insta-feed-grid .insta-post:nth-child(4) { background: linear-gradient(135deg, #fbcfe8 0%, #db2777 100%); }
.insta-feed-grid .insta-post:nth-child(4)::before { content: '⌚'; font-size: 2.2rem; opacity: 0.7; }

.insta-post-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 78, 59, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--bg-white);
  opacity: 0;
  transition: var(--transition-fast);
  z-index: 2;
}

.insta-post:hover .insta-post-overlay {
  opacity: 1;
}

.insta-post-overlay i {
  font-size: 1.25rem;
}

.insta-post-overlay span {
  font-size: 0.75rem;
  font-weight: 600;
}

/* Bento 3: Facebook rating */
.fb-rating-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 16px 0;
  text-align: center;
}

.fb-score {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-blue);
  line-height: 1;
}

.fb-rating-summary .stars {
  color: var(--accent-yellow);
  font-size: 1rem;
}

.fb-total-reviews {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.fb-testimonial-slider {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.fb-testimonial-card {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text-dark);
}

.fb-testimonial-card .author {
  margin-top: 8px;
  font-weight: 600;
  font-style: normal;
  color: var(--text-muted);
}

/* Bento 4: PIX details */
.pix-benefit-display {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.pix-qr-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background-color: rgba(5, 150, 105, 0.1);
  color: var(--primary-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.pix-benefit-details h4 {
  font-size: 1rem;
  color: var(--primary-green);
}

.pix-benefit-details p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Bento 5: Shipping Map */
.bento-main-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 10px;
}

.map-illustration {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--primary-green-light);
}

.map-illustration i {
  font-size: 1.5rem;
  color: var(--accent-yellow);
}

/* SHOP CATALOG SECTION */
.shop-section {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.catalog-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover {
  background-color: rgba(5, 150, 105, 0.05);
  border-color: var(--primary-green-light);
}

.filter-btn.active {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  color: var(--bg-white);
  box-shadow: 0 4px 10px rgba(6, 78, 59, 0.15);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}

/* Product Card Design */
.product-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(5, 150, 105, 0.15);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  z-index: 10;
}

.badge-sale { background-color: var(--accent-yellow); color: var(--primary-green); }
.badge-new { background-color: var(--accent-blue-light); color: var(--bg-white); }
.badge-hot { background-color: var(--danger); color: var(--bg-white); }

.product-image-container {
  height: 240px;
  background-color: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
}

.product-card:hover .product-image-container {
  background-color: #e2e8f0;
}

/* Product Gradients Visuals */
.image-p1 { background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%), radial-gradient(circle, #fff 40%, #cbd5e1 100%); }
.image-p2 { background: linear-gradient(135deg, rgba(234, 179, 8, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%), radial-gradient(circle, #fff 40%, #e2e8f0 100%); }
.image-p3 { background: linear-gradient(135deg, rgba(15, 23, 42, 0.1) 0%, rgba(51, 65, 85, 0.1) 100%), radial-gradient(circle, #fff 40%, #94a3b8 100%); }
.image-p4 { background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(234, 179, 8, 0.1) 100%), radial-gradient(circle, #fff 40%, #cbd5e1 100%); }
.image-p5 { background: linear-gradient(135deg, rgba(6, 78, 59, 0.1) 0%, rgba(110, 231, 183, 0.1) 100%), radial-gradient(circle, #fff 40%, #e2e8f0 100%); }
.image-p6 { background: linear-gradient(135deg, rgba(234, 179, 8, 0.1) 0%, rgba(6, 78, 59, 0.1) 100%), radial-gradient(circle, #fff 40%, #cbd5e1 100%); }

.product-image-container::before {
  font-size: 6rem;
  opacity: 0.3;
  transition: var(--transition-normal);
}

.product-card:hover .product-image-container::before {
  transform: scale(1.1);
  opacity: 0.5;
}

.image-p1::before { content: '🎧'; }
.image-p2::before { content: '👕'; }
.image-p3::before { content: '⌚'; }
.image-p4::before { content: '🧴'; }
.image-p5::before { content: '🎒'; }
.image-p6::before { content: '🧥'; }

.product-details {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.product-title {
  font-size: 1.1rem;
  color: var(--primary-green);
  margin-bottom: 8px;
  height: 52px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  margin-bottom: 16px;
}

.product-rating .stars {
  color: var(--accent-yellow);
}

.product-rating span {
  color: var(--text-muted);
  font-weight: 500;
}

.product-price-box {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.price-original {
  font-size: 0.85rem;
  text-decoration: line-through;
  color: var(--text-muted);
}

.price-discount {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
}

.price-pix {
  font-size: 0.85rem;
  color: var(--primary-green-light);
  font-weight: 600;
}

.btn-add-to-cart {
  width: 100%;
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  padding: 12px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.btn-add-to-cart:hover {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  color: var(--bg-white);
  box-shadow: 0 4px 10px rgba(6, 78, 59, 0.15);
}

/* SOCIAL GALLERY (Instagram Post Look) */
.social-gallery {
  padding: 100px 0;
  background-color: var(--bg-white);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  height: 280px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--border-color);
}

.social-grid .item1 { background: linear-gradient(135deg, rgba(6, 78, 59, 0.3) 0%, rgba(37, 99, 235, 0.3) 100%), radial-gradient(circle, #fff 20%, #a1a1aa 100%); }
.social-grid .item1::before { content: '🏔️'; font-size: 5rem; opacity: 0.35; position: absolute; top: 25%; left: 30%; }

.social-grid .item2 { background: linear-gradient(135deg, rgba(234, 179, 8, 0.3) 0%, rgba(37, 99, 235, 0.3) 100%), radial-gradient(circle, #fff 20%, #cbd5e1 100%); }
.social-grid .item2::before { content: '🏃‍♂️'; font-size: 5rem; opacity: 0.35; position: absolute; top: 25%; left: 30%; }

.social-grid .item3 { background: linear-gradient(135deg, rgba(219, 39, 119, 0.3) 0%, rgba(234, 179, 8, 0.3) 100%), radial-gradient(circle, #fff 20%, #d4d4d8 100%); }
.social-grid .item3::before { content: '🌇'; font-size: 5rem; opacity: 0.35; position: absolute; top: 25%; left: 30%; }

.social-grid .item4 { background: linear-gradient(135deg, rgba(37, 99, 235, 0.3) 0%, rgba(6, 78, 59, 0.3) 100%), radial-gradient(circle, #fff 20%, #e2e8f0 100%); }
.social-grid .item4::before { content: '💻'; font-size: 5rem; opacity: 0.35; position: absolute; top: 25%; left: 30%; }

.item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(6, 78, 59, 0.95) 0%, rgba(6, 78, 59, 0.5) 70%, transparent 100%);
  padding: 24px;
  color: var(--bg-white);
  transform: translateY(60px);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gallery-item:hover .item-overlay {
  transform: translateY(0);
}

.item-overlay .tag {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-yellow);
}

.item-overlay p {
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.9;
  line-height: 1.3;
}

.btn-shop-item {
  margin-top: 6px;
  background-color: var(--bg-white);
  color: var(--primary-green);
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: var(--transition-fast);
}

.btn-shop-item:hover {
  background-color: var(--accent-yellow);
  color: var(--primary-green);
  transform: scale(1.05);
}

/* NEWSLETTER */
.newsletter-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #022c22 0%, #1e3a8a 100%);
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--accent-yellow);
}

.newsletter-section::before {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 40%;
  height: 80%;
  background: radial-gradient(circle, rgba(234, 179, 8, 0.08) 0%, rgba(255,255,255,0) 70%);
  filter: blur(50px);
  pointer-events: none;
}

.newsletter-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.newsletter-content {
  text-align: center;
  color: var(--bg-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.newsletter-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--accent-yellow-light);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.15);
}

.newsletter-content h2 {
  font-size: 2.2rem;
  letter-spacing: -0.02em;
}

.newsletter-content p {
  font-size: 1rem;
  opacity: 0.8;
  max-width: 580px;
  margin-bottom: 12px;
}

.newsletter-form {
  width: 100%;
  max-width: 520px;
}

.newsletter-form .form-group {
  display: flex;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 6px;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.newsletter-form input {
  flex-grow: 1;
  padding: 12px 20px;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.btn-newsletter {
  background-color: var(--primary-green);
  color: var(--bg-white);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.btn-newsletter:hover {
  background-color: var(--primary-green-light);
  transform: translateX(2px);
}

.newsletter-message {
  margin-top: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0;
  transition: var(--transition-fast);
}

.newsletter-message.success {
  color: var(--accent-yellow);
  opacity: 1;
}

/* MAIN FOOTER */
.main-footer {
  background-color: var(--bg-dark);
  color: #a1a1aa;
  padding: 80px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 0.6fr 1.1fr;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand .logo {
  color: var(--bg-white);
  font-size: 2rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.5;
}

.social-footer {
  display: flex;
  gap: 12px;
}

.social-footer a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--bg-white);
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.social-footer a:hover {
  background-color: var(--primary-green-light);
  transform: translateY(-3px);
}

.footer-links h4, .footer-security h4 {
  color: var(--bg-white);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--primary-green-light);
  padding-left: 4px;
}

.footer-security {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.payment-icons {
  display: flex;
  gap: 16px;
  font-size: 2rem;
  color: var(--bg-white);
}

.payment-icons i {
  transition: var(--transition-fast);
  cursor: help;
}

.payment-icons i:hover {
  color: var(--accent-yellow);
}

.security-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--bg-white);
}

.security-badges i {
  margin-right: 6px;
}

.footer-bottom {
  text-align: center;
  padding: 30px 24px 0;
  font-size: 0.8rem;
  color: #71717a;
}

/* SHOPPING CART DRAWER */
.cart-drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-normal);
}

.cart-drawer-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 440px;
  height: 100vh;
  background-color: var(--bg-white);
  box-shadow: -10px 0 40px rgba(0,0,0,0.15);
  z-index: 1000;
  transform: translateX(100%);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.cart-drawer.active {
  transform: translateX(0);
}

.cart-drawer-header {
  padding: 24px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer-header h3 {
  font-size: 1.25rem;
  color: var(--primary-green);
}

.close-cart-btn {
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition-fast);
}

.close-cart-btn:hover {
  color: var(--danger);
  transform: rotate(90deg);
}

.cart-drawer-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.empty-cart-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 100%;
  color: var(--text-muted);
}

.empty-cart-message i {
  font-size: 4rem;
  color: var(--border-color);
}

/* Cart Item Design */
.cart-item {
  display: flex;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-img::before {
  font-size: 2.2rem;
  opacity: 0.5;
}

.cart-item-img.p1 { background: linear-gradient(135deg, rgba(37,99,235,0.05) 0%, rgba(16,185,129,0.05) 100%), #f8fafc; }
.cart-item-img.p1::before { content: '🎧'; }
.cart-item-img.p2 { background: linear-gradient(135deg, rgba(234,179,8,0.05) 0%, rgba(255,255,255,0.05) 100%), #f8fafc; }
.cart-item-img.p2::before { content: '👕'; }
.cart-item-img.p3 { background: #f8fafc; }
.cart-item-img.p3::before { content: '⌚'; }
.cart-item-img.p4 { background: #f8fafc; }
.cart-item-img.p4::before { content: '🧴'; }
.cart-item-img.p5 { background: #f8fafc; }
.cart-item-img.p5::before { content: '🎒'; }
.cart-item-img.p6 { background: #f8fafc; }
.cart-item-img.p6::before { content: '🧥'; }

.cart-item-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item-details h4 {
  font-size: 0.95rem;
  color: var(--primary-green);
  font-weight: 600;
  padding-right: 24px;
}

.cart-item-price {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.qty-btn {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition-fast);
}

.qty-btn:hover {
  background-color: var(--primary-green);
  color: var(--bg-white);
  border-color: var(--primary-green);
}

.qty-val {
  font-size: 0.9rem;
  font-weight: 600;
}

.remove-item-btn {
  position: absolute;
  top: 0;
  right: 0;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.remove-item-btn:hover {
  color: var(--danger);
}

/* Cart Footer */
.cart-drawer-footer {
  padding: 24px;
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-light);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.cart-summary-row.total-row {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-green);
  border-top: 1px dashed var(--border-color);
  padding-top: 12px;
  margin-top: 4px;
}

.cart-summary-row.total-row-card {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.discount-row {
  color: var(--primary-green-light);
}

.btn-checkout {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--primary-green) 100%);
  color: var(--bg-white);
  padding: 16px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
  margin-top: 8px;
  transition: var(--transition-fast);
}

.btn-checkout:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6, 78, 59, 0.3);
}

/* MODALS - GENERAL SETUP */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-normal);
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 520px;
  padding: 32px;
  position: relative;
  transform: scale(0.92);
  transition: var(--transition-normal);
}

.modal-backdrop.active .modal {
  transform: scale(1);
}

.close-modal-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 1.3rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.close-modal-btn:hover {
  color: var(--danger);
  transform: rotate(90deg);
}

.modal-header h2 {
  font-size: 1.6rem;
  color: var(--primary-green);
  margin-bottom: 8px;
}

.modal-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

/* CHECKOUT PAYMENTS */
.payment-methods-tabs {
  display: flex;
  gap: 12px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 16px;
  margin-bottom: 24px;
}

.tab-btn {
  flex-grow: 1;
  padding: 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background-color: var(--bg-light);
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.tab-btn.active {
  background-color: var(--primary-green);
  color: var(--bg-white);
  border-color: var(--primary-green);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* PIX Tab Content */
.pix-instructions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.pix-promo-alert {
  background-color: rgba(5, 150, 105, 0.1);
  color: var(--primary-green-light);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  justify-content: center;
}

.qr-code-box {
  padding: 16px;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

.instructions-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

.pix-copia-cola {
  display: flex;
  width: 100%;
  gap: 8px;
}

.pix-copia-cola input {
  flex-grow: 1;
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.btn-copy {
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-copy:hover {
  background-color: var(--primary-green-light);
}

.copy-feedback {
  font-size: 0.8rem;
  color: var(--success);
  font-weight: 700;
  opacity: 0;
  transition: var(--transition-fast);
  margin-top: -8px;
}

.copy-feedback.active {
  opacity: 1;
}

.pix-footer, .card-footer {
  margin-top: 24px;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.total-display {
  display: flex;
  flex-direction: column;
}

.total-display span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.total-display .price-highlight {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-green);
}

.btn-confirm-payment {
  background-color: var(--primary-green);
  color: var(--bg-white);
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.btn-confirm-payment:hover {
  background-color: var(--primary-green-light);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
}

/* Card Tab Content */
.card-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field.full { width: 100%; }
.form-field.half { width: 50%; }

.form-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-field input, .form-field select {
  border: 1px solid var(--border-color);
  padding: 12px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  background-color: var(--bg-white);
}

.form-field input:focus, .form-field select:focus {
  border-color: var(--primary-green-light);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

/* YOUTUBE VIDEO POPUP */
.modal-video-container {
  width: 90%;
  max-width: 800px;
  background-color: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.close-video-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background-color: rgba(0,0,0,0.6);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 10;
}

.close-video-btn:hover {
  background-color: #ff0000;
}

.video-responsive {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
}

/* Simulated Player CSS */
.simulated-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0d0d0d;
}

.player-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: var(--bg-white);
  font-size: 1rem;
  z-index: 3;
}

.player-loader i {
  font-size: 2.5rem;
  color: var(--accent-yellow);
}

.player-screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: none;
  background-color: #000;
}

.player-brand-watermark {
  position: absolute;
  top: 16px;
  left: 20px;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  font-weight: 700;
}

.video-slide {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(6, 78, 59, 0.9) 0%, rgba(30, 58, 138, 0.9) 100%);
  padding: 40px;
}

.slide-content {
  color: var(--bg-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.slide-content i {
  font-size: 4rem;
  animation: pulsePlay 2s infinite;
}

@keyframes pulsePlay {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 0.8; }
}

.slide-content h2 {
  font-size: 1.8rem;
}

.slide-content p {
  font-size: 0.95rem;
  opacity: 0.8;
  max-width: 480px;
}

.player-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--bg-white);
  z-index: 5;
}

.player-controls button {
  color: var(--bg-white);
  cursor: pointer;
  font-size: 1rem;
}

.player-controls button:hover {
  color: var(--accent-yellow);
}

.progress-bar-container {
  flex-grow: 1;
  height: 4px;
  background-color: rgba(255,255,255,0.3);
  border-radius: var(--radius-full);
  position: relative;
}

.progress-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: var(--accent-yellow);
  border-radius: var(--radius-full);
}

.player-time {
  font-size: 0.75rem;
  font-weight: 500;
}

/* INSTAGRAM SOCIAL MODAL */
.modal-insta {
  max-width: 800px;
  padding: 0;
  overflow: hidden;
}

.insta-modal-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

.insta-modal-img {
  background-color: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.insta-modal-img::before {
  font-size: 8rem;
  opacity: 0.35;
}

.insta-modal-img.img-p1 { background: linear-gradient(135deg, rgba(37,99,235,0.2) 0%, rgba(16,185,129,0.2) 100%); }
.insta-modal-img.img-p1::before { content: '🎧'; }
.insta-modal-img.img-p2 { background: linear-gradient(135deg, rgba(234,179,8,0.2) 0%, rgba(255,255,255,0.2) 100%); }
.insta-modal-img.img-p2::before { content: '👕'; }
.insta-modal-img.img-p3 { background: linear-gradient(135deg, rgba(15,23,42,0.2) 0%, rgba(51,65,85,0.2) 100%); }
.insta-modal-img.img-p3::before { content: '⌚'; }
.insta-modal-img.img-p4 { background: linear-gradient(135deg, rgba(249,115,22,0.2) 0%, rgba(234,179,8,0.2) 100%); }
.insta-modal-img.img-p4::before { content: '🧴'; }
.insta-modal-img.img-p5 { background: linear-gradient(135deg, rgba(6,78,59,0.2) 0%, rgba(110,231,183,0.2) 100%); }
.insta-modal-img.img-p5::before { content: '🎒'; }
.insta-modal-img.img-p6 { background: linear-gradient(135deg, rgba(234,179,8,0.2) 0%, rgba(6,78,59,0.2) 100%); }
.insta-modal-img.img-p6::before { content: '🧥'; }

.insta-modal-info {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid var(--border-color);
}

.insta-modal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.user-avatar-mini {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background-color: var(--primary-green);
  color: var(--accent-yellow);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  border: 1px solid var(--accent-yellow);
}

.insta-modal-header strong {
  font-size: 0.9rem;
}

.insta-modal-header p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.insta-modal-body {
  margin-top: 16px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#insta-modal-caption {
  font-size: 0.9rem;
  color: var(--text-dark);
}

.insta-liked-by {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.insta-linked-product {
  margin-top: auto;
  border: 1px solid var(--border-color);
  padding: 12px;
  border-radius: var(--radius-md);
  display: flex;
  gap: 12px;
  align-items: center;
  background-color: var(--bg-light);
}

.product-mini-thumb {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background-color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-mini-thumb::before {
  font-size: 1.8rem;
}

.product-mini-thumb.p1::before { content: '🎧'; }
.product-mini-thumb.p2::before { content: '👕'; }
.product-mini-thumb.p3::before { content: '⌚'; }
.product-mini-thumb.p4::before { content: '🧴'; }
.product-mini-thumb.p5::before { content: '🎒'; }
.product-mini-thumb.p6::before { content: '🧥'; }

.product-mini-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-mini-details h4 {
  font-size: 0.85rem;
  color: var(--primary-green);
}

.product-mini-details p {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}

.btn-buy-now-mini {
  background-color: var(--primary-green);
  color: var(--bg-white);
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-self: flex-start;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition-fast);
}

.btn-buy-now-mini:hover {
  background-color: var(--primary-green-light);
}

/* FLOATING WHATSAPP WIDGET */
.whatsapp-widget {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 800;
}

.whatsapp-btn {
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: var(--bg-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  position: relative;
  z-index: 10;
  transition: var(--transition-fast);
}

.whatsapp-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

/* Pulsing effect rings */
.pulse-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-full);
  border: 2px solid #25d366;
  animation: pulseGreen 2.5s infinite;
  z-index: 1;
}

@keyframes pulseGreen {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.whatsapp-badge-pulse {
  position: absolute;
  top: -2px;
  right: -2px;
  background-color: var(--accent-yellow);
  color: var(--primary-green);
  font-size: 0.7rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bg-white);
  z-index: 11;
  animation: shake 3s infinite;
}

@keyframes shake {
  0%, 100% { transform: rotate(0); }
  10%, 30%, 50% { transform: rotate(-10deg); }
  20%, 40%, 60% { transform: rotate(10deg); }
  70% { transform: rotate(0); }
}

/* Chat Window Panel */
.whatsapp-chat {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 320px;
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  z-index: 20;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-normal);
  border: 1px solid var(--border-color);
}

.whatsapp-chat.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.whatsapp-chat-header {
  background-color: #075e54;
  color: var(--bg-white);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.whatsapp-chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background-color: var(--bg-white);
  color: #075e54;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.whatsapp-chat-status h4 {
  font-size: 0.9rem;
  font-weight: 600;
}

.whatsapp-chat-status p {
  font-size: 0.7rem;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 4px;
}

.status-dot {
  width: 6px;
  height: 6px;
  background-color: #25d366;
  border-radius: var(--radius-full);
}

.whatsapp-close-btn {
  margin-left: auto;
  color: var(--bg-white);
  cursor: pointer;
  font-size: 1.1rem;
}

.whatsapp-chat-body {
  height: 240px;
  background-color: #ece5dd;
  background-image: radial-gradient(rgba(0,0,0,0.04) 20%, transparent 20%),
                    radial-gradient(rgba(0,0,0,0.04) 20%, transparent 20%);
  background-size: 16px 16px;
  background-position: 0 0, 8px 8px;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.whatsapp-msg {
  max-width: 85%;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  line-height: 1.4;
  position: relative;
  word-wrap: break-word;
}

.whatsapp-msg.received {
  background-color: var(--bg-white);
  align-self: flex-start;
  border-top-left-radius: 0;
}

.whatsapp-msg.sent {
  background-color: #dcf8c6;
  align-self: flex-end;
  border-top-right-radius: 0;
}

.whatsapp-msg .time {
  display: block;
  text-align: right;
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.whatsapp-chat-footer {
  padding: 10px;
  display: flex;
  background-color: #f0f0f0;
  border-top: 1px solid var(--border-color);
}

.whatsapp-chat-footer input {
  flex-grow: 1;
  padding: 8px 12px;
  border-radius: var(--radius-full);
  background-color: var(--bg-white);
  font-size: 0.8rem;
}

.whatsapp-chat-footer button {
  padding: 8px 12px;
  color: #075e54;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.whatsapp-chat-footer button:hover {
  color: #128c7e;
  transform: scale(1.1);
}

/* GLOBAL NOTIFICATION TOAST */
.toast-notification {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1100;
  transform: translateY(100px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-normal);
}

.toast-notification.active {
  transform: translateY(0);
  opacity: 1;
}

.toast-content {
  background-color: var(--primary-green);
  border-left: 5px solid var(--accent-yellow);
  color: var(--bg-white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.9rem;
}

.toast-icon {
  color: var(--accent-yellow);
  font-size: 1.1rem;
}

/* RESPONSIVE LAYOUT RULES */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding-top: 40px;
  }
  
  .hero-badge, .hero-ctas, .hero-trust {
    justify-content: center;
    align-self: center;
  }
  
  .hero-text-content p {
    margin: 0 auto;
  }
  
  .hero-image-content {
    order: -1;
  }
  
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .span-large, .span-medium, .span-small {
    grid-column: span 2;
  }
  
  .footer-container {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
  
  .footer-security {
    grid-column: span 3;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  .header-actions .search-box, .header-actions .social-quick-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  /* Mobile Nav Menu Drawer Mode */
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 24px;
    box-shadow: var(--shadow-md);
    transform: translateY(-150%);
    transition: var(--transition-normal);
  }
  
  .nav-menu.active {
    transform: translateY(0);
  }
  
  .nav-menu ul {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  
  .hero-text-content h1 {
    font-size: 2.8rem;
  }
  
  .bento-grid {
    grid-template-columns: 1fr;
  }
  
  .span-large, .span-medium, .span-small {
    grid-column: span 1;
  }
  
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-security {
    grid-column: span 1;
    flex-direction: column;
    gap: 20px;
  }
  
  .cart-drawer {
    width: 100vw;
  }
  
  .insta-modal-container {
    grid-template-columns: 1fr;
  }
  
  .insta-modal-info {
    border-left: none;
    border-top: 1px solid var(--border-color);
  }
}

@media (max-width: 480px) {
  .hero-text-content h1 {
    font-size: 2.3rem;
  }
  
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-ctas a {
    width: 100%;
    justify-content: center;
  }
  
  .social-grid {
    grid-template-columns: 1fr;
  }
}
