:root {
  --yellow: #ffe100;
  --black: #030303;
  --black-2: #101010;
  --white: #ffffff;
  --text: #222222;
  --muted: #888888;
  --border: rgba(255,255,255,.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
button,
input,
textarea,
select {
  font-family: "Montserrat", sans-serif;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
}

a {
  text-decoration: none;
}

/* HEADER */
.main-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #000;
  box-shadow: 0 12px 35px rgba(0,0,0,.22);
}

.nav-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand-logo {
  color: #fff;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 4px;
  line-height: 1;
}

.brand-logo span {
  color: var(--yellow);
}

.mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 32px;
}

.nav-menu > ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-menu > ul > li {
  position: static;
}

.nav-menu > ul > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 28px 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: .25s ease;
}

.nav-menu > ul > li > a:hover {
  color: var(--yellow);
}

/* MEGA MENU */
.has-mega:hover .mega-menu,
.has-mega.open .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 74px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: opacity .28s ease, transform .28s ease, visibility .28s ease;
  pointer-events: none;
}

.mega-content {
  max-width: 1140px;
  margin: 0 auto;
  padding: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  background: #111;
  border-top: 4px solid var(--yellow);
  box-shadow: 0 25px 80px rgba(0,0,0,.4);
}

.product-mega .mega-content {
  grid-template-columns: 1.1fr 1.1fr .9fr .9fr;
}

.mega-column h4 {
  color: var(--yellow);
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mega-column a {
  display: block;
  color: #bdbdbd;
  padding: 7px 0;
  font-size: 13px;
  font-weight: 500;
  transition: .2s ease;
}

.mega-column a:hover {
  color: #fff;
  padding-left: 8px;
}

.mega-promo {
  min-height: 220px;
  padding: 25px;
  background: var(--yellow);
  color: #000;
  position: relative;
  overflow: hidden;
}

.mega-promo::after {
  content: "\F66B";
  font-family: "bootstrap-icons";
  position: absolute;
  right: -8px;
  bottom: -25px;
  font-size: 125px;
  opacity: .16;
}

.mega-promo span {
  display: block;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.mega-promo h3 {
  max-width: 230px;
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 900;
  line-height: .96;
  text-transform: uppercase;
}

.mega-promo p {
  font-size: 13px;
  margin-bottom: 18px;
  font-weight: 500;
}

.mega-promo a {
  color: #000;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mega-product {
  min-height: 190px;
  display: grid;
  place-items: center;
  text-align: center;
  background: #1a1a1a;
  color: #fff;
  padding: 20px;
  transition: .25s ease;
}

.mega-product:hover {
  background: var(--yellow);
  color: #000;
  transform: translateY(-5px);
}

.mega-product i {
  font-size: 58px;
  margin-bottom: 12px;
}

.mega-product h5 {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.mega-product strong {
  font-size: 14px;
}

/* NAV ACTIONS */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #fff;
  white-space: nowrap;
}

.search-btn {
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 18px;
  transition: .25s ease;
}

.search-btn:hover {
  color: var(--yellow);
  transform: scale(1.1);
}

.cart-link {
  position: relative;
  color: #fff;
  font-size: 20px;
}

.cart-link span {
  position: absolute;
  right: -10px;
  top: -7px;
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: #000;
  font-size: 10px;
  font-weight: 900;
}

.nav-actions strong {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* SEARCH OVERLAY */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-box {
  width: min(820px, calc(100% - 30px));
  transform: translateY(40px) scale(.94);
  opacity: 0;
  transition: transform .45s cubic-bezier(.2,.8,.2,1), opacity .45s ease;
}

.search-overlay.active .search-box {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.search-box span {
  display: block;
  color: var(--yellow);
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.search-box form {
  display: flex;
  border-bottom: 3px solid var(--yellow);
  background: transparent;
}

.search-box input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: clamp(26px, 6vw, 56px);
  font-weight: 900;
  padding: 18px 0;
}

.search-box input::placeholder {
  color: rgba(255,255,255,.28);
}

.search-box form button {
  border: 0;
  background: transparent;
  color: var(--yellow);
  font-size: 36px;
  padding: 0 10px;
}

.search-box p {
  margin-top: 18px;
  color: #aaa;
  font-size: 14px;
  font-weight: 500;
}

.search-close {
  position: fixed;
  top: 35px;
  right: 35px;
  width: 52px;
  height: 52px;
  border: 2px solid rgba(255,255,255,.2);
  background: transparent;
  color: #fff;
  font-size: 20px;
  transition: .25s ease;
}

.search-close:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #000;
  transform: rotate(90deg);
}

/* HERO BACKGROUND IMAGE SLIDER */
.hero-slider {
  position: relative;
  height: calc(100vh - 74px);
  min-height: 620px;
  overflow: hidden;
  background: #000;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity .8s ease, transform 5s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.46), rgba(0,0,0,.7)),
    linear-gradient(135deg, rgba(255,225,0,.22), transparent 38%);
}

.slide-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  color: #fff;
  transform: translateY(30px);
  opacity: 0;
  transition: .7s ease .18s;
}

.slide.active .slide-content {
  transform: translateY(0);
  opacity: 1;
}

.slide-content span {
  display: inline-block;
  margin-bottom: 18px;
  padding: 9px 16px;
  color: #000;
  background: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.slide-content h1 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: 70px;
  font-weight: 900;
  line-height: .9;
  text-transform: uppercase;
  letter-spacing: -3px;
}

.slide-content p {
  max-width: 550px;
  margin: 0 0 30px;
  color: rgba(255,255,255,.78);
  font-size: 17px;
  line-height: 1.8;
  font-weight: 500;
}

.banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 26px;
  background: var(--yellow);
  color: #000;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: .25s ease;
}

.banner-btn:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 52px;
  height: 52px;
  border: 0;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.12);
  color: #fff;
  backdrop-filter: blur(8px);
  transform: translateY(-50%);
  transition: .25s ease;
}

.slider-arrow:hover {
  background: var(--yellow);
  color: #000;
}

.slider-arrow.prev {
  left: 28px;
}

.slider-arrow.next {
  right: 28px;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 5;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.slider-dots button {
  width: 35px;
  height: 4px;
  border: 0;
  background: rgba(255,255,255,.38);
  transition: .25s ease;
}

.slider-dots button.active {
  width: 55px;
  background: var(--yellow);
}

/* FOOTER */
.footer {
  background:
    radial-gradient(circle at 6% 0%, rgba(255,225,0,.12), transparent 28%),
    linear-gradient(135deg, #030303, #101010);
  color: #fff;
}

.footer-top-line {
  height: 7px;
  background: var(--yellow);
}

.footer-main {
  padding: 66px 0 42px;
  display: grid;
  grid-template-columns: .9fr 1.5fr;
  gap: 54px;
}

.footer-tag {
  display: inline-block;
  margin-bottom: 17px;
  padding: 8px 14px;
  background: rgba(255,225,0,.1);
  color: var(--yellow);
  border: 1px solid rgba(255,225,0,.24);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.footer-info h2 {
  max-width: 420px;
  margin: 0 0 17px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: .94;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -2px;
}

.footer-info p {
  max-width: 440px;
  margin: 0;
  color: #9d9d9d;
  font-size: 14px;
  line-height: 1.85;
  font-weight: 500;
}

.footer-links-wrap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.footer-block h5 {
  position: relative;
  margin: 0 0 20px;
  padding-bottom: 13px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-block h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45px;
  height: 3px;
  background: var(--yellow);
}

.footer-block a {
  display: block;
  width: fit-content;
  color: #979797;
  margin-bottom: 11px;
  font-size: 13px;
  font-weight: 500;
  transition: .22s ease;
}

.footer-block a:hover {
  color: var(--yellow);
  transform: translateX(6px);
}

.footer-login-box {
  margin-bottom: 28px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.09);
}

.footer-login-box h4 {
  margin: 0 0 7px;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-login-box p {
  margin: 0;
  color: #9a9a9a;
  font-size: 13px;
  font-weight: 500;
}

.footer-login-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.login-btn,
.register-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 2px solid var(--yellow);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .8px;
  transition: .22s ease;
}

.login-btn {
  color: #000;
  background: var(--yellow);
}

.register-btn {
  color: var(--yellow);
  background: transparent;
}

.login-btn:hover {
  color: var(--yellow);
  background: transparent;
}

.register-btn:hover {
  color: #000;
  background: var(--yellow);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-bottom p {
  margin: 0;
  color: #777;
  font-size: 12px;
  font-weight: 500;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

.footer-bottom a {
  color: #777;
  font-size: 12px;
  font-weight: 500;
  transition: .22s ease;
}

.footer-bottom a:hover {
  color: var(--yellow);
}

/* CART PAGE */
.cart-fixed-page {
  background: #fff;
}

.cart-fixed-hero {
  padding: 84px 0 56px;
  background: #f8f8f8;
}

.cart-fixed-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 1fr);
  gap: 28px;
  align-items: center;
}

.cart-fixed-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 14px;
}

.cart-fixed-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-fixed-kicker i {
  font-size: 16px;
}

.cart-fixed-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.03;
}

.cart-fixed-hero p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.cart-fixed-mini-summary {
  padding: 28px 24px;
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,.06);
}

.cart-fixed-mini-summary span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.cart-fixed-mini-summary strong {
  display: block;
  font-size: 36px;
  margin-bottom: 6px;
}

.cart-fixed-mini-summary small {
  color: var(--muted);
  font-size: 14px;
}

.cart-fixed-section {
  padding: 60px 0 90px;
}

.cart-fixed-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

.cart-fixed-topbar span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .9px;
}

.cart-fixed-topbar h2 {
  margin: 6px 0 0;
  font-size: clamp(28px, 3vw, 42px);
}

.cart-fixed-continue {
  color: var(--yellow);
  font-weight: 900;
}

.cart-fixed-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 1fr);
  gap: 32px;
}

.cart-fixed-items {
  display: grid;
  gap: 22px;
}

.cart-fixed-item {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 120px 120px;
  gap: 18px;
  align-items: center;
  padding: 24px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,.08);
}

.cart-fixed-item .cart-fixed-img {
  width: 90px;
  min-width: 90px;
  border-radius: 18px;
  overflow: hidden;
}

.cart-fixed-item .cart-fixed-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cart-fixed-info h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.cart-fixed-info p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.cart-fixed-stock {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.cart-fixed-qty-wrap,
.cart-fixed-price-wrap {
  display: grid;
  gap: 8px;
}

.cart-fixed-qty-wrap small,
.cart-fixed-price-wrap small {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .9px;
}

.cart-fixed-qty {
  display: flex;
  align-items: center;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 14px;
  overflow: hidden;
  background: #f7f7f7;
}

.cart-fixed-qty button {
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
}

.cart-fixed-qty input {
  width: 50px;
  border: 0;
  background: transparent;
  text-align: center;
  font-size: 15px;
}

.cart-fixed-price-wrap strong {
  display: block;
  font-size: 21px;
}

.cart-fixed-price-wrap span {
  color: var(--muted);
  font-size: 13px;
}

.cart-fixed-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 22px;
}

.cart-fixed-coupon {
  flex: 1 1 320px;
  display: grid;
  gap: 12px;
}

.cart-fixed-coupon label {
  font-size: 13px;
  font-weight: 700;
}

.cart-fixed-coupon div {
  display: flex;
  gap: 10px;
}

.cart-fixed-coupon input {
  flex: 1;
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 14px;
  font-size: 14px;
}

.cart-fixed-coupon button,
.cart-fixed-update {
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 14px;
  background: var(--yellow);
  color: #000;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.cart-fixed-update {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-fixed-summary {
  display: grid;
  gap: 20px;
  padding: 28px 26px;
  background: #fff;
  border-radius: 28px;
  border: 1px solid rgba(0,0,0,.08);
}

.cart-fixed-summary-head span {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}

.cart-fixed-summary-head h2 {
  margin: 6px 0 0;
  font-size: 28px;
}

.cart-fixed-lines {
  display: grid;
  gap: 12px;
}

.cart-fixed-lines div {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 14px;
}

.cart-fixed-delivery {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px;
  border-radius: 20px;
  background: #fafafa;
}

.cart-fixed-delivery i {
  font-size: 22px;
  color: var(--yellow);
  margin-top: 4px;
}

.cart-fixed-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px;
  border-radius: 18px;
  background: #f7f7f7;
  font-size: 18px;
  font-weight: 900;
}

.cart-fixed-checkout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 16px;
  background: var(--yellow);
  color: #000;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-fixed-safe {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.cart-fixed-safe span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cart-fixed-safe i {
  color: var(--yellow);
}

@media (max-width: 992px) {
	.product-info-card h1{
		font-size:18px;
		line-height:18px;
	}
  .cart-fixed-hero-inner,
  .cart-fixed-layout {
    grid-template-columns: 1fr;
  }

  .cart-fixed-item {
    grid-template-columns: 1fr;
  }

  .cart-fixed-item .cart-fixed-info {
    order: 2;
  }

  .cart-fixed-qty-wrap,
  .cart-fixed-price-wrap {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .cart-fixed-item {
    padding: 18px;
    gap: 14px;
  }

  .cart-fixed-qty {
    width: 100%;
  }

  .cart-fixed-actions {
    flex-direction: column;
  }

  .cart-fixed-summary {
    padding: 22px;
  }
}


/* BACK TO TOP */
.back-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  width: 46px;
  height: 46px;
  border: 0;
  background: var(--yellow);
  color: #000;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: .25s ease;
}

.back-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .nav-inner {
    min-height: 70px;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    bottom: 0;
    width: min(330px, 84vw);
    background: #080808;
    overflow-y: auto;
    transition: .35s ease;
    box-shadow: 18px 0 50px rgba(0,0,0,.35);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu > ul {
    display: block;
    padding: 14px;
  }

  .nav-menu > ul > li > a {
    padding: 15px 10px;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .mega-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    pointer-events: auto;
  }

  .has-mega.open .mega-menu {
    display: block;
  }

  .has-mega:hover .mega-menu {
    display: none;
  }

  .has-mega.open:hover .mega-menu {
    display: block;
  }

  .mega-content,
  .product-mega .mega-content {
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr;
    box-shadow: none;
    border-top: 2px solid var(--yellow);
  }

  .nav-actions strong {
    display: none;
  }

  .hero-slider {
    height: 650px;
    min-height: 650px;
  }

  .slider-arrow {
    top: auto;
    bottom: 25px;
    transform: none;
  }

  .slider-arrow.prev {
    left: 20px;
  }

  .slider-arrow.next {
    right: 20px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-links-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-login-box,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .brand-logo {
    font-size: 28px;
  }

  .nav-actions {
    gap: 8px;
  }

  .footer-links-wrap {
    grid-template-columns: 1fr;
  }

  .footer-login-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .login-btn,
  .register-btn {
    width: 100%;
  }

  .footer-bottom div {
    flex-wrap: wrap;
  }

  .search-close {
    top: 18px;
    right: 18px;
  }

  .slide-content h1 {
    letter-spacing: -1.5px;
  }
}

/* COMPACT PREMIUM SHOP BY CATEGORY */
.compact-category-section {
  padding: 30px 0;
  background:
    radial-gradient(circle at 15% 8%, rgba(255, 225, 0, .10), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f7f7f4 100%);
}

.compact-category-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 34px;
}

.compact-category-header span {
  display: inline-block;
  margin-bottom: 12px;
  color: #8f7210;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.compact-category-header h2 {
  margin: 0 0 10px;
  color: #080808;
  font-size: 40px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.compact-category-header p {
  max-width: 680px;
  margin: 0;
  color: #626262;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 500;
}

.compact-view-all {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 18px;
  color: #080808;
  background: #fff;
  border: 1px solid #ece7d8;
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .06);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .7px;
  transition: .25s ease;
}

.compact-view-all:hover {
  color: #000;
  background: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-3px);
}

.compact-category-board {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.compact-category-card {
  position: relative;
  min-height: 178px;
  padding: 22px 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #111;
  text-align: center;
  background:
    linear-gradient(180deg, #ffffff, #fbfaf5);
  border: 1px solid #ece7d8;
  border-radius: 22px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, .055);
  overflow: hidden;
  transition: .3s ease;
}

.compact-category-card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -52px;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  background: rgba(255, 225, 0, .18);
  transform: translateX(-50%) scale(.85);
  transition: .3s ease;
}

.compact-category-card::after {
  content: "\F138";
  font-family: "bootstrap-icons";
  position: absolute;
  right: 14px;
  top: 14px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #000;
  background: var(--yellow);
  border-radius: 50%;
  font-size: 12px;
  opacity: 0;
  transform: translateX(8px);
  transition: .25s ease;
}

.compact-category-img {
  position: relative;
  z-index: 2;
  width: 78px;
  height: 78px;
  margin-bottom: 15px;
  border-radius: 50%;
  overflow: hidden;
  background: #f0efe9;
  box-shadow:
    0 0 0 6px #fff,
    0 12px 28px rgba(0, 0, 0, .12);
  transition: .3s ease;
}

.compact-category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s ease;
}

.compact-category-card h4 {
  position: relative;
  z-index: 2;
  margin: 0 0 6px;
  color: #080808;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.compact-category-card > span {
  position: relative;
  z-index: 2;
  color: #7a7a7a;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .7px;
}

.compact-category-card:hover {
  color: #fff;
  background:
    linear-gradient(145deg, #171717, #050505);
  border-color: rgba(255, 225, 0, .35);
  transform: translateY(-8px);
  box-shadow: 0 26px 64px rgba(0, 0, 0, .18);
}

.compact-category-card:hover::before {
  top: -28px;
  transform: translateX(-50%) scale(1.25);
  background: rgba(255, 225, 0, .95);
}

.compact-category-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.compact-category-card:hover .compact-category-img {
  transform: scale(1.05);
  box-shadow:
    0 0 0 6px var(--yellow),
    0 16px 34px rgba(0, 0, 0, .26);
}

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

.compact-category-card:hover h4 {
  color: #fff;
}

.compact-category-card:hover > span {
  color: rgba(255, 255, 255, .68);
}

/* COMPACT CATEGORY RESPONSIVE */
@media (max-width: 1199px) {
  .compact-category-board {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 991px) {
  .compact-category-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .compact-category-board {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .compact-category-section {
    padding: 64px 0;
  }

  .compact-category-board {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .compact-category-card {
    min-height: 165px;
    border-radius: 18px;
  }

  .compact-category-img {
    width: 70px;
    height: 70px;
  }

  .compact-view-all {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .compact-category-board {
    grid-template-columns: 1fr;
  }
}


/* LATEST PRODUCTS OWL CAROUSEL */
.latest-product-section {
  padding: 88px 0 96px;
  background:
    radial-gradient(circle at 85% 0%, rgba(255, 225, 0, .13), transparent 30%),
    linear-gradient(180deg, #0b0b0b 0%, #151515 100%);
  overflow: hidden;
}

.latest-product-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 36px;
}

.latest-product-header span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.latest-product-header h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 50px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.latest-product-header p {
  max-width: 680px;
  margin: 0;
  color: #aaa;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 500;
}

.latest-carousel-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.latest-nav {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .15);
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  font-size: 18px;
  transition: .25s ease;
}

.latest-nav:hover {
  color: #000;
  background: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-3px);
}

.latest-product-carousel .owl-stage-outer {
  overflow: visible;
}

.latest-product-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(255, 225, 0, .16);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .22);
  transition: .3s ease;
}

.latest-product-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 32px 74px rgba(0, 0, 0, .34);
}

.latest-product-badge {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 4;
  min-height: 28px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000;
  background: var(--yellow);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.latest-product-badge.sale {
  color: #fff;
  background: #111;
}

.latest-product-badge.hot {
  color: #000;
  background: #fff;
}

.latest-product-img {
  position: relative;
  height: 245px;
  background: #f4f4f4;
  overflow: hidden;
}

.latest-product-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, .42));
  opacity: 0;
  transition: .3s ease;
}

.latest-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .45s ease;
}

.latest-product-card:hover .latest-product-img::after {
  opacity: 1;
}

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

.latest-product-actions {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 3;
  display: flex;
  gap: 9px;
  transform: translate(-50%, 18px);
  opacity: 0;
  transition: .28s ease;
}

.latest-product-card:hover .latest-product-actions {
  opacity: 1;
  transform: translate(-50%, 0);
}

.latest-product-actions a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #000;
  background: var(--yellow);
  border-radius: 50%;
  font-size: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
  transition: .22s ease;
}

.latest-product-actions a:hover {
  color: #fff;
  background: #000;
  transform: translateY(-4px);
}

.latest-product-info {
  padding: 15px;
}

.latest-product-info > span {
  display: block;
  margin-bottom: 7px;
  color: #9b7d05;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.latest-product-info h3 {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.28;
  font-weight: 900;
  text-transform: uppercase;
}

.latest-product-info h3 a {
  color: #101010;
  transition: .22s ease;
}

.latest-product-info h3 a:hover {
  color: #b38f00;
}

.latest-product-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 18px;
  color: #f0ba00;
  font-size: 13px;
}

.latest-product-rating small {
  margin-left: 5px;
  color: #888;
  font-size: 11px;
  font-weight: 700;
}

.latest-product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 5px;
}

.latest-product-bottom strong {
  color: #050505;
  font-size: 20px;
  font-weight: 900;
}

.latest-product-bottom a {
  min-height: 36px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000;
  background: var(--yellow);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .8px;
  transition: .22s ease;
}

.latest-product-bottom a:hover {
  color: #fff;
  background: #000;
}

.latest-product-carousel.owl-theme .owl-dots {
  margin-top: 34px !important;
}

.latest-product-carousel.owl-theme .owl-dots .owl-dot span {
  width: 30px;
  height: 4px;
  margin: 0 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .22);
  transition: .25s ease;
}

.latest-product-carousel.owl-theme .owl-dots .owl-dot.active span,
.latest-product-carousel.owl-theme .owl-dots .owl-dot:hover span {
  width: 52px;
  background: var(--yellow);
}

@media (max-width: 991px) {
  .latest-product-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .latest-carousel-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 575px) {
  .latest-product-section {
    padding: 64px 0 76px;
  }

  .latest-product-img {
    height: 230px;
  }

  .latest-product-info {
    padding: 19px;
  }

  .latest-product-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .latest-product-bottom a {
    width: 100%;
  }
}


/* WEEKLY CLEARANCE PROMO SECTION */
.clearance-banner-section {
  background: #fff;
}

.clearance-banner {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  background: #000;
}

.clearance-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, .08)),
    url("https://images.unsplash.com/photo-1599058917212-d750089bc07e?auto=format&fit=crop&w=1800&q=80") center right / cover no-repeat;
  transform: scale(1.02);
}

.clearance-banner::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 57%;
  background: #000;
  clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%);
}

.clearance-banner .container {
  position: relative;
  z-index: 2;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.clearance-content {
  max-width: 610px;
  padding: 48px 0;
  color: #fff;
}

.clearance-content span {
  display: inline-block;
  margin-bottom: 15px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.clearance-line {
  width: 172px;
  height: 2px;
  margin-bottom: 25px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .95), rgba(255, 255, 255, .22));
}

.clearance-content h2 {
  max-width: 560px;
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 40px;
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 5px;
}

.clearance-content p {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.clearance-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 27px;
  color: #000;
  background: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  transition: .25s ease;
}

.clearance-btn:hover {
  color: #000;
  background: var(--yellow);
  transform: translateY(-3px);
}

@media (max-width: 991px) {
  .clearance-banner::before {
    opacity: .55;
    background-position: 68% center;
  }

  .clearance-banner::after {
    width: 100%;
    background: rgba(0, 0, 0, .78);
    clip-path: none;
  }

  .clearance-content h2 {
    letter-spacing: 3px;
  }
}

@media (max-width: 575px) {
  

  .clearance-banner,
  .clearance-banner .container {
    min-height: 430px;
  }

  .clearance-content p {
    margin-bottom: 32px;
    line-height: 1.8;
  }
}


/* RUNNING MARQUEE OFFER STRIP */
.offer-marquee-section {
  background: #fff;
}

.offer-marquee {
  position: relative;
  overflow: hidden;
  background: var(--yellow);
  border-top: 4px solid #000;
  border-bottom: 4px solid #000;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .10);
}

.offer-marquee::before,
.offer-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}

.offer-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--yellow), rgba(255, 225, 0, 0));
}

.offer-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--yellow), rgba(255, 225, 0, 0));
}

.offer-marquee-track {
  min-height: 92px;
  display: flex;
  align-items: center;
  width: max-content;
  animation: boltMarquee 22s linear infinite;
  will-change: transform;
}

.offer-marquee:hover .offer-marquee-track {
  animation-play-state: paused;
}

.offer-marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.offer-marquee-group span {
  display: inline-flex;
  align-items: center;
  padding: 0 clamp(28px, 5vw, 72px);
  color: #000;
  font-size: clamp(18px, 2.2vw, 32px);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
}

.offer-marquee-group b {
  display: block;
  width: clamp(42px, 6vw, 86px);
  height: 4px;
  flex: 0 0 auto;
  background: #000;
  border-radius: 999px;
}

@keyframes boltMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33.333%);
  }
}

@media (max-width: 767px) {
  .offer-marquee-track {
    min-height: 74px;
    animation-duration: 18s;
  }

  .offer-marquee::before,
  .offer-marquee::after {
    width: 42px;
  }

  .offer-marquee-group span {
    padding: 0 24px;
    letter-spacing: 1.2px;
  }

  .offer-marquee-group b {
    width: 38px;
    height: 3px;
  }
}


/* SIX SPORTS COLLECTION CAROUSEL SECTIONS */
.sports-collections-wrap {
  padding: 90px 0 74px;
  background:
    radial-gradient(circle at 8% 3%, rgba(255, 225, 0, .13), transparent 23%),
    radial-gradient(circle at 92% 40%, rgba(0, 0, 0, .06), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f8f7f1 100%);
}

.sports-collection-section {
  padding: 0 0 62px;
}

.sports-collection-section:last-child {
  padding-bottom: 0;
}

.sports-collection-section:nth-child(even) {
  position: relative;
}

.sports-collection-section:nth-child(even)::before {
  content: "";
  position: absolute;
  inset: 18px 0 28px;
  z-index: 0;
  background: linear-gradient(135deg, rgba(3, 3, 3, .035), rgba(255, 225, 0, .10));
  pointer-events: none;
}

.sports-collection-section .container {
  position: relative;
  z-index: 1;
}

.sports-collection-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.sports-title-wrap {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  min-width: 0;
}

.sports-title-icon {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: #000;
  background: var(--yellow);
  border: 3px solid #050505;
  box-shadow: 8px 8px 0 #050505;
  font-size: 21px;
}

.sports-title-wrap span {
  display: inline-block;
  margin-bottom: 7px;
  color: #8b7400;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2.4px;
}

.sports-title-wrap h2 {
  margin: 0 0 8px;
  color: #070707;
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: .95;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1.7px;
}

.sports-title-wrap p {
  max-width: 760px;
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 500;
}

.sports-collection-navs {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sports-collection-nav {
  width: 46px;
  height: 46px;
  border: 1px solid #e4debd;
  display: grid;
  place-items: center;
  color: #080808;
  background: #fff;
  border-radius: 50%;
  font-size: 16px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .06);
  transition: .25s ease;
}

.sports-collection-nav:hover {
  color: #000;
  background: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-3px);
}

.sports-collection-carousel .owl-stage-outer {
  padding: 8px 0 20px;
}

.sports-collection-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid #ece5c7;
  border-radius: 24px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, .06);
  transition: .3s ease;
}

.sports-collection-card:hover {
  border-color: rgba(255, 225, 0, .8);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .16);
  transform: translateY(-8px);
}

.sports-collection-img {
  position: relative;
  height: 246px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 225, 0, .15), transparent 42%),
    #f4f4ef;
}

.sports-collection-img::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,.13), transparent);
}

.sports-collection-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}

.sports-collection-card:hover .sports-collection-img img {
  transform: scale(1.08);
  filter: contrast(1.08) saturate(1.08);
}

.sports-product-badge {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  min-width: 54px;
  min-height: 28px;
  display: inline-grid;
  place-items: center;
  padding: 0 11px;
  color: #000;
  background: var(--yellow);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .7px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .14);
}

.sports-product-badge.sale {
  color: #fff;
  background: #050505;
}

.sports-product-badge.hot,
.sports-product-badge.best {
  color: #000;
  background: #fff;
  border: 2px solid var(--yellow);
}

.sports-wishlist {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  display: grid;
  place-items: center;
  color: #000;
  background: rgba(255, 255, 255, .93);
  border-radius: 50%;
  font-size: 17px;
  transition: .25s ease;
}

.sports-wishlist:hover {
  color: #000;
  background: var(--yellow);
  transform: scale(1.08);
}

.sports-card-actions {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 2;
  display: flex;
  gap: 8px;
  transform: translate(-50%, 18px);
  opacity: 0;
  transition: .3s ease;
}

.sports-collection-card:hover .sports-card-actions {
  opacity: 1;
  transform: translate(-50%, 0);
}

.sports-card-actions a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #000;
  background: var(--yellow);
  border-radius: 50%;
  font-size: 16px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .2);
  transition: .22s ease;
}

.sports-card-actions a:hover {
  color: var(--yellow);
  background: #050505;
  transform: translateY(-3px);
}

.sports-collection-info {
  padding: 22px 20px 20px;
}

.sports-collection-info > span {
  display: inline-block;
  margin-bottom: 9px;
  color: #8f7900;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sports-collection-info h3 {
  min-height: 44px;
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 900;
}

.sports-collection-info h3 a {
  color: #090909;
  transition: .22s ease;
}

.sports-collection-info h3 a:hover {
  color: #8d7600;
}

.sports-collection-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 17px;
  color: var(--yellow);
  font-size: 13px;
  text-shadow: 0 0 0 #000;
}

.sports-collection-rating small {
  margin-left: 5px;
  color: #8b8b8b;
  font-size: 11px;
  font-weight: 800;
}

.sports-collection-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 15px;
  border-top: 1px solid #eeeeee;
}

.sports-collection-bottom strong {
  color: #000;
  font-size: 18px;
  font-weight: 900;
}

.sports-collection-bottom a {
  min-height: 36px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000;
  background: var(--yellow);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .7px;
  transition: .22s ease;
}

.sports-collection-bottom a:hover {
  color: var(--yellow);
  background: #050505;
}

.sports-collection-carousel.owl-theme .owl-dots {
  margin-top: 4px;
}

.sports-collection-carousel.owl-theme .owl-dots .owl-dot span {
  width: 26px;
  height: 5px;
  margin: 4px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .16);
  transition: .25s ease;
}

.sports-collection-carousel.owl-theme .owl-dots .owl-dot.active span,
.sports-collection-carousel.owl-theme .owl-dots .owl-dot:hover span {
  width: 44px;
  background: var(--yellow);
}

@media (max-width: 991px) {
  .sports-collections-wrap {
    padding: 72px 0 58px;
  }

  .sports-collection-section {
    padding-bottom: 52px;
  }

  .sports-collection-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .sports-collection-img {
    height: 230px;
  }
}

@media (max-width: 575px) {
  .sports-title-wrap {
    gap: 14px;
  }

  .sports-title-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
    box-shadow: 6px 6px 0 #050505;
  }

  .sports-collection-navs {
    width: 100%;
    justify-content: flex-end;
  }

  .sports-collection-img {
    height: 235px;
  }

  .sports-collection-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .sports-collection-bottom a {
    width: 100%;
  }
}


/* EXPLORE CATEGORY PRODUCT SLIDER SECTIONS */
.explore-category-wrap {
  background:
    radial-gradient(circle at 8% 4%, rgba(255, 225, 0, .14), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f5f5f1 52%, #ffffff 100%);
  overflow: hidden;
}

.explore-category-section {
  padding: 92px 0;
  position: relative;
}

.explore-category-section + .explore-category-section {
  border-top: 1px solid #eee7cf;
}

.explore-category-section.reverse .explore-category-grid {
  grid-template-columns: minmax(0, 1.6fr) minmax(320px, .8fr);
}

.explore-category-section.reverse .explore-category-panel {
  order: 2;
}

.explore-category-grid {
  display: grid;
  grid-template-columns: minmax(320px, .8fr) minmax(0, 1.6fr);
  gap: 34px;
  align-items: stretch;
}

.explore-category-panel {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .92)),
    var(--explore-bg) center/cover no-repeat;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .19);
}

.explore-category-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 225, 0, .34);
  border-radius: 24px;
  pointer-events: none;
}

.explore-category-panel::after {
  content: "";
  position: absolute;
  right: -72px;
  top: -72px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: .82;
}

.explore-category-panel-inner {
  position: relative;
  z-index: 2;
  padding: 42px;
  color: #fff;
}

.explore-category-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 13px;
  color: #000;
  background: var(--yellow);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.8px;
}

.explore-category-icon {
  width: 58px;
  height: 58px;
  margin: 26px 0 18px;
  display: grid;
  place-items: center;
  color: #000;
  background: #fff;
  border-radius: 50%;
  font-size: 26px;
  box-shadow: 0 0 0 8px rgba(255, 225, 0, .18);
}

.explore-category-tag {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.explore-category-panel h2 {
  margin: 0 0 18px;
  max-width: 360px;
  color: #fff;
  font-size: clamp(36px, 5vw, 58px);
  line-height: .92;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -2px;
}

.explore-category-copy {
  margin: 0 0 28px;
  max-width: 430px;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  line-height: 1.75;
  font-weight: 500;
}

.explore-category-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  color: #000;
  background: var(--yellow);
  border: 2px solid var(--yellow);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .8px;
  transition: .25s ease;
}

.explore-category-btn:hover {
  color: var(--yellow);
  background: transparent;
  transform: translateY(-3px);
}

.explore-product-area {
  min-width: 0;
  padding: 28px;
  background: #fff;
  border: 1px solid #eee7cf;
  border-radius: 34px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .07);
}

.explore-product-topbar {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.explore-product-topbar span {
  display: inline-block;
  margin-bottom: 7px;
  color: #8f7210;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.explore-product-topbar h3 {
  margin: 0;
  color: #080808;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.explore-carousel-navs {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.explore-carousel-nav {
  width: 46px;
  height: 46px;
  border: 1px solid #e7dfc7;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #080808;
  background: #fff;
  transition: .25s ease;
}

.explore-carousel-nav:hover {
  color: #000;
  background: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-3px);
}

.explore-product-carousel .owl-stage-outer {
  padding: 4px 0 18px;
}

.explore-product-card {
  position: relative;
  height: 100%;
  background: #fff;
  border: 1px solid #eee7cf;
  border-radius: 26px;
  overflow: hidden;
  transition: .3s ease;
}

.explore-product-card:hover {
  border-color: rgba(255, 225, 0, .75);
  transform: translateY(-7px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, .13);
}

.explore-product-media {
  position: relative;
  height: 238px;
  background: #f4f4ee;
  overflow: hidden;
}

.explore-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .45s ease;
}

.explore-product-card:hover .explore-product-media img {
  transform: scale(1.08);
}

.explore-product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, .42));
  opacity: 0;
  transition: .3s ease;
}

.explore-product-card:hover .explore-product-media::after {
  opacity: 1;
}

.explore-product-badge {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 3;
  min-height: 26px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  color: #000;
  background: var(--yellow);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .8px;
}

.explore-product-badge.sale {
  color: #fff;
  background: #111;
}

.explore-product-badge.hot,
.explore-product-badge.best {
  color: #000;
  background: #fff;
}

.explore-product-icons {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 4;
  display: grid;
  gap: 9px;
}

.explore-product-icons button {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #000;
  background: #fff;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .16);
  transition: .24s ease;
}

.explore-product-icons button:hover {
  color: #000;
  background: var(--yellow);
  transform: translateY(-3px) scale(1.04);
}

.explore-product-body {
  padding: 20px;
}

.explore-product-body > span {
  display: inline-block;
  margin-bottom: 8px;
  color: #8f7210;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.explore-product-body h3 {
  min-height: 44px;
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 900;
}

.explore-product-body h3 a {
  color: #090909;
  transition: .22s ease;
}

.explore-product-body h3 a:hover {
  color: #9b7d00;
}

.explore-product-rating {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 17px;
  color: var(--yellow);
  font-size: 13px;
}

.explore-product-rating small {
  margin-left: 6px;
  color: #8a8a8a;
  font-size: 11px;
  font-weight: 700;
}

.explore-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.explore-product-footer strong {
  color: #080808;
  font-size: 18px;
  font-weight: 900;
}

.explore-product-footer a {
  min-height: 38px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #000;
  background: var(--yellow);
  border: 1px solid var(--yellow);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .6px;
  transition: .24s ease;
}

.explore-product-footer a:hover {
  color: var(--yellow);
  background: #080808;
  border-color: #080808;
}

.explore-product-carousel.owl-theme .owl-dots {
  margin-top: 8px;
}

.explore-product-carousel.owl-theme .owl-dots .owl-dot span {
  width: 22px;
  height: 4px;
  margin: 4px;
  border-radius: 0;
  background: #ded8c4;
  transition: .25s ease;
}

.explore-product-carousel.owl-theme .owl-dots .owl-dot.active span,
.explore-product-carousel.owl-theme .owl-dots .owl-dot:hover span {
  width: 42px;
  background: var(--yellow);
}

@media (max-width: 1199px) {
  .explore-category-grid,
  .explore-category-section.reverse .explore-category-grid {
    grid-template-columns: minmax(280px, .85fr) minmax(0, 1.35fr);
  }

  .explore-product-media {
    height: 220px;
  }
}

@media (max-width: 991px) {
  .explore-category-section {
    padding: 70px 0;
  }

  .explore-category-grid,
  .explore-category-section.reverse .explore-category-grid {
    grid-template-columns: 1fr;
  }

  .explore-category-section.reverse .explore-category-panel {
    order: 0;
  }

  .explore-category-panel {
    min-height: 430px;
  }
}

@media (max-width: 575px) {
  .explore-category-section {
    padding: 56px 0;
  }

  .explore-category-panel {
    min-height: 470px;
    border-radius: 24px;
  }

  .explore-category-panel-inner,
  .explore-product-area {
    padding: 24px;
  }

  .explore-product-area {
    border-radius: 24px;
  }

  .explore-product-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .explore-product-media {
    height: 240px;
  }

  .explore-product-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .explore-product-footer a {
    width: 100%;
  }
}


/* CLEAN EXPLORE CATEGORY PRODUCT SLIDERS */
.clean-explore-wrap {
  padding: 92px 0;
  background:
    radial-gradient(circle at 12% 4%, rgba(255, 225, 0, .12), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7f7f0 48%, #ffffff 100%);
  overflow: hidden;
}

.clean-explore-intro {
  max-width: 790px;
  margin-bottom: 34px;
}

.clean-explore-intro > span,
.clean-kicker,
.clean-slider-head span {
  display: inline-block;
  color: #8a7400;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2.4px;
}

.clean-explore-intro h2 {
  margin: 10px 0 12px;
  color: #060606;
  font-size: 50px;
  line-height: .92;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.clean-explore-intro p {
  margin: 0;
  max-width: 740px;
  color: #5f5f5f;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 500;
}

.clean-category-section {
  margin-top: 26px;
}

.clean-category-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.55fr);
  gap: 0;
  background: #fff;
  border: 1px solid #ece8d8;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .075);
}

.clean-category-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--yellow);
  z-index: 3;
}

.clean-category-info {
  position: relative;
  min-height: 390px;
  padding: 42px 34px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 8%, rgba(255, 225, 0, .36), transparent 26%),
    linear-gradient(145deg, #060606 0%, #161616 100%);
  overflow: hidden;
}

.clean-category-info::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -56px;
  bottom: -78px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: .92;
}

.clean-info-icon {
  position: absolute;
  right: 26px;
  top: 30px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: #000;
  background: var(--yellow);
  border-radius: 50%;
  font-size: 24px;
  box-shadow: 0 12px 28px rgba(255, 225, 0, .25);
}

.clean-small-label {
  position: relative;
  z-index: 2;
  width: fit-content;
  margin: 54px 0 13px;
  padding: 8px 12px;
  color: #000;
  background: var(--yellow);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.clean-category-info h2 {
  position: relative;
  z-index: 2;
  max-width: 340px;
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(28px, 3.7vw, 46px);
  line-height: .95;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1.5px;
}

.clean-category-text {
  position: relative;
  z-index: 2;
  margin: 0 0 24px;
  max-width: 390px;
  color: rgba(255,255,255,.76);
  font-size: 13px;
  line-height: 1.75;
  font-weight: 500;
}

.clean-view-all {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 45px;
  padding: 0 18px;
  color: #000;
  background: var(--yellow);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .8px;
  transition: .22s ease;
}

.clean-view-all:hover {
  color: #000;
  background: #fff;
  transform: translateY(-3px);
}

.clean-slider-panel {
  min-width: 0;
  padding: 32px 28px 26px;
  background:
    linear-gradient(180deg, #ffffff, #fbfaf4);
  overflow: hidden;
}

.clean-slider-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.clean-slider-head h3 {
  margin: 6px 0 0;
  color: #080808;
  font-size: clamp(21px, 2.5vw, 31px);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.clean-slider-navs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.clean-nav {
  width: 40px;
  height: 40px;
  border: 1px solid #eee4b8;
  display: grid;
  place-items: center;
  color: #000;
  background: #fff;
  border-radius: 50%;
  transition: .22s ease;
}

.clean-nav:hover {
  border-color: var(--yellow);
  background: var(--yellow);
  transform: translateY(-2px);
}

.clean-category-carousel,
.clean-category-carousel .owl-stage-outer {
  overflow: hidden;
}

.clean-category-carousel .owl-stage {
  display: flex;
}

.clean-category-carousel .owl-item {
  display: flex;
}

.clean-product-card {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #eee8d4;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(0,0,0,.06);
  transition: .28s ease;
}

.clean-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 54px rgba(0,0,0,.13);
  border-color: rgba(255, 225, 0, .9);
}

.clean-product-media {
  position: relative;
  height: 178px;
  background: #f3f3ef;
  overflow: hidden;
}

.clean-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .45s ease;
}

.clean-product-card:hover .clean-product-media img {
  transform: scale(1.08);
}

.clean-product-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  min-width: 48px;
  padding: 7px 9px;
  color: #000;
  background: var(--yellow);
  font-size: 10px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .7px;
}

.clean-product-badge.sale,
.clean-product-badge.hot {
  color: #fff;
  background: #080808;
}

.clean-product-float-actions {
  position: absolute;
  right: 12px;
  top: 12px;
  display: grid;
  gap: 8px;
}

.clean-product-float-actions a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #000;
  background: rgba(255,255,255,.94);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  transition: .22s ease;
}

.clean-product-float-actions a:hover {
  background: var(--yellow);
  transform: scale(1.08);
}

.clean-product-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px;
}

.clean-product-category {
  margin: 0 0 7px;
  color: #8a7400;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.clean-product-body h4 {
  min-height: 20px !important;
  margin: 0 0 9px;
  color: #111;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
}

.clean-product-rating {
  display: flex;
  gap: 2px;
  color: var(--yellow);
  font-size: 12px;
  margin-bottom: 13px;
}

.clean-product-bottom {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.clean-product-bottom strong {
  color: #000;
  font-size: 16px;
  font-weight: 900;
  white-space: nowrap;
}

.clean-add-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 12px;
  color: #000;
  background: var(--yellow);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .5px;
  white-space: nowrap;
  transition: .22s ease;
}

.clean-add-cart:hover {
  color: #fff;
  background: #000;
}

.clean-category-carousel .owl-dots {
  margin-top: 18px !important;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.clean-category-carousel .owl-dot span {
  width: 26px !important;
  height: 4px !important;
  margin: 0 !important;
  border-radius: 999px !important;
  background: #d9d2b0 !important;
  transition: .25s ease !important;
}

.clean-category-carousel .owl-dot.active span {
  width: 46px !important;
  background: var(--yellow) !important;
}

@media (max-width: 1199px) {
  .clean-category-shell {
    grid-template-columns: minmax(255px, .82fr) minmax(0, 1.35fr);
  }

  .clean-product-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .clean-add-cart {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .clean-explore-wrap {
    padding: 68px 0;
  }

  .clean-category-shell {
    grid-template-columns: 1fr;
  }

  .clean-category-info {
    min-height: auto;
  }
}

@media (max-width: 575px) {
  .clean-explore-intro h2 {
    letter-spacing: -1px;
  }

  .clean-category-info,
  .clean-slider-panel {
    padding: 28px 18px;
  }

  .clean-slider-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .clean-slider-navs {
    width: 100%;
    justify-content: flex-end;
  }

  .clean-product-media {
    height: 210px;
  }
}


/* FIXED EXPLORE CATEGORY V2: no oversized side panel */
.clean-explore-wrap {
  padding: 90px 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 225, 0, .13), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f8f7ef 48%, #ffffff 100%);
}

.clean-explore-intro {
  max-width: 900px;
  margin: 0 0 34px;
}

.clean-explore-intro h2 {
  margin-top: 10px;
  letter-spacing: -2px;
}

.clean-category-section {
  margin-top: 32px;
}

.clean-category-shell {
  display: block;
  background: #fff;
  border: 1px solid #eee7cf;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .075);
}

.clean-category-shell::before {
  height: 6px;
  background: linear-gradient(90deg, var(--yellow), #fff4a3, var(--yellow));
}

.clean-category-info {
  min-height: 0;
  padding: 34px 32px 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 28px;
  align-items: end;
  color: #080808;
  background:
    linear-gradient(90deg, rgba(255, 225, 0, .10), transparent 38%),
    #ffffff;
  border-bottom: 1px solid #eee7cf;
  overflow: visible;
}

.clean-category-info::after,
.clean-info-icon {
  display: none;
}

.clean-category-info .clean-kicker,
.clean-category-info .clean-small-label,
.clean-category-info h2,
.clean-category-info .clean-category-text {
  grid-column: 1;
}

.clean-category-info .clean-kicker {
  margin-bottom: 12px;
  color: #8a7400;
}

.clean-small-label {
  width: fit-content;
  margin: 0 0 12px;
  padding: 8px 13px;
  color: #000;
  background: var(--yellow);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.clean-category-info h2 {
  max-width: none;
  margin: 0 0 12px;
  color: #080808;
  font-size: 35px;
  line-height: .95;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0px;
}

.clean-category-text {
  max-width: 850px;
  margin: 0;
  color: #5f5f5f;
  font-size: 14px;
  line-height: 1.78;
  font-weight: 500;
}

.clean-view-all {
  grid-column: 2;
  grid-row: 1 / span 4;
  align-self: center;
  justify-self: end;
  min-height: 48px;
  padding: 0 22px;
  color: #000;
  background: var(--yellow);
  border: 2px solid var(--yellow);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(255, 225, 0, .24);
}

.clean-view-all:hover {
  color: var(--yellow);
  background: #050505;
  border-color: #050505;
}

.clean-slider-panel {
  padding: 26px 32px 32px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fffdf4 100%);
  overflow: hidden;
}

.clean-slider-head {
  align-items: center;
  padding-bottom: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid #f0ead7;
}

.clean-slider-head span {
  color: #8a7400;
}

.clean-slider-head h3 {
  margin-top: 7px;
  color: #080808;
  font-size: clamp(22px, 2.7vw, 34px);
  letter-spacing: -1px;
}

.clean-nav {
  border-color: #eadfba;
  background: #fff;
  color: #000;
}

.clean-product-card {
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .06);
}

.clean-product-media {
  height: 205px;
}

.clean-product-body {
  padding: 17px;
}

.clean-product-body h4 {
  min-height: 20px;
  font-size: 15px;
}

.clean-product-bottom {
  align-items: center;
  flex-direction: row;
}

.clean-add-cart {
  min-height: 38px;
  padding: 0 13px;
}

.clean-category-carousel .owl-dots {
  margin-top: 20px !important;
}

@media (max-width: 1199px) {
  .clean-category-shell {
    display: block;
  }

  .clean-product-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 991px) {
  .clean-category-info {
    grid-template-columns: 1fr;
    row-gap: 18px;
    padding: 30px 24px 24px;
  }

  .clean-view-all {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }

  .clean-slider-panel {
    padding: 24px;
  }
}

@media (max-width: 575px) {
  .clean-explore-wrap {
    padding: 64px 0;
  }

  .clean-category-info,
  .clean-slider-panel {
    padding-left: 18px;
    padding-right: 18px;
  }

  .clean-view-all {
    width: 100%;
    justify-content: center;
  }

  .clean-product-media {
    height: 220px;
  }
}


/* CLEAN EXPLORE CATEGORY V3: header-only category info, no duplicate slider heading */
.clean-explore-wrap {
  padding: 78px 0;
}

.clean-explore-intro {
  max-width: 860px;
  margin-bottom: 38px;
}

.clean-category-section {
  margin-top: 30px;
}

.clean-category-shell {
  border-radius: 24px;
  overflow: hidden;
}

.clean-category-info {
  position: relative;
  min-height: 0;
  padding: 34px 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 34px;
  row-gap: 12px;
  align-items: center;
  border-bottom: 1px solid #eee7cf;
}

.clean-category-info .clean-kicker {
  display: none !important;
}

.clean-category-info .clean-small-label,
.clean-category-info h2,
.clean-category-info .clean-category-text {
  grid-column: 1;
}

.clean-small-label {
  margin-bottom: 2px;
}

.clean-category-info h2 {
  margin-bottom: 4px;
}

.clean-category-text {
  max-width: 820px;
}

.clean-category-actions {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: center;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}

.clean-category-actions .clean-view-all {
  grid-column: auto;
  grid-row: auto;
  align-self: auto;
  justify-self: auto;
}

.clean-category-actions .clean-slider-navs {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.clean-slider-panel {
  padding: 28px 32px 34px;
}

.clean-slider-head {
  display: none !important;
}

.clean-category-carousel,
.clean-category-carousel .owl-stage-outer {
  overflow: visible;
}

.clean-category-carousel .owl-dots {
  margin-top: 20px !important;
}

@media (max-width: 1199px) {
  .clean-category-info {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .clean-category-actions {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    flex-wrap: wrap;
    gap: 14px;
  }
}

@media (max-width: 575px) {
  .clean-category-info,
  .clean-slider-panel {
    padding-left: 18px;
    padding-right: 18px;
  }

  .clean-category-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .clean-category-actions .clean-view-all {
    width: 100%;
    justify-content: center;
  }

  .clean-category-actions .clean-slider-navs {
    width: 100%;
    justify-content: space-between;
  }
}


/* UNIFORM PRODUCT ACTIONS: same add-to-cart button + wishlist appears top-right on hover */
.latest-product-actions,
.clean-product-float-actions {
  position: absolute !important;
  top: 16px !important;
  right: 16px !important;
  left: auto !important;
  bottom: auto !important;
  z-index: 8 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translate(10px, -10px) scale(.88) !important;
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease !important;
}

.latest-product-card:hover .latest-product-actions,
.clean-product-card:hover .clean-product-float-actions {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translate(0, 0) scale(1) !important;
}

.latest-product-actions a,
.clean-product-float-actions a,
.site-wishlist-btn {
  width: 42px !important;
  height: 42px !important;
  display: grid !important;
  place-items: center !important;
  color: #000 !important;
  background: #fff !important;
  border: 1px solid rgba(0, 0, 0, .08) !important;
  border-radius: 50% !important;
  font-size: 17px !important;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .18) !important;
  transition: .22s ease !important;
}

.latest-product-actions a:hover,
.clean-product-float-actions a:hover,
.site-wishlist-btn:hover {
  color: #000 !important;
  background: var(--yellow) !important;
  border-color: var(--yellow) !important;
  transform: translateY(-3px) scale(1.04) !important;
}

.latest-product-bottom a,
.clean-add-cart,
.site-add-cart {
  min-height: 42px !important;
  padding: 0 18px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  color: #000 !important;
  background: var(--yellow) !important;
  border: 2px solid var(--yellow) !important;
  border-radius: 999px !important;
  font-size: 11px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: .75px !important;
  white-space: nowrap !important;
  box-shadow: 0 12px 28px rgba(255, 225, 0, .22) !important;
  transition: color .22s ease, background .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease !important;
}

.latest-product-bottom a:hover,
.clean-add-cart:hover,
.site-add-cart:hover {
  color: var(--yellow) !important;
  background: #050505 !important;
  border-color: #050505 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .22) !important;
}

.latest-product-bottom a i,
.clean-add-cart i,
.site-add-cart i {
  font-size: 14px !important;
  line-height: 1 !important;
}

@media (hover: none) {
  .latest-product-actions,
  .clean-product-float-actions {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
  }
}

@media (max-width: 575px) {
  .latest-product-bottom,
  .clean-product-bottom {
    align-items: flex-start !important;
    flex-direction: column !important;
  }

  .latest-product-bottom a,
  .clean-add-cart,
  .site-add-cart {
    width: 100% !important;
  }
}

/* LATEST BLOG SECTION */
.latest-blog-section {
  padding: 92px 0;
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 225, 0, .16), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7f6ef 100%);
  border-top: 1px solid #eee9d6;
  overflow: hidden;
}

.latest-blog-header {
  margin-bottom: 36px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.latest-blog-header span {
  display: inline-block;
  margin-bottom: 12px;
  color: #8a7400;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.latest-blog-header h2 {
  margin: 0 0 12px;
  color: #050505;
  font-size: 50px;
  line-height: .95;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.latest-blog-header p {
  max-width: 780px;
  margin: 0;
  color: #626262;
  font-size: 14px;
  line-height: 1.85;
  font-weight: 500;
}

.latest-blog-view {
  flex: 0 0 auto;
  min-height: 48px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #000;
  background: var(--yellow);
  border: 2px solid var(--yellow);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .8px;
  box-shadow: 0 16px 34px rgba(255, 225, 0, .28);
  transition: .25s ease;
}

.latest-blog-view:hover {
  color: var(--yellow);
  background: #050505;
  border-color: #050505;
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, .22);
}

.latest-blog-layout {
  display: grid;
  grid-template-columns: 1.25fr .9fr .9fr;
  gap: 22px;
}

.latest-blog-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #ebe5d0;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .07);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.latest-blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 225, 0, .85);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .14);
}

.latest-blog-img {
  position: relative;
  display: block;
  height: 230px;
  overflow: hidden;
  background: #111;
}

.latest-blog-featured .latest-blog-img {
  height: 330px;
}

.latest-blog-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, .62));
  opacity: .75;
  transition: .28s ease;
}

.latest-blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .45s ease;
}

.latest-blog-card:hover .latest-blog-img img {
  transform: scale(1.1);
}

.latest-blog-card:hover .latest-blog-img::after {
  opacity: .9;
}

.latest-blog-img span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 9px 14px;
  color: #000;
  background: var(--yellow);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.latest-blog-content {
  padding: 24px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.latest-blog-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
  color: #7f7f7f;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.latest-blog-meta i {
  color: #000;
  margin-right: 5px;
}

.latest-blog-content h3 {
  margin: 0 0 12px;
  color: #060606;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -.4px;
}

.latest-blog-featured .latest-blog-content h3 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}

.latest-blog-content h3 a {
  color: inherit;
  transition: .22s ease;
}

.latest-blog-content h3 a:hover {
  color: #8a7400;
}

.latest-blog-content p {
  margin: 0 0 20px;
  color: #666;
  font-size: 13px;
  line-height: 1.75;
  font-weight: 500;
}

.latest-blog-link {
  width: fit-content;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #000;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .8px;
  transition: .22s ease;
}

.latest-blog-link:hover {
  color: #8a7400;
  transform: translateX(5px);
}

.latest-blog-link i {
  color: var(--yellow);
  background: #000;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 13px;
  transition: .22s ease;
}

.latest-blog-link:hover i {
  color: #000;
  background: var(--yellow);
}

@media (max-width: 1199px) {
  .latest-blog-layout {
    grid-template-columns: 1fr 1fr;
  }

  .latest-blog-featured {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .latest-blog-section {
    padding: 68px 0;
  }

  .latest-blog-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .latest-blog-view {
    width: 100%;
  }

  .latest-blog-layout {
    grid-template-columns: 1fr;
  }

  .latest-blog-featured .latest-blog-img,
  .latest-blog-img {
    height: 240px;
  }
}


/* HEADER WISHLIST ICON */
.wishlist-header-link {
  position: relative;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 19px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  transition: .25s ease;
}

.wishlist-header-link:hover {
  color: #000;
  background: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-2px);
}

.wishlist-header-link span {
  position: absolute;
  right: -8px;
  top: -7px;
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: #000;
  font-size: 10px;
  font-weight: 900;
}

.wishlist-header-link:hover span {
  background: #fff;
}

/* LATEST BLOG GAP FIX */
.latest-blog-layout {
  align-items: flex-start;
}

.latest-blog-card {
  height: auto;
}

.latest-blog-link {
  margin-top: 16px;
}

.latest-blog-content p {
  margin-bottom: 0;
}

/* FOOTER SOCIAL AND PAYMENT */
.footer-info p {
  margin-bottom: 22px;
}

.footer-social-wrap,
.footer-payment-wrap {
  margin-top: 20px;
}

.footer-social-wrap > span,
.footer-payment-wrap > span {
  display: block;
  margin-bottom: 10px;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-social-icons,
.footer-payment-icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social-icons a,
.footer-payment-icons i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  font-size: 16px;
  transition: .25s ease;
}

.footer-payment-icons i {
  width: 48px;
  border-radius: 10px;
  font-size: 20px;
}

.footer-social-icons a:hover,
.footer-payment-icons i:hover {
  color: #000;
  background: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-3px);
}

/* SIDE ENQUIRY DRAWER */
.quote-overlay {
  position: fixed;
  inset: 0;
  z-index: 5000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .32s ease, visibility .32s ease;
}

.quote-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.quote-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .56);
  backdrop-filter: blur(7px);
}

.quote-drawer {
  position: absolute;
  right: 0;
  top: 0;
  width: min(500px, 100%);
  height: 100%;
  background: #f9f5ec;
  box-shadow: -24px 0 70px rgba(0, 0, 0, .38);
  transform: translateX(105%);
  transition: transform .42s cubic-bezier(.2, .8, .2, 1);
  overflow-y: auto;
}

.quote-overlay.active .quote-drawer {
  transform: translateX(0);
}

.quote-close {
  position: absolute;
  top: 22px;
  right: 20px;
  z-index: 3;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(0, 0, 0, .28);
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  font-size: 16px;
  transition: .25s ease;
}

.quote-close:hover {
  color: #000;
  background: var(--yellow);
  border-color: var(--yellow);
  transform: rotate(90deg);
}

.quote-drawer-hero {
  position: relative;
  min-height: 235px;
  padding: 46px 34px 34px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, .48)),
    url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?auto=format&fit=crop&w=900&q=80') center/cover;
}

.quote-drawer-hero::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: .85;
}

.quote-drawer-hero span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.quote-drawer-hero h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -1.4px;
}

.quote-drawer-hero p {
  position: relative;
  z-index: 1;
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 600;
}

.quote-form {
  padding: 28px 34px 34px;
  display: grid;
  gap: 14px;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid #d9cdb6;
  outline: 0;
  background: #fff;
  color: #111;
  border-radius: 10px;
  padding: 15px 17px;
  font-size: 14px;
  font-weight: 500;
  transition: border-color .22s ease, box-shadow .22s ease;
}

.quote-form textarea {
  min-height: 105px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 225, 0, .22);
}

.quote-form button {
  min-height: 52px;
  border: 0;
  color: #000;
  background: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: .25s ease;
}

.quote-form button:hover {
  color: var(--yellow);
  background: #000;
  transform: translateY(-2px);
}

@media (max-width: 575px) {
  .wishlist-header-link {
    width: 34px;
    height: 34px;
    font-size: 17px;
  }

  .quote-drawer-hero {
    padding: 42px 22px 28px;
  }

  .quote-form {
    padding: 24px 22px 28px;
  }
}


/* SMALL WEBSITE PRELOADER ANIMATION */
body.is-loading {
  overflow: hidden;
}

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 225, 0, .12), transparent 28%),
    #030303;
  opacity: 1;
  visibility: visible;
  transition: opacity .45s ease, visibility .45s ease;
}

.site-preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-box {
  width: 150px;
  min-height: 150px;
  display: grid;
  place-items: center;
  gap: 13px;
  text-align: center;
}

.preloader-logo {
  color: #fff;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 6px;
  line-height: 1;
  animation: preloaderLogoPop 1.2s ease-in-out infinite;
}

.preloader-logo span {
  color: var(--yellow);
}

.preloader-spinner {
  position: relative;
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, .13);
  border-top-color: var(--yellow);
  border-right-color: var(--yellow);
  border-radius: 50%;
  animation: preloaderSpin .85s linear infinite;
}

.preloader-spinner span {
  position: absolute;
  right: 2px;
  top: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 20px rgba(255, 225, 0, .75);
}

.preloader-box p {
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}

@keyframes preloaderSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes preloaderLogoPop {
  0%, 100% {
    transform: scale(1);
    opacity: .72;
  }

  50% {
    transform: scale(1.07);
    opacity: 1;
  }
}


/* SHOP PAGE WITH FILTERS */
.nav-menu > ul > li > a.active {
  color: var(--yellow);
}

.shop-page-hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.62), rgba(0,0,0,.78)),
    url('https://images.unsplash.com/photo-1517649763962-0c623066013b?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
}

.shop-page-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(255,225,0,.23), transparent 27%),
    linear-gradient(135deg, rgba(255,225,0,.12), transparent 40%);
}

.shop-page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  color: #fff;
}

.shop-page-hero-content > span,
.shop-heading-row > div > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 9px 15px;
  color: #000;
  background: var(--yellow);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.7px;
}

.shop-page-hero-content h1 {
  margin: 0 0 18px;
  font-size: clamp(48px, 8vw, 96px);
  line-height: .88;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -3px;
}

.shop-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,225,0,.28);
  border-left: 4px solid var(--yellow);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 42px rgba(0,0,0,.22);
}

.shop-breadcrumb a,
.shop-breadcrumb span {
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.shop-breadcrumb a {
  transition: .22s ease;
}

.shop-breadcrumb a:hover {
  color: var(--yellow);
}

.shop-breadcrumb i {
  color: var(--yellow);
  font-size: 12px;
}

.shop-breadcrumb span {
  color: var(--yellow);
}

.shop-page-hero-content p {
  max-width: 650px;
  margin: 0 0 28px;
  color: rgba(255,255,255,.76);
  font-size: 16px;
  line-height: 1.85;
  font-weight: 500;
}

.shop-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.shop-ghost-btn {
  min-height: 50px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 2px solid rgba(255,255,255,.24);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: .25s ease;
}

.shop-ghost-btn:hover {
  color: #000;
  background: #fff;
  border-color: #fff;
  transform: translateY(-3px);
}

.shop-products-section {
  padding: 90px 0;
  background:
    radial-gradient(circle at 8% 4%, rgba(255,225,0,.09), transparent 27%),
    linear-gradient(180deg, #ffffff, #f8f7ef);
}

.shop-heading-row {
  margin-bottom: 36px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 26px;
}

.shop-heading-row h2 {
  margin: 0 0 12px;
  color: #070707;
  font-size: clamp(34px, 5vw, 58px);
  line-height: .95;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -2px;
}

.shop-heading-row p {
  max-width: 820px;
  margin: 0;
  color: #606060;
  font-size: 14px;
  line-height: 1.85;
  font-weight: 500;
}

.shop-clear-top,
.shop-reset-btn {
  flex: 0 0 auto;
  min-height: 46px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #000;
  background: var(--yellow);
  border: 2px solid var(--yellow);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .9px;
  transition: .22s ease;
}

.shop-clear-top:hover,
.shop-reset-btn:hover {
  color: var(--yellow);
  background: #050505;
  border-color: #050505;
  transform: translateY(-2px);
}

.shop-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.shop-filter-sidebar {
  position: sticky;
  top: 30px;
  display: grid;
  gap: 16px;
}

.shop-filter-card {
  padding: 24px;
  background: #fff;
  border: 1px solid #eee7d4;
  border-radius: 24px;
  box-shadow: 0 14px 38px rgba(0,0,0,.06);
}

.shop-filter-card h3 {
  position: relative;
  margin: 0 0 18px;
  padding-bottom: 12px;
  color: #060606;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.shop-filter-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44px;
  height: 3px;
  background: var(--yellow);
}

.shop-filter-card label:not(.shop-search-box) {
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #272727;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.shop-filter-card input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #050505;
}

.shop-search-box {
  min-height: 48px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8f7ef;
  border: 1px solid #ece5d0;
  border-radius: 999px;
}

.shop-search-box i {
  color: #000;
  font-size: 16px;
}

.shop-search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #111;
  font-size: 13px;
  font-weight: 700;
}

.shop-price-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.shop-price-inputs label {
  display: grid !important;
  gap: 7px !important;
  align-items: start !important;
  color: #787878 !important;
  font-size: 10px !important;
  font-weight: 900 !important;
  text-transform: uppercase;
  letter-spacing: .9px;
}

.shop-price-inputs input {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  color: #050505;
  background: #f8f7ef;
  border: 1px solid #ece5d0;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 900;
}

.shop-price-range {
  width: 100%;
  accent-color: var(--yellow);
}

.shop-price-text {
  margin: 10px 0 0;
  color: #666;
  font-size: 12px;
  font-weight: 700;
}

.shop-price-text strong {
  color: #000;
}

.shop-reset-btn {
  width: 100%;
  border-radius: 18px;
}

.shop-content-area {
  min-width: 0;
}

.shop-toolbar {
  margin-bottom: 18px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: #fff;
  border: 1px solid #eee7d4;
  border-radius: 20px;
  box-shadow: 0 14px 38px rgba(0,0,0,.045);
}

.shop-toolbar p {
  margin: 0;
  color: #606060;
  font-size: 13px;
  font-weight: 800;
}

.shop-sort-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.shop-sort-wrap label {
  margin: 0;
  color: #080808;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.shop-sort-wrap select {
  min-height: 42px;
  padding: 0 42px 0 14px;
  color: #000;
  background: #f8f7ef;
  border: 1px solid #ece5d0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  outline: 0;
  cursor: pointer;
}

.shop-active-tags {
  min-height: 32px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.shop-active-tags span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 11px;
  color: #000;
  background: var(--yellow);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .65px;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.shop-product-item.is-hidden {
  display: none !important;
}

.shop-product-card .clean-product-media {
  height: 210px;
}

.shop-card-meta {
  min-height: 22px;
  margin-bottom: 11px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.shop-card-meta del {
  color: #9a9a9a;
  font-size: 12px;
  font-weight: 800;
}

.shop-card-discount {
  min-height: 22px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  color: #000;
  background: rgba(255,225,0,.6);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
}

.site-wishlist-btn.active,
.clean-product-float-actions a.active {
  color: #000 !important;
  background: var(--yellow) !important;
  border-color: var(--yellow) !important;
}

.shop-empty-state {
  display: none;
  padding: 60px 20px;
  text-align: center;
  background: #fff;
  border: 1px solid #eee7d4;
  border-radius: 24px;
}

.shop-empty-state.show {
  display: block;
}

.shop-empty-state i {
  color: var(--yellow);
  font-size: 46px;
}

.shop-empty-state h3 {
  margin: 14px 0 8px;
  color: #000;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
}

.shop-empty-state p {
  margin: 0;
  color: #686868;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 1199px) {
  .shop-layout {
    grid-template-columns: 270px minmax(0, 1fr);
  }
  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }
  .shop-filter-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .shop-search-card,
  .shop-reset-btn {
    grid-column: 1 / -1;
  }
  .shop-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .shop-products-section {
    padding: 64px 0;
  }
  .shop-page-hero {
    min-height: 390px;
  }
  .shop-filter-sidebar,
  .shop-grid {
    grid-template-columns: 1fr;
  }
  .shop-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .shop-sort-wrap,
  .shop-sort-wrap select {
    width: 100%;
  }
  .shop-heading-row h2,
  .shop-page-hero-content h1 {
    letter-spacing: -1.5px;
  }
}

@media (max-width: 575px) {
  .shop-hero-actions a,
  .shop-clear-top {
    width: 100%;
  }
  .shop-page-hero-content p {
    font-size: 14px;
  }

  .shop-breadcrumb {
    min-height: 40px;
    padding: 0 14px;
  }

  .shop-breadcrumb a,
  .shop-breadcrumb span {
    font-size: 11px;
  }
}


/* =========================================================
   BOLT SPORTS EXTRA INNER PAGES - NO INLINE CSS
   Pages: cart, wishlist, search, blog, single post, about, product
   ========================================================= */
:root {
  --page-bg: #f7f6ef;
  --page-border: #e8e1c7;
  --page-card: #ffffff;
  --page-soft-yellow: rgba(255, 225, 0, .12);
}

body.is-loading {
  overflow: hidden;
}

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #030303;
  opacity: 1;
  visibility: visible;
  transition: opacity .45s ease, visibility .45s ease;
}

.site-preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.preloader-box {
  display: grid;
  place-items: center;
  gap: 18px;
}

.preloader-logo {
  position: relative;
  color: #fff;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: 6px;
  line-height: 1;
  text-transform: uppercase;
}

.preloader-logo span {
  color: var(--yellow);
}

.preloader-logo::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% + 18px);
  width: 38px;
  height: 38px;
  margin-left: -19px;
  border: 3px solid rgba(255,255,255,.18);
  border-top-color: var(--yellow);
  border-radius: 50%;
  animation: boltSpin .8s linear infinite;
}

@keyframes boltSpin {
  to { transform: rotate(360deg); }
}

.nav-menu > ul > li > a.active {
  color: var(--yellow);
}

.wishlist-header-link {
  position: relative;
  color: #fff;
  font-size: 20px;
}

.wishlist-header-link span {
  position: absolute;
  right: -10px;
  top: -7px;
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: #000;
  font-size: 10px;
  font-weight: 900;
}

.wishlist-header-link:hover,
.cart-link:hover {
  color: var(--yellow);
}

.page-hero {
  position: relative;
  min-height: 330px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background-color: #050505;
  background-position: center;
  background-size: cover;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.52), rgba(0,0,0,.78)),
    radial-gradient(circle at 12% 20%, rgba(255,225,0,.22), transparent 28%);
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background: rgba(255,225,0,.2);
}

.cart-page-hero { background-image: url("https://images.unsplash.com/photo-1517836357463-d25dfeac3438?auto=format&fit=crop&w=1800&q=80"); }
.wishlist-page-hero { background-image: url("https://images.unsplash.com/photo-1579952363873-27f3bade9f55?auto=format&fit=crop&w=1800&q=80"); }
.search-page-hero { background-image: url("https://images.unsplash.com/photo-1546519638-68e109498ffc?auto=format&fit=crop&w=1800&q=80"); }
.blog-page-hero { background-image: url("https://images.unsplash.com/photo-1518611012118-696072aa579a?auto=format&fit=crop&w=1800&q=80"); }
.post-page-hero { background-image: url("https://images.unsplash.com/photo-1599058917212-d750089bc07e?auto=format&fit=crop&w=1800&q=80"); }

.product-page-hero { background-image: url("https://images.unsplash.com/photo-1483721310020-03333e577078?auto=format&fit=crop&w=1800&q=80"); }

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 70px 0;
}

.page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding: 0 14px;
  margin-bottom: 18px;
  color: #000;
  background: var(--yellow);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: .92;
  font-weight: 900;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.page-hero p {
  max-width: 610px;
  margin: 0 0 24px;
  color: rgba(255,255,255,.75);
  font-size: 15px;
  line-height: 1.8;
  font-weight: 500;
}

.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 16px;
  color: rgba(255,255,255,.74);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.page-breadcrumb a {
  color: var(--yellow);
}

.page-breadcrumb i {
  font-size: 10px;
  color: rgba(255,255,255,.5);
}

.inner-page-section {
  padding: 30px 0;
  background:
    radial-gradient(circle at 88% 8%, rgba(255,225,0,.12), transparent 26%),
    linear-gradient(180deg, var(--page-bg), #fff 70%);
}

.inner-page-section.is-white {
  background: #fff;
}

.inner-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.inner-section-header span,
.inner-small-label {
  display: inline-block;
  margin-bottom: 10px;
  color: #8f7210;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.inner-section-header h2,
.inner-title {
  margin: 0;
  color: #080808;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -1.4px;
  text-transform: uppercase;
}

.inner-section-header p,
.inner-lead {
  max-width: 720px;
  margin: 12px 0 0;
  color: #666;
  font-size: 14px;
  line-height: 1.85;
  font-weight: 500;
}

.bolt-btn,
.bolt-btn-dark,
.bolt-btn-light,
.bolt-btn-outline {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid var(--yellow);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .9px;
  text-transform: uppercase;
  transition: .24s ease;
}

.bolt-btn,
.bolt-btn-light {
  color: #000;
  background: var(--yellow);
}

.bolt-btn-dark {
  color: var(--yellow);
  background: #000;
}

.bolt-btn-outline {
  color: #000;
  background: transparent;
}

.bolt-btn:hover,
.bolt-btn-light:hover {
  color: var(--yellow);
  background: #000;
  border-color: #000;
  transform: translateY(-3px);
}

.bolt-btn-dark:hover {
  color: #000;
  background: var(--yellow);
  transform: translateY(-3px);
}

.bolt-btn-outline:hover {
  color: #000;
  background: var(--yellow);
  transform: translateY(-3px);
}

.bolt-card {
  background: #fff;
  border: 1px solid var(--page-border);
  border-radius: 26px;
  box-shadow: 0 18px 48px rgba(0,0,0,.07);
}

/* CART PAGE */
.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 28px;
  align-items: start;
}

.cart-table-card {
  overflow: hidden;
}

.cart-table-head,
.cart-item-row {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) .7fr .75fr .7fr 40px;
  gap: 18px;
  align-items: center;
}

.cart-table-head {
  padding: 18px 22px;
  color: #fff;
  background: #080808;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.cart-item-row {
  padding: 22px;
  border-bottom: 1px solid #eee7d6;
}

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

.cart-product-info {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.cart-product-info img,
.wishlist-list-img,
.search-result-img {
  width: 92px;
  height: 92px;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 18px;
  background: #f1f1f1;
}

.cart-product-info h4,
.wishlist-list-info h4,
.search-result-info h4 {
  margin: 0 0 7px;
  color: #080808;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 900;
}

.cart-product-info p,
.wishlist-list-info p,
.search-result-info p {
  margin: 0;
  color: #777;
  font-size: 12px;
  line-height: 1.65;
  font-weight: 600;
}

.cart-price,
.cart-subtotal,
.wishlist-price {
  color: #080808;
  font-size: 17px;
  font-weight: 900;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  width: fit-content;
  overflow: hidden;
  border: 1px solid #ddd3b7;
  border-radius: 999px;
  background: #fffdf2;
}

.qty-control button {
  width: 40px;
  height: 42px;
  border: 0;
  color: #000;
  background: transparent;
  font-size: 16px;
  font-weight: 900;
}

.qty-control input {
  width: 45px;
  height: 42px;
  border: 0;
  background: transparent;
  text-align: center;
  color: #000;
  font-size: 13px;
  font-weight: 900;
}

.remove-row-btn,
.wishlist-remove-btn {
  width: 38px;
  height: 38px;
  border: 0;
  display: grid;
  place-items: center;
  color: #000;
  background: rgba(255,225,0,.45);
  border-radius: 50%;
  transition: .22s ease;
}

.remove-row-btn:hover,
.wishlist-remove-btn:hover {
  color: #fff;
  background: #000;
  transform: rotate(90deg);
}

.cart-coupon-row {
  margin-top: 24px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--page-border);
  border-radius: 22px;
}

.cart-coupon-form {
  display: flex;
  width: min(100%, 540px);
  gap: 10px;
}

.cart-coupon-form input,
.search-main-form input,
.bolt-input,
.bolt-textarea,
.bolt-select {
  width: 100%;
  min-height: 48px;
  border: 1px solid #ddd4b8;
  border-radius: 999px;
  outline: 0;
  padding: 0 18px;
  color: #111;
  background: #fff;
  font-size: 13px;
  font-weight: 700;
}

.cart-summary {
  position: sticky;
  top: 96px;
  padding: 28px;
}

.cart-summary h3,
.sidebar-box h3,
.product-info-card h2 {
  margin: 0 0 20px;
  color: #080808;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-summary-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #eee5cd;
  color: #666;
  font-size: 13px;
  font-weight: 700;
}

.cart-summary-line strong {
  color: #090909;
  font-size: 15px;
}

.cart-summary-total {
  margin: 18px 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000;
  font-size: 18px;
  font-weight: 900;
}

.cart-summary-total strong {
  font-size: 28px;
}

.cart-summary .bolt-btn {
  width: 100%;
  border-radius: 0;
}

.cart-trust-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.cart-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #565656;
  font-size: 12px;
  font-weight: 700;
}

.cart-trust-item i {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: #000;
  background: var(--yellow);
  border-radius: 50%;
}

/* WISHLIST LIST PAGE */
.wishlist-list-wrap {
  display: grid;
  gap: 16px;
}

.wishlist-list-row {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 120px 130px 180px 44px;
  gap: 18px;
  align-items: center;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--page-border);
  border-radius: 24px;
  box-shadow: 0 14px 36px rgba(0,0,0,.055);
  transition: .22s ease;
}

.wishlist-list-row:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(0,0,0,.11);
}

.wishlist-list-main {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.stock-badge {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: #000;
  background: rgba(255,225,0,.62);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.stock-badge.low {
  color: #fff;
  background: #111;
}

.wishlist-list-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* SEARCH PAGE */
.search-panel {
  padding: 30px;
  margin-bottom: 32px;
}

.search-main-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.search-main-form input {
  min-height: 58px;
  border-radius: 18px;
  font-size: 15px;
}

.search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.search-tags a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  color: #000;
  background: #fff8bd;
  border: 1px solid #eee1a0;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .7px;
  text-transform: uppercase;
}

.search-page-layout,
.blog-layout,
.post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 30px;
  align-items: start;
}

.search-results-list {
  display: grid;
  gap: 16px;
}

.search-result-row {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) 130px auto;
  gap: 18px;
  align-items: center;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--page-border);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(0,0,0,.055);
}

.search-result-img {
  width: 110px;
  height: 100px;
}

.search-result-price strong {
  display: block;
  color: #080808;
  font-size: 20px;
  font-weight: 900;
}

.search-result-price del {
  color: #999;
  font-size: 12px;
  font-weight: 700;
}

.sidebar-box {
  padding: 24px;
  margin-bottom: 22px;
}

.sidebar-link-list,
.post-category-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-link-list a,
.post-category-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #444;
  padding: 11px 0;
  border-bottom: 1px solid #eee5ce;
  font-size: 13px;
  font-weight: 800;
}

.sidebar-link-list a:hover,
.post-category-list a:hover {
  color: #a38300;
}

/* BLOG LIST */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.blog-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--page-border);
  border-radius: 26px;
  box-shadow: 0 18px 46px rgba(0,0,0,.07);
  transition: .25s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 68px rgba(0,0,0,.12);
}

.blog-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  min-height: 390px;
}

.blog-card-img {
  position: relative;
  min-height: 250px;
  overflow: hidden;
}

.blog-card-img img,
.post-main-image img,
.about-image-card img,
.product-gallery-main img,
.related-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-img img {
  transition: .45s ease;
}

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

.blog-category-badge {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: #000;
  background: var(--yellow);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blog-card-body {
  padding: 28px;
}

.blog-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
  color: #777;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.blog-meta i {
  color: #000;
}

.blog-card h2,
.blog-card h3 {
  margin: 0 0 14px;
  color: #060606;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -.4px;
}

.blog-card.featured h2 {
  font-size: 35px;
    font-weight: 800;
    line-height: 39px;
}

.blog-card p {
  margin: 0 0 22px;
  color: #5f5f5f;
  font-size: 14px;
  line-height: 1.85;
  font-weight: 500;
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #000;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .9px;
  text-transform: uppercase;
}

.read-more-link i {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: #000;
  background: var(--yellow);
  border-radius: 50%;
  transition: .22s ease;
}

.read-more-link:hover i {
  transform: translateX(4px);
}

.recent-post-row {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #eee5ce;
}

.recent-post-row img {
  width: 74px;
  height: 66px;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 14px;
}

.recent-post-row h4 {
  margin: 0 0 6px;
  color: #111;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 900;
}

.recent-post-row span {
  color: #8a8a8a;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

/* SINGLE POST */
.post-article {
  overflow: hidden;
}

.post-main-image {
  height: 460px;
}

.post-content {
  padding: 36px;
}

.post-content .blog-meta {
  margin-bottom: 20px;
}

.post-content h2 {
  margin: 34px 0 14px;
  color: #080808;
  font-size: 32px;
  line-height: 1.12;
  font-weight: 900;
  text-transform: uppercase;
}

.post-content p {
  margin: 0 0 18px;
  color: #555;
  font-size: 15px;
  line-height: 1.95;
  font-weight: 500;
}

.post-quote {
  margin: 34px 0;
  padding: 28px;
  color: #000;
  background: var(--yellow);
  border-radius: 24px;
  font-size: 21px;
  line-height: 1.55;
  font-weight: 900;
}

.post-check-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 32px;
  padding: 0;
  list-style: none;
}

.post-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #444;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 700;
}

.post-check-list i {
  margin-top: 4px;
  color: #000;
}

.post-tags-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid #eee5ce;
}

.tag-list,
.share-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-list a,
.share-list a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  color: #000;
  background: #fff8bd;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.share-list a {
  width: 38px;
  padding: 0;
  background: #000;
  color: var(--yellow);
}

.comment-box {
  margin-top: 30px;
  padding: 30px;
}

.comment-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.comment-form-grid .full {
  grid-column: span 2;
}

.bolt-textarea {
  min-height: 140px;
  padding-top: 16px;
  border-radius: 22px;
  resize: vertical;
}

/* ABOUT PAGE */
.about-story-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.about-image-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(0,0,0,.14);
}



.about-content-card {
  padding: 34px;
}

.about-content-card p {
  margin: 0 0 18px;
  color: #555;
  font-size: 15px;
  line-height: 1.9;
  font-weight: 500;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.about-stat-card {
  padding: 24px;
  text-align: center;
  background: #080808;
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(0,0,0,.14);
}

.about-stat-card strong {
  display: block;
  color: var(--yellow);
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}

.about-stat-card span {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-feature-grid,
.about-team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.about-feature-card {
  padding: 28px;
}

.about-feature-card i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: #000;
  background: var(--yellow);
  border-radius: 18px;
  font-size: 24px;
}

.about-feature-card h3,
.team-card h3 {
  margin: 0 0 12px;
  color: #080808;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-feature-card p,
.team-card p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 500;
}

.team-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--page-border);
  border-radius: 26px;
  box-shadow: 0 18px 46px rgba(0,0,0,.07);
}

.team-card img {
  width: 100%;
  height: 290px;
  object-fit: cover;
}

.team-card-body {
  padding: 24px;
}

.about-cta {
  position: relative;
  overflow: hidden;
  padding: 46px;
  color: #fff;
  background: #080808;
  border-radius: 32px;
}

.about-cta::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: .9;
}

.about-cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.about-cta h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.about-cta p {
  max-width: 640px;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.8;
}

/* SINGLE PRODUCT */
.single-product-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 34px;
  align-items: start;
}

.product-gallery {
  display: grid;
  gap: 16px;
}

.product-gallery-main {
  height: 560px;
  overflow: hidden;
  border-radius: 30px;
  background: #f3f3f3;
  box-shadow: 0 22px 64px rgba(0,0,0,.11);
}

.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.product-thumb {
  height: 116px;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 18px;
  background: #fff;
  cursor: pointer;
}

.product-thumb.active {
  border-color: var(--yellow);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info-card {
  padding: 34px;
}

.product-info-card h1 {
    margin: 0 0 14px;
    color: #080808;
    font-size: 30px;
    line-height: 30px;
    font-weight: 600;
    letter-spacing: 0px;
    /* text-transform: uppercase; */
}

.product-rating-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #f1b700;
  font-size: 14px;
}

.product-rating-line span {
  color: #777;
  font-size: 12px;
  font-weight: 800;
}

.product-price-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.product-price-line strong {
  color: #000;
  font-size: 22px;
  font-weight: 800;
}

.product-price-line del {
  color: #999;
  font-size: 18px;
  font-weight: 800;
}

.product-discount-pill {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: #000;
  background: var(--yellow);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.product-short-text {
  margin: 0 0 24px;
  color: #555;
  font-size: 15px;
  line-height: 1.9;
  font-weight: 500;
}

.product-option-group {
  margin-bottom: 22px;
}

.product-option-group h4 {
  margin: 0 0 12px;
  color: #111;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-size-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-size-list button {
  min-width: 46px;
  height: 40px;
  border: 1px solid #ddd4b8;
  color: #000;
  background: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.product-size-list button.active,
.product-size-list button:hover {
  background: var(--yellow);
  border-color: var(--yellow);
}

.product-action-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.product-action-row .bolt-btn {
  border-radius: 0;
  min-width: 210px;
}

.product-wishlist-btn {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: #000;
  background: #fff8bd;
  border: 1px solid #eadb91;
  border-radius: 50%;
  font-size: 20px;
  transition: .22s ease;
}

.product-wishlist-btn:hover {
  color: #fff;
  background: #000;
}

.product-meta-list {
  display: grid;
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid #eee5ce;
  border-bottom: 1px solid #eee5ce;
}

.product-meta-list p {
  display: flex;
  gap: 8px;
  margin: 0;
  color: #666;
  font-size: 13px;
  font-weight: 700;
}

.product-meta-list strong {
  min-width: 96px;
  color: #111;
  text-transform: uppercase;
}

.product-tabs {
  margin-top: 44px;
}

.product-tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.product-tab-buttons button {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid #ded4b7;
  color: #000;
  background: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-tab-buttons button.active,
.product-tab-buttons button:hover {
  background: var(--yellow);
  border-color: var(--yellow);
}

.product-tab-panel {
  display: none;
  padding: 28px;
}

.product-tab-panel.active {
  display: block;
}

.product-tab-panel p {
  margin: 0 0 16px;
  color: #555;
  font-size: 14px;
  line-height: 1.9;
  font-weight: 500;
}

.related-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

/* simple product card reusable */
.mini-product-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--page-border);
  border-radius: 24px;
  box-shadow: 0 16px 44px rgba(0,0,0,.07);
  transition: .24s ease;
}

.mini-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 64px rgba(0,0,0,.12);
}

.mini-product-img {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.mini-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .42s ease;
}

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

.mini-wishlist {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #000;
  background: #fff;
  border-radius: 50%;
  opacity: 0;
  transform: translateY(-7px);
  transition: .22s ease;
}

.mini-product-card:hover .mini-wishlist {
  opacity: 1;
  transform: translateY(0);
}

.mini-product-body {
  padding: 20px;
}

.mini-product-body span {
  display: block;
  margin-bottom: 7px;
  color: #8f7210;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.mini-product-body h3 {
  margin: 0 0 12px;
  color: #090909;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 900;
}

.mini-product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mini-product-foot strong {
  color: #000;
  font-size: 18px;
  font-weight: 900;
}

/* QUOTE DRAWER */
.quote-overlay {
  position: fixed;
  inset: 0;
  z-index: 5000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease, visibility .3s ease;
}

.quote-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.quote-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.62);
  backdrop-filter: blur(6px);
}

.quote-drawer {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(520px, 100%);
  background: #fffaf0;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .35s ease;
  box-shadow: -28px 0 70px rgba(0,0,0,.26);
}

.quote-overlay.active .quote-drawer {
  transform: translateX(0);
}

.quote-close {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.34);
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(0,0,0,.24);
  border-radius: 50%;
}

.quote-drawer-hero {
  position: relative;
  padding: 58px 34px 32px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.52)),
    url("https://images.unsplash.com/photo-1517836357463-d25dfeac3438?auto=format&fit=crop&w=900&q=80") center / cover no-repeat;
}

.quote-drawer-hero span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.quote-drawer-hero h2 {
  margin: 0 0 10px;
  font-size: 34px;
  font-weight: 900;
}

.quote-drawer-hero p {
  margin: 0;
  color: rgba(255,255,255,.78);
  line-height: 1.65;
}

.quote-form {
  padding: 30px 34px;
  display: grid;
  gap: 14px;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid #dfd0a9;
  border-radius: 14px;
  padding: 15px 16px;
  background: #fff;
  color: #111;
  outline: 0;
  font-size: 14px;
  font-weight: 600;
}

.quote-form textarea {
  min-height: 130px;
  resize: vertical;
}

.quote-form button {
  min-height: 52px;
  border: 0;
  color: #000;
  background: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.quote-form button:hover {
  color: var(--yellow);
  background: #000;
}

/* RESPONSIVE EXTRA PAGES */
@media (max-width: 1199px) {
  .cart-layout,
  .single-product-layout,
  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    position: static;
  }

  .related-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

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

  .cart-item-row > * {
    width: 100%;
  }

  .wishlist-list-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .wishlist-list-actions {
    justify-content: flex-start;
  }

  .search-page-layout,
  .blog-layout,
  .post-layout {
    grid-template-columns: 1fr;
  }

  .blog-card.featured {
    grid-template-columns: 1fr;
  }

  .about-stats-grid,
  .about-feature-grid,
  .about-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-cta-content {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-gallery-main {
    height: 430px;
  }

  .related-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .page-hero {
    min-height: 290px;
  }

  .page-hero-content {
    padding: 54px 0;
  }

  .inner-page-section {
    padding: 64px 0;
  }

  .inner-section-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .cart-coupon-row,
  .cart-coupon-form,
  .search-main-form {
    flex-direction: column;
    display: flex;
  }

  .cart-coupon-form .bolt-btn,
  .search-main-form .bolt-btn {
    width: 100%;
  }

  .search-result-row {
    grid-template-columns: 1fr;
  }

  .search-result-img {
    width: 100%;
    height: 210px;
  }

  .blog-grid,
  .about-stats-grid,
  .about-feature-grid,
  .about-team-grid,
  .related-products-grid {
    grid-template-columns: 1fr;
  }

  .post-main-image {
    height: 280px;
  }

  .post-content,
  .comment-box,
  .about-content-card,
  .product-info-card {
    padding: 24px;
  }

  .comment-form-grid {
    grid-template-columns: 1fr;
  }

  .comment-form-grid .full {
    grid-column: span 1;
  }

  .about-image-card {
    min-height: 360px;
  }

  .product-gallery-thumbs {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-gallery-main {
    height: 340px;
  }
}

@media (max-width: 575px) {
  .cart-product-info,
  .wishlist-list-main {
    align-items: flex-start;
    flex-direction: column;
  }

  .cart-product-info img,
  .wishlist-list-img {
    width: 100%;
    height: 210px;
  }

  .product-action-row .bolt-btn,
  .product-action-row .qty-control {
    width: 100%;
  }

  .product-action-row .qty-control {
    justify-content: space-between;
  }
}
/* =========================================================
   PREMIUM CART REDESIGN - Updated cart.html layout
   Append-only overrides so the rest of the website stays safe.
   ========================================================= */
.premium-cart-hero {
  min-height: 360px;
  background-position: center 38%;
}

.premium-cart-hero::before {
  background:
    linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.58), rgba(0,0,0,.84)),
    radial-gradient(circle at 13% 24%, rgba(255,225,0,.28), transparent 30%);
}

.cart-redesign-section {
  position: relative;
  padding: 86px 0 96px;
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 0%, rgba(255,225,0,.18), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(0,0,0,.07), transparent 26%),
    linear-gradient(180deg, #fbfaf2 0%, #ffffff 68%);
}

.cart-redesign-section::before {
  content: "";
  position: absolute;
  right: -150px;
  top: 65px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: rgba(255,225,0,.23);
  pointer-events: none;
}

.cart-redesign-head {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.cart-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 13px;
  margin-bottom: 12px;
  color: #000;
  background: var(--yellow);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.cart-redesign-head h2 {
  margin: 0;
  color: #050505;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: .95;
  font-weight: 900;
  letter-spacing: -1.8px;
  text-transform: uppercase;
}

.cart-redesign-head p {
  max-width: 670px;
  margin: 13px 0 0;
  color: #666;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 600;
}

.cart-continue-btn {
  flex: 0 0 auto;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  color: #000;
  background: #fff;
  border: 2px solid #111;
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
  transition: .24s ease;
}

.cart-continue-btn:hover {
  color: #000;
  background: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-3px);
}

.cart-progress-bar {
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
  padding: 18px;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 14px;
  background: #080808;
  border: 1px solid rgba(255,225,0,.24);
  border-radius: 28px;
  box-shadow: 0 20px 55px rgba(0,0,0,.16);
}

.cart-progress-step {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.62);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .9px;
  text-transform: uppercase;
  white-space: nowrap;
}

.cart-progress-step i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #000;
  background: rgba(255,255,255,.88);
  border-radius: 50%;
  font-size: 16px;
}

.cart-progress-step.active {
  color: #fff;
}

.cart-progress-step.active i {
  background: var(--yellow);
}

.cart-progress-line {
  height: 2px;
  background: linear-gradient(90deg, rgba(255,225,0,.8), rgba(255,255,255,.15));
}

.premium-cart-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 28px;
  align-items: start;
}

.cart-items-panel,
.checkout-summary-card {
  background: rgba(255,255,255,.94);
  border: 1px solid #eee3bd;
  border-radius: 34px;
  box-shadow: 0 24px 70px rgba(0,0,0,.09);
}

.cart-items-panel {
  padding: 24px;
}

.cart-panel-top {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cart-panel-top span {
  display: block;
  margin-bottom: 5px;
  color: #9a7b00;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.cart-panel-top h3 {
  margin: 0;
  color: #080808;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-clear-btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  color: #000;
  background: #fff8bd;
  border: 1px solid #eadb8c;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .7px;
  text-transform: uppercase;
  transition: .22s ease;
}

.cart-clear-btn:hover {
  color: var(--yellow);
  background: #000;
  border-color: #000;
}

.premium-cart-item {
  position: relative;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 20px;
  padding: 18px;
  background: #fff;
  border: 1px solid #eee8d4;
  border-radius: 28px;
  box-shadow: 0 14px 36px rgba(0,0,0,.045);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.premium-cart-item + .premium-cart-item {
  margin-top: 16px;
}

.premium-cart-item:hover {
  border-color: rgba(255,225,0,.9);
  box-shadow: 0 22px 58px rgba(0,0,0,.11);
  transform: translateY(-4px);
}

.cart-item-media {
  position: relative;
  min-height: 155px;
  overflow: hidden;
  display: block;
  border-radius: 22px;
  background: #f3f3ef;
}

.cart-item-media img {
  width: 100%;
  height: 100%;
  min-height: 155px;
  object-fit: cover;
  transition: transform .45s ease;
}

.premium-cart-item:hover .cart-item-media img {
  transform: scale(1.08);
}

.cart-item-media span {
  position: absolute;
  left: 13px;
  bottom: 13px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  color: #000;
  background: var(--yellow);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.cart-item-details {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.cart-item-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.cart-item-title-row h4 {
  margin: 0 0 7px;
  color: #060606;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-item-title-row h4 a {
  color: inherit;
  transition: .22s ease;
}

.cart-item-title-row h4 a:hover {
  color: #9b7d00;
}

.cart-item-title-row p {
  margin: 0;
  color: #777;
  font-size: 12px;
  line-height: 1.7;
  font-weight: 700;
}

.cart-redesign-section .remove-row-btn {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  color: #000;
  background: #fff7b5;
  border: 1px solid #eadb8c;
}

.cart-redesign-section .remove-row-btn:hover {
  color: #fff;
  background: #000;
  border-color: #000;
}

.cart-item-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.cart-item-meta-grid > div {
  min-height: 82px;
  padding: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 9px;
  background: #fbfaf4;
  border: 1px solid #eee5cc;
  border-radius: 20px;
}

.cart-item-meta-grid span {
  color: #888;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.cart-redesign-section .cart-price,
.cart-redesign-section .cart-subtotal {
  color: #050505;
  font-size: 18px;
  font-weight: 900;
}

.cart-redesign-section .qty-control {
  min-height: 38px;
  background: #fff;
  border: 1px solid #dfd3aa;
  box-shadow: inset 0 0 0 1px rgba(255,225,0,.12);
}

.cart-redesign-section .qty-control button {
  width: 36px;
  height: 38px;
  transition: .2s ease;
}

.cart-redesign-section .qty-control button:hover {
  background: var(--yellow);
}

.cart-redesign-section .qty-control input {
  width: 42px;
  height: 38px;
}

.premium-coupon-card {
  margin-top: 18px;
  padding: 20px;
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(280px, 1fr);
  gap: 18px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255,225,0,.16), rgba(255,255,255,.88)),
    #fff;
  border: 1px dashed #d8c36b;
  border-radius: 26px;
}

.premium-coupon-card span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  color: #050505;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.premium-coupon-card p {
  margin: 0;
  color: #666;
  font-size: 12px;
  font-weight: 700;
}

.premium-coupon-form {
  display: flex;
  gap: 10px;
}

.premium-coupon-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #ddd2a8;
  border-radius: 999px;
  outline: 0;
  padding: 0 18px;
  color: #111;
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}

.premium-coupon-form button {
  flex: 0 0 auto;
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  color: var(--yellow);
  background: #050505;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .9px;
  text-transform: uppercase;
  transition: .22s ease;
}

.premium-coupon-form button:hover {
  color: #000;
  background: var(--yellow);
  transform: translateY(-2px);
}

.checkout-summary-card {
  position: sticky;
  top: 96px;
  padding: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(255,225,0,.23), transparent 35%),
    #fff;
}

.checkout-summary-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 7px;
  background: var(--yellow);
}

.summary-badge {
  width: fit-content;
  min-height: 34px;
  margin-bottom: 18px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #000;
  background: #fff7b5;
  border: 1px solid #eadb8c;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.checkout-summary-card h3 {
  margin: 0 0 20px;
  color: #050505;
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.6px;
  text-transform: uppercase;
}

.summary-product-mini {
  margin-bottom: 17px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #fff;
  background: #070707;
  border-radius: 22px;
}

.summary-product-mini span {
  color: rgba(255,255,255,.68);
  font-size: 12px;
  font-weight: 800;
}

.summary-product-mini strong {
  color: var(--yellow);
  font-size: 22px;
  font-weight: 900;
}

.summary-lines {
  display: grid;
  gap: 0;
}

.summary-lines > div {
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid #eee5cd;
  color: #666;
  font-size: 13px;
  font-weight: 800;
}

.summary-lines strong {
  color: #090909;
  font-size: 13px;
  text-align: right;
}

.summary-total-box {
  margin: 20px 0 22px;
  padding: 18px 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.summary-total-box span {
  color: #050505;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.summary-total-box strong {
  color: #050505;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -1px;
}

.summary-checkout-btn {
  min-height: 54px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #000;
  background: var(--yellow);
  border: 2px solid var(--yellow);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .9px;
  text-transform: uppercase;
  transition: .24s ease;
}

.summary-checkout-btn:hover {
  color: var(--yellow);
  background: #000;
  border-color: #000;
  transform: translateY(-3px);
}

.summary-trust-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.summary-trust-grid div {
  min-height: 82px;
  padding: 12px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: #555;
  background: #fbfaf4;
  border: 1px solid #eee5cc;
  border-radius: 18px;
  text-align: center;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.summary-trust-grid i {
  color: #000;
  font-size: 20px;
}

.summary-help-box {
  margin-top: 18px;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #080808;
  border-radius: 20px;
}

.summary-help-box > i {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #000;
  background: var(--yellow);
  border-radius: 50%;
  font-size: 18px;
}

.summary-help-box strong,
.summary-help-box span {
  display: block;
}

.summary-help-box strong {
  margin-bottom: 4px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.summary-help-box span {
  color: rgba(255,255,255,.62);
  font-size: 12px;
  line-height: 1.6;
  font-weight: 600;
}

@media (max-width: 1199px) {
  .premium-cart-layout {
    grid-template-columns: 1fr;
  }

  .checkout-summary-card {
    position: static;
  }
}

@media (max-width: 991px) {
  .cart-redesign-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .cart-progress-bar {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cart-progress-line {
    width: 2px;
    height: 22px;
    margin-left: 18px;
  }

  .premium-cart-item {
    grid-template-columns: 145px minmax(0, 1fr);
  }

  .cart-item-meta-grid,
  .premium-coupon-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .cart-redesign-section {
    padding: 64px 0 74px;
  }

  .cart-items-panel,
  .checkout-summary-card {
    border-radius: 26px;
  }

  .cart-items-panel,
  .checkout-summary-card {
    padding: 18px;
  }

  .cart-panel-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .premium-cart-item {
    grid-template-columns: 1fr;
    padding: 14px;
    border-radius: 24px;
  }

  .cart-item-media,
  .cart-item-media img {
    min-height: 225px;
  }

  .cart-item-title-row h4 {
    font-size: 17px;
  }

  .premium-coupon-form {
    flex-direction: column;
  }

  .premium-coupon-form button,
  .cart-continue-btn,
  .cart-clear-btn {
    width: 100%;
  }

  .summary-trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .cart-item-title-row {
    flex-direction: column;
  }

  .cart-redesign-section .remove-row-btn {
    align-self: flex-end;
  }

  .summary-total-box {
    align-items: flex-start;
    flex-direction: column;
  }
}
