@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/manrope-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/manrope-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/manrope-700.woff2') format('woff2');
}

:root {
  --verbdate-forest: #233827;
  --verbdate-forest-dark: #19291c;
  --verbdate-forest-light: #324e37;
  --verbdate-gold: #B88645;
  --verbdate-gold-hover: #9e7033;
  --verbdate-gold-light: #D9B673;
  --verbdate-cream: #FAF8F5;
  --verbdate-bg-body: #FAF8F5;
  --verbdate-card-white: #FFFFFF;
  --verbdate-text-primary: #1A1A1A;
  --verbdate-text-secondary: #666666;
  --verbdate-text-muted: #999999;
  --verbdate-border: #E8E3DA;
  --verbdate-pill: #F1EEE8;
  --verbdate-font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --verbdate-shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
  --verbdate-shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --verbdate-shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --verbdate-radius-sm: 10px;
  --verbdate-radius-md: 16px;
  --verbdate-radius-lg: 22px;
  --verbdate-radius-pill: 999px;
  --verbdate-container-max: 1200px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
}

body {
  margin: 0;
  padding: 0;
  background: var(--verbdate-bg-body);
  font-family: var(--verbdate-font);
  color: var(--verbdate-text-primary);
  font-size: 14.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--verbdate-forest);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--verbdate-gold);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

.verbdate-app {
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--verbdate-cream);
  position: relative;
  overflow-x: hidden;
}

.verbdate-container {
  width: 100%;
  max-width: var(--verbdate-container-max);
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .verbdate-container {
    padding: 0 24px;
  }
}

.verbdate-topbar {
  background: var(--verbdate-forest);
  color: var(--verbdate-cream);
  padding: 10px 16px;
  text-align: center;
  font-size: 13px;
  line-height: 1.5;
}

.verbdate-topbar__link {
  color: var(--verbdate-gold-light);
  font-weight: 600;
  text-decoration: underline;
  white-space: nowrap;
  margin-left: 6px;
}

.verbdate-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--verbdate-cream);
  border-bottom: 1px solid var(--verbdate-border);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.verbdate-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.verbdate-header__logo-img {
  height: 34px;
  width: auto;
  display: block;
}

.verbdate-header__desktop-nav {
  display: none;
}

@media (min-width: 900px) {
  .verbdate-header__desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
  }

  .verbdate-header__desktop-link {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--verbdate-text-primary);
    position: relative;
    padding: 6px 0;
    transition: color 0.15s ease;
  }

  .verbdate-header__desktop-link:hover,
  .verbdate-header__desktop-link--active {
    color: var(--verbdate-gold);
  }

  .verbdate-header__desktop-link--promo {
    background: #F1EEE8;
    color: var(--verbdate-forest);
    padding: 6px 14px;
    border-radius: var(--verbdate-radius-pill);
    border: 1px solid #E2DCD2;
    transition: all 0.2s ease;
  }

  .verbdate-header__desktop-link--promo:hover {
    background: var(--verbdate-forest);
    color: var(--verbdate-cream);
    border-color: var(--verbdate-forest);
  }
}

.verbdate-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.verbdate-header__btn {
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  color: var(--verbdate-forest);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 50%;
  transition: background-color 0.15s ease;
}

.verbdate-header__btn:hover {
  background-color: var(--verbdate-pill);
}

.verbdate-header__hamburger {
  display: flex;
}

@media (min-width: 900px) {
  .verbdate-header__hamburger {
    display: none;
  }
}

.verbdate-cart-badge {
  position: absolute;
  top: 0;
  right: -2px;
  background: var(--verbdate-gold);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: var(--verbdate-radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--verbdate-cream);
}

.verbdate-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}

.verbdate-drawer--open {
  display: block;
}

.verbdate-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.5);
  backdrop-filter: blur(3px);
}

.verbdate-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 82%;
  max-width: 320px;
  background: var(--verbdate-cream);
  padding: 24px 20px;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}

.verbdate-drawer__close {
  background: none;
  border: none;
  color: var(--verbdate-forest);
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 24px;
  padding: 4px;
  margin-left: auto;
}

.verbdate-drawer__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.verbdate-drawer__link {
  display: block;
  font-weight: 600;
  font-size: 17px;
  color: var(--verbdate-text-primary);
  text-decoration: none;
}

.verbdate-drawer__link:hover,
.verbdate-drawer__link--active {
  color: var(--verbdate-gold);
}

.verbdate-drawer__link--promo {
  color: var(--verbdate-forest);
  background: #F1EEE8;
  padding: 10px 14px;
  border-radius: var(--verbdate-radius-sm);
  font-weight: 700;
  margin-top: 6px;
}

.verbdate-drawer__footer {
  margin-top: auto;
  font-size: 13px;
  color: var(--verbdate-text-secondary);
}

.verbdate-drawer__contact {
  margin-top: 6px;
  font-weight: 600;
  color: var(--verbdate-forest);
}

.verbdate-cart-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: none;
}

.verbdate-cart-modal--open {
  display: block;
}

.verbdate-cart-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.5);
  backdrop-filter: blur(3px);
}

.verbdate-cart-modal__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 90%;
  max-width: 440px;
  background: #FAF8F5;
  padding: 24px 20px;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.verbdate-cart-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--verbdate-border);
}

.verbdate-cart-modal__title {
  font-weight: 700;
  font-size: 18px;
  color: var(--verbdate-forest);
  display: flex;
  align-items: center;
  gap: 8px;
}

.verbdate-cart-modal__items {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.verbdate-cart-item {
  display: flex;
  gap: 12px;
  background: #FFFFFF;
  border-radius: var(--verbdate-radius-sm);
  padding: 12px;
  box-shadow: var(--verbdate-shadow-sm);
  position: relative;
  align-items: center;
}

.verbdate-cart-item__img {
  width: 52px;
  height: 72px;
  object-fit: contain;
  border-radius: 6px;
  background: #fdfdfd;
  flex: 0 0 auto;
}

.verbdate-cart-item__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.verbdate-cart-item__title {
  font-weight: 600;
  font-size: 13.5px;
  color: var(--verbdate-text-primary);
  line-height: 1.3;
  padding-right: 18px;
}

.verbdate-cart-item__price {
  font-weight: 700;
  font-size: 14px;
  color: var(--verbdate-forest);
}

.verbdate-cart-item__qty-box {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.verbdate-cart-qty-btn {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #F1EEE8;
  border: none;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #1A1A1A;
}

.verbdate-cart-qty-btn:hover {
  background: #E2DCD2;
}

.verbdate-cart-qty-val {
  font-size: 13.5px;
  font-weight: 600;
  min-width: 16px;
  text-align: center;
}

.verbdate-cart-item__remove {
  position: absolute;
  top: 8px;
  right: 8px;
  color: #999999;
  cursor: pointer;
  padding: 4px;
  font-size: 16px;
  line-height: 1;
  background: none;
  border: none;
}

.verbdate-cart-item__remove:hover {
  color: #e74c3c;
}

.verbdate-cart-shipping-bar {
  background: #E8E3DA;
  border-radius: 999px;
  height: 6px;
  width: 100%;
  overflow: hidden;
  margin: 6px 0 12px;
}

.verbdate-cart-shipping-fill {
  background: #27ae60;
  height: 100%;
  border-radius: 999px;
  transition: width 0.3s ease;
}

.verbdate-cart-shipping-text {
  font-size: 12px;
  color: var(--verbdate-text-secondary);
  text-align: center;
}

.verbdate-cart-modal__footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--verbdate-border);
}

.verbdate-cart-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.verbdate-checkout-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.verbdate-checkout-input {
  width: 100%;
  box-sizing: border-box;
  background: #FFFFFF;
  border: 1px solid #E8E3DA;
  border-radius: 10px;
  padding: 10px 14px;
  font-family: 'Manrope', sans-serif;
  font-size: 13.5px;
  outline: none;
  transition: border-color 0.15s ease;
}

.verbdate-checkout-input:focus {
  border-color: #233827;
}

.verbdate-payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 6px 0 10px;
}

.verbdate-payment-pill {
  flex: 1 1 calc(50% - 8px);
  min-width: 130px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  background: #FFFFFF;
  border: 1px solid #E8E3DA;
  border-radius: 8px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  color: #1A1A1A;
}

.verbdate-payment-pill--selected {
  border-color: #233827;
  background: #F1EEE8;
}

.verbdate-h1 {
  font-family: var(--verbdate-font);
  font-weight: 700;
  font-size: 26px;
  color: var(--verbdate-text-primary);
  margin: 0 0 16px;
  line-height: 1.25;
}

.verbdate-h2 {
  font-family: var(--verbdate-font);
  font-weight: 700;
  font-size: 22px;
  color: var(--verbdate-text-primary);
  margin: 0 0 10px;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .verbdate-h1 {
    font-size: 34px;
    margin-bottom: 20px;
  }
  .verbdate-h2 {
    font-size: 26px;
    margin-bottom: 12px;
  }
}

.verbdate-intro-text {
  font-family: var(--verbdate-font);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.65;
  color: var(--verbdate-text-secondary);
  margin: 0 0 24px;
  max-width: 800px;
}

.verbdate-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--verbdate-font);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: var(--verbdate-radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.verbdate-btn--block {
  display: flex;
  width: 100%;
}

.verbdate-btn--primary {
  background: var(--verbdate-gold);
  color: #FFFFFF;
}

.verbdate-btn--primary:hover {
  background: var(--verbdate-gold-hover);
  color: #FFFFFF;
}

.verbdate-btn--secondary {
  background: transparent;
  color: var(--verbdate-forest);
  border: 1.5px solid var(--verbdate-forest);
}

.verbdate-btn--secondary:hover {
  background: var(--verbdate-forest);
  color: var(--verbdate-cream);
}

.verbdate-btn--dark {
  background: var(--verbdate-forest);
  color: var(--verbdate-cream);
}

.verbdate-btn--dark:hover {
  background: var(--verbdate-forest-dark);
  color: #FFFFFF;
}

.verbdate-btn--sm {
  font-size: 12px;
  padding: 6px 12px;
}

.verbdate-hero {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: var(--verbdate-radius-md);
  overflow: hidden;
  margin: 16px 0 32px;
}

@media (min-width: 768px) {
  .verbdate-hero {
    height: 480px;
    margin: 24px 0 48px;
  }
}

.verbdate-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.verbdate-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.85) 0%, rgba(26, 26, 26, 0.35) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

@media (min-width: 768px) {
  .verbdate-hero__overlay {
    padding: 44px;
  }
}

.verbdate-hero__content {
  max-width: 640px;
  color: #FFFFFF;
}

.verbdate-hero__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  color: #FFFFFF;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .verbdate-hero__title {
    font-size: 32px;
    margin-bottom: 16px;
  }
}

.verbdate-hero__text {
  font-size: 14.5px;
  line-height: 1.6;
  color: #E8E3DA;
  margin-bottom: 20px;
}

.verbdate-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.verbdate-section {
  padding: 24px 0 16px;
}

@media (min-width: 768px) {
  .verbdate-section {
    padding: 40px 0 24px;
  }
}

.verbdate-why-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.verbdate-why-card {
  flex: 1 1 100%;
  width: 100%;
  box-sizing: border-box;
  background: #FFFFFF;
  border-radius: var(--verbdate-radius-md);
  padding: 20px;
  box-shadow: var(--verbdate-shadow-sm);
  display: flex;
  flex-direction: column;
}

@media (min-width: 600px) {
  .verbdate-why-card {
    flex: 1 1 calc(50% - 16px);
    max-width: calc(50% - 8px);
  }
}

@media (min-width: 992px) {
  .verbdate-why-card {
    flex: 1 1 calc(25% - 16px);
    max-width: calc(25% - 12px);
  }
}

.verbdate-why-card__icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.verbdate-why-card__title {
  font-weight: 600;
  font-size: 16px;
  color: var(--verbdate-text-primary);
  margin-bottom: 6px;
}

.verbdate-why-card__text {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--verbdate-text-secondary);
}

.verbdate-products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.verbdate-products-grid .verbdate-book-card {
  flex: 1 1 100%;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 540px) {
  .verbdate-products-grid .verbdate-book-card {
    flex: 1 1 calc(50% - 16px);
    max-width: calc(50% - 8px);
  }
}

@media (min-width: 860px) {
  .verbdate-products-grid {
    gap: 24px;
  }
  .verbdate-products-grid .verbdate-book-card {
    flex: 1 1 calc(33.333% - 24px);
    max-width: calc(33.333% - 16px);
  }
}

@media (min-width: 1100px) {
  .verbdate-products-grid .verbdate-book-card {
    flex: 1 1 calc(25% - 24px);
    max-width: calc(25% - 18px);
  }
}

.verbdate-book-card {
  background: #FFFFFF;
  border-radius: var(--verbdate-radius-md);
  padding: 16px;
  box-shadow: var(--verbdate-shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
  width: 100%;
}

.verbdate-book-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--verbdate-shadow-md);
}

.verbdate-book-card__img-box {
  position: relative;
  background: #FAF8F5;
  border-radius: var(--verbdate-radius-sm);
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.verbdate-book-card__img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}

.verbdate-book-card__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--verbdate-forest);
  color: var(--verbdate-cream);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--verbdate-radius-pill);
}

.verbdate-book-card__title {
  font-family: var(--verbdate-font);
  font-weight: 600;
  font-size: 15px;
  color: var(--verbdate-text-primary);
  margin: 12px 0 2px;
  line-height: 1.35;
}

.verbdate-book-card__author {
  font-family: var(--verbdate-font);
  font-weight: 400;
  font-size: 12.5px;
  color: var(--verbdate-text-secondary);
  margin-bottom: 8px;
}

.verbdate-book-card__hook {
  font-family: var(--verbdate-font);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  color: var(--verbdate-text-secondary);
  margin-bottom: 14px;
  flex: 1;
}

.verbdate-book-card__footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid #F1EEE8;
  width: 100%;
  box-sizing: border-box;
}

.verbdate-book-card__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.verbdate-book-card__price {
  font-family: var(--verbdate-font);
  font-weight: 800;
  font-size: 16px;
  color: var(--verbdate-forest);
}

.verbdate-book-card__actions-row {
  display: flex;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
}

.verbdate-book-card__actions-row .verbdate-btn {
  flex: 1 1 50%;
  padding: 8px 6px;
  font-size: 12.5px;
  text-align: center;
  box-sizing: border-box;
}

.verbdate-features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.verbdate-feature-item,
.verbdate-features-grid > div {
  flex: 1 1 100%;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .verbdate-features-grid {
    gap: 28px;
  }
  .verbdate-feature-item,
  .verbdate-features-grid > div {
    flex: 1 1 calc(33.333% - 28px);
    max-width: calc(33.333% - 19px);
  }
}

.verbdate-feature-item {
  display: flex;
  gap: 16px;
}

.verbdate-feature-item__icon {
  font-size: 28px;
  flex: 0 0 auto;
}

.verbdate-feature-item__title {
  font-weight: 600;
  font-size: 16px;
  color: var(--verbdate-text-primary);
  margin-bottom: 6px;
}

.verbdate-feature-item__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--verbdate-text-secondary);
}

.verbdate-reviews-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.verbdate-review-box,
.verbdate-review-card {
  flex: 1 1 100%;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .verbdate-reviews-grid {
    gap: 24px;
  }
  .verbdate-review-box {
    flex: 1 1 calc(33.333% - 24px);
    max-width: calc(33.333% - 16px);
  }
}

.verbdate-review-box {
  background: #FFFFFF;
  border-radius: var(--verbdate-radius-md);
  padding: 20px;
  box-shadow: var(--verbdate-shadow-sm);
  display: flex;
  flex-direction: column;
}

.verbdate-review-box__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.verbdate-review-box__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.verbdate-review-box__name {
  font-weight: 600;
  font-size: 14px;
  color: var(--verbdate-text-primary);
}

.verbdate-review-box__rating {
  font-size: 12px;
  color: var(--verbdate-gold);
}

.verbdate-review-box__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--verbdate-text-primary);
}

.verbdate-blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.verbdate-blog-card {
  flex: 1 1 100%;
  box-sizing: border-box;
  background: #FFFFFF;
  border-radius: var(--verbdate-radius-md);
  overflow: hidden;
  box-shadow: var(--verbdate-shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.verbdate-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--verbdate-shadow-md);
}

@media (min-width: 768px) {
  .verbdate-blog-grid {
    gap: 24px;
  }
  .verbdate-blog-card {
    flex: 1 1 calc(33.333% - 24px);
    max-width: calc(33.333% - 16px);
  }
}

.verbdate-blog-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.verbdate-blog-card__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.verbdate-blog-card__tag {
  font-weight: 600;
  font-size: 11px;
  color: var(--verbdate-gold);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}

.verbdate-blog-card__title {
  font-weight: 600;
  font-size: 16px;
  color: var(--verbdate-text-primary);
  line-height: 1.35;
  margin-bottom: 8px;
}

.verbdate-blog-card__text {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--verbdate-text-secondary);
  margin-bottom: 12px;
  flex: 1;
}

.verbdate-two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.verbdate-two-col > * {
  flex: 1 1 100%;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 860px) {
  .verbdate-two-col {
    gap: 40px;
    align-items: flex-start;
  }

  .verbdate-two-col > :first-child {
    flex: 1 1 calc(58% - 20px);
    max-width: calc(58% - 20px);
  }

  .verbdate-two-col > :last-child {
    flex: 1 1 calc(42% - 20px);
    max-width: calc(42% - 20px);
  }

  .verbdate-sticky-box {
    position: sticky;
    top: 90px;
  }
}

.verbdate-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.verbdate-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 0 16px;
  cursor: grab;
}

.verbdate-carousel .verbdate-book-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
}

.verbdate-carousel__btn {
  position: absolute;
  top: calc(50% - 20px);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--verbdate-forest);
  z-index: 10;
  transition: all 0.15s ease;
}

.verbdate-carousel__btn:hover {
  background: var(--verbdate-forest);
  color: #FFFFFF;
}

.verbdate-carousel__btn--prev {
  left: 6px;
}

.verbdate-carousel__btn--next {
  right: 6px;
}

.verbdate-legal-container {
  max-width: 840px;
  margin: 0 auto;
  padding: 32px 16px;
  box-sizing: border-box;
}

.verbdate-legal-section {
  margin-bottom: 32px;
}

.verbdate-legal-tldr {
  background: #F1EEE8;
  border-radius: 12px;
  padding: 16px;
  font-family: var(--verbdate-font);
  font-size: 13.5px;
  color: var(--verbdate-text-primary);
  line-height: 1.6;
  margin-bottom: 12px;
}

.verbdate-legal-tldr strong {
  font-weight: 600;
}

.verbdate-legal-body {
  font-family: var(--verbdate-font);
  font-weight: 400;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--verbdate-text-secondary);
  margin: 0;
}

.verbdate-footer {
  background: var(--verbdate-forest);
  color: var(--verbdate-cream);
  padding: 48px 0 24px;
  margin-top: 48px;
}

.verbdate-footer__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 36px;
}

.verbdate-footer__grid > div {
  flex: 1 1 100%;
  box-sizing: border-box;
}

@media (min-width: 600px) {
  .verbdate-footer__grid > div {
    flex: 1 1 calc(50% - 28px);
    max-width: calc(50% - 14px);
  }
}

@media (min-width: 900px) {
  .verbdate-footer__grid {
    gap: 36px;
  }
  .verbdate-footer__grid > :nth-child(1) {
    flex: 1 1 calc(32% - 27px);
    max-width: calc(32% - 27px);
  }
  .verbdate-footer__grid > :nth-child(2) {
    flex: 1 1 calc(20% - 27px);
    max-width: calc(20% - 27px);
  }
  .verbdate-footer__grid > :nth-child(3) {
    flex: 1 1 calc(22% - 27px);
    max-width: calc(22% - 27px);
  }
  .verbdate-footer__grid > :nth-child(4) {
    flex: 1 1 calc(26% - 27px);
    max-width: calc(26% - 27px);
  }
}

.verbdate-footer__logo-img {
  height: 34px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}

.verbdate-footer__title {
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.verbdate-footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.verbdate-footer__nav-link {
  color: #D9D4C8;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.15s ease;
}

.verbdate-footer__nav-link:hover {
  color: var(--verbdate-gold-light);
}

.verbdate-footer__legal-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.verbdate-footer__legal-link {
  color: #D9D4C8;
  font-size: 13.5px;
  text-decoration: none;
  transition: color 0.15s ease;
}

.verbdate-footer__legal-link:hover {
  color: var(--verbdate-gold-light);
  text-decoration: underline;
}

.verbdate-footer__company {
  font-size: 12.5px;
  line-height: 1.6;
  color: #a8b0a9;
  margin-bottom: 16px;
}

.verbdate-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12px;
  color: #88938a;
}

@media (min-width: 768px) {
  .verbdate-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.verbdate-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--verbdate-forest);
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: var(--verbdate-radius-pill);
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--verbdate-shadow-lg);
  z-index: 200;
  transition: transform 0.25s ease, opacity 0.25s ease;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
}

.verbdate-toast--visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
