/* ========================================
   STYLE.CSS — KAANIPA JEWELS
   ======================================== */

/* ========================================
   1. FONT IMPORTS
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ========================================
   2. CSS VARIABLES
   ======================================== */
:root {
  --font-heading: 'The Seasons', 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Poppins', -apple-system, sans-serif;

  --primary:       #800000;
  --primary-dark:  #6b0000;
  --primary-light: rgba(128,0,0,0.08);
  --white:         #ffffff;
  --black:         #000000;
  --gray-50:       #F7F8FA;
  --gray-100:      #F3F4F6;
  --gray-200:      #E5E7EB;
  --gray-400:      #6B7280;
  --gray-900:      #1A1D1F;
  --border:        #e6e6e6;

  --dot-size:         12px;
  --dot-active-width: 32px;
  --dot-height:       12px;

  --transition-fast:   0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-cubic:  0.4s cubic-bezier(0.4, 0, 0.2, 1);

  --faq-accent:      #111111;
  --faq-accent-rgba: rgba(0,0,0,0.06);
  --faq-open-bg:     #f5f5f5;
  --faq-open-hover:  #eeeeee;
}

/* ========================================
   3. GLOBAL RESET & BASE
   ======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--gray-900);
}

h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.3;
  color: var(--gray-900);
}

p, a, span, button, input, textarea, select,
label, li, strong, em, small {
  font-family: var(--font-body);
  font-weight: 400;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  color: inherit;
}

/* ========================================
   UNIVERSAL SECTION HEADINGS
   ======================================== */
h2.sec-title,
h1.sec-title,
.shop-by-collection .section-header h2,
.shop-by-collection .sec-title,
.section-header-centered h2,
.section-header-center h2,
.follow-our-journey .section-header h2,
.follow-our-journey .sec-title,
.steal-deal-heading {
  font-family: var(--font-heading) !important;
  font-size: 2.5rem !important;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  color: var(--gray-900);
}

@media (max-width: 1024px) {
  h2.sec-title, h1.sec-title,
  .shop-by-collection .section-header h2,
  .follow-our-journey .section-header h2,
  .follow-our-journey .sec-title,
  .steal-deal-heading { font-size: 2rem !important; }
}

/* ── MOBILE: section title sizes ── */
@media (max-width: 768px) {
  h2.sec-title, h1.sec-title,
  .shop-by-collection .section-header h2,
  .follow-our-journey .section-header h2,
  .follow-our-journey .sec-title,
  .steal-deal-heading { font-size: 2.2rem !important; }
}

@media (max-width: 480px) {
  h2.sec-title, h1.sec-title,
  .shop-by-collection .section-header h2,
  .follow-our-journey .section-header h2,
  .follow-our-journey .sec-title,
  .steal-deal-heading { font-size: 2rem !important; }
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ========================================
   4. ANNOUNCEMENT BAR
   ======================================== */
.ann-bar,
.announcement-bar {
  font-family: var(--font-body);
  background: var(--primary);
  color: var(--white);
  padding: 10px 0;
  overflow: hidden;
  position: relative;
  z-index: 100;
  width: 100%;
  display: block;
  min-height: 38px;
}

.ann-track,
.announcement-content {
  display: inline-flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  animation: scroll-seamless 28s linear infinite;
  will-change: transform;
  align-items: center;
}

.ann-track span,
.announcement-content p {
  padding: 0 44px;
  display: inline-block;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--white);
  white-space: nowrap;
  flex-shrink: 0;
}

.ann-bar:hover .ann-track,
.announcement-bar:hover .announcement-content {
  animation-play-state: paused;
}

.ann-bar.speed-fast .ann-track { animation-duration: 12s; }
.ann-bar.speed-slow .ann-track { animation-duration: 55s; }

@keyframes scroll-seamless {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .ann-bar, .announcement-bar { padding: 9px 0; }
  .ann-track span { padding: 0 28px; font-size: 14px; }
}
@media (max-width: 480px) {
  .ann-track span { padding: 0 20px; font-size: 13px; }
}

/* ========================================
   5. SHARED DOT NAVIGATION
   ======================================== */
.carousel-dots, .slider-dots, .reels-dots,
.collections-dots, .testimonial-dots, .steal-deal-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 0;
}

.carousel-dots button, .slider-dots .dot,
.reels-dots button, .collections-dots button,
.testimonial-dot, .steal-deal-dot {
  width: var(--dot-size);
  height: var(--dot-height);
  border-radius: 50%;
  background: var(--gray-200);
  border: none;
  cursor: pointer;
  transition: background var(--transition-normal), width var(--transition-normal);
  padding: 0;
  flex-shrink: 0;
}

.carousel-dots button.active, .slider-dots .dot.active,
.reels-dots button.active, .collections-dots button.active,
.testimonial-dot.active, .steal-deal-dot.active {
  width: var(--dot-active-width);
  background: var(--primary);
  border-radius: 6px;
}

.carousel-dots button:hover:not(.active),
.slider-dots .dot:hover:not(.active),
.reels-dots button:hover:not(.active),
.collections-dots button:hover:not(.active),
.testimonial-dot:hover:not(.active),
.steal-deal-dot:hover:not(.active) {
  background: var(--primary);
}

/* ========================================
   6. SHARED NAV ARROW
   ======================================== */
.nav-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--gray-200);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-900);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: background var(--transition-normal), color var(--transition-normal),
              border-color var(--transition-normal), transform var(--transition-normal);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.nav-arrow:hover:not(:disabled) {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.05);
}

.nav-arrow:disabled { opacity: 0.3; cursor: not-allowed; }

/* ========================================
   7. HERO SLIDER
   ======================================== */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider-wrap {
  position: relative;
  width: 100%;
}

.hero-slider .slide,
.slider-wrap .slide {
  display: none;
  width: 100%;
  position: relative;
}

.hero-slider .slide.active,
.slider-wrap .slide.active {
  display: block;
  width: 100%;
}

.hero-slider .slide a,
.slider-wrap .slide a {
  display: block;
  width: 100%;
}

.hero-slider .slide img,
.slider-wrap .slide img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.desk-img { display: block !important; }
.mob-img  { display: none !important; }

@media (max-width: 768px) {
  .desk-img { display: none  !important; }
  .mob-img  { display: block !important; width: 100%; height: auto; }
}

.slider-container {
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;
}

.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.slider-track > .slide {
  display: block !important;
  min-width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 100% !important;
  height: 100%;
  overflow: hidden;
}

.slider-track > .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slider-container > .slide {
  position: absolute !important;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
  display: block !important;
}

.slider-container > .slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slider .slider-nav,
.slider-wrap .slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--gray-200);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  color: var(--gray-900);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
}

.hero-slider .slider-nav:hover { background: var(--black); color: var(--white); border-color: var(--black); transform: translateY(-50%) scale(1.05); }
.hero-slider .slider-nav.prev { left: 20px; }
.hero-slider .slider-nav.next { right: 20px; }

.slider-dots { margin-top: 14px; padding: 6px 0; }

@media (max-width: 768px) {
  .hero-slider .slider-nav { width: 36px; height: 36px; }
  .hero-slider .slider-nav.prev { left: 10px; }
  .hero-slider .slider-nav.next { right: 10px; }
}

/* ========================================
   8. CATEGORY CAROUSEL
   ======================================== */
.category-carousel {
  position: relative;
  width: 100%;
  padding: 48px 0 24px;
  background: var(--white);
  font-family: var(--font-body);
}

.category-carousel .carousel-wrapper {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 80px;
}

#cat-track,
div#cat-track,
.carousel-container,
#cat-track.carousel-container,
.category-carousel .carousel-container {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: flex-start !important;
  gap: 28px !important;
  overflow-x: auto !important;
  overflow-y: visible !important;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  overscroll-behavior-x: contain;
  padding: 8px 0 12px !important;
  width: 100% !important;
  max-width: 100% !important;
  grid-template-columns: unset !important;
  grid-auto-flow: unset !important;
  list-style: none !important;
}

#cat-track::-webkit-scrollbar,
.carousel-container::-webkit-scrollbar { display: none !important; }

.category-item-link {
  flex: 0 0 auto !important;
  min-width: 0 !important;
  scroll-snap-align: start;
  text-decoration: none !important;
  color: inherit;
  display: block !important;
  float: none !important;
  position: static !important;
}

.category-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 12px;
  width: 180px;
  min-width: 180px;
  max-width: 180px;
}

.category-icon {
  width: 180px !important;
  height: 180px !important;
  min-width: 180px !important;
  min-height: 180px !important;
  border-radius: 0 !important;
  overflow: hidden;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition-normal), transform var(--transition-normal);
  flex-shrink: 0 !important;
}

.category-item-link:hover .category-icon {
  box-shadow: 0 4px 16px rgba(128,0,0,0.18);
  transform: translateY(-2px);
}

.category-icon img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
}

.category-item span {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: #111;
  text-align: center;
  line-height: 1.4;
  max-width: 170px;
  display: block;
  white-space: normal;
  word-break: break-word;
}

.category-carousel .carousel-nav,
#cat-prev, #cat-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  color: var(--primary);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
}

.category-carousel .carousel-nav:hover,
#cat-prev:hover, #cat-next:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.05);
}

.category-carousel .carousel-nav.prev, #cat-prev { left: 20px; }
.category-carousel .carousel-nav.next, #cat-next { right: 20px; }
.category-carousel .carousel-dots { margin-top: 20px; }

@media (max-width: 1023px) {
  .category-carousel .carousel-wrapper { padding: 0 40px; }
  .category-icon { width: 150px !important; height: 150px !important; min-width: 150px !important; min-height: 150px !important; }
  .category-item { width: 150px; min-width: 150px; max-width: 150px; }
}

@media (max-width: 767px) {
  .category-carousel { padding: 24px 0 0; }
  .category-carousel .carousel-wrapper { padding: 0 20px; }
  .category-icon { width: 110px !important; height: 110px !important; min-width: 110px !important; min-height: 110px !important; }
  .category-item { width: 110px; min-width: 110px; max-width: 110px; }
  .category-carousel .carousel-nav, #cat-prev, #cat-next { display: none !important; }
  .category-item span { font-size: 0.8rem; }
}

@media (max-width: 480px) {
  .category-carousel .carousel-wrapper { padding: 0 16px; }
  .category-icon { width: 90px !important; height: 90px !important; min-width: 90px !important; min-height: 90px !important; }
  .category-item { width: 90px; min-width: 90px; max-width: 90px; }
  .category-item span { font-size: 0.775rem; }
}

/* ========================================
   9. SHOP BY COLLECTION
   ======================================== */
.shop-by-collection {
  padding: 60px 0;
  background: var(--white);
}

.shop-by-collection .section-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 20px;
}

.collections-carousel {
  position: static !important;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

.collections-viewport {
  overflow: visible !important;
  width: 100%;
}

.collections-track {
  display: flex !important;
  flex-direction: column !important;
  flex-wrap: wrap !important;
  gap: 20px !important;
  transform: none !important;
  transition: none !important;
  width: 100% !important;
}

.collection-slide {
  flex: 0 0 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  width: 100% !important;
}

.collection-nav-btn,
.collections-dots { display: none !important; }

.collection-card {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--gray-900);
}

.collection-image {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  background: var(--gray-100);
  overflow: hidden;
  border-radius: 0;
}

.collection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0;
  transition: transform 0.6s ease;
}

.collection-card:hover .collection-image img { transform: scale(1.03); }

.collection-image::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
  pointer-events: none;
}

.collection-label {
  position: absolute;
  bottom: 24px; left: 28px;
  z-index: 2;
  color: var(--white);
}

.collection-label span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.85;
  display: block;
  margin-bottom: 4px;
}

.collection-label h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
  line-height: 1.2;
}

@media (max-width: 1024px) {
  .shop-by-collection { padding: 48px 0; }
  .collections-carousel { padding: 0 32px; }
  .collection-image { aspect-ratio: 16 / 7; }
}

@media (max-width: 768px) {
  .shop-by-collection { padding: 40px 0; }
  .shop-by-collection .section-header { margin-bottom: 28px; }
  .collections-carousel { padding: 0 16px; }
  .collections-track { gap: 14px !important; }
  .collection-image { aspect-ratio: 4 / 3; }
  .collection-label h3 { font-size: 1.35rem; }
  .collection-label { bottom: 16px; left: 16px; }
}

@media (max-width: 480px) {
  .collections-carousel { padding: 0 12px; }
  .collections-track { gap: 10px !important; }
  .collection-image { aspect-ratio: 3 / 2; }
  .collection-label h3 { font-size: 1.1rem; }
  .collection-label { bottom: 12px; left: 12px; }
}

/* ========================================
   10. WATCH & SHOP — INSTAGRAM REELS
   ======================================== */
.watch-shop-section {
  padding: 60px 0;
  background: var(--white);
}

.watch-shop-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px 0 calc(80px + 24px);
  position: relative;
}

.sec-head {
  text-align: center;
  margin-bottom: 32px;
}

.reels-carousel  { position: relative; width: 100%; }
.reels-viewport  { overflow: hidden; position: relative; width: 100%; }

.reels-track {
  display: flex;
  gap: 24px;
  transition: transform var(--transition-cubic);
  will-change: transform;
}

.reel-slide {
  flex: 0 0 calc((100% - 48px) / 3);
  max-width: calc((100% - 48px) / 3);
}

.reel-card {
  background: var(--white);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.reel-media {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: var(--black);
  overflow: hidden;
}

.reel-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: var(--black);
}

.reel-description {
  padding: 14px 16px;
  background: var(--white);
}

.reel-description p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.5;
}

.nav-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--gray-200);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  color: var(--gray-900);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all var(--transition-normal);
}

.nav-btn:hover:not(:disabled) {
  background: var(--black); color: var(--white); border-color: var(--black);
  transform: translateY(-50%) scale(1.05);
}

.nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.nav-btn.prev { left: -60px; }
.nav-btn.next { right: -60px; }
.nav-btn i { font-size: 18px; }

.reels-dots { margin-top: 40px; }

@media (max-width: 1024px) {
  .watch-shop-section { padding: 48px 0; }
  .watch-shop-container { padding: 0 48px; }
  .reels-track { gap: 20px; }
  .reel-slide { flex: 0 0 calc((100% - 40px) / 3); max-width: calc((100% - 40px) / 3); }
  .nav-btn.prev { left: -16px; }
  .nav-btn.next { right: -16px; }
}

@media (max-width: 768px) {
  .watch-shop-section { padding: 40px 0; }
  .watch-shop-container { padding: 0 16px; }
  .reels-track { gap: 16px; }
  .reel-slide  { flex: 0 0 calc((100% - 16px) / 2); max-width: calc((100% - 16px) / 2); }
  .nav-btn     { display: none; }
  .reels-dots  { margin-top: 28px; }
}

@media (max-width: 480px) {
  .reel-description { padding: 10px 12px; }
  .reel-description p { font-size: 0.8125rem; }
}

@media (hover: none) and (pointer: coarse) {
  .video-controls { opacity: 0; }
}

/* ========================================
   11. FOLLOW OUR JOURNEY
   ======================================== */
.follow-our-journey {
  background: var(--gray-50);
  padding: 60px 0;
  text-align: center;
}

.follow-our-journey .section-header {
  margin-bottom: 36px;
  padding: 0 24px;
}

.follow-our-journey .section-header p {
  font-size: 1rem;
  color: var(--gray-400);
}

/* Desktop portrait grid — NO scroll, just flex row */
.follow-our-journey .image-grid {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 12px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 36px;
  flex-wrap: nowrap;
  padding: 0 48px;
  box-sizing: border-box;
}

/* Portrait card 3:4 — NO hover, NO click effects */
.follow-our-journey .image-item {
  flex: 1 1 0;
  min-width: 0;
  max-width: 280px;
  aspect-ratio: 3 / 4;
  border-radius: 0;
  overflow: hidden;
  background: var(--gray-900);
  position: relative;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transition: none;        /* no hover lift animation */
}
.follow-our-journey .image-item:hover,
.follow-our-journey .image-item:active,
.follow-our-journey .image-item:focus {
  transform: none !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12) !important;
}

/* Link: clickable but NO visual tap/hover effects */
.follow-our-journey .image-item a {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-tap-highlight-color: transparent; /* no blue flash on mobile tap */
}

.follow-our-journey .image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0;
  transition: none;            /* no zoom on hover */
}
.follow-our-journey .image-item:hover img,
.follow-our-journey .image-item:active img {
  transform: none !important;
}

/* Social buttons */
.follow-our-journey .social-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
  padding: 0 16px;
}

.follow-our-journey .social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 40px;
  text-decoration: none;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  white-space: nowrap;
}
.follow-our-journey .social-button.instagram {
  background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
  color: var(--white);
}
.follow-our-journey .social-button.instagram:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(220,39,67,0.35);
}
.follow-our-journey .social-button.facebook {
  background: #1877F2;
  color: var(--white);
}
.follow-our-journey .social-button.facebook:hover {
  background: #145DBF;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(24,119,242,0.35);
}

/* ── Tablet ── */
@media (max-width: 1024px) {
  .follow-our-journey             { padding: 48px 0; }
  .follow-our-journey .image-grid { padding: 0 32px; }
  .follow-our-journey .image-item { max-width: 220px; }
}

/* ── Mobile: horizontal scroll ── */
@media (max-width: 768px) {

  /* Section: remove desktop left indent — padding now lives on the grid */
  .follow-our-journey {
    padding: 40px 0;
  }

  .follow-our-journey .section-header {
    padding: 0 20px;
    margin-bottom: 28px;
  }

  /*
   * KEY FIX:
   * padding-left on a scroll container is ignored by browsers
   * for the first snap item unless we ALSO set scroll-padding-left.
   * We set both to the same value (20px) so the first card
   * always has a visible gap from the screen edge.
   */
  .follow-our-journey .image-grid {
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 20px;      /* ← tells snap WHERE to align first item */
    scrollbar-width: none;
    -ms-overflow-style: none;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 10px;
    /* top | right | bottom | LEFT */
    padding: 4px 20px 16px 20px;   /* 20px left gap before first card */
    margin: 0 0 28px 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .follow-our-journey .image-grid::-webkit-scrollbar { display: none; }

  .follow-our-journey .image-item {
    flex: 0 0 160px;
    min-width: 160px;
    max-width: 160px;
    scroll-snap-align: start;
    transform: none !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12) !important;
    transition: none !important;
  }

  .follow-our-journey .social-button { padding: 10px 22px; font-size: 0.9rem; }
}

/* ── Small mobile ── */
@media (max-width: 480px) {
  .follow-our-journey .image-grid {
    scroll-padding-left: 16px;
    padding: 4px 16px 14px 16px;  /* 16px left gap */
    gap: 8px;
  }
  .follow-our-journey .image-item {
    flex: 0 0 140px;
    min-width: 140px;
    max-width: 140px;
  }
}

/* ========================================
   12. STEAL DEAL OFFERS
   ======================================== */
.steal-deal-section {
  background: var(--white);
  padding: 2rem 0;
  width: 100%;
  overflow: hidden;
}
.steal-deal-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.steal-deal-slider-wrapper {
  width: 100%;
  position: relative;
}

.steal-deal-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.steal-deal-track {
  display: flex;
  transition: transform var(--transition-cubic);
  will-change: transform;
  touch-action: pan-y pinch-zoom;
}

.steal-deal-slide {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  overflow: hidden;
}

.steal-deal-slide a { display: block; width: 100%; }

.steal-deal-slide img,
.steal-deal-desktop-image,
.steal-deal-mobile-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.steal-deal-desktop-image { display: block; }
.steal-deal-mobile-image  { display: none;  }

.steal-deal-nav,
.steal-deal-prev,
.steal-deal-next { display: none !important; }

.steal-deal-dots {
  display: flex;
  margin-top: 1.25rem;
  justify-content: center;
  width: 100%;
}

@media (max-width: 767px) {
  .steal-deal-desktop-image { display: none !important; }
  .steal-deal-mobile-image  { display: block !important; }

  .steal-deal-section { padding: 1.5rem 0; }

  .steal-deal-container {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .steal-deal-slider-wrapper,
  .steal-deal-viewport,
  .steal-deal-track,
  .steal-deal-slide,
  .steal-deal-slide a,
  .steal-deal-slide img {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
  }

  .steal-deal-slide img {
    height: auto !important;
    display: block !important;
    object-fit: cover !important;
  }
}

@media (max-width: 479px) {
  .steal-deal-section { padding: 1.75rem 0; }
}

/* ========================================
   13. TESTIMONIALS
   ======================================== */
.testimonials-section {
  padding: 80px 20px;
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}

.testimonials-container { max-width: 1200px; margin: 0 auto; }

.testimonials-carousel-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto 32px;
  height: 420px;
}

.testimonials-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.testimonial-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transform: scale(0.93);
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.testimonial-slide.active {
  position: relative;
  opacity: 1;
  transform: scale(1);
  pointer-events: all;
  z-index: 2;
}

.testimonial-card-front {
  background: var(--white);
  border-radius: 24px;
  padding: 50px 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  border: 1px solid var(--gray-100);
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: box-shadow var(--transition-normal);
  position: relative;
}

.testimonial-card-front:hover {
  box-shadow: 0 20px 60px rgba(128,0,0,0.12);
}

.quote-icon {
  position: absolute;
  top: -20px; left: 40px;
  width: 48px; height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 18px;
  box-shadow: 0 8px 20px rgba(128,0,0,0.3);
}

.testimonial-rating {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 22px;
}

.testimonial-rating .fa-star { font-size: 18px; }
.testimonial-rating .fa-star.filled { color: #FFC107; }
.testimonial-rating .fa-star.empty  { color: var(--gray-200); }

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4B5563;
  text-align: center;
  margin-bottom: 28px;
  font-style: italic;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.author-photo {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
}

.author-photo-placeholder {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
}

.author-info h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 3px;
}

.author-location {
  font-size: 0.875rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 5px;
}

.author-location i { color: var(--primary); font-size: 0.825rem; }

.testimonial-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-normal);
  color: var(--gray-400);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.testimonial-nav:hover {
  background: var(--primary); border-color: var(--primary); color: var(--white);
  transform: translateY(-50%) scale(1.08);
}

.testimonial-prev { left: -70px; }
.testimonial-next { right: -70px; }
.testimonial-dots { margin-top: 36px; }

@media (max-width: 1024px) {
  .testimonial-prev { left: 10px; }
  .testimonial-next { right: 10px; }
}

@media (max-width: 768px) {
  .testimonials-section { padding: 40px 16px; }
  .testimonials-carousel-wrapper { height: auto; min-height: unset; margin-bottom: 24px; }
  .testimonials-carousel { height: auto; }
  .testimonial-slide { position: relative; top: auto; left: auto; width: 100%; height: auto; }
  .testimonial-slide:not(.active) { display: none; }
  .testimonial-card-front { padding: 32px 20px; height: auto; }
  .testimonial-text { font-size: 1rem; }
  .author-photo { width: 48px; height: 48px; }
}

@media (max-width: 480px) {
  .testimonials-section { padding: 50px 12px; }
  .testimonial-card-front { padding: 32px 18px; }
  .testimonial-text { font-size: 0.95rem; }
  .testimonial-author { flex-direction: column; text-align: center; }
  .author-info { text-align: center; }
  .author-location { justify-content: center; }
  .testimonial-prev, .testimonial-next { display: none; }
}

/* ========================================
   14. FAQ SECTION
   ======================================== */
.faq-section {
  padding: 80px 20px;
  background: var(--white);
}

.faq-container {
  max-width: 860px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.faq-header p {
  font-size: 1rem;
  color: var(--gray-400);
  max-width: 560px;
  margin: 8px auto 0;
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--gray-200);
}

.faq-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--gray-200);
  border-radius: 0;
  overflow: visible;
  transition: none;
  box-shadow: none !important;
}

.faq-item.active {
  border-color: var(--gray-200);
  box-shadow: none !important;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  cursor: pointer;
  background: transparent;
  transition: none;
  position: relative;
  gap: 16px;
}

.faq-question:hover { background: transparent; }
.faq-item.active .faq-question { background: transparent; }
.faq-item.active .faq-question:hover { background: transparent; }

.faq-question-text {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  flex: 1;
  line-height: 1.5;
}

.faq-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 0;
  flex-shrink: 0;
  position: relative;
}

.faq-icon i { display: none !important; }

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gray-900);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.2s ease;
}

.faq-icon::before {
  width: 16px; height: 2px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px; height: 16px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
}

.faq-item.active .faq-icon::before,
.faq-item.active .faq-icon::after { background: var(--primary); }

.faq-item.active .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

.faq-icon .fa-plus  { display: none !important; }
.faq-icon .fa-minus { display: none !important; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer { max-height: 800px; }

.faq-answer-content {
  padding: 0 0 24px 0;
  color: #4B5563;
  border-top: none;
  line-height: 1.8;
  font-size: 0.95rem;
}

.faq-cta {
  text-align: center;
  margin-top: 60px;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.faq-cta h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.faq-cta p {
  color: var(--gray-400);
  margin-bottom: 22px;
  font-size: 1rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.faq-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 40px;
  background: var(--black);
  color: var(--white);
  border-radius: 0;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
  letter-spacing: 0.3px;
}

.faq-cta-btn:hover { background: #333333; transform: translateY(-2px); }

.faq-question:focus-visible,
.faq-cta-btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .faq-section { padding: 60px 16px; }
  .faq-question { padding: 24px 0; }
  .faq-question-text { font-size: 0.95rem; }
  .faq-answer-content { padding: 0 0 20px 0; }
  .faq-cta { margin-top: 48px; }
  .faq-cta h3 { font-size: 1.5rem; }
  .faq-cta-btn { display: block; width: 100%; text-align: center; padding: 15px 24px; }
}

@media (max-width: 480px) {
  .faq-question { padding: 20px 0; }
  .faq-cta-btn { padding: 14px 20px; font-size: 0.95rem; }
}

/* ========================================
   15. PRODUCT CARDS — Typography overrides
   ======================================== */
.product-card,
.card--product,
.grid__item,
.product-item,
[class*="product-card"],
[class*="ProductCard"] {
  font-family: var(--font-body);
}

.product-card__title, .card__heading, .card__heading a,
.card__heading h2, .card__heading h3, .card__heading h4,
.product-item__title, .product__title, .product__title h1,
.product__title h2, [class*="product-title"], [class*="ProductTitle"],
.card--product .card__heading, .card--product h2,
.card--product h3, .card--product h4,
.grid__item .card__heading, .grid__item h2, .grid__item h3,
.grid-product__title, .product-card h2, .product-card h3,
.product-card h4 {
  font-family: 'Poppins', -apple-system, sans-serif !important;
  font-weight: 700 !important;
  font-size: 1.05rem !important;
  color: var(--gray-900);
  line-height: 1.35;
}

.product-card__price, .price, .price__regular, .price__sale,
.price-item, .price-item--regular, .price-item--sale,
[class*="product-price"], [class*="ProductPrice"] {
  font-family: 'Poppins', -apple-system, sans-serif !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  color: var(--gray-900);
}

/* ========================================
   16. PERFORMANCE & ACCESSIBILITY
   ======================================== */
.ann-track,
.reels-track,
.steal-deal-track { will-change: transform; }

@media (prefers-contrast: high) {
  .reel-card, .collection-card { border: 2px solid var(--gray-900); }
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ========================================
   17. SHOP BY BUDGET
   ======================================== */
.shop-by-budget {
  padding: 56px 0;
  background: #faf6f1;
}
.sbb-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.sbb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.sbb-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  text-decoration: none;
  background: #800000;
  cursor: pointer;
  padding: 18% 10% 14%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 20px rgba(128,0,0,0.20);
  box-sizing: border-box;
}
.sbb-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(128,0,0,0.32);
}
.sbb-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  text-align: center;
  width: 100%;
  flex: 1;
}
.sbb-under {
  font-family: 'Questrial', sans-serif;
  font-size: clamp(0.9rem, 2.2vw, 1.4rem);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  display: block;
  line-height: 1.3;
  margin-bottom: 2px;
}
.sbb-price {
  font-family: 'Questrial', sans-serif;
  font-size: clamp(1.8rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  display: block;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.sbb-arrow {
  width: clamp(36px, 6vw, 52px);
  height: clamp(36px, 6vw, 52px);
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease, background 0.2s ease;
  margin-top: 8%;
}
.sbb-arrow svg {
  width: clamp(14px, 2.2vw, 22px);
  height: clamp(14px, 2.2vw, 22px);
  fill: none;
  stroke: #800000;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sbb-card:hover .sbb-arrow {
  background: #fff;
  transform: scale(1.08);
}

@media (max-width: 1024px) {
  .sbb-grid { gap: 16px; }
}
@media (max-width: 768px) {
  .shop-by-budget { padding: 36px 0; }
  .sbb-inner      { padding: 0 14px; }
  .sbb-grid       { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .sbb-card       { border-radius: 20px; padding: 18% 10% 14%; }
  .sbb-under      { font-size: 5.5vw; letter-spacing: 0.12em; }
  .sbb-price      { font-size: 11vw; }
  .sbb-arrow      { width: 11vw; height: 11vw; margin-top: 6%; }
  .sbb-arrow svg  { width: 5vw; height: 5vw; }
}
@media (max-width: 480px) {
  .sbb-inner      { padding: 0 10px; }
  .sbb-grid       { gap: 10px; }
  .sbb-card       { border-radius: 16px; padding: 16% 10% 12%; }
  .sbb-under      { font-size: 5.5vw; }
  .sbb-price      { font-size: 11.5vw; }
  .sbb-arrow      { width: 12vw; height: 12vw; }
  .sbb-arrow svg  { width: 5.5vw; height: 5.5vw; }
}

/* ── Trust Badges — FINAL CLEAN VERSION ── */
.trust-badges-section {
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  padding: 40px 0;
  box-sizing: border-box;
  overflow: hidden;
}

.trust-badges-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  box-sizing: border-box;
}

.trust-badge-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  position: relative;
  box-sizing: border-box;
}

.trust-badge-item + .trust-badge-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 44px;
  background: #e5e7eb;
}

.trust-badge-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #800000;
}

.trust-badge-icon svg {
  width: 100%;
  height: 100%;
}

.trust-badge-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.trust-badge-title {
  font-size: 13px;
  font-weight: 600;
  color: #0a0a0a;
  line-height: 1.3;
}

.trust-badge-desc {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.5;
}

/* ── Tablet 1024px: 2×2 grid ── */
@media (max-width: 1024px) {
  .trust-badges-container {
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
    max-width: 100%;
  }

  .trust-badge-item {
    flex-direction: row;
    align-items: center;
    padding: 24px 20px;
    gap: 12px;
  }

  .trust-badge-item + .trust-badge-item::before {
    display: none;
  }

  /* vertical divider: right edge of left column items */
  .trust-badge-item:nth-child(odd)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: #e5e7eb;
  }

  /* horizontal divider: bottom of top row */
  .trust-badge-item:nth-child(1),
  .trust-badge-item:nth-child(2) {
    border-bottom: 1px solid #e5e7eb;
  }
}

/* ── Mobile 768px ── */
@media (max-width: 768px) {
  .trust-badges-section {
    padding: 28px 0;
  }

  .trust-badges-container {
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
    width: 100%;
  }

  .trust-badge-item {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 20px 8px;
    gap: 8px;
    border: none;
    width: 100%;
  }

  /* override any nth-of-type from old CSS */
  .trust-badge-item:nth-of-type(1),
  .trust-badge-item:nth-of-type(2),
  .trust-badge-item:nth-of-type(3),
  .trust-badge-item:nth-of-type(4) {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 8px;
    border: none;
  }

  .trust-badge-item + .trust-badge-item::before {
    display: none;
  }

  /* vertical center divider via ::after on odd items */
  .trust-badge-item:nth-child(odd)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: #e5e7eb;
  }

  /* horizontal divider top row */
  .trust-badge-item:nth-child(1),
  .trust-badge-item:nth-child(2) {
    border-bottom: 1px solid #e5e7eb;
  }

  .trust-badge-item:nth-child(3),
  .trust-badge-item:nth-child(4) {
    border-bottom: none;
  }

  .trust-badge-icon {
    width: 36px;
    height: 36px;
    margin: 0 auto;
  }

  .trust-badge-title { font-size: 12px; }
  .trust-badge-desc  { font-size: 11px; }
}

/* ── Small mobile 480px ── */
@media (max-width: 480px) {
  .trust-badges-section { padding: 22px 0; }

  .trust-badge-item,
  .trust-badge-item:nth-of-type(1),
  .trust-badge-item:nth-of-type(2),
  .trust-badge-item:nth-of-type(3),
  .trust-badge-item:nth-of-type(4) {
    padding: 16px 6px;
  }

  .trust-badge-icon { width: 30px; height: 30px; }
  .trust-badge-title { font-size: 11px; }
  .trust-badge-desc  { font-size: 10px; }
}

/* ── 375px ── */
@media (max-width: 375px) {
  .trust-badge-item,
  .trust-badge-item:nth-of-type(1),
  .trust-badge-item:nth-of-type(2),
  .trust-badge-item:nth-of-type(3),
  .trust-badge-item:nth-of-type(4) {
    padding: 14px 4px;
  }

  .trust-badge-icon { width: 26px; height: 26px; }
  .trust-badge-title { font-size: 10px; }
  .trust-badge-desc  { font-size: 9.5px; }
}