/* Trophy House Homepage v2 — scoped to .page-home-v2 */

.page-home-v2 {
  background: #fff;
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  overflow-x: hidden;
}

.page-home-v2 #footer-bottom {
  display: none;
}

@keyframes hv2-fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes hv2-fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes hv2-slideLeft { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes hv2-pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.04); } }
@keyframes hv2-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes hv2-ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes hv2-spin { to { transform: rotate(360deg); } }
@keyframes hv2-borderGlow { 0%, 100% { box-shadow: 0 0 0 0 rgba(236, 50, 55, 0.4); } 50% { box-shadow: 0 0 0 8px rgba(236, 50, 55, 0); } }

.page-home-v2 .an-fu { animation: hv2-fadeUp 0.7s ease both; }
.page-home-v2 .an-fi { animation: hv2-fadeIn 0.6s ease both; }
.page-home-v2 .an-sl { animation: hv2-slideLeft 0.6s ease both; }
.page-home-v2 .an-float { animation: hv2-float 3s ease-in-out infinite; }
.page-home-v2 .d1 { animation-delay: 0.1s; }
.page-home-v2 .d2 { animation-delay: 0.2s; }
.page-home-v2 .d3 { animation-delay: 0.3s; }
.page-home-v2 .d4 { animation-delay: 0.4s; }
.page-home-v2 .d5 { animation-delay: 0.5s; }
.page-home-v2 .d6 { animation-delay: 0.6s; }

/* Header overrides */
.page-home-v2 .site-header {
  background: #fff;
  border-bottom: 1.5px solid rgba(236, 50, 55, 0.12);
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: none;
}
.page-home-v2 .site-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  height: 68px;
  gap: 1.5rem;
}
.page-home-v2 .site-header-brand {
  text-decoration: none;
}
.page-home-v2 .site-header-logo {
  height: 48px;
  max-width: 180px;
}
.page-home-v2 .site-header-nav {
  flex: 1;
  justify-content: center;
}
.page-home-v2 .site-header-menu {
  display: flex;
  gap: 1.8rem;
  align-items: center;
}
.page-home-v2 .site-header-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.02em;
  padding: 0.3rem 0;
  position: relative;
  background: none;
  border: none;
}
.page-home-v2 .site-header-link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #ec3237;
  border-radius: 2px;
  transition: width 0.25s, left 0.25s;
}
.page-home-v2 .site-header-link:hover::after,
.page-home-v2 .site-header-link.is-active::after {
  width: 100%;
  left: 0;
}
.page-home-v2 .site-header-link:hover,
.page-home-v2 .site-header-link.is-active {
  color: #ec3237;
}
.page-home-v2 .site-header-link.dropdown-toggle::after {
  display: none;
}
.page-home-v2 .site-header-actions {
  gap: 0.5rem;
}
.page-home-v2 .site-header-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #f7f7f7;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.page-home-v2 .site-header-icon:hover {
  background: #fde8e9;
  color: #ec3237;
  transform: scale(1.08);
}
.page-home-v2 .site-header-icon .header-badge {
  top: 0;
  right: 0;
  width: 17px;
  height: 17px;
  font-size: 9px;
  font-weight: 800;
  border: 2px solid #fff;
}
.page-home-v2 .site-header-login-btn {
  padding: 0.4rem 1.25rem;
  border: 1.5px solid #222;
  border-radius: 999px;
  background: none;
  color: #222;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}
.page-home-v2 .site-header-login-btn:hover {
  background: #ec3237;
  border-color: #ec3237;
  color: #fff;
}

/* Ticker */
.hv2-ticker-wrap {
  background: #ec3237;
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
}
.hv2-ticker-track {
  display: flex;
  white-space: nowrap;
  animation: hv2-ticker 22s linear infinite;
}
.hv2-ticker-item {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hv2-ticker-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}

/* Hero — fixed 600px height; image must be 1920×600 (no stretch) */
.hv2-hero-wrap {
  position: relative;
  overflow: hidden;
  background: #f0f0f0;
  width: 100%;
}
.hv2-hero-slides {
  display: flex;
  transition: transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}
.hv2-hero-slide {
  flex: 0 0 100%;
  position: relative;
  width: 100%;
  
}
.hv2-hero-slide--image {
  background: #f0f0f0;
}
.hv2-hero-img-link {
  display: block;
  width: 100%;
  height: 100%;
}
.hv2-hero-img {
  width: 100%;
  
  display: block;
  object-fit: cover;
  object-position: center;
}
.hv2-hero-geo {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: repeating-linear-gradient(45deg, #fff 0, #fff 0.5px, transparent 0, transparent 24px),
    repeating-linear-gradient(-45deg, #fff 0, #fff 0.5px, transparent 0, transparent 24px);
  background-size: 24px 24px;
}
.hv2-hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(236, 50, 55, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hv2-hero-slide.hs2 .hv2-hero-glow { background: radial-gradient(circle, rgba(29, 158, 117, 0.18) 0%, transparent 70%); }
.hv2-hero-slide.hs3 .hv2-hero-glow { background: radial-gradient(circle, rgba(127, 119, 221, 0.18) 0%, transparent 70%); }
.hv2-hero-in {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
.hv2-hero-txt {
  padding: 4rem 2rem 4rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hv2-hero-eye {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(236, 50, 55, 0.15);
  border: 1px solid rgba(236, 50, 55, 0.3);
  color: #f87177;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.28rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
  width: fit-content;
}
.hv2-hero-eye::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ec3237;
  animation: hv2-pulse 1.5s ease infinite;
}
.hv2-hero-slide.hs2 .hv2-hero-eye { background: rgba(29, 158, 117, 0.15); border-color: rgba(29, 158, 117, 0.3); color: #5dcaa5; }
.hv2-hero-slide.hs2 .hv2-hero-eye::before { background: #1d9e75; }
.hv2-hero-slide.hs3 .hv2-hero-eye { background: rgba(127, 119, 221, 0.15); border-color: rgba(127, 119, 221, 0.3); color: #afa9ec; }
.hv2-hero-slide.hs3 .hv2-hero-eye::before { background: #7f77dd; }
.hv2-hero-h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-family: Georgia, serif;
  margin-bottom: 1rem;
}
.hv2-hero-h1 em { font-style: normal; color: #ec3237; }
.hv2-hero-slide.hs2 .hv2-hero-h1 em { color: #1d9e75; }
.hv2-hero-slide.hs3 .hv2-hero-h1 em { color: #7f77dd; }
.hv2-hero-sub {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 400px;
  margin-bottom: 1.75rem;
}
.hv2-hero-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hv2-hbtn-p {
  padding: 0.7rem 1.65rem;
  background: #ec3237;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.hv2-hbtn-p:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(236, 50, 55, 0.4); color: #fff; }
.hv2-hero-slide.hs2 .hv2-hbtn-p { background: #1d9e75; }
.hv2-hero-slide.hs2 .hv2-hbtn-p:hover { box-shadow: 0 8px 20px rgba(29, 158, 117, 0.4); }
.hv2-hero-slide.hs3 .hv2-hbtn-p { background: #534ab7; }
.hv2-hero-slide.hs3 .hv2-hbtn-p:hover { box-shadow: 0 8px 20px rgba(83, 74, 183, 0.4); }
.hv2-hbtn-g {
  padding: 0.7rem 1.35rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.hv2-hbtn-g:hover { border-color: rgba(255, 255, 255, 0.55); color: #fff; }
.hv2-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.25rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.hv2-hstat-n { font-size: 1.55rem; font-weight: 900; color: #fff; line-height: 1; }
.hv2-hstat-l { font-size: 0.68rem; color: rgba(255, 255, 255, 0.4); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.15rem; }
.hv2-hero-vis {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2rem 0 0;
  position: relative;
}
.hv2-hero-vis-card {
  width: 100%;
  max-width: 320px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px 20px 0 0;
  border-bottom: none;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s;
}
.hv2-hero-vis-card:hover { transform: translateY(-4px); color: inherit; }
.hv2-hprod-img {
  width: 140px;
  height: 140px;
  border-radius: 16px;
  background: rgba(236, 50, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  animation: hv2-float 4s ease-in-out infinite;
}
.hv2-hprod-img img { width: 100%; height: 100%; object-fit: contain; }
.hv2-hero-slide.hs2 .hv2-hprod-img { background: rgba(29, 158, 117, 0.15); }
.hv2-hero-slide.hs3 .hv2-hprod-img { background: rgba(127, 119, 221, 0.15); }
.hv2-hprod-name { font-size: 1rem; font-weight: 800; color: #fff; text-align: center; line-height: 1.25; }
.hv2-hprod-badges { display: flex; gap: 0.4rem; flex-wrap: wrap; justify-content: center; }
.hv2-hprod-badge {
  background: rgba(236, 50, 55, 0.2);
  color: #f87177;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(236, 50, 55, 0.25);
}
.hv2-hero-slide.hs2 .hv2-hprod-badge { background: rgba(29, 158, 117, 0.2); color: #5dcaa5; border-color: rgba(29, 158, 117, 0.25); }
.hv2-hero-slide.hs3 .hv2-hprod-badge { background: rgba(127, 119, 221, 0.2); color: #afa9ec; border-color: rgba(127, 119, 221, 0.25); }
.hv2-hprod-price { font-size: 1.65rem; font-weight: 900; color: #ec3237; }
.hv2-hero-slide.hs2 .hv2-hprod-price { color: #1d9e75; }
.hv2-hero-slide.hs3 .hv2-hprod-price { color: #7f77dd; }
.hv2-hero-nav {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.55rem;
  z-index: 10;
}
.hv2-hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.hv2-hero-dot.on { width: 24px; background: #ec3237; }
.hv2-hero-arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.2s;
}
.hv2-hero-arr:hover { background: rgba(236, 50, 55, 0.7); border-color: rgba(236, 50, 55, 0.5); }
.hv2-hero-prev { left: 1.25rem; }
.hv2-hero-next { right: 1.25rem; }

/* Sections */
.hv2-sec { padding: 3rem 2.5rem; max-width: 1400px; margin: 0 auto; }
.hv2-sec-hd { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.75rem; gap: 1rem; flex-wrap: wrap; }
.hv2-sec-title { font-size: 1.6rem; font-weight: 900; color: #111; letter-spacing: -0.02em; font-family: Georgia, serif; margin: 0; }
.hv2-sec-va {
  font-size: 0.83rem;
  font-weight: 700;
  color: #ec3237;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.85rem;
  border: 1.5px solid rgba(236, 50, 55, 0.25);
  border-radius: 999px;
  transition: all 0.2s;
  white-space: nowrap;
}
.hv2-sec-va:hover { background: #ec3237; color: #fff; border-color: #ec3237; }

/* Categories */
.hv2-cats { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
.hv2-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.4rem 0.5rem 1.1rem;
  border-radius: 18px;
  background: #fafafa;
  border: 1.5px solid #f0f0f0;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.28s;
  position: relative;
  overflow: hidden;
}
.hv2-cat::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(236, 50, 55, 0.08), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.hv2-cat:hover { background: #fff; border-color: rgba(236, 50, 55, 0.35); transform: translateY(-6px); box-shadow: 0 16px 32px rgba(236, 50, 55, 0.12); }
.hv2-cat:hover::after { opacity: 1; }
.hv2-cat-ico {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fde8e9;
  color: #ec3237;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  transition: transform 0.3s;
  overflow: hidden;
}
.hv2-cat-ico .catalog-cat-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.hv2-cat:hover .hv2-cat-ico { transform: scale(1.12) rotate(-5deg); }
.hv2-cat-lbl { font-size: 0.78rem; font-weight: 800; color: #222; text-align: center; line-height: 1.2; position: relative; z-index: 1; }

/* Product scroll */
.hv2-prod-scroll {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  padding: 0.25rem 0.25rem 1rem;
  scrollbar-width: thin;
  scrollbar-color: #e2e8f0 transparent;
}
.hv2-prod-scroll::-webkit-scrollbar { height: 5px; }
.hv2-prod-scroll::-webkit-scrollbar-thumb { background: #e2e8f0; border-radius: 999px; }
.hv2-pcard {
  flex: 0 0 215px;
  background: #fff;
  border: 1.5px solid #f0f0f0;
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.28s;
  position: relative;
}
.hv2-pcard:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1); border-color: rgba(236, 50, 55, 0.2); }
.hv2-pcard-img {
  width: 100%;
  height: 195px;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.hv2-pcard:hover .hv2-pcard-img { background: #fff5f5; }
.hv2-pcard-img a { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.hv2-pcard-img-inner { transition: transform 0.35s; max-width: 85%; max-height: 85%; object-fit: contain; }
.hv2-pcard:hover .hv2-pcard-img-inner { transform: scale(1.08) translateY(-4px); }
.hv2-pcard-discount {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ec3237;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 900;
  padding: 0.2rem 0.55rem;
  border-radius: 7px;
  letter-spacing: 0.05em;
  z-index: 2;
}
.hv2-pcard-new {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #111;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 900;
  padding: 0.2rem 0.55rem;
  border-radius: 7px;
  letter-spacing: 0.05em;
  z-index: 2;
}
.hv2-pwish {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.2s;
  z-index: 2;
  color: #333;
}
.hv2-pwish:hover,
.hv2-pwish.active { background: #fde8e9; color: #ec3237; transform: scale(1.12); }
.hv2-pbody { padding: 0.85rem 1rem 1rem; }
.hv2-pname {
  font-size: 0.85rem;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
  margin-bottom: 0.3rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.2em;
}
.hv2-pname a { color: inherit; text-decoration: none; }
.hv2-prats { display: flex; align-items: center; gap: 0.3rem; margin-bottom: 0.5rem; }
.hv2-pstars { color: #f59e0b; font-size: 0.72rem; letter-spacing: 1px; }
.hv2-prcnt { font-size: 0.7rem; color: #aaa; }
.hv2-prow { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.65rem; }
.hv2-pcurr { font-size: 1.05rem; font-weight: 900; color: #111; }
.hv2-pexc { font-size: 0.68rem; font-weight: 600; color: #64748b; }
.hv2-pold { font-size: 0.78rem; color: #bbb; text-decoration: line-through; }
.hv2-padd {
  width: 100%;
  padding: 0.5rem;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 9px;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.hv2-padd:hover { background: #ec3237; }
.hv2-padd:disabled { opacity: 0.6; cursor: wait; }

/* Offer banners — promo card slider (ref layout), auto height */
.hv2-offer-sec {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.hv2-offer-wrap {
  position: relative;
  overflow: hidden;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem 2rem;
  transition: height 0.35s ease;
}
.hv2-offer-slides {
  display: flex;
  align-items: flex-start;
  transition: transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}
.hv2-offer-slide {
  flex: 0 0 100%;
  width: 100%;
}
.hv2-offer-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 220px;
  border-radius: 22px;
  overflow: hidden;
  background: #0e0e0e;
}
.hv2-offer-card-txt {
  padding: 2.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  background: #0e0e0e;
}
.hv2-offer-eye {
  display: inline-block;
  background: rgba(236, 50, 55, 0.2);
  color: #f87177;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.28rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 0.9rem;
  border: 1px solid rgba(236, 50, 55, 0.3);
  width: fit-content;
}
.hv2-offer-h {
  font-size: clamp(1.5rem, 3.5vw, 2.3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  font-family: Georgia, serif;
  margin: 0 0 0.85rem;
  letter-spacing: -0.02em;
}
.hv2-offer-h em {
  color: #ec3237;
  font-style: normal;
}
.hv2-offer-sub {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  margin: 0 0 1.35rem;
  line-height: 1.6;
  max-width: 420px;
}
.hv2-offer-btn {
  width: fit-content;
  padding: 0.65rem 1.65rem;
  background: #ec3237;
  color: #fff;
  border: none;
  border-radius: 9px;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  animation: hv2-borderGlow 2s ease infinite;
}
.hv2-offer-btn:hover {
  background: #d42b30;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(236, 50, 55, 0.4);
  color: #fff;
}
.hv2-offer-card-vis {
  background: linear-gradient(135deg, #1a0506, #2a0e0e);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 1.5rem;
}
.hv2-offer-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(236, 50, 55, 0.15);
  pointer-events: none;
}
.hv2-offer-ring1 {
  width: min(340px, 80%);
  height: min(340px, 80%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: hv2-spin 25s linear infinite;
}
.hv2-offer-ring2 {
  width: min(220px, 55%);
  height: min(220px, 55%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: hv2-spin 15s linear infinite reverse;
}
.hv2-offer-trophy {
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  position: relative;
  z-index: 2;
  animation: hv2-float 3.5s ease-in-out infinite;
  line-height: 1;
}
.hv2-offer-card-img {
  position: relative;
  z-index: 2;
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: min(220px, 42vw);
  object-fit: contain;
  object-position: center;
  display: block;
}
.hv2-offer-nav {
  position: absolute;
  bottom: 0.35rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
  z-index: 10;
}
.hv2-offer-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.hv2-offer-dot.on {
  width: 20px;
  background: #ec3237;
}
.hv2-offer-arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 1.5px solid #f0f0f0;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.hv2-offer-arr:hover {
  background: #ec3237;
  border-color: #ec3237;
  color: #fff;
}
.hv2-offer-prev { left: 2.85rem; }
.hv2-offer-next { right: 2.85rem; }

/* Features */
.hv2-feat-band { padding: 2rem 2.5rem; background: #fafafa; border-top: 1px solid #f0f0f0; border-bottom: 1px solid #f0f0f0; }
.hv2-feats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; max-width: 1400px; margin: 0 auto; }
.hv2-feat {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.1rem;
  border-radius: 14px;
  background: #fff;
  border: 1.5px solid #f0f0f0;
  transition: all 0.25s;
}
.hv2-feat:hover { border-color: rgba(236, 50, 55, 0.25); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(236, 50, 55, 0.08); }
.hv2-feat-ico {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: #fde8e9;
  border-radius: 12px;
  color: #ec3237;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: transform 0.25s;
}
.hv2-feat:hover .hv2-feat-ico { transform: scale(1.1) rotate(-5deg); }
.hv2-feat-title { font-size: 0.88rem; font-weight: 800; color: #111; margin-bottom: 0.2rem; }
.hv2-feat-txt { font-size: 0.77rem; color: #888; line-height: 1.4; margin: 0; }

/* Testimonials */
.hv2-sec-alt { background: linear-gradient(180deg, #fafafa, #fff5f5); max-width: none; }
.hv2-testis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.hv2-testi {
  background: #fff;
  border-radius: 18px;
  padding: 1.5rem;
  border: 1.5px solid #f0f0f0;
  transition: all 0.28s;
  position: relative;
  overflow: hidden;
}
.hv2-testi::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ec3237, #d42b30);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.hv2-testi:hover { transform: translateY(-5px); box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08); border-color: rgba(236, 50, 55, 0.2); }
.hv2-testi:hover::before { transform: scaleX(1); }
.hv2-tstar { color: #f59e0b; font-size: 0.88rem; letter-spacing: 2px; margin-bottom: 0.8rem; }
.hv2-tquote { font-size: 0.88rem; color: #555; line-height: 1.65; margin-bottom: 1rem; font-style: italic; }
.hv2-tautor { display: flex; align-items: center; gap: 0.75rem; }
.hv2-tavtr {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ec3237, #d42b30);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  flex-shrink: 0;
}
.hv2-tname { font-size: 0.83rem; font-weight: 800; color: #111; }
.hv2-trole { font-size: 0.72rem; color: #aaa; }

/* Stats counter bar */
.hv2-stats-bar {
  position: relative;
  background: #2b2b2b;
  color: #fff;
  margin: 0;
  padding: 2.25rem 3.5rem;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.hv2-stats-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 1200px;
  text-align: center;
}
.hv2-stat-num {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
}
.hv2-stat-lbl {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.88);
  margin-top: 0.35rem;
  line-height: 1.35;
}
.hv2-stat-dash {
  display: block;
  width: 28px;
  height: 3px;
  background: #c9a227;
  margin: 0.55rem auto 0;
  border-radius: 2px;
}
.hv2-stats-tab {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 34px;
  background: #c9a227;
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background 0.15s;
  z-index: 2;
}
.hv2-stats-tab:hover { background: #b8921f; color: #fff; }
.hv2-stats-tab--left { left: 0; }
.hv2-stats-tab--right { right: 0; }
.hv2-stats-tab-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
}
.hv2-stats-tab--right .hv2-stats-tab-text { transform: rotate(0deg); }
.hv2-stats-tab i { font-size: 0.95rem; }

/* Footer */
.hv2-ftr { background: #0e0e0e; color: #fff; padding: 3rem 2.5rem 1.5rem; }
.hv2-ftr-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; max-width: 1400px; margin-left: auto; margin-right: auto; }
.hv2-ftr-logo-link { display: inline-block; text-decoration: none; }
.hv2-ftr-logo-img { height: auto; max-height: 56px; width: auto; max-width: 220px; object-fit: contain; }
.hv2-ftr-about { font-size: 0.8rem; color: #fff; margin-top: 0.75rem; line-height: 1.65; max-width: 280px; }
.hv2-ftr-contact { margin-top: 1rem; }
.hv2-ftr-contact-item { display: flex; gap: 0.45rem; align-items: flex-start; font-size: 0.8rem; color: #fff; margin-bottom: 0.45rem; }
.hv2-ftr-contact-item i { color: #ec3237; margin-top: 0.1rem; flex-shrink: 0; }
.hv2-ftr-contact-item a { color: #fff; text-decoration: none; }
.hv2-ftr-contact-item a:hover { color: #ec3237; }
.hv2-ftr-col-t { font-size: 0.7rem; font-weight: 800; color: #ec3237; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.9rem; }
.hv2-ftr-lnk { display: block; font-size: 0.8rem; color: #fff; text-decoration: none; margin-bottom: 0.5rem; transition: color 0.15s; }
.hv2-ftr-lnk:hover { color: #ec3237; }
.hv2-ftr-btm {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1400px;
  margin: 0 auto;
}
.hv2-ftr-copy { font-size: 0.73rem; color: #fff; }
.hv2-socials { display: flex; gap: 0.55rem; }
.hv2-soc {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s;
  text-decoration: none;
}
.hv2-soc:hover { background: #ec3237; border-color: #ec3237; color: #fff; transform: translateY(-2px); }

/* Responsive */
@media (max-width: 1100px) {
  .hv2-cats { grid-template-columns: repeat(3, 1fr); }
  .hv2-feats { grid-template-columns: repeat(2, 1fr); }
  .hv2-ftr-grid { grid-template-columns: 1fr 1fr; }
  .hv2-stats-inner { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .hv2-offer-wrap { padding: 0 1.5rem 2rem; }
  .hv2-offer-card { grid-template-columns: 1fr; }
  .hv2-offer-card-txt { padding: 1.75rem 1.5rem; }
  .hv2-offer-card-vis { min-height: 160px; padding: 1.25rem; }
  .hv2-offer-prev { left: 1.35rem; }
  .hv2-offer-next { right: 1.35rem; }
  .hv2-testis { grid-template-columns: 1fr; }
  .page-home-v2 .site-header-nav { display: none !important; }
}
@media (max-width: 600px) {
  .hv2-sec { padding: 2rem 1.25rem; }
  .hv2-cats { grid-template-columns: repeat(2, 1fr); }
  .hv2-feats { grid-template-columns: 1fr; }
  .hv2-ftr-grid { grid-template-columns: 1fr; }
  .hv2-hero-arr { display: none; }
  .page-home-v2 .site-header { padding: 0 1rem; }
  .hv2-stats-bar { padding: 1.75rem 2.75rem; }
  .hv2-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .hv2-stats-tab { width: 28px; font-size: 0.62rem; }
}
