:root {
  --primary: #7540c0;
  --secondary: #d889fd;
  --primary-light: #c57fec;
  --dark: #190B00;
  --bg: #FFFFFF;
  --bg-light: #fcfaff;
  --light-orange: #FFE4CF;
  --text: #222222;
  --text-secondary: #666666;
  --border: #EFEFEF;
  --grad-primary: linear-gradient(135deg, #8654cb, #5d26b1);
  --shadow-sm: 0 2px 10px rgba(25,11,0,.05);
  --shadow-md: 0 10px 28px rgb(163 125 218);
  --shadow-lg: 0 22px 50px rgb(16 25 0 / 12%);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease: cubic-bezier(.22,1,.36,1);
  --dur: .35s;
  --white: #fff;
  --gradient: linear-gradient(135deg, var(--primary), #a476e5);
  --white: #ffffff;
  --dark: #292929;
  --text: #5f6675;
  --bg: #f4effd;
  --border: #ebe0fa;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,h2,h3,h4 {
  font-family: var(--font-head);
  color: var(--dark);
  font-weight: 700;
  margin: 0;
}

p {
  line-height: 1.75;
  margin: 0;
  color: var(--text-secondary);
}

a {
  text-decoration: none;
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--primary);
  color: #fff;
  padding: .75rem 1.25rem;
  z-index: 2000;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.text-primary-grad {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  * {
      animation-duration: .001ms !important;
      transition-duration: .001ms !important;
      scroll-behavior: auto !important;
  }
}

/* ---------- Fade up (scroll reveal + hero) ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp .7s var(--ease) forwards;
}

.fade-up.in-view {
  opacity: 0;
}

@keyframes fadeUp {
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

* ============================================= NAVBAR Layout: 100% Bootstrap (navbar-expand-lg, mx-auto on nav list, d-flex ms-auto on icons) Custom CSS: only colours, font, height, shadow ============================================= */ .site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  transition: box-shadow .3s ease, background .3s ease;
  box-shadow: var(--shadow-md);
}

.scrolled {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  transition: box-shadow .3s ease, background .3s ease;
  box-shadow: var(--shadow-md);
}

.topbar {
  background: var(--dark);
  color: #CBD5E1;
  font-size: .8125rem;
  padding: .5rem 0;
}

.topbar a {
  color: #fff;
  font-weight: 600;
}

.luxe-nav {
  width: 100%;
  z-index: 9999999!important;
  height: auto;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 10px 0px;
  position: relative!important;
  background-color: transparent!important;
}

.logo_wrapper {
  display: none!important;
}

/* Vertically centre the inner Bootstrap container */
.luxe-nav .container-fluid {
  height: 100%;
}

.navbar-brand {
  padding: 0;
}

.luxe-container .menu_wrapper .luxe-logo {
  margin: 0;
  padding: 0;
}

.luxe-logo img {
  max-height: 60px;
}

.luxe-nav-link {
  color: var(--text) !important;
  font-weight: 600;
  font-size: .9375rem;
  padding: .5rem .9rem !important;
  border-radius: 999px;
  position: relative;
  transition: color .2s ease, background .2s ease;
}

.luxe-nav-link:hover {
  color: var(--primary);
  background: var(--bg-light);
  background: rgba(0, 89, 196, .08);
}

/* Icon buttons */
.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--text);
  line-height: 0;
  transition: opacity 0.2s;
}

.icon-btn:hover {
  opacity: 0.55;
}

.cart-badge {
  top: -4px;
  right: -6px;
  background: var(--text);
  color: #fff;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.menu_wrapper .luxe-logo {
  display: none;
}

:focus-visible {
  outline: none !important;
  outline-offset: 0 !important;
}

/* ==========================================================================
HEADER
========================================================================== */
.site-header.is-scrolled {
  background: #fff;
  padding: 10px 0;
  box-shadow: var(--shadow-sm);
}

.navbar {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.brand-logo {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-bottom: 15px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--grad-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 50px;
}

.brand-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.15;
  color: var(--dark);
}

.site-header.is-scrolled .brand-text {
  color: var(--dark);
}

.brand-text small {
  font-weight: 600;
  font-size: .7rem;
  color: var(--primary);
  letter-spacing: .04em;
}

.nav-collapse {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link-item {
  position: relative;
  font-weight: 600;
  font-size: .9375rem;
  color: var(--dark);
  padding: .3rem 0;
  transition: color var(--dur) var(--ease);
}

.nav-link-item::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--grad-primary);
  transition: width var(--dur) var(--ease);
}

.nav-link-item:hover, .nav-link-item.active {
  color: var(--primary);
}

.nav-link-item:hover::after, .nav-link-item.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.icon-btn {
  position: relative !important;
  width: 40px !important;
  height: 40px;
  border: none !important;
  border-radius: 50%;
  background: var(--bg-light) !important;
  color: var(--dark) !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 1rem !important;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

.icon-btn:hover {
  background: var(--light-orange);
  color: var(--primary);
}

.cart-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  background: var(--primary);
  color: #fff;
  font-size: .625rem;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--grad-primary);
  color: #fff;
  font-weight: 600;
  font-size: .875rem;
  padding: .65rem 1.3rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  transition: transform var(--dur) var(--ease);
}

.btn-call:hover {
  transform: translateY(-2px);
  color: #fff;
}

.navbar-toggler {
  border: none;
  background: none;
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  width: 32px;
}

.navbar-toggler span {
  height: 2px;
  width: 100%;
  background: var(--dark);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.search-panel {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  transition: max-height var(--dur) var(--ease);
}

.search-panel.is-open {
  max-height: 90px;
  box-shadow: var(--shadow-sm);
}

.search-panel .input-group {
  padding: 1rem 0;
}

.search-panel input {
  background: transparent;
  border: none;
  box-shadow: none;
  font-size: 1rem;
}

.search-panel input:focus {
  box-shadow: none;
}

@media (max-width: 991.98px) {
  .navbar-toggler {
      display:flex;
  }

  .nav-collapse {
      position: fixed;
      top: 0;
      right: 0;
      height: 100vh;
      width: min(80vw,320px);
      background: #fff;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      gap: 2rem;
      padding: 6rem 2rem 2rem;
      box-shadow: var(--shadow-lg);
      transform: translateX(100%);
      transition: transform var(--dur) var(--ease);
      z-index: 1040;
  }

  .nav-collapse.is-open {
      transform: translateX(0);
  }

  .nav-menu {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.25rem;
  }

  .nav-actions {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
      width: 100%;
  }

  .btn-call {
      width: 100%;
      justify-content: center;
  }
}

.luxe-logo:hover {
  background: transparent !important;
  color: transparent !important;
}

/* ==========================================================================
HERO
========================================================================== */
.hero-section {
  position: relative;
  overflow: hidden;
  padding: 60px 0 90px;
  background: linear-gradient(180deg, var(--bg-light) 0%, #fff 100%);
}

.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .5;
}

.shape-1 {
  width: 340px;
  height: 340px;
  background: var(--light-orange);
  top: -100px;
  right: -60px;
}

.shape-2 {
  width: 220px;
  height: 220px;
  background: var(--primary-light);
  opacity: .25;
  bottom: -80px;
  left: -60px;
}

.shape-3 {
  width: 140px;
  height: 140px;
  background: var(--primary);
  opacity: .15;
  top: 40%;
  right: 25%;
}

.hero-text, .hero-visual {
  position: relative;
  z-index: 1;
}

.hero-title {
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: 1.0625rem;
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
}

.btn-primary-grad {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: var(--grad-primary);
  color: #fff;
  font-weight: 600;
  font-size: .9375rem;
  padding: .9rem 1.9rem;
  border-radius: var(--radius-pill);
  border: none;
  box-shadow: var(--shadow-md);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.btn-primary-grad:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(239,114,12,.28);
  color: #fff;
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--dark);
  font-weight: 600;
  font-size: .9375rem;
  padding: .9rem 1.9rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.btn-outline-dark:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
}

.hero-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-badges span {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--text);
}

.hero-badges i {
  color: var(--primary);
}

.hero-visual {
  position: relative;
  height: 440px;
}

.hero-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-img-float {
  position: absolute;
  bottom: -8%;
  left: -8%;
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 6px solid #fff;
  box-shadow: var(--shadow-lg);
}

.hero-glow {
  position: absolute;
  inset: 12%;
  background: radial-gradient(circle, rgba(239,114,12,.18), transparent 65%);
  border-radius: 50%;
  z-index: -1;
}

.btn-grad {
  display: inline-flex !important;
  align-items: center;
  gap: 12px;
  padding: 14px 25px !important;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
  text-decoration: none !important;
  background: var(--grad-primary);
  color: var(--white);
  border-radius: var(--radius-pill);
  transition: all var(--dur) var(--ease);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  min-width: 160px;
  text-align: center !important;
  justify-content: center;
}

.btn-grad:hover {
  background: #1da6da!important;
  color: #ffffff!important;
}

/* ==========================================================================
TRUST SECTION
========================================================================== */
.trust-section {
  padding: 56px 0;
  background: #190b00;
}

.trust-card {
  text-align: center;
  padding: 1.75rem 1rem;
  border-radius: var(--radius-md);
  background: var(--bg-light);
  height: 100%;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.trust-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 14px;
  background: var(--grad-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.trust-card h3 {
  font-size: .9375rem;
  font-weight: 600;
}

/* ==========================================================================
SECTION HEADINGS (shared)
========================================================================== */
.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .75rem;
}

.section-title {
  font-size: clamp(1.6rem,2.8vw,2.35rem);
  line-height: 1.25;
}

.section-sub {
  color: var(--text-secondary);
  margin-top: .75rem;
}

.section-heading {
  margin-bottom: 3rem;
}

/* ==========================================================================
CATEGORIES
========================================================================== */
.categories-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.category-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem;
  text-align: center;
  height: 100%;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.category-img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 1rem;
}

.category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.category-card:hover .category-img img {
  transform: scale(1.08);
}

.category-icon {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: .5rem;
}

.category-card h3 {
  font-size: 1rem;
  margin-bottom: .35rem;
}

.category-card p {
  font-size: .8125rem;
  margin: 0;
}

/* ==========================================================================
PRODUCTS
========================================================================== */
.products-section {
  padding: 80px 0;
  background: #fff;
}

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

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-img {
  aspect-ratio: 8/8;
  overflow: hidden;
  z-index: 2;
  /* background:var(--bg-light); */
}

.product-img img {
  width: 70%!important;
  height: auto!important;
  margin: auto;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.product-card:hover .product-img img {
  transform: scale(1.06);
}

.product-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  flex: 1;
}

.product-body h3 {
  font-size: 1.05rem;
}

.product-body > p {
  font-size: .875rem;
}

.product-rating {
  color: #F5A623;
  font-size: .8125rem;
}

.product-rating span {
  color: var(--text-secondary);
  margin-left: .35rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: .5rem;
}

.product-price {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.18rem;
  color: var(--dark);
}

.btn-shop-now {
  font-weight: 600;
  font-size: .8125rem;
  padding: .55rem 1.2rem;
  border-radius: var(--radius-pill);
  background: var(--light-orange);
  color: var(--primary);
  transition: all var(--dur) var(--ease);
}

.btn-shop-now:hover {
  background: var(--grad-primary);
  color: #fff;
}

.product-card .add-btn button {
  font-weight: 600;
  font-size: .8125rem;
  padding: .55rem 1.2rem;
  border-radius: var(--radius-pill);
  background: var(--light-orange);
  color: var(--primary);
  transition: all var(--dur) var(--ease);
}

.product-card .add-btn button:hover {
  background: var(--grad-primary);
  color: #fff;
}

.product-thumb {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* background: var(--bg-light); */
  height: 300px;
}

.product-image {
  width: auto;
  height: auto !important;
  max-width: 100%;
  max-height: 100%;
  transform: scale(1) rotate(0deg);
  object-fit: contain;
}

.pagination-info {
  display: none;
}

.products-pagination, .pagination-pages {
  gap: .4rem;
  justify-content: center;
  display: flex;
}

.pagination-pages button {
  border: 1px solid #e7d7ff;
  color: #190b00;
  border-radius: 12px;
  font-weight: 600;
  transition: all .25s cubic-bezier(.22, 1, .36, 1);
  padding: 10px;
}

.products-pagination .pagination-btn {
  border: 1px solid #e7d7ff;
  color: #190b00;
  border-radius: 12px;
  font-weight: 600;
  transition: all .25s cubic-bezier(.22,1,.36,1);
  padding: 10px;
}

.pagination-pages button.active {
  background: linear-gradient(135deg, #7b47c4, #6832b8);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 14px 34px rgb(181 134 230 / 16%);
}

/* ==========================================================================
WHY CHOOSE US
========================================================================== */
.why-section {
  padding: 80px 0;
  background: var(--light-orange);
}

.why-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  height: 100%;
  text-align: center;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.why-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.25rem;
  border-radius: 16px;
  background: var(--light-orange);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.why-card h3 {
  font-size: 1.1rem;
  margin-bottom: .6rem;
}

.why-card p {
  font-size: .9rem;
}

/* ==========================================================================
LIFESTYLE BANNER
========================================================================== */
.lifestyle-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.lifestyle-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.lifestyle-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(25,11,0,.85), rgba(239,114,12,.55));
}

.lifestyle-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.lifestyle-content h2 {
  color: #fff;
  font-size: clamp(1.7rem,3vw,2.5rem);
  margin-bottom: 1.75rem;
  line-height: 1.3;
}

/* ==========================================================================
REVIEWS
========================================================================== */
.reviews-section {
  padding: 80px 0;
  background: #fff;
}

.review-card {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  height: 100%;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.review-top {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.review-top h4 {
  font-size: .9375rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: .35rem;
}

.verified-badge {
  color: var(--primary);
  font-size: .8rem;
}

.review-stars {
  color: #F5A623;
  font-size: .8rem;
}

.review-card p {
  font-size: .9rem;
  font-style: italic;
  color: var(--text);
}

/* ==========================================================================
FAQ
========================================================================== */
.faq-section {
  padding-top: 40px;
  padding-bottom: 130px;
  background: var(--bg-light);
}

.faq-item {
  background: #fff;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
}

.faq-question {
  width: 100% !important;
  background: none !important;
  border: none !important;
  padding: 1.35rem 1.5rem !important;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem !important;
  color: var(--dark) !important;
}

.faq-question i {
  color: var(--primary);
  transition: transform var(--dur) var(--ease);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-question[aria-expanded="true"] i {
  transform: rotate(135deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}

.faq-answer p {
  padding: 0 1.5rem 1.35rem;
  font-size: .9rem;
}

/* ==========================================================================
NEWSLETTER
========================================================================== */
.newsletter-section {
  padding: 80px 0;
  background: #fff;
}

.newsletter-card {
  background: var(--grad-primary);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.newsletter-card h2 {
  color: #fff;
  font-size: clamp(1.5rem,2.6vw,2rem);
  margin-bottom: .5rem;
}

.newsletter-card p {
  color: rgba(255,255,255,.9);
  margin-bottom: 1.75rem;
}

.newsletter-form {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 220px;
  border: none;
  border-radius: var(--radius-pill);
  padding: .9rem 1.4rem;
  font-size: .9375rem;
}

.newsletter-form .btn-primary-grad {
  background: var(--dark);
  box-shadow: none;
}

.newsletter-form .btn-primary-grad:hover {
  background: #2b1400;
}

.newsletter-feedback {
  margin-top: 1rem;
  font-size: .875rem;
  font-weight: 600;
  color: #fff;
  min-height: 1.2rem;
}

/* ==========================================================================
FOOTER
========================================================================== */
.site-footer {
  background: #302642;
  color: rgba(255, 255, 255, .65);
  padding: 70px 0 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1.25rem;
}

.footer-brand .brand-text {
  color: #fff;
  font-size: 1rem;
}

.footer-desc {
  font-size: .875rem;
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,.55);
}

.footer-social {
  display: flex;
  gap: .6rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur) var(--ease);
}

.footer-social a:hover {
  background: var(--grad-primary);
}

.footer-heading {
  color: #fff;
  font-size: .9375rem;
  margin-bottom: 1.25rem;
}

.footer-body {
  color: #b7b3bd;
  font-size: .83rem;
  font-family: 'Inter';
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.footer-links a {
  font-size: .875rem;
  transition: color var(--dur) var(--ease);
  display: flex;
  align-items: center;
  gap: .4rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-top {
  padding-bottom: 2.25rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-bottom {
  padding-top: 1.5rem;
  font-size: .8125rem;
  text-align: center;
}

/* ==========================================================================
BACK TO TOP
========================================================================== */
#backToTop {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--grad-primary);
  color: #fff;
  box-shadow: var(--shadow-md);
  z-index: 1040;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(12px) !important;
  transition: opacity .3s ease, transform .3s ease, visibility .3s;
  padding: 0 !important;
}

#backToTop.is-visible {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

/* ==========================================================================
RESPONSIVE
========================================================================== */
@media (max-width: 1024px) {
  .hero-section {
      padding:150px 0 70px;
  }
}

@media (max-width: 991.98px) {
  .hero-visual {
      height:360px;
      margin-top: 1rem;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
      padding:130px 0 56px;
      text-align: left;
  }

  .trust-section, .categories-section, .products-section, .why-section, .reviews-section, .faq-section, .newsletter-section {
      padding: 56px 0;
  }

  .lifestyle-banner {
      padding: 70px 0;
  }

  .hero-cta {
      flex-direction: column;
  }

  .hero-cta .btn-primary-grad, .hero-cta .btn-outline-dark {
      width: 100%;
  }

  .newsletter-form {
      flex-direction: column;
  }
}

@media (max-width: 375.98px) {
  .hero-badges {
      gap:.85rem;
  }

  .hero-badges span {
      font-size: .75rem;
  }
}

.shop-intro-banner {
  background: url(../images/inner-banner-img.png) no-repeat;
  position: relative;
  overflow: hidden;
  padding: 2rem 0 2rem 0;
}

.shop-intro-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-radial);
  opacity: 0.6;
  z-index: -1;
}

.shop-intro-banner nav {
  text-align: center;
}

.shop-intro-breadcrumb {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  padding: 4px 20px;
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, .08);
  margin-top: 20px;
}

.shop-intro-breadcrumb .breadcrumb-item {
  color: rgba(255, 255, 255, .7);
  font-size: 22px;
  font-weight: 500;
  line-height: 50px;
}

.shop-intro-breadcrumb .breadcrumb-item.active {
  color: #fff;
  font-weight: 600;
}

.shop-intro-breadcrumb .breadcrumb-item a {
  color: #ffffff;
  transition: color var(--dur-fast) ease;
}

.shop-intro-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, .3);
  content: ">";
  font-size: 20px;
}

.section-pad {
  padding: 80px 0;
}

.ebook-card.tilt-card {
  position: relative;
  background: rgba(255, 255, 255, .6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: rgba(255, 255, 255, .6);
  border-radius: 28px;
  padding: 2rem 1.5rem;
  height: 100%;
  transition: transform .4s cubic-bezier(.22, 1, .36, 1), box-shadow .4s cubic-bezier(.22, 1, .36, 1);
  z-index: 2;
  box-shadow: 0 30px 64px rgba(25, 11, 0, .16), 0 0 40px rgb(171 120 248 / 30%);
}

.ebook-card.tilt-card:before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(from 93.7463deg, #a974f0, #9942ff, #baaeff, #4b0cef);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .5s ease;
  animation: rotateBorderAngle 4s linear infinite;
  z-index: -1;
}

@keyframes rotateBorderAngle {
  to {
      --border-angle: 360deg;
  }
}

@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.ebook-card.tilt-card:hover:before {
  opacity: 1;
}

.ebook-card.tilt-card .ebook-cover {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
}

/*======================================
SECTION
======================================*/
.blog-details {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  padding: 100px 0;
  padding: 80px 0;
}

.blog-details::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  top: -220px;
  right: -180px;
  border-radius: 50%;
  background: rgba(239,114,12,.08);
  filter: blur(20px);
}

.blog-details::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  left: -120px;
  bottom: -120px;
  border-radius: 50%;
  background: rgba(255,140,42,.08);
  filter: blur(20px);
}

.blog-details .container {
  position: relative;
  z-index: 2;
}

/*======================================
HEADER
======================================*/
.blog-header {
  max-width: 900px;
  margin: auto;
  text-align: center;
  margin-bottom: 55px;
}

.blog-date {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  border-radius: 50px;
  background: var(--gradient);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 15px 35px rgba(239,114,12,.25);
  margin-bottom: 25px;
}

.blog-date i {
  font-size: 14px;
}

.blog-header h1 {
  font-size: clamp(2.2rem,4vw,3.6rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 25px;
}

.blog-intro {
  font-size: 18px;
  color: var(--text);
  line-height: 1.9;
}

/*======================================
FEATURE IMAGE
======================================*/
.blog-details img {
  width: 100%;
  border-radius: 24px;
  transition: .45s ease;
  box-shadow: 0 25px 60px rgba(0,0,0,.10);
}

.blog-details img:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 70px rgba(239,114,12,.18);
}

/*======================================
CONTENT CARD
======================================*/
.blog-content {
  background: #fff;
  padding: 60px;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 15px 45px rgba(239,114,12,.08), 0 0 0 8px rgba(255,140,42,.03);
}

/*======================================
HEADINGS
======================================*/
.blog-content h2 {
  position: relative;
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin: 50px 0 20px;
  padding-left: 22px;
}

.blog-content h2:first-child {
  margin-top: 0;
}

.blog-content h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 34px;
  border-radius: 20px;
  background: var(--gradient);
}

/*======================================
PARAGRAPH
======================================*/
.blog-content p {
  color: var(--text);
  font-size: 17px;
  line-height: 2;
  margin-bottom: 0;
}

/*======================================
LIST
======================================*/
.blog-content ul, .blog-content ol {
  padding-left: 25px;
  margin-bottom: 30px;
}

.blog-content li {
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.8;
}

.blog-content li::marker {
  color: var(--primary);
}

/*======================================
BLOCKQUOTE
======================================*/
.blog-content blockquote {
  position: relative;
  margin: 50px 0;
  padding: 40px 40px 40px 80px;
  border-radius: 20px;
  background: linear-gradient( 135deg, rgba(239,114,12,.06), rgba(255,140,42,.03) );
  border-left: 6px solid var(--primary);
  font-size: 22px;
  font-style: italic;
  color: var(--dark);
  line-height: 1.8;
  box-shadow: 0 15px 35px rgba(239,114,12,.08);
}

.blog-content blockquote::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 8px;
  font-size: 60px;
  color: var(--primary);
  opacity: .18;
  font-family: Georgia, serif;
}

/*======================================
LINKS
======================================*/
.blog-content a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: .3s;
}

.blog-content a:hover {
  color: var(--secondary);
}

.blog-content strong {
  color: var(--primary);
}

.blog-content em {
  color: var(--secondary);
}

/*======================================
IMAGE INSIDE CONTENT
======================================*/
.blog-content img {
  margin-bottom: 30px;
  border-radius: 18px;
  width: 100%;
}

/*======================================
HR
======================================*/
.blog-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 45px 0;
}

/*======================================
TEXT SELECTION
======================================*/
.blog-content ::selection {
  background: var(--primary);
  color: #fff;
}

/*======================================
SCROLL ANIMATION
======================================*/
.blog-header, .blog-details img, .blog-content {
  animation: fadeUp .8s ease both;
}

@keyframes fadeUp {
  from {
      opacity: 0;
      transform: translateY(40px);
  }

  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/*======================================
RESPONSIVE
======================================*/
@media (max-width: 991px) {
  .blog-details {
      padding:80px 0;
  }

  .blog-content {
      padding: 45px 35px;
  }

  .blog-header h1 {
      font-size: 2.6rem;
  }

  .blog-content h2 {
      font-size: 1.7rem;
  }

  .blog-content blockquote {
      padding: 35px 30px 35px 65px;
      font-size: 20px;
  }
}

@media (max-width: 767px) {
  .blog-details {
      padding:60px 0;
  }

  .blog-header {
      margin-bottom: 40px;
  }

  .blog-header h1 {
      font-size: 2rem;
  }

  .blog-intro {
      font-size: 16px;
  }

  .blog-date {
      font-size: 13px;
      padding: 10px 18px;
  }

  .blog-content {
      padding: 30px 22px;
      border-radius: 18px;
  }

  .blog-content h2 {
      font-size: 1.35rem;
      margin: 35px 0 15px;
  }

  .blog-content h2::before {
      height: 28px;
  }

  .blog-content p {
      font-size: 15px;
      line-height: 1.9;
  }

  .blog-content blockquote {
      padding: 28px 20px 28px 50px;
      font-size: 17px;
  }

  .blog-content blockquote::before {
      left: 15px;
      font-size: 42px;
  }
}

.product-gallery-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16/16;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  /* background:radial-gradient(
circle at 30% 20%,
var(--light-orange),
var(--bg-light) 65%,
var(--bg) 100%
); */
  border: 1px solid var(--light-orange);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  /* Crops the enlarged image */
  transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.product-gallery-img:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.product-gallery-img img {
  width: 80%;
  height: auto;
  max-width: none;
  max-height: none;
  object-fit: contain;
  transform: scale(1.15);
  transition: transform var(--dur) var(--ease);
}

.product-gallery-img:hover img {
  transform: scale(1.22);
}

.product-cta-wrapper a.add-to-cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: var(--grad-primary);
  color: #fff;
  font-weight: 600;
  font-size: .9375rem;
  padding: .9rem 1.9rem;
  border-radius: var(--radius-pill);
  border: none;
  box-shadow: var(--shadow-md);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.product-cta-wrapper a.add-to-cart-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgb(160 104 255 / 28%);
  color: #fff;
}

/*==================================
CART PAGE
===================================*/
.cart-section {
  padding: 80px 0;
  background: linear-gradient(180deg,#fff 0%,var(--bg-light) 100%);
}

.cart-title {
  font-size: 2.4rem;
  font-family: var(--font-head);
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 45px;
}

.cart-layout {
  display: grid;
  grid-template-columns: 2fr 420px;
  gap: 45px;
  align-items: start;
}

/*==============================
TABLE HEADER
==============================*/
.cart-table-header {
  display: grid;
  grid-template-columns: 1fr 140px 140px;
  padding: 18px 28px;
  background: var(--gradient);
  color: #fff;
  border-radius: 18px 18px 0 0;
  font-weight: 600;
  text-transform: uppercase;
  font-size: .9rem;
  letter-spacing: 1px;
}

/*==============================
ITEMS WRAPPER
==============================*/
.cart-items-section {
  background: #fff;
  border-radius: 0 0 18px 18px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr 140px 140px;
  align-items: center;
  padding: 28px;
  border-bottom: 1px solid var(--border);
  transition: all .35s var(--ease);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item:hover {
  background: #f7f7ff;
}

/*==============================
PRODUCT
==============================*/
.cart-item-product {
  display: flex;
  align-items: center;
  gap: 22px;
}

.cart-item-image {
  width: 110px;
  height: 110px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: .35s;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cart-item:hover .cart-item-image {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.cart-item-image img {
  width: 80%;
  height: auto;
  object-fit: cover;
  margin: auto;
  padding: 10px;
}

.cart-item-name {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 10px;
  font-weight: 600;
}

.product-remove {
  background: none;
  border: none;
  color: var(--primary);
  font-size: .8rem;
  letter-spacing: 1px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  transition: .3s;
}

.product-remove:hover {
  color: #d84d00;
}

/*==============================
QUANTITY
==============================*/
.qty-control {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 125px;
  height: 48px;
  margin: auto;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
}

.qty-btn {
  width: 38px;
  height: 38px;
  border: none;
  background: #fff7f0;
  color: var(--primary);
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: .3s;
}

.qty-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.05);
}

.qty-value {
  min-width: 45px;
  text-align: center;
  font-weight: 700;
  color: var(--dark);
  font-size: 1rem;
}

/*==============================
PRICE
==============================*/
.cart-item-total {
  text-align: right;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

/*==================================
ORDER SUMMARY
===================================*/
.order-summary {
  position: sticky;
  top: 120px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 24px;
  padding: 35px;
  box-shadow: var(--shadow-lg);
}

.summary-title {
  font-size: 1.5rem;
  margin-bottom: 30px;
  font-weight: 700;
  color: var(--dark);
}

.summary-row, .summary-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-row {
  padding: 15px 0;
  border-bottom: 1px dashed var(--border);
}

.summary-total-row {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 2px solid var(--border);
}

.summary-label, .summary-total-label {
  color: var(--text-secondary);
}

.summary-value, .summary-total-value {
  font-weight: 700;
  color: var(--dark);
}

.summary-total-value {
  font-size: 1.6rem;
  color: var(--primary);
}

/*==============================
CHECKOUT BUTTON
==============================*/
.btn-checkout {
  display: block;
  margin-top: 35px;
  padding: 18px;
  border-radius: 999px;
  background: var(--gradient);
  color: #fff;
  font-weight: 700;
  letter-spacing: .5px;
  transition: .35s;
  box-shadow: 0 12px 28px rgb(174 93 248 / 25%);
}

.btn-checkout:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgb(153 121 243 / 35%);
}

.summary-note {
  text-align: center;
  margin-top: 20px;
  color: var(--text-secondary);
  font-size: .9rem;
  line-height: 1.7;
}

/*==================================
EMPTY CART
===================================*/
.cart-empty {
  display: none;
  padding: 80px;
  text-align: center;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.cart-empty-msg {
  font-size: 1.3rem;
  margin-bottom: 25px;
}

/*==================================
RESPONSIVE
===================================*/
@media(max-width: 992px) {
  .cart-layout {
      grid-template-columns:1fr;
  }

  .order-summary {
      position: relative;
      top: 0;
  }
}

@media(max-width: 768px) {
  .cart-table-header {
      display:none;
  }

  .cart-item {
      grid-template-columns: 1fr;
      gap: 20px;
  }

  .cart-item-product {
      align-items: flex-start;
  }

  .cart-item-total {
      text-align: left;
      font-size: 1.35rem;
  }

  .cart-item-quantity {
      justify-content: flex-start;
  }

  .qty-control {
      margin: 0;
  }

  .cart-title {
      font-size: 2rem;
  }
}

@media(max-width: 576px) {
  .cart-section {
      padding:50px 0;
  }

  .cart-item {
      padding: 20px;
  }

  .cart-item-image {
      width: 85px;
      height: 85px;
  }

  .order-summary {
      padding: 25px;
  }

  .btn-checkout {
      padding: 16px;
  }
}

.cart-item-remove.product-remove {
  font-family: var(--font-body);
  font-size: 12px !important;
  font-weight: 600;
  color: #940dfd !important;
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  padding: 4px 0 !important;
  transition: all var(--dur-fast) var(--ease);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: transparent;
  width: fit-content !important;
}

.info-card {
  position: relative;
  background: rgba(255, 255, 255, .6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: rgba(255, 255, 255, .6);
  border-radius: 28px;
  padding: 2rem 1.5rem;
  height: 100%;
  transition: transform .4s cubic-bezier(.22, 1, .36, 1), box-shadow .4s cubic-bezier(.22, 1, .36, 1);
  z-index: 2;
  box-shadow: 0 30px 64px rgba(25, 11, 0, .16), 0 0 40px rgba(239, 114, 12, .3);
}

.info-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(from 93.7463deg, #ef720c, #ff9142, #ffd7ae, #ef720c);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .5s ease;
  animation: rotateBorderAngle 4s linear infinite;
  z-index: -1;
}

.info-card:hover:before {
  opacity: 1;
}

/**************Check out******************/
.checkout-page {
  background: radial-gradient(circle at top right, #f0e8ff 0%, transparent 30%), radial-gradient(circle at bottom left, #dcd6ff 0%, transparent 35%), linear-gradient(180deg, #fff 0%, var(--bg-light) 100%);
  min-height: 100vh;
  padding: 80px 0;
}

.checkout-wrapper {
  display: grid;
  grid-template-columns: minmax(0,1fr) 420px;
  gap: 50px;
  align-items: start;
}

#checkout-main {
  background: #fff;
  border-radius: 24px;
  padding: 50px;
  box-shadow: var(--shadow-md);
}

.checkout-summary {
  position: sticky;
  top: 110px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  border-radius: 24px;
  padding: 35px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.4);
}

.checkout-summary .summary-totals .summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.checkout-section {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 35px;
  margin-bottom: 35px;
  transition: .35s;
}

.checkout-section:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.checkout-title {
  font-size: 24px;
  font-family: var(--font-head);
  color: var(--dark);
  margin-bottom: 28px;
  font-weight: 700;
  position: relative;
}

.checkout-title::after {
  content: "";
  width: 55px;
  height: 3px;
  background: var(--gradient);
  display: block;
  margin-top: 12px;
  border-radius: 10px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  display: block;
  font-weight: 600;
}

.form-group input, .form-group select {
  height: 58px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 0 18px;
  transition: .3s;
  font-size: 15px;
  width: 100%;
}

.form-group input:focus, .form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(239,114,12,.12);
  outline: none;
}

.shipping-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  cursor: pointer;
  transition: .35s;
  margin-bottom: 15px;
}

.shipping-option:hover {
  border-color: var(--primary);
  background: #fff9f5;
}

.payment-option {
  /* border:1px solid var(--border); */
  border-radius: 18px;
  margin-bottom: 18px;
  overflow: hidden;
}

.payment-option-header {
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
}

.payment-option-header:hover {
  background: #fff9f5;
}

.summary-product {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.product-thumb {
  /* width:75px;

height:75px; */
  border-radius: 14px;
  overflow: hidden;
  /* background: #fff; */
  /* border: 1px solid var(--border); */
}

.summary-total {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 2px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.final_amount strong {
  font-size: 23px;
  color: var(--primary);
}

.continue-btn {
  height: 60px;
  border: none;
  border-radius: 999px;
  background: var(--gradient);
  color: #fff;
  font-weight: 700;
  letter-spacing: .8px;
  transition: .35s;
  box-shadow: 0 18px 35px rgba(239,114,12,.22);
}

.continue-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 45px rgba(239,114,12,.3);
  color: #fff;
}

@media (max-width: 991px) {
  .checkout-wrapper {
      grid-template-columns:1fr;
  }

  .checkout-summary {
      position: relative;
      top: 0;
      margin-top: 40px;
  }

  #checkout-main {
      padding: 30px;
  }
}

@media (max-width: 576px) {
  .checkout-steps {
      display:none;
  }

  .checkout-section {
      padding: 25px;
  }
}

.product-content-wrapper h1.product-title {
  font-size: 2rem;
  margin-bottom: 15px !important;
}

.product-content-wrapper .product-price {
  font-size: 2.2rem;
}

.checkout-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 45px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.return-cart {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark);
  font-weight: 500;
  text-decoration: none;
  transition: all .35s var(--ease);
  font-size: 16px;
}

.return-cart:hover {
  color: var(--primary);
}

.continue-btn {
  min-width: 240px;
  height: 64px;
  border: none;
  border-radius: 999px;
  background: var(--gradient);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .8px;
  cursor: pointer;
  transition: all .35s var(--ease);
  box-shadow: 0 18px 35px rgb(172 97 248 / 25%);
}

.continue-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 45px rgb(153 121 243 / 35%);
}

.continue-btn:active {
  transform: scale(.97);
}

@media(max-width: 768px) {
  .checkout-actions {
      flex-direction:column-reverse;
  }

  .return-cart {
      width: 100%;
      justify-content: center;
  }

  .continue-btn {
      width: 100%;
  }
}

.checkout-wrapper .checkout-summary .summary-products .product-thumb {
  height: auto;
  padding: 0 10px;
}

.checkout-wrapper .checkout-summary .summary-products .product-thumb img {
  width: 40%;
  height: auto;
}

.checkout-wrapper .checkout-summary .summary-products .product-info h4 {
  font-size: 1.1rem;
}

.checkout-wrapper .checkout-summary .summary-products span {
  font-size: 15px;
  color: #000;
}

.shipping-option .shipping-option-left {
  display: flex;
  gap: 10px;
}

/*=========================================
THANK YOU HERO
=========================================*/
.thankyou-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 520px;
  background: var(--bg-light);
  box-shadow: var(--shadow-lg);
  margin: 80px 0;
}

.thankyou-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform .8s var(--ease);
}

.thankyou-img-wrap:hover img {
  transform: scale(1.08);
}

/* Dark + Orange Overlay */
.thankyou-img-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  /* padding: 60px 0px; */
  background: linear-gradient(135deg, rgb(50 26 183 / 75%) 0%, rgb(51 30 156 / 55%) 45%, rgb(82 12 239) 100%);
  z-index: 1;
}

/* Decorative Glow */
.thankyou-img-wrap::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  top: -180px;
  right: -120px;
  filter: blur(20px);
  z-index: 2;
}

/*=========================================
CONTENT
=========================================*/
.thankyou-img-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
}

.thankyou-img-overlay h2 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem,4vw,4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: .5px;
  text-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.thankyou-img-overlay p {
  max-width: 560px;
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.9;
  color: rgba(255,255,255,.92);
  margin: 0;
  text-shadow: 0 5px 15px rgba(0,0,0,.3);
}

/* Decorative line */
.thankyou-img-overlay h2::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: var(--gradient);
}

/*=========================================
OPTIONAL GLASS CARD
=========================================*/
.thankyou-img-overlay .content-box {
  background: rgb(38 5 138 / 28%);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 22px;
  padding: 40px 55px;
}

/*=========================================
ANIMATION
=========================================*/
.thankyou-img-overlay h2 {
  animation: fadeUp .8s ease forwards;
}

.thankyou-img-overlay p {
  animation: fadeUp 1.1s ease forwards;
}

@keyframes fadeUp {
  from {
      opacity: 0;
      transform: translateY(35px);
  }

  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/*=========================================
MOBILE
=========================================*/
@media(max-width: 768px) {
  .thankyou-img-wrap {
      min-height:320px;
  }

  .thankyou-img-wrap img {
      height: 320px;
  }

  .thankyou-img-overlay {
      padding: 25px;
  }

  .thankyou-img-overlay h2 {
      font-size: 2.2rem;
  }

  .thankyou-img-overlay p {
      font-size: 1rem;
      line-height: 1.7;
  }
}

@media(max-width: 576px) {
  .thankyou-img-wrap {
      border-radius:20px;
  }

  .thankyou-img-wrap img {
      height: 280px;
  }

  .thankyou-img-overlay h2 {
      font-size: 1.9rem;
  }
}

.thankyou-img-overlay .btn-return {
  color: #fff;
}

#cookiePopup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--grad-primary) !important;
  color: #fff;
  padding: 15px;
  display: flex;
  flex-wrap: nowrap;
  z-index: 999999;
  gap: 20px;
  text-align: center;
  align-items: center;
  justify-content: center;
  display: none;
  right: 0;
}

.cookie_content {
  text-align: left;
}

.cookie_content h4, .cookie_content p {
  color: #fff;
}

.cookieBtns {
  display: inline-flex;
  gap: 10px;
}

#cookiePopup .cookieBtns button#acceptCookie, #cookiePopup .cookieBtns button#declineCookie {
  font-size: 15px;
  margin: 10px 0;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  background: #000000;
  cursor: pointer;
  transition: all 0.5s ease;
  border: 2px solid #000000;
}

#cookiePopup .cookieBtns button#declineCookie:last-child {
  background-color: #ff0505;
  color: #fff;
  border-color: #ff0505;
}

.form-check-input:checked {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}

.product-description ul {
  list-style-type: disc!important;
}
