/* =====================================
   ALUMINATE LIFE - STYLE.CSS PART 1
   Global + Header + Hero + Travel
   Empower + Marquee Sections
===================================== */

:root {
  --primary-red: #b31942;
  --primary-blue: #0a3161;
  --cream: #fff9f2;
  --light-cream: #fff7ed;
  --soft-green: #cedfad;
  --lime: #f7ff8c;
  --footer-bg: #f4f0e7;
  --black: #111111;
  --white: #ffffff;
}

/* =====================================
   RESET
===================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: "Archivo", sans-serif;
  background: #fff9f2;
  color: #111;
  overflow-x: clip;
  width: 100%;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

section {
  position: relative;
}

/* =====================================
   TYPOGRAPHY
===================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Libre Bodoni", serif;
  font-weight: 500;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 72px;
  line-height: 1;
}

h2 {
  font-size: 58px;
  line-height: 1.1;
}

p {
  font-size: 16px;
  line-height: 1.8;
}

/* =====================================
   BUTTONS
===================================== */

.btn-primary-custom {
  background: #fff;
  color: #000;

  border: none;
  border-radius: 50px;

  padding: 15px 38px;

  font-size: 16px;
  font-weight: 600;

  transition: 0.3s;
}

.btn-primary-custom:hover {
  background: var(--primary-red);
  color: var(--white);
}

.hero-tag {
  width: auto;
}

.btn-aluminate {
  background: #fff;
  color: #0a3161;
  border-radius: 50px;
  padding: 14px 32px;
  font-weight: 600;
  border: none;
}

.btn-aluminate:hover {
  background: #f5f5f5;
}

.btn-light-pill {
  background: #fff;
  color: #000;

  border: none;
  border-radius: 50px;

  padding: 15px 35px;

  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-light-pill:hover {
  background: var(--primary-red);
  color: var(--white);
}

.travel-section .btn-light-pill:hover {
  background: var(--primary-blue);
  color: var(--white);
}

.btn-dark-custom {
  display: inline-block;
  background: #fff !important;
  color: #000;
  border: none;
  border-radius: 50px;
  padding: 15px 35px;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none;
}

.btn-dark-custom:hover {
  display: inline-block;
  background: #fff !important;
  color: #000;
  border: none;
  border-radius: 50px;
  padding: 15px 35px;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none;
}

/* =====================================
   TOP ANNOUNCEMENT BAR
===================================== */

/* Top Announcement Bar */
.top-bar {
  width: 100%;
  height: 50px;
  background: #b31942;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-weight: 700;
}

/* Marquee */
.top-bar-marquee {
  display: flex;
  align-items: center;
  white-space: nowrap;
  width: max-content;

  font-family: "Archivo", sans-serif;
  font-style: normal;

  font-size: 18px;
  line-height: 20px;
  color: #ffffff;

  animation: marquee 30s linear infinite;
}

/* Pause on hover */
.top-bar:hover .top-bar-marquee {
  animation-play-state: paused;
}

/* Text */
.top-bar-marquee span:not(.star) {
  display: inline-flex;
  align-items: center;
  flex: none;
  padding: 0;
}

/* Star */
.top-bar-marquee .star {
  width: 22px;
  height: 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin: 0 18px;

  flex: none;
  flex-grow: 0;
}

.top-bar-marquee .star img {
  object-fit: contain;
}

/* Infinite marquee */
@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* offcanvas */
.offcanvas-header {
  background-color: #a6842e;
  color: white;
  height: 52px;
}
.offcanvas_close {
  color: white;
  border: 0;
  background-color: #a6842e;
}
.offcanvas-item a {
  border-bottom: 1px solid rgba(0, 0, 0, 0.123);
}
.offcanvas-item .form-select {
  border-bottom: 1px solid rgba(0, 0, 0, 0.123) !important;
}

.offcanvas-header.store h5 {
  font-size: 20px;
  font-weight: 600;
}

.offcanvas-title {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    "Open Sans",
    "Helvetica Neue",
    sans-serif;
}

/* offcanvas */

/* =====================================
   HERO SECTION
===================================== */

.hero-section {
  background: #0a3161;
  /* height: 720px; */
}

.hero-content {
  height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: url(hero-banner.webp) center center / cover no-repeat;
    /* padding: 130px; */
    justify-content: center;
}

.hero-tag {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

  padding: 10px 14px;
  gap: 10px;

  height: 49px;

  background: #b31936;
  border: none;
  border-radius: 52px;

  font-family: "Archivo", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 29px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 30px;
  flex: none;
  flex-grow: 0;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.hero-tag:hover {
  background: var(--primary-blue);
  color: var(--white);
}

.text-gold {
  color: #f5d061;
}

.hero-title {
  max-width: 542px;
  margin: 0 auto;

  font-family: "Libre Bodoni", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 57px;

  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
}

.hero-title span {
  color: #e4b84c;
  /* Gold color */
}

.hero-content p {
  width: 434px;
  max-width: 100%;
  margin: 24px auto 0;
  padding: 0;
  font-family: "Archivo", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 29px;
  text-align: center;
  color: #ffffff;
  flex: none;
  flex-grow: 0;
  box-sizing: border-box;

  margin-bottom: 40px;
}

.hero-image img {
  width: 100%;
  height: 720px;
  object-fit: cover;
}

/* =====================================
   MARQUEE STRIP
===================================== */
/* =========================
   Ticker Strip
========================= */

.ticker-strip {
  width: 100%;
  height: 82px;
  background: #fff9f2;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ticker {
  width: 100%;
  overflow: hidden;
}

.ticker-content {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  white-space: nowrap;

  animation: marquee 300s linear infinite;
  will-change: transform;
}

/* Pause animation on hover */
.ticker-strip:hover .ticker-content {
  animation-play-state: paused;
}

/* Text */

.ticker-content span:not(.star-icon) {
  font-family: "Archivo", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  color: #000000;

  display: flex;
  align-items: center;
  flex: none;
}

/* Star Icon */

.star-icon {
  width: 22px !important;
  height: 22px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.star-icon img {
  width: 22px !important;
  height: 22px !important;
  min-height: 0 !important;
  max-width: none !important;
  max-height: none !important;
  display: block !important;
  object-fit: contain;
}

/* Animation */

@keyframes tickerScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* =========================
   Responsive
========================= */

/* =====================================
   TRAVEL SECTION
===================================== */

.travel-section {
  background: #b31942;
}

.travel-image {
  overflow: hidden;
}

.travel-image img {
  width: 100%;
  height: 720px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.travel-image:hover img {
  transform: scale(1.05);
}

.travel-content {
  min-height: 720px;

  background: #b31942;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  padding: 80px;
  border-top: solid 1px black;
}

.section-tag {
  justify-content: center;
  align-items: center;

  padding: 8px 12px;

  background: #f7ff8c;
  border: 1px solid #000000;
  border-radius: 113px;

  font-family: "Archivo", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 29px;

  text-align: center;
  text-transform: uppercase;
  color: #000000;

  box-sizing: border-box;
  transition: all 0.3s ease;
}

.section-tag:hover {
  background: #000000;
  color: #ffffff;
}

.travel-content h2 {
  width: 473px;
  max-width: 100%;
  margin: 0 auto;

  font-family: "Libre Bodoni", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 42px;
  line-height: 50px;
  text-align: center;
  color: #ffffff;
  padding-top: 20px;
}

.travel-content h2 i {
  font-style: italic;
  font-weight: 400;
}

.travel-content p {
  width: 473px;
  max-width: 100%;

  margin: 0 auto 35px;
  padding: 0;

  font-family: "Archivo", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;

  text-align: center;
  color: #ffffff;

  flex: none;
  align-self: stretch;
  flex-grow: 0;

  box-sizing: border-box;
  opacity: 0.9;
  margin-bottom: 35px;
}

/* =====================================
   YELLOW STRIP
===================================== */

/* Yellow Strip */

.yellow-strip {
  top: 0;
  left: 0;
  transform: translateX(-50%);

  width: 100%;
  height: 50px;

  background: #f7ff8c;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 10;
}

/* Ticker */

.ticker {
  width: 100%;
  overflow: hidden;
}

.ticker-content {
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
  width: max-content;

  animation: tickerScroll 15s linear infinite;
}

.yellow-strip:hover .ticker-content {
  animation-play-state: paused;
}

/* Text */

.ticker-content span:not(.star-icon) {
  font-family: "Archivo", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  color: #000000;

  flex-shrink: 0;
}

/* Star */

.star-icon {
  width: 22px;
  height: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

.star-icon img {
  width: 22px;
  height: 22px;
  min-height: 0 !important;
  display: block;
  object-fit: contain;
}

/* Animation */

@keyframes tickerScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Responsive */

/* =====================================
   EMPOWER SECTION
===================================== */

.empower-section {
  background: #0a3161;
}

.empower-content {
  min-height: 670px;

  background: #0a3161;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  padding: 80px;
}

.empower-content h2 {
  width: 360px;
  max-width: 100%;
  margin: 0 auto;

  font-family: "Libre Bodoni", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 42px;
  line-height: 50px;

  text-align: center;
  color: #ffffff;

  flex: none;
  order: 0;
  flex-grow: 0;
}

.empower-content h2 i {
  font-style: italic;
  font-weight: 400;
  color: #f7ff8c;
  /* Yellow highlight from Figma */
}

.empower-content p {
  width: 473px;
  max-width: 100%;

  margin: 24px 0;
  padding: 0;

  font-family: "Archivo", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;

  text-align: center;
  color: #ffffff;
}

.empower-section .col-lg-6 {
  overflow: hidden;
}

.empower-section img {
  width: 100%;
  height: 720px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.empower-section .col-lg-6:hover img {
  transform: scale(1.05);
}

/* =====================================
   FEATURE STRIP
===================================== */

/* =====================================
   CRYSTAL SECTION
===================================== */

.crystal-section {
  background: #000;
  color: #fff;

  /* min-height: 600px; */

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  overflow: hidden;
}

/* .crystal-section::before {
  content: "";

  position: absolute;
  inset: 0;

  background: url("crystal-bg.webp") top center/cover no-repeat;
  z-index: 0;
} */

.crystal-section .overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.crystal-section .container {
  position: relative;
  z-index: 2;
}

.crystal-section h2 {
  width: 796px;
  max-width: 100%;
  margin: 0 auto;

  font-family: "Libre Bodoni", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 48px;
  line-height: 48px;

  text-align: center;
  color: #ffffff;

  flex: none;
  order: 0;
  flex-grow: 0;

  box-sizing: border-box;
}

.crystal-section h2 i {
  font-style: italic;
  font-weight: 400;
  color: #f7ff8c;
  /* Highlight color */
}

.crystal-section p {
  width: 810px;
  max-width: 100%;

  margin: 24px 0;
  padding: 0;

  font-family: "Archivo", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 39px;

  text-align: center;
  color: #ffffff;

  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;

  box-sizing: border-box;
}

/* =====================================
   FREEDOM SECTION
===================================== */

.freedom-section {
  padding-top: 30px;
  padding-bottom: 30px;
}

.freedom-title {
  width: 348px;
  max-width: 100%;

  margin: 0;
  padding: 0;

  font-family: "Libre Bodoni", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 45px;
  line-height: 44px;

  color: #000000;

  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;

  box-sizing: border-box;
}

.freedom-title span {
  display: block;
  font-style: italic;
  color: #b31942;
  /* Accent color */
}

.products-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: slideProducts 15s linear infinite;
}

.products-track:hover {
  animation-play-state: paused;
}

.product-slide-item {
  width: 220px;
  flex-shrink: 0;
  margin: 0 10px;
}

.star-sep {
  font-size: 45px;
  flex-shrink: 0;
  margin: 0 10px;
}

.star-sep.blue {
  color: #0a3161;
}

.star-sep.red {
  color: #c33857;
}

@keyframes slideProducts {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.product-mini {
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.product-mini:hover {
  transform: translateY(-5px);
}

.product-mini img {
  width: 180.53px;
  height: 232.33px;
  object-fit: contain;
  margin: auto;
  transition: transform 0.4s ease;
}

.product-mini:hover img {
  transform: scale(1.05);
}

.product-mini h6 {
  margin: 0;
  padding: 0;

  font-family: "Archivo", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 56px;

  text-align: center;
  color: #000000;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  flex: none;
  order: 0;
  flex-grow: 0;
  box-sizing: border-box;
  transition: color 0.3s ease;
}

.product-mini:hover h6 {
  color: var(--primary-red);
}

.product-mini h6::after {
  content: "";
  display: inline-block;

  width: 22px;
  height: 22px;

  background: url("Arrow right-circle.png") no-repeat center;
  background-size: contain;

  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.product-mini:hover h6::after {
  transform: translateX(4px);
}

/* =====================================
   SCIENCE SECTION
===================================== */

.science-section {
  background: #ffc4cd;
  color: #fff;
}

.science-section img {
  width: 100%;
  height: 678px;

  object-fit: cover;
}

.science-content {
  min-height: 677px;
  background: #ffc4cd;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
  border-top: solid 1px black;
  border-bottom: solid 1px black;
}

.video-hover-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
}

.video-hover-container .poster-img {
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.video-hover-container .hover-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.video-hover-container .video-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  color: rgba(255, 255, 255, 0.9);
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
  /* Let the container handle clicks */
  z-index: 2;
}

.video-hover-container:hover .video-icon {
  opacity: 1;
}

.video-hover-container.started .hover-video {
  opacity: 1;
}

/* Removed .playing .video-icon opacity: 0 so it stays visible */

.science-heading {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 15px;
}

.science-heading h2 {
  margin: 0;

  font-family: "Libre Bodoni", serif;
  font-style: normal;
  font-weight: 500;
  font-size: 42px;
  line-height: 50px;
  text-align: center;
  color: #000000;
}

.science-heading h2 span {
  display: block;
  color: #000000;
}

.science-heading h2 em {
  font-style: italic;
  color: #d61f82;
  /* Pink */
  font-weight: 500;
}

.science-content p {
  width: 473px;
  max-width: 100%;

  margin: 1px auto 1px;
  padding: 0;

  font-family: "Archivo", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;

  text-align: center;
  color: #000000;

  box-sizing: border-box;
}

.science-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 10px;

  width: 100%;
  max-width: 473px;
  margin: 30px auto 0;
}

.science-tags .tag-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;

  padding: 6px 14px;

  background: #ffffff;
  border: 1px solid #000000;
  border-radius: 50px;

  font-family: "Archivo", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 29px;

  text-align: center;
  text-transform: uppercase;
  text-decoration: none;

  color: #000000;

  transition: all 0.3s ease;
}

.science-tags .tag-btn:hover {
  background: #000000;
  color: #ffffff;
}

/* =====================================
   ZODIAC SECTION
===================================== */
/* ===========================
   Zodiac Section
=========================== */

.zodiac-section {
  background: #fff7ed;
  padding: 70px 0 0;
  overflow: hidden;
}

/* ===========================
   Heading
=========================== */

.zodiac-heading {
  text-align: center;
  margin-bottom: 50px;
}

.zodiac-heading h2 {
  margin: 0;
  font-family: "Libre Bodoni", serif;
  font-weight: 500;
  font-size: 42px;
  line-height: 50px;
  color: #000;
}

.zodiac-heading h2 span {
  font-style: italic;
  color: #b31942;
}

/* ===========================
   Slider
=========================== */

.slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.zodiac-slider-track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;

  scrollbar-width: none;
  -ms-overflow-style: none;
}

.zodiac-slider-track::-webkit-scrollbar {
  display: none;
}

/* ===========================
   Item
=========================== */

.zodiac-item {
  flex: 0 0 33.333333%;
  min-width: 33.333333%;
  margin: 0;
  padding: 0;
}

/* ===========================
   Card
=========================== */

.zodiac-card {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  background: #000;
}

.zodiac-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.zodiac-card:hover img {
  transform: scale(1.05);
}

/* ===========================
   Overlay
=========================== */

.zodiac-overlay {
  position: absolute;
  left: 0;
  bottom: 0;

  width: 100%;

  padding: 30px;

  display: flex;
  justify-content: space-between;
  align-items: flex-end;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
}

/* ===========================
   Text
=========================== */

.zodiac-text h4 {
  font-family: "Libre Bodoni", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;

  text-transform: uppercase;
  text-align: left;

  color: #ffffff;
}

.zodiac-text p {
  margin: 8px 0 0;
  padding: 0;

  width: 398px;
  max-width: 100%;
  height: 20px;

  font-family: "Archivo", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;

  color: #ffffff;
  text-align: left;

  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;

  box-sizing: border-box;
}

/* ===========================
   Card Arrow
=========================== */

.card-arrow {
  width: 32px;
  height: 32px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #fff;
  border-radius: 50%;

  color: #000;
  text-decoration: none;

  transition: 0.3s;
}

.card-arrow:hover {
  background: #b31942;
  color: #fff;
}

/* ===========================
   Navigation Buttons
=========================== */

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 52px;
  height: 52px;

  border: 0;
  border-radius: 50%;

  background: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);

  z-index: 100;
  cursor: pointer;
  transition: all 0.3s ease;
}

.prev-btn {
  left: 18px;
}

.next-btn {
  right: 18px;
}

.slider-btn i {
  font-size: 20px;
  color: #000;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: #b31942;
}

.slider-btn:hover i {
  color: #fff;
}

/* ===========================
   Tablet
=========================== */

/* ===========================
   Mobile
=========================== */

/* =====================================
   SUMMER COLLECTION
===================================== */

.summer-banner {
  /* height: 696px; */
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: hidden;
}

/* .summer-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("summer-banner.webp") center center/cover no-repeat;
  transition: transform 0.8s ease;
  z-index: 1;
} */

.summer-banner:hover::before {
  transform: scale(1.05);
}

.summer-content {
  position: absolute;
  z-index: 2;
  padding: 40px 5%;
  max-width: 600px;
}

.summer-content h1 {
  font-family: "Libre Bodoni", serif;
  font-style: normal;
  font-weight: 500;
  font-size: 42px;
  line-height: 50px;

  color: #ffffff;
}

.summer-content h1 em {
  font-style: italic;
  font-weight: 500;
  color: #ffffff;
  /* Highlight color */
}

.summer-content p {
  padding: 0;

  max-width: 100%;

  font-family: "Archivo", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;

  color: #ffffff;
}

/* =====================================
   GIFT CARD SECTION
===================================== */

/* ==========================
   Gift Banner
========================== */

.gift-banner {
  width: 100%;
  background: #cedfad;
}

.gift-content {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.gift-image-mobile {
  display: none;
}

/* ==========================
   Text
========================== */

.gift-text {
  flex: 1;
}

.gift-text h2 {
  margin: 0;

  font-family: "Libre Bodoni", serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(20px, 2.5vw, 32px);
  line-height: 153%;
  white-space: nowrap;

  color: #000;
}

.gift-text h2 span {
  font-style: italic;
  color: #b31942;
}

.gift-text p {
  margin: 4px 0 0;

  font-family: "Archivo", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 153%;

  color: #4a4a4a;
}

/* ==========================
   Image
========================== */

.gift-image {
  flex-shrink: 1;
  min-width: 150px;
  justify-content: center;
}

.gift-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================
   Button
========================== */

.gift-btn {
  flex-shrink: 0;
}

.gift-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  width: 200px;
  height: 56px;

  background: #000;
  border-radius: 40px;

  text-decoration: none;

  font-family: "Archivo", sans-serif;
  font-size: 16px;
  font-weight: 500;

  color: #fff;

  transition: 0.3s;
}

.gift-btn a:hover {
  background: #b31942;
}

.gift-btn i {
  font-size: 16px;
}

/* ==========================
   Tablet
========================== */

/* ==========================
   Mobile
========================== */

/* =====================================
   TESTIMONIAL SECTION
===================================== */

.recovery-section {
  background: #fdf9f2;

  position: relative;
  overflow: hidden;
}

.logo-side {
  min-height: 400px;
}

.logo-side img {
  max-width: 420px;
}

.content-side {
  margin: 0px auto;

  width: 459px;
  max-width: 100%;
  min-height: 184px;

  font-family: "Archivo", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 23px;
  /* 144% */

  text-align: center;
  color: #000000;

  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;

  box-sizing: border-box;
}

.content-side h3 {
  width: 459px;
  max-width: 100%;

  font-family: "Archivo", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 23px;
  /* 144% */

  text-align: center;
  color: #000000;
}

.content-side p {
  font-family: "Archivo", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  /* 144% */

  text-align: center;
  color: #000000;
}

.content-side .read-more {
  display: inline-block;

  width: 459px;
  max-width: 100%;
  height: 23px;

  margin: 20px 0 0;
  padding: 0;

  font-family: "Archivo", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 23px;

  text-align: center;
  text-decoration: underline;

  color: #000000;

  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;

  box-sizing: border-box;
  transition: 0.3s ease;
}

.content-side .read-more:hover {
  color: #b31942;
  text-decoration: underline;
}

/* Center Divider */

/* Arrows */

.slider-arrow {
  position: absolute;
  top: 50%;

  transform: translateY(-50%);

  width: 56px;
  height: 56px;

  border: 1px solid #999;
  border-radius: 50%;

  background: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 10;
}

.arrow-left {
  left: 20px;
}

.arrow-right {
  right: 20px;
}

.slider-arrow i {
  font-size: 20px;
}

/* Responsive */

/* =====================================
   DARK SECTION HELPERS
===================================== */

.bg-black {
  background: #000;
}

.bg-dark-soft {
  background: #111;
}

.text-muted-light {
  color: #cfcfcf;
}

/* =====================================
   PRODUCT IMAGE STANDARDIZATION
===================================== */

.product-standard img,
.summer-product img {
  width: 100%;
  height: 420px;

  object-fit: cover;
}

/* =====================================
   COMMON SECTION SPACING
===================================== */

.section-xl {
  padding: 140px 0;
}

.section-lg {
  padding: 120px 0;
}

.section-md {
  padding: 90px 0;
}

/* =====================================
   ALUMINATE LIFE - STYLE.CSS PART 3
   Signature Collection
   Social Feed
   Newsletter
   Footer
   Responsive Design
===================================== */

/* =====================================
   SIGNATURE COLLECTION
===================================== */

/* SECTION */

.signature-section {
  background: #fdf9f2;
  overflow: hidden;
}

/* LEFT SIDE */

.signature-image {
  background: #b51645;
  min-height: 550px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 60px;
}

.signature-image img {
  width: 100%;
  max-width: 574px;
  display: block;
  height: auto;
  transition: transform 0.5s ease;
}

.signature-image:hover img {
  transform: scale(1.05);
}

/* RIGHT SIDE */

.signature-content {
  min-height: 550px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  padding: 60px;
}

/* TAG */

.collection-tag {
  margin-bottom: 15px;

  padding: 8px 12px;

  background: #f7ff8c;
  border: 1px solid #000000;
  border-radius: 113px;

  font-family: "Archivo", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 29px;

  text-align: center;
  text-transform: uppercase;
  text-decoration: none;

  color: #000000;
  transition: all 0.3s ease;
  cursor: default;
}

.collection-tag:hover {
  background: var(--primary-blue);
  color: #ffffff;
  border-color: var(--primary-blue);
}

.text-gold {
  color: #cba052;
}

/* =====================================
   TICKER STRIP
===================================== */

/* =====================================
   TRAVEL SECTION
===================================== */

/* HEADING */

.signature-content h2 {
  font-family: "Libre Bodoni", serif;
  font-style: normal;
  font-weight: 500;
  font-size: 42px;
  line-height: 50px;

  text-align: center;
  color: #000000;
}

.signature-content h2 span {
  font-style: italic;
  font-weight: 500;
  color: #b31942;
  /* Highlight color */
}

/* TEXT */

.signature-content p {
  max-width: 470px;

  margin: 15px 0 30px;

  font-family: "Archivo", sans-serif;
  font-size: 16px;
  line-height: 1.8;

  color: #222;
}

/* BUTTON */

.collection-btn {
  padding: 18px 30px;

  background: #0a3161;
  border-radius: 40px;

  font-family: "Archivo", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;

  text-align: center;
  text-decoration: none;

  color: #ffffff;
}

.collection-btn:hover {
  background: var(--primary-red);
  color: var(--white);
}

.collection-btn i {
  font-size: 14px;
}

/* RESPONSIVE */

/* =====================================
   SOCIAL FEED
===================================== */

/*==================================
TESTIMONIAL SECTION
==================================*/

.testimonial-section {
  background: #e5f1ce;

  padding: 60px 0;
}

.testimonial-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 90px;
}

/*==================================
LEFT GRID
==================================*/

.testimonial-video-wrapper {
  width: 100%;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  padding-top: 0px;
  padding-bottom: 0px;
  padding-right: 0px;
}

.video-gallery {
  width: 100%;
  max-width: 694px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.video-card {
  position: relative;
  overflow: hidden;
}

.video-card img {
  width: 100%;
  height: 292px;

  object-fit: cover;

  display: block;

  transition: 0.4s;
}

.video-card:hover img {
  transform: scale(1.05);
}

.video-card h6 {
  position: absolute;

  left: 16px;
  bottom: 16px;

  margin: 0;

  font-family: "Archivo", sans-serif;
  font-size: 16px;
  font-weight: 500;

  color: #fff;

  z-index: 2;
}

.video-card::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 100%;
  height: 120px;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

/*==================================
PLAY BUTTON
==================================*/

.play-btn {
  position: absolute;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  width: 52px;
  height: 52px;

  border-radius: 50%;

  background: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

  text-decoration: none;

  color: #000;

  z-index: 2;
}

.play-btn i {
  font-size: 22px;
}

/*==================================
RIGHT CONTENT
==================================*/

.testimonial-content {
  width: 100%;
  min-height: 550px;

  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  text-align: center;
  padding: 60px;
}

.testimonial-content h2 {
  margin: 0;

  width: 369px;

  font-family: "Libre Bodoni", serif;
  font-style: normal;
  font-weight: 500;
  font-size: 42px;
  line-height: 50px;

  text-align: center;

  color: #000;
}

.testimonial-content h2 span {
  color: #b31942;

  font-style: italic;
}

.testimonial-content p {
  margin: 18px 0 32px;

  width: 369px;

  font-family: "Archivo", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;

  text-align: center;
  text-transform: capitalize;

  color: #000;
}

/*==================================
BUTTON
==================================*/

.join-btn {
  display: flex;

  flex-direction: row;

  justify-content: center;

  align-items: center;

  padding: 18px 30px;

  gap: 5px;

  width: 193px;

  height: 56px;

  background: #b31942;

  border-radius: 40px;

  font-family: "Archivo", sans-serif;

  font-size: 16px;

  font-weight: 500;

  color: #fff;

  text-decoration: none;

  transition: all 0.3s ease;
}

.join-btn:hover {
  background: var(--primary-blue);

  color: #fff;
}

.join-btn i {
  font-size: 15px;
}

/*==================================
RESPONSIVE
==================================*/

/* =====================================
   NEWSLETTER
===================================== */

/* =====================================
   IMAGE SIZE STANDARDIZATION
===================================== */

.hero-image img,
.travel-image img,
.empower-section img,
.science-section img {
  width: 100%;

  object-fit: cover;
}

.signature-product img,
.summer-product img {
  width: 100%;
  height: 450px;

  object-fit: cover;
}

.social-grid img {
  width: 100%;
  height: 350px;

  object-fit: cover;
}

/* =====================================
   UTILITIES
===================================== */

.text-white {
  color: #fff !important;
}

.bg-black {
  background: #000 !important;
}

.bg-dark-soft {
  background: #111 !important;
}

.rounded-xl {
  border-radius: 20px;
}

.shadow-soft {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

/* =====================================
   TABLET
===================================== */

/* =====================================
   MOBILE
===================================== */

/* =====================================
   SMALL MOBILE
===================================== */

/* =====================================
   RECOVERY SECTION
===================================== */

.recovery-section .slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 1px solid #111;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  color: #111;
  font-size: 16px;
  transition: 0.3s;
}

.recovery-section .slider-arrow:hover {
  background: #111;
  color: #fff;
}

.recovery-section .arrow-left {
  left: 20px;
}

.recovery-section .arrow-right {
  right: 20px;
}

.recovery-section .logo-side {
  text-align: center;
  padding: 60px 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recovery-section .side-divider {
  position: absolute;
  right: -35px;
  /* Slight adjustment if needed, but 0 is usually fine */
  top: 57%;
  transform: translateY(-50%);
  z-index: 5;
  height: 115%;
}

.recovery-section .logo-side img {
  max-width: 293px;
}

.summer-product img,
.signature-product img {
  height: 300px;
}

.gift-card-banner::before {
  right: 10px;
  top: -10px;
  width: 60px;
  height: 40px;
}

.gift-card-banner::after {
  right: 40px;
  top: 20px;
  width: 50px;
  height: 30px;
}

.newsletter-section h2 {
  font-size: 42px;
}

.gift-section h2 {
  font-size: 42px;
}

.newsletter-form .row {
  row-gap: 15px;
}

/* =====================================
   SMALL MOBILE
===================================== */

/* =====================================
   RECOVERY SECTION
===================================== */

.recovery-section .slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 1px solid #111;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  color: #111;
  font-size: 16px;
  transition: 0.3s;
}

.recovery-section .slider-arrow:hover {
  background: #111;
  color: #fff;
}

.recovery-section .arrow-left {
  left: 20px;
}

.recovery-section .arrow-right {
  right: 20px;
}

.recovery-section .center-divider {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

/* =====================================
   MOOD SECTION
===================================== */
.mood-section {
  padding: 0;
  overflow: hidden;
}

.mood-section .video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 20px 20px 20px 0;
}

.mood-section .video-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 9/16;
}

.mood-section .video-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mood-section .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.9);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c33857;
  font-size: 20px;
  transition: 0.3s;
}

.mood-section .video-item:hover .play-btn {
  background: #c33857;
  color: #fff;
  transform: translate(-50%, -50%) scale(1.1);
}

.mood-section .video-item span {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
  z-index: 5;
}

/* Hide scrollbar for Webkit */
.zodiac-slider-track::-webkit-scrollbar,
.products-track::-webkit-scrollbar {
  display: none;
}

/* =====================================
   SPIN TO WIN BANNER
===================================== */
.spin-slide-wrapper {
  --primary-blue: #0c2c5c;
  --primary-red: #b31b2c;
  --bg-color: #d6c6b3;
  --text-dark: #333;

  height: 100%;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  /* Soft textured background from provided image */
  /* background: url("slider2.webp") center center/cover no-repeat; */
  overflow-x: hidden;
  color: var(--text-dark);
}

/* .spin-slide-wrapper .main-wrapper {
  height: 720px;
} */

/* -------------------------------------
   Left Content Styles
------------------------------------- */
.spin-slide-wrapper .left-content {
  position: relative;
  z-index: 10;
  padding-left: 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.spin-slide-wrapper .badge-tag {
  background-color: var(--primary-red);
  color: #ffffff;
  display: inline-block;
  padding: 2px 20px;
  border-radius: 30px;
  font-family: "Archivo", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 29px;
  transform: rotate(-10.51deg);
  margin-bottom: -15px;
  position: relative;
  z-index: 2;
  margin-left: 20px;
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.15);
}

.spin-slide-wrapper .main-heading {
  color: var(--primary-blue);
  margin-bottom: 25px;
}

.spin-slide-wrapper .main-heading .small-text {
  font-family: "Libre Bodoni", serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 41px;
  color: #000000;
}

.spin-slide-wrapper .large-text-wrapper {
  display: flex;
  align-items: baseline;
  line-height: 0.85;
  margin-top: 10px;
}

.spin-slide-wrapper .main-heading .large-text {
  font-family: "Libre Bodoni", serif;
  font-size: 268px;
  font-weight: 400;
  font-style: italic;
  line-height: 300px;
  color: #0a3161;
}

.spin-slide-wrapper .main-heading .dot {
  display: inline-block;
  width: 25px;
  height: 25px;
  background-color: var(--primary-blue);
  border-radius: 50%;
  margin-left: 0px;
}

.spin-slide-wrapper .description {
  font-family: "Archivo", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 29px;
  color: #000000;
  max-width: 350px;
  margin-bottom: 35px;
}

.spin-slide-wrapper .btn-spin-action {
  background-color: white;
  color: black;
  padding: 12px 35px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* Exact Desktop Positioning matching Figma */
@media (min-width: 992px) {
  .spin-slide-wrapper .left-content {
    position: relative;
    width: 550px;
    /* height: 450px; */
    /* display: block; */
    padding: 0;
    /* margin-top: 50px; */
  }

  .spin-slide-wrapper .badge-tag {
    position: absolute;
    left: 25px;
    top: 20px;
    margin: 0;
  }

  .spin-slide-wrapper .main-heading {
    margin: 0;
    position: static;
  }

  .spin-slide-wrapper .main-heading .small-text {
    position: absolute;
    width: 170px;
    left: 172.21px;
    top: 60.3px;
    margin: 0;
    text-align: left;
  }

  .spin-slide-wrapper .large-text-wrapper {
    position: absolute;
    left: 0px;
    top: 40.13px;
    margin: 0;
  }

  .spin-slide-wrapper .description {
    position: absolute;
    width: 335px;
    left: 215px;
    top: 288.13px;
    margin: 0;
    text-align: left;
  }

  
}

.spin-slide-wrapper .btn-spin-action:hover {
  background-color: var(--primary-red);
  color: var(--white);
}

/* -------------------------------------
   Right Content (Wheel) Styles
------------------------------------- */
.spin-slide-wrapper .right-content {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.spin-slide-wrapper .wheel-container {
  position: relative;
  width: 480px;
  height: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spin-slide-wrapper .wheel-outer-ring {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  /* Silver/metallic border effect */
  background: linear-gradient(135deg, #f0f0f0, #a0a0a0, #e0e0e0, #808080);
  padding: 12px;
  position: relative;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.25),
    inset 0 2px 5px rgba(255, 255, 255, 0.8);
  z-index: 5;
}

.spin-slide-wrapper .wheel-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.spin-slide-wrapper .wheel-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* 6 segments offset by 30deg to center the top segment */
  background: conic-gradient(
    from -30deg,
    var(--primary-red) 0deg 60deg,
    var(--primary-blue) 60deg 120deg,
    var(--primary-red) 120deg 180deg,
    var(--primary-blue) 180deg 240deg,
    var(--primary-red) 240deg 300deg,
    var(--primary-blue) 300deg 360deg
  );
  border-radius: 50%;
}

/* Subtle inner dividing lines */
.spin-slide-wrapper .wheel-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-conic-gradient(
    from -30deg,
    transparent 0,
    transparent calc(60deg - 2px),
    rgba(255, 255, 255, 0.3) calc(60deg - 2px),
    rgba(255, 255, 255, 0.3) 60deg
  );
  border-radius: 50%;
}

.spin-slide-wrapper .wheel-segment {
  position: absolute;
  width: 140px;
  height: 50%;
  left: 50%;
  top: 0;
  transform-origin: bottom center;
  /* Rotation based on index */
  transform: translateX(-50%) rotate(calc(var(--i) * 60deg));
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 30px;
  color: white;
  text-align: center;
  z-index: 2;
}

.spin-slide-wrapper .wheel-segment .icon-wrap {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.9);
}

.spin-slide-wrapper .wheel-segment span {
  font-size: 0.75rem;
  font-family: "Playfair Display", serif;
  letter-spacing: 1px;
  line-height: 1.4;
  text-transform: uppercase;
}

.spin-slide-wrapper .wheel-center-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  /* 3D button effect */
  background: radial-gradient(circle at 30% 30%, #ffffff, #dcdcdc, #a0a0a0);
  border-radius: 50%;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary-blue);
  letter-spacing: 1px;
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.4),
    inset 0 2px 4px white;
  border: 3px solid #ccc;
  cursor: pointer;
  transition: transform 0.1s;
}

.spin-slide-wrapper .wheel-center-btn:active {
  transform: translate(-50%, -50%) scale(0.95);
}

.spin-slide-wrapper .wheel-pointer {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 35px solid #dcdcdc;
  /* Outer silver triangle */
  z-index: 20;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.3));
}

.spin-slide-wrapper .wheel-pointer::after {
  content: "";
  position: absolute;
  top: -33px;
  left: -14px;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 25px solid #fff;
  /* Inner bright triangle for 3D */
}

/* -------------------------------------
   Stand Styles
------------------------------------- */
.spin-slide-wrapper .wheel-stand-pole {
  position: absolute;
  bottom: -10px;
  width: 160px;
  height: 25px;
  background: linear-gradient(to right, #999, #eee, #999);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  border-radius: 4px;
}

.spin-slide-wrapper .wheel-stand-base {
  position: absolute;
  bottom: -25px;
  width: 300px;
  height: 18px;
  background: linear-gradient(to right, #a0a0a0, #e0e0e0, #a0a0a0);
  border-radius: 8px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* -------------------------------------
   Responsive Design
------------------------------------- */
@media (max-width: 991px) {
  .spin-slide-wrapper .left-content {
    padding-left: 0;
    text-align: center;
    margin-bottom: 10px;
  }

  .spin-slide-wrapper .large-text-wrapper {
    justify-content: center;
  }

  .spin-slide-wrapper .description {
    margin: 0 auto 25px auto;
  }

  .spin-slide-wrapper .badge-tag {
    transform: rotate(-8deg) translateX(-20px);
    margin-bottom: -15px;
    margin-left: 0;
    display: inline-block;
  }
}

@media (max-width: 768px) {
  .spin-slide-wrapper .wheel-container {
    width: 380px;
    height: 380px;
    margin-top: 0;
  }

  .spin-slide-wrapper .wheel-segment {
    padding-top: 20px;
  }

  .spin-slide-wrapper .wheel-segment span {
    font-size: 0.65rem;
  }

  .spin-slide-wrapper .wheel-segment .icon-wrap {
    font-size: 1.4rem;
    margin-bottom: 8px;
  }

  .spin-slide-wrapper .main-heading .small-text {
    font-size: 2.2rem;
  }

  .spin-slide-wrapper .main-heading .large-text {
    font-size: 7.5rem;
  }

  .spin-slide-wrapper .wheel-stand-base {
    width: 250px;
  }
}

@media (max-width: 576px) {
  .spin-slide-wrapper .wheel-container {
    width: 300px;
    height: 300px;
  }

  .spin-slide-wrapper .wheel-segment {
    padding-top: 15px;
  }

  .spin-slide-wrapper .wheel-segment span {
    font-size: 0.55rem;
    line-height: 1.2;
  }

  .spin-slide-wrapper .wheel-segment .icon-wrap {
    font-size: 1.1rem;
    margin-bottom: 5px;
  }

  .spin-slide-wrapper .main-heading .large-text {
    font-size: 5.5rem;
  }

  .spin-slide-wrapper .wheel-center-btn {
    width: 70px;
    height: 70px;
    font-size: 0.9rem;
  }
}
