/* ============================================================
   Velora : Page d'accueil (desktop + mobile)
   ============================================================ */

:root {
  --velora-green: #006d44;
  --velora-green-dark: #005a38;
  --velora-green-light: #e8f5ef;
  --velora-green-muted: #f3faf6;
  --velora-text: #1a1a1a;
  --velora-text-muted: #6b7280;
  --velora-border: #e5e7eb;
  --velora-radius: 12px;
  --velora-radius-lg: 20px;
  --velora-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --velora-shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.05);
  --velora-font: "Outfit", "Montserrat", system-ui, sans-serif;
}

/* ---- Header global ---- */
/* Styles header: assets/css/velora-header.css */

/* ---- Home layout ---- */
body.velora-home-page {
  background: #fff;
}

body.velora-home-page .content-wrapper {
  overflow-x: hidden;
}

.velora-home {
  font-family: var(--velora-font);
  color: var(--velora-text);
}

.velora-home .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Buttons */
.velora-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--velora-font);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.velora-btn--primary {
  background: var(--velora-green);
  color: #fff !important;
  border-color: var(--velora-green);
}

.velora-btn--primary:hover {
  background: var(--velora-green-dark);
  border-color: var(--velora-green-dark);
  color: #fff !important;
}

.velora-btn--outline {
  background: #fff;
  color: var(--velora-green) !important;
  border-color: var(--velora-green);
}

.velora-btn--outline:hover {
  background: var(--velora-green-muted);
}

.velora-btn--ghost {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.6);
}

.velora-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.velora-btn--sm {
  padding: 10px 18px;
  font-size: 0.85rem;
}

/* Section headings */
.velora-section {
  padding: 48px 0;
}

.velora-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.velora-section__title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--velora-text);
}

.velora-section__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--velora-green);
  text-decoration: none;
}

.velora-section__link:hover {
  text-decoration: underline;
}

/* ---- Mobile search ---- */
.velora-home-search {
  padding: 12px 16px 0;
}

.velora-home-search__field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  height: 48px;
  background: #f5f5f5;
  border-radius: 999px;
  border: 1px solid var(--velora-border);
}

.velora-home-search__field .bi-search {
  color: var(--velora-text-muted);
  font-size: 1rem;
  flex-shrink: 0;
}

.velora-home-search__field input {
  flex: 1;
  border: none !important;
  background: transparent !important;
  margin: 0 !important;
  padding: 0 !important;
  font-family: var(--velora-font);
  font-size: 0.9rem;
  color: var(--velora-text);
  box-shadow: none !important;
}

.velora-home-search__filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: var(--velora-text-muted);
  font-size: 1rem;
  cursor: pointer;
}

/* ---- Hero ---- */
.velora-hero {
  padding: 40px 0 24px;
}

.velora-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.velora-hero__badge {
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: var(--velora-green-muted);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--velora-green);
}

.velora-hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--velora-green);
}

.velora-hero__title {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--velora-text);
}

.velora-hero__title strong {
  color: var(--velora-green);
  font-weight: 700;
}

.velora-hero__subtitle {
  margin: 0 0 28px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--velora-text-muted);
  max-width: 480px;
}

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

.velora-hero__image-wrap {
  position: relative;
  overflow: visible;
  padding-bottom: 36px;
}

.velora-hero__visual {
  overflow: visible;
}

.velora-hero__carousel--desktop {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--velora-radius-lg);
  overflow: hidden;
}

.velora-hero__carousel--desktop .velora-hero__slides {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--velora-radius-lg);
  background: #e8f0ec;
}

.velora-hero__slide--desktop {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.velora-hero__slide--desktop.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.velora-hero__carousel--desktop .velora-hero__image {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border-radius: 0;
  object-fit: cover;
  object-position: center center;
  aspect-ratio: auto;
  display: block;
}

.velora-hero__dots--desktop {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  z-index: 3;
  padding: 0;
  pointer-events: none;
}

.velora-hero__dots--desktop span {
  pointer-events: auto;
}

.velora-hero__image {
  width: 100%;
  height: auto;
  border-radius: var(--velora-radius-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.velora-track-card {
  position: absolute;
  left: 24px;
  bottom: -20px;
  z-index: 10;
  width: min(320px, 90%);
  padding: 20px;
  background: #fff;
  border-radius: var(--velora-radius);
  box-shadow: var(--velora-shadow);
  border: 1px solid var(--velora-border);
}

.velora-track-card__title {
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 700;
}

.velora-track-card__form {
  display: flex;
  gap: 8px;
}

.velora-track-card__form input {
  flex: 1;
  min-width: 0;
  padding: 10px 14px !important;
  border: 1px solid var(--velora-border) !important;
  border-radius: 8px !important;
  background: #fff !important;
  font-size: 0.85rem !important;
  margin: 0 !important;
}

.velora-track-card__form .velora-btn {
  flex-shrink: 0;
}

/* Hero mobile carousel */
.velora-hero__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  border-radius: var(--velora-radius-lg);
  background: transparent;
  overflow: hidden;
}

.velora-hero__card-body {
  flex: none;
  width: 100%;
  min-width: 0;
  padding: 18px 0 20px;
}

.velora-hero__card-body .velora-hero__title {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.velora-hero__card-body .velora-hero__subtitle {
  font-size: 0.88rem;
  margin-bottom: 16px;
  max-width: none;
  line-height: 1.55;
}

.velora-hero__actions--mobile {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.velora-hero__actions--mobile .velora-btn {
  flex: 0 1 auto;
  width: auto;
  justify-content: center;
  padding: 10px 14px;
  font-size: 0.82rem;
}

.velora-hero__card-visual {
  flex: none;
  position: relative;
  width: 100%;
  min-height: 0;
  border-radius: var(--velora-radius-lg);
  overflow: hidden;
}

.velora-hero__card-visual .velora-hero__slides {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  overflow: hidden;
  border-radius: var(--velora-radius-lg);
  background: #e8f0ec;
}

.velora-hero__card-visual .velora-hero__slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease;
}

.velora-hero__card-visual .velora-hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.velora-hero__card-visual .velora-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.velora-hero__dots--mobile {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  z-index: 2;
  padding: 0;
  margin: 0;
}

.velora-hero__carousel {
  position: relative;
  border-radius: var(--velora-radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #f0f4f2 0%, #e8f0ec 100%);
}

.velora-hero__slides {
  position: relative;
}

.velora-hero__slide {
  /* styles définis par contexte desktop / mobile */
}

.velora-hero__card-visual .velora-hero__slide img,
.velora-hero__carousel .velora-hero__slide img {
  display: block;
}

.velora-hero__card .velora-hero__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
}

.velora-hero__dots--mobile span {
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.velora-hero__dots--mobile span.is-active {
  background: var(--velora-green);
}

.velora-hero__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 12px 0 16px;
}

.velora-hero__dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
}

.velora-hero__dots span.is-active {
  background: var(--velora-green);
  width: 20px;
  border-radius: 999px;
}

/* ---- Features bar ---- */
.velora-features {
  padding: 32px 0 48px;
  border-top: 1px solid var(--velora-border);
}

.velora-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.velora-features__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.velora-features__icon {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--velora-green-muted);
  color: var(--velora-green);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.velora-features__icon i,
.velora-features__icon .bi {
  float: none !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
  display: inline-block !important;
  line-height: 1;
}

.velora-features__item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.velora-features__item > div > span {
  display: block;
  font-size: 0.85rem;
  color: var(--velora-text-muted);
}

/* ---- Categories ---- */
.velora-categories__wrap {
  position: relative;
}

.velora-categories__nav {
  display: none;
}

.velora-categories__scroll {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.velora-categories__scroll::-webkit-scrollbar {
  display: none;
}

.velora-category-card {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--velora-text);
  min-width: 100px;
}

.velora-category-card__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: var(--velora-radius);
  background: #f5f5f5;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.velora-category-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.velora-category-card__thumb .bi {
  font-size: 1.75rem;
  color: var(--velora-text-muted);
}

.velora-category-card__label {
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
}

.velora-category-card.is-active .velora-category-card__thumb,
.velora-category-card:hover .velora-category-card__thumb {
  border-color: var(--velora-green);
  box-shadow: var(--velora-shadow-sm);
}

.velora-category-card.is-active .velora-category-card__label {
  color: var(--velora-green);
  font-weight: 600;
}

@media (min-width: 768px) {
  .velora-categories__wrap {
    padding: 0 52px;
  }

  .velora-categories__scroll {
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .velora-category-card {
    min-width: 120px;
    flex: 0 0 120px;
    scroll-snap-align: start;
  }

  .velora-category-card__thumb {
    width: 120px;
    height: 120px;
  }

  .velora-categories__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 42px;
    z-index: 2;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid var(--velora-border);
    border-radius: 50%;
    background: #fff;
    box-shadow: var(--velora-shadow-sm);
    color: var(--velora-text);
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
  }

  .velora-categories__nav:hover:not(:disabled) {
    border-color: var(--velora-green);
    color: var(--velora-green);
  }

  .velora-categories__nav:disabled {
    opacity: 0.35;
    cursor: not-allowed;
  }

  .velora-categories__nav .bi {
    float: none !important;
    font-size: 1.1rem;
    line-height: 1;
  }

  .velora-categories__nav--prev {
    left: 0;
  }

  .velora-categories__nav--next {
    right: 0;
  }
}

/* ---- Products ---- */
.velora-products__grid--desktop {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  align-items: stretch;
}

.velora-products__grid--mobile {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  align-items: stretch;
}

.velora-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: var(--velora-radius);
  border: 1px solid var(--velora-border);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.velora-product-card__tag {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--velora-green);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  pointer-events: none;
}

.velora-product-card--desktop:hover {
  box-shadow: var(--velora-shadow);
  transform: translateY(-2px);
}

.velora-product-card__wish {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: var(--velora-text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--velora-shadow-sm);
}

.velora-product-card__wish.is-active,
.velora-product-card__wish.is-active i.bi,
.mp-wishlist-toggle.is-active,
.mp-wishlist-toggle.is-active i.bi {
  color: var(--velora-green);
}

.velora-product-card__media {
  display: block;
  position: relative;
  flex-shrink: 0;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #eef2f6;
  padding: 0;
}

.velora-product-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.velora-product-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 12px 14px 16px;
}

.velora-product-card__name {
  margin: 0 0 6px;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--velora-text);
  min-height: calc(0.85rem * 1.35 * 2);
}

.velora-product-card__name a {
  color: inherit;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.velora-product-card__name a:hover {
  color: var(--velora-green);
}

.velora-products__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem 1rem;
  color: var(--velora-text-muted);
}

.velora-section__count {
  margin: 4px 0 0;
  font-size: 0.875rem;
  color: var(--velora-text-muted);
}

.velora-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.velora-pagination__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--velora-border);
  background: #fff;
  color: var(--velora-text);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.velora-pagination__link:hover {
  border-color: var(--velora-green);
  color: var(--velora-green);
}

.velora-pagination__link.is-active {
  background: var(--velora-green);
  border-color: var(--velora-green);
  color: #fff;
}

.velora-pagination__dots {
  color: var(--velora-text-muted);
  padding: 0 4px;
}

.velora-product-card__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
}

.velora-product-card__price {
  margin: 0 0 4px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--velora-green);
}

.velora-product-card__rating {
  margin: 0;
  font-size: 0.8rem;
  color: var(--velora-text-muted);
}

.velora-product-card__rating .bi-star-fill {
  color: #f59e0b;
  font-size: 0.75rem;
  margin-right: 2px;
}

/* Mobile product card */
.velora-product-card--mobile {
  border-radius: 10px;
}

.velora-product-card__discount {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 3px 8px;
  border-radius: 6px;
  background: #fce7f3;
  color: #db2777;
  font-size: 0.7rem;
  font-weight: 700;
}

.velora-product-card__actions {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 8px 10px;
  border-top: 1px solid var(--velora-border);
  border-bottom: 1px solid var(--velora-border);
}

.velora-product-card__actions button {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 6px;
  background: #f5f5f5;
  color: var(--velora-text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
}

.velora-product-card__cat {
  display: block;
  font-size: 0.7rem;
  color: var(--velora-text-muted);
  margin-bottom: 4px;
}

.velora-product-card__vendor {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 6px;
  font-size: 0.75rem;
  color: var(--velora-text-muted);
  min-width: 0;
}

.velora-product-card__vendor > :not(.velora-product-card__vendor-avatar) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.velora-product-card__vendor-avatar {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--velora-green);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.velora-product-card__price-row {
  margin: auto 0 0;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
}

.velora-product-card__price--sale {
  color: #dc2626 !important;
  font-weight: 700;
}

.velora-product-card__price-old {
  font-size: 0.75rem;
  color: var(--velora-text-muted);
  text-decoration: line-through;
}

/* ---- Shipping banner ---- */
.velora-shipping {
  padding: 24px 0 56px;
}

.velora-shipping__banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 48px;
  border-radius: var(--velora-radius-lg);
  background: var(--velora-green-light);
}

.velora-shipping__content h2 {
  margin: 0 0 12px;
  font-size: 1.75rem;
  font-weight: 700;
}

.velora-shipping__content p {
  margin: 0 0 24px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--velora-text-muted);
}

.velora-shipping__visual img {
  width: 100%;
  height: auto;
  border-radius: var(--velora-radius);
  object-fit: cover;
}

.velora-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.velora-stats__item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.velora-stats__icon {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--velora-green-muted);
  color: var(--velora-green);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.velora-stats__icon i,
.velora-stats__icon .bi {
  float: none !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
  display: inline-block !important;
  line-height: 1;
}

.velora-stats__item strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--velora-green);
}

.velora-stats__item > div > span {
  display: block;
  font-size: 0.85rem;
  color: var(--velora-text-muted);
}

/* ---- App section ---- */
.velora-app {
  padding: 56px 0;
  background: #fafafa;
}

.velora-app__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.velora-app__content h2 {
  margin: 0 0 20px;
  font-size: 1.75rem;
  font-weight: 700;
}

.velora-app__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.velora-app__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.velora-app__features .bi {
  color: var(--velora-green);
  font-size: 1.1rem;
}

.velora-app__stores {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.velora-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 10px;
  background: #1a1a1a;
  color: #fff !important;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.velora-store-badge:hover {
  opacity: 0.88;
  color: #fff !important;
}

.velora-store-badge .bi {
  font-size: 1.5rem;
}

.velora-store-badge span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.velora-store-badge small {
  font-size: 0.65rem;
  font-weight: 400;
  opacity: 0.8;
}

.velora-app__phones img {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  display: block;
  border-radius: var(--velora-radius-lg);
}

.velora-app__values {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.velora-app__value {
  display: flex;
  gap: 14px;
}

.velora-app__features .bi {
  float: none !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
  line-height: 1;
}

.velora-app__value-icon {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--velora-green-muted);
  color: var(--velora-green);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.velora-app__value-icon i,
.velora-app__value-icon .bi {
  float: none !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
  display: inline-block !important;
  line-height: 1;
}

.velora-app__value strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.velora-app__value p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--velora-text-muted);
  line-height: 1.4;
}

/* ---- Newsletter ---- */
.velora-newsletter {
  padding: 0 0 56px;
}

.velora-newsletter__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 36px;
  border-radius: var(--velora-radius-lg);
  background: var(--velora-green);
  color: #fff;
}

.velora-newsletter__text {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.velora-newsletter__icon {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.velora-newsletter__icon i,
.velora-newsletter__icon .bi {
  float: none !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
  display: inline-block !important;
  line-height: 1;
}

.velora-newsletter__text strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.velora-newsletter__text > div > span {
  display: block;
  font-size: 0.9rem;
  opacity: 0.9;
}

.velora-newsletter__form {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.velora-newsletter__form input[type="email"] {
  width: 260px;
  padding: 12px 16px !important;
  border: none !important;
  border-radius: 999px !important;
  background: #fff !important;
  font-size: 0.9rem !important;
  margin: 0 !important;
}

.velora-newsletter__form .hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

@media (min-width: 768px) {
  .velora-hero {
    padding-bottom: 48px;
  }
}

/* ---- Mobile overrides ---- */
@media (max-width: 767.98px) {
  .velora-hero {
    padding: 12px 0 8px;
  }

  .velora-hero > .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .velora-hero__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .velora-hero__card-body .velora-hero__title {
    font-size: 1.28rem;
  }

  .velora-section {
    padding: 24px 0;
  }

  .velora-section__title {
    font-size: 1.15rem;
  }

  .velora-section__link {
    font-size: 0.85rem;
  }

  .velora-category-card {
    min-width: 80px;
  }

  .velora-category-card__thumb {
    width: 80px;
    height: 80px;
  }

  .velora-category-card__label {
    font-size: 0.75rem;
  }

  body.velora-home-page.has-mobile-bottom-nav {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  body.velora-home-page nav.velora-bottom-nav .velora-bottom-nav__link.is-active {
    color: var(--velora-green) !important;
  }
}

/* ---- Tablet adjustments ---- */
@media (min-width: 768px) and (max-width: 991.98px) {
  .velora-products__grid--desktop {
    grid-template-columns: repeat(3, 1fr);
  }

  .velora-hero__grid {
    gap: 24px;
  }

  .velora-app__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .velora-app__features,
  .velora-app__stores,
  .velora-app__values {
    justify-content: center;
  }

  .velora-app__stores {
    justify-content: center;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .velora-products__grid--desktop {
    grid-template-columns: repeat(4, 1fr);
  }
}
