/* ============================================================
   2RODO V2 Store - Modern E-commerce Styles
   Colors from logo: Green #0ABF53, Dark Blue #2d374b, White #FFF
   ============================================================ */

:root {
  --v2-primary: #0ABF53;
  --v2-primary-dark: #089e44;
  --v2-primary-light: rgba(10, 191, 83, 0.1);
  --v2-dark: #2d374b;
  --v2-dark-deep: #1a2332;
  --v2-dark-light: #51596C;
  --v2-accent: #8BC34A;
  --v2-bg-light: #f0faf4;
  --v2-white: #FFFFFF;
  --v2-promo: #FF6B35;
  --v2-radius: 16px;
  --v2-radius-sm: 10px;
  --v2-shadow: 0 4px 24px rgba(45, 55, 75, 0.08);
  --v2-shadow-lg: 0 16px 48px rgba(45, 55, 75, 0.12);
  --v2-transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================================
   TOP BAR
   ============================================================ */
.v2-topbar {
  background: var(--v2-dark);
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  padding: 6px 0;
}
.v2-topbar a { color: rgba(255,255,255,0.8); text-decoration: none; transition: color 0.2s; }
.v2-topbar a:hover { color: var(--v2-primary); }
.v2-topbar .topbar-item { display: inline-flex; align-items: center; gap: 5px; }

/* ============================================================
   HEADER / NAVBAR V2
   ============================================================ */
.v2-header {
  background: var(--v2-white);
  box-shadow: none;
  transition: box-shadow 0.3s ease;
  position: sticky;
  top: 0;
  z-index: 1030;
}
.v2-header.scrolled {
  box-shadow: 0 2px 20px rgba(45, 55, 75, 0.1);
}
.v2-header .navbar-brand img { height: 42px; }
.v2-header .v2-nav-link {
  color: var(--v2-dark);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: var(--v2-transition);
  text-decoration: none;
  position: relative;
}
.v2-header .v2-nav-link:hover,
.v2-header .v2-nav-link.active {
  color: var(--v2-primary);
  background: var(--v2-primary-light);
}
.v2-header .v2-nav-link .badge-new {
  position: absolute;
  top: 0; right: -2px;
  background: var(--v2-promo);
  color: #fff;
  font-size: 0.55rem;
  padding: 2px 5px;
  border-radius: 6px;
  font-weight: 600;
  animation: v2-pulse 2s infinite;
}

.v2-btn-cta {
  background: var(--v2-primary);
  color: #fff !important;
  border: none;
  padding: 0.55rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--v2-transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.v2-btn-cta:hover {
  background: var(--v2-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(10, 191, 83, 0.35);
  color: #fff !important;
}

/* Currency / Language selector in header */
.v2-header .v2-selector-btn {
  background: transparent;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 0.8rem;
  color: var(--v2-dark);
  transition: var(--v2-transition);
}
.v2-header .v2-selector-btn:hover { border-color: var(--v2-primary); }

/* ============================================================
   HERO SECTION (Homepage)
   ============================================================ */
.v2-hero {
  background: linear-gradient(135deg, var(--v2-dark) 0%, var(--v2-dark-deep) 100%);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.v2-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(10,191,83,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.v2-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139,195,74,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.v2-hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--v2-white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.v2-hero-title .highlight { color: var(--v2-primary); }
.v2-hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 500px;
}
.v2-hero-img {
  position: relative;
  z-index: 2;
}
.v2-hero-img img {
  border-radius: var(--v2-radius);
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  animation: v2-float 6s ease-in-out infinite;
}
.v2-hero .v2-social-proof {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 8px 18px;
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  margin-top: 1.5rem;
}
.v2-hero .v2-social-proof i { color: var(--v2-primary); font-size: 1.1rem; }

.v2-btn-hero-primary {
  background: var(--v2-primary);
  color: #fff !important;
  border: 2px solid var(--v2-primary);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--v2-transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.v2-btn-hero-primary:hover {
  background: var(--v2-primary-dark);
  border-color: var(--v2-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(10, 191, 83, 0.4);
  color: #fff !important;
}

.v2-btn-hero-outline {
  background: transparent;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,0.4);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--v2-transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.v2-btn-hero-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-3px);
  color: #fff !important;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.v2-trust-bar {
  background: var(--v2-white);
  padding: 2.5rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  position: relative;
  z-index: 5;
}
.v2-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0.5rem 0;
}
.v2-trust-item .trust-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--v2-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.v2-trust-item .trust-icon i { font-size: 1.4rem; color: var(--v2-primary); }
.v2-trust-item h6 { margin: 0; font-weight: 700; color: var(--v2-dark); font-size: 0.9rem; }
.v2-trust-item p { margin: 0; font-size: 0.8rem; color: var(--v2-dark-light); }

/* ============================================================
   SECTION STYLES
   ============================================================ */
.v2-section { padding: 5rem 0; }
.v2-section-light { background: var(--v2-bg-light); }
.v2-section-dark { background: linear-gradient(135deg, var(--v2-dark) 0%, var(--v2-dark-deep) 100%); }

.v2-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: var(--v2-primary-light);
  color: var(--v2-primary);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.v2-section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--v2-dark);
  margin-bottom: 0.75rem;
}
.v2-section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--v2-primary);
  border-radius: 2px;
  margin: 15px auto 0;
}
.v2-section-title.text-start::after { margin-left: 0; }
.v2-section-subtitle {
  font-size: 1.05rem;
  color: var(--v2-dark-light);
  max-width: 600px;
  margin: 1rem auto 0;
}

/* ============================================================
   PRODUCT CARDS V2
   ============================================================ */
.v2-product-card {
  border: none;
  border-radius: var(--v2-radius);
  overflow: hidden;
  transition: var(--v2-transition);
  background: var(--v2-white);
  box-shadow: var(--v2-shadow);
}
.v2-product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--v2-shadow-lg);
}
.v2-product-card .card-img-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.v2-product-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.v2-product-card:hover .card-img-wrap img { transform: scale(1.08); }

.v2-product-card .card-img-overlay-hover {
  position: absolute;
  inset: 0;
  background: rgba(45, 55, 75, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.v2-product-card:hover .card-img-overlay-hover { opacity: 1; }

.v2-product-card .v2-quick-view {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: rgba(255,255,255,0.95);
  color: var(--v2-dark);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--v2-transition);
  backdrop-filter: blur(10px);
}
.v2-product-card .v2-quick-view:hover {
  background: var(--v2-white);
  color: var(--v2-primary);
  transform: scale(1.05);
}

/* Price tag on image */
.v2-price-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--v2-primary) 0%, var(--v2-primary-dark) 100%);
  color: #fff;
  padding: 8px 14px;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(10, 191, 83, 0.4);
  z-index: 2;
  text-align: center;
  line-height: 1.2;
}
.v2-price-tag .from-label {
  font-size: 0.6rem;
  font-weight: 400;
  opacity: 0.85;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.v2-price-tag .price-amount {
  font-size: 1.1rem;
  font-weight: 800;
  display: block;
}

/* Delivery badge */
.v2-delivery-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: rgba(45, 55, 75, 0.85);
  color: #fff;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
}

/* Product card body */
.v2-product-card .card-body { padding: 1.25rem; }
.v2-product-card .product-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--v2-dark);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.v2-product-card .product-desc {
  color: var(--v2-dark-light);
  font-size: 0.85rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.v2-product-card .meta-badges {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.v2-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 500;
}
.v2-meta-badge.material { background: rgba(108,117,125,0.08); color: #495057; }
.v2-meta-badge.colors { background: rgba(10,191,83,0.08); color: var(--v2-primary); }
.v2-meta-badge.sizes { background: rgba(13,110,253,0.08); color: #0d6efd; }

/* Product card footer */
.v2-product-card .card-footer-custom {
  padding: 1rem 1.25rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f0f2f5;
}
.v2-product-card .footer-price .label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #999;
  display: block;
}
.v2-product-card .footer-price .value {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--v2-primary);
}
.v2-btn-order {
  background: var(--v2-primary);
  border: none;
  color: #fff;
  padding: 0.5rem 1.15rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.82rem;
  transition: var(--v2-transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.v2-btn-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(10, 191, 83, 0.35);
  background: var(--v2-primary-dark);
  color: #fff;
}

/* View all button */
.v2-btn-outline {
  background: transparent;
  border: 2px solid var(--v2-primary);
  color: var(--v2-primary);
  padding: 0.7rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--v2-transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.v2-btn-outline:hover {
  background: var(--v2-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(10, 191, 83, 0.3);
}

/* ============================================================
   WHY US SECTION
   ============================================================ */
.v2-why-card {
  text-align: center;
  padding: 2rem 1.5rem;
}
.v2-why-card .icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--v2-primary-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--v2-transition);
}
.v2-why-card .icon-circle i { font-size: 1.6rem; color: var(--v2-primary); }
.v2-why-card:hover .icon-circle {
  background: var(--v2-primary);
  transform: scale(1.1);
}
.v2-why-card:hover .icon-circle i { color: #fff; }
.v2-why-card h5 { font-weight: 700; color: var(--v2-dark); margin-bottom: 0.5rem; }
.v2-why-card p { color: var(--v2-dark-light); font-size: 0.9rem; margin-bottom: 0; }

.v2-stat {
  text-align: center;
  padding: 1.5rem;
}
.v2-stat .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--v2-primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.v2-stat .stat-label {
  font-size: 0.85rem;
  color: var(--v2-dark-light);
  font-weight: 500;
}

/* ============================================================
   GAMES SECTION V2
   ============================================================ */
.v2-game-card {
  border: none;
  border-radius: var(--v2-radius);
  overflow: hidden;
  box-shadow: var(--v2-shadow);
  transition: var(--v2-transition);
  background: var(--v2-white);
}
.v2-game-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--v2-shadow-lg);
}
.v2-game-card .game-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.v2-game-card .game-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.v2-game-card:hover .game-img img { transform: scale(1.08); }
.v2-game-card .game-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}
.v2-game-card .game-badge-new {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}

/* ============================================================
   TESTIMONIALS V2
   ============================================================ */
.v2-testimonial-card {
  background: var(--v2-white);
  border-radius: var(--v2-radius);
  padding: 2rem;
  box-shadow: var(--v2-shadow);
  border-left: 4px solid var(--v2-primary);
  transition: var(--v2-transition);
}
.v2-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--v2-shadow-lg);
}
.v2-testimonial-card .stars { color: #FFB800; font-size: 0.9rem; margin-bottom: 0.75rem; }
.v2-testimonial-card .quote {
  color: var(--v2-dark-light);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.v2-testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.v2-testimonial-card .author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--v2-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--v2-primary);
  font-weight: 700;
  font-size: 0.9rem;
}
.v2-testimonial-card .author-name { font-weight: 600; color: var(--v2-dark); font-size: 0.9rem; }

/* ============================================================
   CTA FINAL SECTION
   ============================================================ */
.v2-cta-final {
  background: linear-gradient(135deg, var(--v2-dark) 0%, var(--v2-dark-deep) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.v2-cta-final::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(10,191,83,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.v2-cta-final h2 {
  color: var(--v2-white);
  font-weight: 800;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}
.v2-cta-final p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

/* ============================================================
   FOOTER V2
   ============================================================ */
.v2-prefooter {
  background: linear-gradient(135deg, var(--v2-dark) 0%, var(--v2-dark-deep) 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.v2-prefooter::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(10,191,83,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.v2-prefooter::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(139,195,74,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.v2-prefooter .prefooter-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(10,191,83,0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.v2-prefooter .prefooter-icon i {
  font-size: 1.5rem;
  color: var(--v2-primary);
}
.v2-prefooter h4 {
  font-weight: 800;
  color: var(--v2-white);
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
  position: relative;
  z-index: 2;
}
.v2-prefooter p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  max-width: 480px;
  margin: 0 auto 1.75rem;
  position: relative;
  z-index: 2;
}
.v2-prefooter .newsletter-input {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.v2-prefooter .newsletter-input input {
  flex: 1;
  border: 2px solid rgba(255,255,255,0.15);
  border-right: none;
  border-radius: 50px 0 0 50px;
  padding: 0.85rem 1.5rem;
  font-size: 0.9rem;
  outline: none;
  background: rgba(255,255,255,0.08);
  color: #fff;
  transition: border-color 0.3s, background 0.3s;
}
.v2-prefooter .newsletter-input input::placeholder { color: rgba(255,255,255,0.4); }
.v2-prefooter .newsletter-input input:focus {
  border-color: var(--v2-primary);
  background: rgba(255,255,255,0.12);
}
.v2-prefooter .newsletter-input button {
  background: var(--v2-primary);
  color: #fff;
  border: 2px solid var(--v2-primary);
  border-radius: 0 50px 50px 0;
  padding: 0.85rem 1.75rem;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  white-space: nowrap;
}
.v2-prefooter .newsletter-input button:hover {
  background: var(--v2-primary-dark);
  border-color: var(--v2-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(10,191,83,0.35);
}
.v2-prefooter .prefooter-trust {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}
.v2-prefooter .prefooter-trust span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}
.v2-prefooter .prefooter-trust span i { color: var(--v2-primary); }

.v2-footer {
  background: var(--v2-dark);
  padding-top: 4rem;
  padding-bottom: 0;
}
.v2-footer h6 {
  color: var(--v2-white);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.v2-footer p, .v2-footer li, .v2-footer a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  line-height: 1.8;
}
.v2-footer a {
  text-decoration: none;
  transition: color 0.2s;
}
.v2-footer a:hover { color: var(--v2-primary); }
.v2-footer ul { list-style: none; padding: 0; margin: 0; }
.v2-footer .social-links {
  display: flex;
  gap: 10px;
  margin-top: 1rem;
}
.v2-footer .social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  transition: var(--v2-transition);
}
.v2-footer .social-link:hover {
  background: var(--v2-primary);
  color: #fff;
  transform: translateY(-3px);
}
.v2-footer .trust-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 2rem;
}
.v2-footer .trust-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
}
.v2-footer .trust-badge-item i { color: var(--v2-primary); font-size: 1rem; }
.v2-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  margin-top: 1rem;
}
.v2-footer-bottom p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.v2-footer-bottom a { color: rgba(255,255,255,0.5); font-size: 0.82rem; }

/* ============================================================
   BOUTIQUE HERO
   ============================================================ */
.v2-shop-hero {
  background: linear-gradient(135deg, var(--v2-primary) 0%, var(--v2-primary-dark) 100%);
  padding: 7rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.v2-shop-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.v2-shop-hero h1 {
  color: var(--v2-white);
  font-size: 2.8rem;
  font-weight: 800;
}
.v2-shop-hero .product-count {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}
.v2-shop-hero .hero-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.v2-shop-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  color: var(--v2-white);
  font-size: 0.85rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
}

/* ============================================================
   PRODUCT DETAIL PAGE V2
   ============================================================ */
.v2-breadcrumb {
  padding: 1rem 0;
  background: var(--v2-bg-light);
}
.v2-breadcrumb a {
  color: var(--v2-dark-light);
  text-decoration: none;
  font-size: 0.88rem;
}
.v2-breadcrumb a:hover { color: var(--v2-primary); }
.v2-breadcrumb .separator { color: #ccc; margin: 0 8px; }
.v2-breadcrumb .current {
  color: var(--v2-dark);
  font-weight: 600;
  font-size: 0.88rem;
}

/* Gallery */
.v2-gallery-main {
  position: relative;
  height: 500px;
  border-radius: var(--v2-radius);
  overflow: hidden;
  background: #f8f9fa;
}
.v2-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.v2-gallery-main:hover img { transform: scale(1.05); }
.v2-gallery-main .handmade-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--v2-primary);
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}
.v2-thumb-row {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.v2-thumb {
  width: 80px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
  flex-shrink: 0;
}
.v2-thumb:hover, .v2-thumb.active { border-color: var(--v2-primary); }
.v2-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Product info */
.v2-product-price-big {
  font-size: 2rem;
  font-weight: 800;
  color: var(--v2-primary);
}
.v2-manufacturing-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--v2-primary-light);
  border-radius: 50px;
  color: var(--v2-primary);
  font-size: 0.85rem;
  font-weight: 500;
}

/* Order form card */
.v2-order-card {
  border: none;
  border-radius: var(--v2-radius);
  overflow: hidden;
  box-shadow: var(--v2-shadow-lg);
}
.v2-order-card .card-header-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--v2-primary), var(--v2-accent));
}
.v2-order-card .card-body { padding: 2rem; }

/* Size selection radio cards */
.v2-size-option {
  border: 2px solid #e8e8e8;
  border-radius: var(--v2-radius-sm);
  padding: 1rem;
  cursor: pointer;
  transition: var(--v2-transition);
  background: var(--v2-white);
}
.v2-size-option:hover { border-color: var(--v2-primary); }
.v2-size-option.selected {
  border-color: var(--v2-primary);
  background: var(--v2-primary-light);
}

/* Payment cards */
.v2-payment-option {
  border: 2px solid #e8e8e8;
  border-radius: var(--v2-radius-sm);
  cursor: pointer;
  transition: var(--v2-transition);
  text-align: center;
  padding: 1.25rem 1rem;
}
.v2-payment-option:hover { border-color: var(--v2-primary); }
.v2-payment-option.selected {
  border-color: var(--v2-primary);
  background: var(--v2-primary-light);
}

/* Price summary box */
.v2-price-summary {
  background: var(--v2-bg-light);
  border: 1px solid rgba(10,191,83,0.2);
  border-radius: var(--v2-radius-sm);
  padding: 1.25rem;
}

/* Big order button */
.v2-btn-order-lg {
  background: var(--v2-primary);
  color: #fff;
  border: none;
  padding: 1rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--v2-transition);
  cursor: pointer;
}
.v2-btn-order-lg:hover {
  background: var(--v2-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(10, 191, 83, 0.35);
}

/* Trust indicators below button */
.v2-order-trust {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.v2-order-trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--v2-dark-light);
}
.v2-order-trust-item i { color: var(--v2-primary); }

/* Why choose section on product page */
.v2-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0.75rem;
  font-size: 0.92rem;
  color: var(--v2-dark);
}
.v2-check-list li i { color: var(--v2-primary); margin-top: 3px; flex-shrink: 0; }

/* FAQ accordion */
.v2-accordion .accordion-button {
  font-weight: 600;
  color: var(--v2-dark);
  background: transparent;
}
.v2-accordion .accordion-button:not(.collapsed) {
  color: var(--v2-primary);
  background: var(--v2-primary-light);
}
.v2-accordion .accordion-button:focus { box-shadow: 0 0 0 0.2rem rgba(10,191,83,0.25); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes v2-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
@keyframes v2-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
@keyframes v2-fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes v2-slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.v2-animate { animation: v2-fadeInUp 0.6s ease-out both; }
.v2-animate-delay-1 { animation-delay: 0.1s; }
.v2-animate-delay-2 { animation-delay: 0.2s; }
.v2-animate-delay-3 { animation-delay: 0.3s; }
.v2-animate-delay-4 { animation-delay: 0.4s; }
.v2-animate-delay-5 { animation-delay: 0.5s; }
.v2-animate-delay-6 { animation-delay: 0.6s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  .v2-hero { min-height: auto; padding: 5rem 0 3rem; }
  .v2-hero-title { font-size: 2.2rem; }
  .v2-hero-subtitle { font-size: 1rem; }
  .v2-hero-img { margin-top: 2rem; }
  .v2-section-title { font-size: 1.8rem; }
  .v2-shop-hero h1 { font-size: 2rem; }
  .v2-gallery-main { height: 350px; }
  .v2-product-price-big { font-size: 1.6rem; }
  .v2-footer .trust-badges { gap: 1rem; }
}

@media (max-width: 767.98px) {
  .v2-topbar .topbar-hide-mobile { display: none; }
  .v2-hero { padding: 4rem 0 2.5rem; }
  .v2-hero-title { font-size: 1.8rem; }
  .v2-hero .btn-wrap { flex-direction: column; }
  .v2-trust-bar .row > div { margin-bottom: 1rem; }
  .v2-section { padding: 3rem 0; }
  .v2-stat .stat-number { font-size: 2rem; }
  .v2-shop-hero { padding: 6rem 0 2rem; }
  .v2-shop-hero h1 { font-size: 1.7rem; }
  .v2-shop-hero .hero-badges { flex-direction: column; align-items: center; }
  .v2-gallery-main { height: 280px; }
  .v2-order-card .card-body { padding: 1.25rem; }
  .v2-order-trust { gap: 0.75rem; }
  .v2-cta-final h2 { font-size: 1.6rem; }
  .v2-prefooter h4 { font-size: 1.3rem; }
  .v2-prefooter .newsletter-input { flex-direction: column; }
  .v2-prefooter .newsletter-input input { border-right: 2px solid rgba(255,255,255,0.15); border-radius: 50px; }
  .v2-prefooter .newsletter-input button { border-radius: 50px; margin-top: 0.5rem; }
  .v2-prefooter .prefooter-trust { gap: 1rem; }
  .v2-footer .trust-badges { flex-direction: column; gap: 0.75rem; }

  /* Mobile navbar CTA */
  .v2-mobile-cta { display: block; width: 100%; margin-top: 1rem; }
}

@media (max-width: 575.98px) {
  .v2-hero-title { font-size: 1.5rem; }
  .v2-product-card .card-img-wrap { height: 220px; }
  .v2-game-card .game-img { height: 180px; }
}
