:root {
  --vouchermate-primary-red: #c1121f;
  --vouchermate-primary-red-hover: #9e0c15;
  --vouchermate-text-dark: #18181b;
  --vouchermate-text-muted: #52525b;
  --vouchermate-bg-cream: #faf9f5;
  --vouchermate-bg-pristine: #ffffff;
  --vouchermate-radius-sm: 12px;
  --vouchermate-radius-md: 20px;
  --vouchermate-radius-lg: 28px;
  --vouchermate-radius-pill: 999px;
  --vouchermate-border-light: 1px solid rgba(0, 0, 0, 0.08);
  --vouchermate-shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.025);

}

@font-face {
    font-family: 'Google Sans';
    src: url('/fonts/GoogleSans-VariableFont_GRAD,opsz,wght.ttf') format('truetype-supports-variations'),
         url('/fonts/GoogleSans-VariableFont_GRAD,opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

body {
    padding: 0;
    margin: 0;
    font-family: "Google Sans", system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
    background-color: var(--heutedeals-bg-cream);
    color: var(--heutedeals-text-dark);
}
.cards_exp-grid-layout{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:24px;width:100%}
.container {
  width: 100%;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  margin-right: auto;
  margin-left: auto;
  max-width: 1320px;
}

.container-fluid {
  width: 100%;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -.75rem;
  margin-left: -.75rem;
}

.col-lg-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.text-center { text-align: center; }
.justify-content-center { justify-content: center; }
.position-relative { position: relative; }
.z-2 { z-index: 2; }
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 1rem; }
.flex-shrink-0 { flex-shrink: 0; }
.mb-0 { margin-bottom: 0!important; }

.brand-logo-item {
  height: 100px;
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: var(--vmt-border-light);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.015);
  transition: all 0.25s ease;
  cursor: pointer;
  box-sizing: border-box;
}

.brand-logo-item:hover {
  border-color: var(--vmt-primary-red);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(193, 18, 31, 0.08);
}


.brand-logo-item img {
  max-width: 85%;
  max-height: 42px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}




.vouchermate-hero-container {
  padding: 30px 0 30px 0;
  background-color: var(--vouchermate-bg-cream);
  border-bottom: var(--vouchermate-border-light);
  overflow: hidden;
}



.vouchermate-live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--vouchermate-primary-red);
  border-radius: 50%;
  margin-right: 10px;
  animation: vouchermate-pulse-red 1.8s infinite;
}

.vouchermate-hero-heading {
  font-family: "Google Sans", system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 3.8rem;
  line-height: 1.15;
  color: var(--vouchermate-text-dark);
  letter-spacing: -1px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.vouchermate-hero-emphasis {
  position: relative;
  display: inline-block;
  color: var(--vouchermate-text-dark);
}

.vouchermate-hero-emphasis::after {
  content: '';
  position: absolute;
  left: -2%;
  bottom: -12px;
  width: 104%;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 20' preserveAspectRatio='none'%3E%3Cpath d='M10,15 C90,8 210,18 290,12' stroke='%23c1121f' stroke-width='10' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.vouchermate-hero-lead-text {
  font-size: 1.2rem;
  color: var(--vouchermate-text-dark);
  font-weight: 400;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.7;
}

.vouchermate-popular-topics {
  margin-top: 3.5rem;
}

.vouchermate-popular-topics-title {
  display: block;
  margin-bottom: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  color: var(--vouchermate-text-muted);
}

.vouchermate-popular-topics-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.vouchermate-popular-topic-link {
  display: inline-flex;
  align-items: center;
  background: var(--vouchermate-bg-pristine);
  color: var(--vouchermate-text-dark);
  text-decoration: none;
  padding: 10px 24px;
  border-radius: var(--vouchermate-radius-pill);
  font-size: 0.95rem;
  font-weight: 500;
  border: var(--vouchermate-border-light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.015);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.vouchermate-popular-topic-link i {
  margin-right: 6px;
  font-size: 1.1rem;
  opacity: 0.8;
}

.vouchermate-popular-topic-link:hover {
  border-color: var(--vouchermate-primary-red);
  color: var(--vouchermate-primary-red);
  background-color: rgba(193, 18, 31, 0.02);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(193, 18, 31, 0.05);
}

.vouchermate-layout-block {
  padding: 50px 0;

}

/* 优化：统一交替区域背景颜色，避免色彩过于细碎杂乱 */
.vouchermate-bg-accent-warm {
  background-color: #f8f7f3;
  border-bottom: var(--vouchermate-border-light);
}

.vouchermate-bg-pristine {
  background-color: var(--vouchermate-bg-pristine);
  border-bottom: var(--vouchermate-border-light);
}

.vouchermate-bg-soft-gray {
  background-color: #f8f7f3;
  border-bottom: var(--vouchermate-border-light);
}

.vouchermate-bg-dark-charcoal {
  background-color: #121214 !important;
}



.text-black { color: #18181b !important; }
.text-white { color: #ffffff !important; }
.fw-bold { font-weight: 700 !important; }
.opacity-75 { opacity: 0.75 !important; }

.vouchermate-block-header {
  text-align: center;
  margin-bottom: 50px;
}

.vouchermate-block-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--vouchermate-text-dark);
  margin-top: 0;
  margin-bottom: 12px;
  letter-spacing: -1px;
}



.vouchermate-block-subtitle { max-width: 700px; color: var(--heutedeals-text-muted); font-weight: 400; font-size: 1.1rem; line-height: 1.6; margin: 0 auto; text-align: center; }





.vouchermate-brands-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  width: 100%;
}







.vouchermate-tile-icon-dark-accent {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
}






















@media (min-width: 992px) {
  .px-lg-5 { padding-right: 3rem!important; padding-left: 3rem!important; }
}


@media (max-width: 991px) {
  .vouchermate-hero-heading { font-size: 3.2rem; margin-top: 0;}
  .vouchermate-block-title { font-size: 2rem; }
  .vouchermate-hero-emphasis { font-size: 3.5rem; }
  .vouchermate-hero-heading { font-size: 3.5rem; }
  .vouchermate-hero-emphasis::after {


  left: -2%;
  bottom: 0px;
  width: 104%;
  height: 8px;

}
}

