@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --maroon:#7B1C2C;
  --maroon-dark:#5a1320;
  --cream:#fdf8f5;
  --soft-pink:#fdf0f2;
  --light-beige:#faf6f0;
  --pale-rose:#f9eef0;
  --warm-white:#fffbf8;
  --blush:#f5e8eb;
  --ivory:#fefcf9;
  --dusty-rose:#f8eff2;
  --text:#1a1a1a;
  --text-muted:#666;
  --border:#e8e0dc;
  --bg:#fff;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

/* ── TOP BAR ── */
.topbar {
  background: var(--maroon);
  color: #fff;
  font-size: 12px;
  padding: 9px 0;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.topbar span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── HEADER ── */
header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 13px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--maroon);
  font-weight: 700;
  font-size: 18px;
  font-family: "Playfair Display", serif;
  white-space: nowrap;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--maroon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

nav {
  display: flex;
  gap: 24px;
  flex: 1;
  justify-content: center;
}

nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: 0.2s;
}

nav a.active, nav a:hover {
  color: var(--maroon);
  border-bottom-color: var(--maroon);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-box {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px;
  gap: 8px;
  background: #fafafa;
}

.search-box input {
  border: none;
  outline: none;
  font-size: 13px;
  width: 130px;
  color: var(--text);
  background: transparent;
}

.icon-btn {
  position: relative;
  cursor: pointer;
  color: var(--text);
  font-size: 18px;
  background: none;
  border: none;
  padding: 4px;
}

.badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--maroon);
  color: #fff;
  font-size: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* ── CART FAB ── */
.cart-fab {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--maroon);
  color: #fff;
  writing-mode: vertical-rl;
  padding: 18px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  border-radius: 8px 0 0 8px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: -4px 0 18px rgba(123, 28, 44, 0.4);
  transition: background 0.2s, transform 0.2s;
  border: none;
  font-family: "Inter", sans-serif;
}

.cart-fab:hover {
  background: var(--maroon-dark);
  transform: translateY(-50%) translateX(-2px);
}

.cart-fab .fab-count {
  background: #fff;
  color: var(--maroon);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  writing-mode: horizontal-tb;
}

.cart-fab .fab-icon {
  font-size: 18px;
  writing-mode: horizontal-tb;
}

/* ── CART DRAWER ── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(2px);
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  right: -440px;
  top: 0;
  width: 420px;
  height: 100vh;
  background: #fff;
  z-index: 301;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -6px 0 30px rgba(0, 0, 0, 0.18);
}

.cart-drawer.open {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 22px;
  background: var(--maroon);
  color: #fff;
}

.cart-header h3 {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  font-weight: 600;
}

.cart-close {
  background: rgba(255, 255, 255, 0.18);
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.cart-close:hover {
  background: rgba(255, 255, 255, 0.35);
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 18px;
  background: #fff;
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item-img {
  width: 70px;
  height: 86px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
  background: #f0ebe7;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.cart-item-price {
  font-weight: 700;
  color: var(--maroon);
  font-size: 15px;
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 7px;
}

.qty-btn {
  background: #f4ede9;
  border: none;
  width: 26px;
  height: 26px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.15s;
  font-weight: 700;
  color: var(--maroon);
}

.qty-btn:hover {
  background: var(--maroon);
  color: #fff;
}

.qty-val {
  font-size: 14px;
  font-weight: 700;
  min-width: 22px;
  text-align: center;
}

.remove-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #ccc;
  font-size: 18px;
  padding: 4px;
  transition: color 0.15s;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 2px;
}

.remove-btn:hover {
  color: var(--maroon);
}

.cart-footer {
  padding: 18px 22px;
  border-top: 1px solid var(--border);
  background: #faf6f4;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  font-size: 14px;
  color: var(--text-muted);
}

.cart-summary-row.total {
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
  border-top: 2px solid var(--border);
  margin-top: 8px;
  padding-top: 10px;
}

.btn-checkout {
  display: block;
  width: 100%;
  background: var(--maroon);
  color: #fff;
  border: none;
  padding: 15px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  margin: 14px 0 9px;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}

.btn-checkout:hover {
  background: var(--maroon-dark);
}

.btn-viewcart {
  display: block;
  width: 100%;
  background: #fff;
  color: var(--maroon);
  border: 2px solid var(--maroon);
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  transition: 0.2s;
  text-align: center;
}

.btn-viewcart:hover {
  background: var(--maroon);
  color: #fff;
}

.cart-trust {
  display: flex;
  gap: 16px;
  margin-top: 14px;
  justify-content: center;
}

.cart-trust-item {
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.cart-trust-item .ti {
  font-size: 20px;
}

/* ── HERO SLIDER ── */
.hero-slider {
  position: relative;
  overflow: hidden;
  height: 440px;
}

.slides-track {
  display: flex;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 20%;
     object-position: center 20%;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.22) 55%, transparent 100%);
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 0 64px;
  color: #fff;
  max-width: 560px;
}

.slide-eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
  font-weight: 600;
}

.slide-title {
  font-family: "Playfair Display", serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.06;
  margin-bottom: 14px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.slide-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  line-height: 1.65;
}

.slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--maroon);
  color: #fff;
  padding: 13px 30px;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.5px;
  border: 2px solid var(--maroon);
  transition: 0.2s;
}

.slide-btn:hover {
  background: transparent;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 10;
  transition: 0.2s;
}

.slider-arrow:hover {
  background: var(--maroon);
  border-color: var(--maroon);
}

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

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

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

.sdot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  border: none;
  transition: 0.3s;
}

.sdot.active {
  background: #fff;
  width: 28px;
  border-radius: 5px;
}

/* ── SECTION WRAPPERS WITH BG COLORS ── */
.sec-features {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.sec-trending {
  background: var(--warm-white);
}

.sec-collections {
  background: var(--light-beige);
}

.sec-watch {
  background: var(--blush);
}

.sec-eid {
  background: var(--pale-rose);
}

.sec-promo {
  background: var(--ivory);
}

.sec-trust {
  background: var(--dusty-rose);
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 20px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.section-title {
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.2px;
}

.view-all {
  color: var(--maroon);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.view-all:hover {
  text-decoration: underline;
}

/* ── FEATURES ── */
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 20px 20px;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.feature-title {
  font-weight: 600;
  font-size: 13px;
}

.feature-sub {
  color: var(--text-muted);
  font-size: 12px;
}

/* ── PRODUCT CARDS ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.product-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.22s, transform 0.22s;
}

.product-card:hover {
  box-shadow: 0 8px 24px rgba(123, 28, 44, 0.12);
  transform: translateY(-3px);
}

.product-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #f0e8e2;
}

.product-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s;
}

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

.wishlist-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #fff;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 15px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: 0.2s;
  z-index: 2;
}

.wishlist-btn:hover {
  background: var(--maroon);
  color: #fff;
}

.product-info {
  padding: 10px 10px 12px;
}

.product-name {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 3px;
}

.product-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--maroon);
  margin-bottom: 5px;
}

.stars {
  margin-bottom: 5px;
  font-size: 11px;
}

.colors {
  display: flex;
  gap: 4px;
  margin-bottom: 7px;
}

.color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: 0.15s;
}

.color-dot:hover {
  transform: scale(1.25);
}

.sizes {
  display: flex;
  gap: 4px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.size-btn {
  font-size: 10px;
  padding: 2px 6px;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: #fff;
  cursor: pointer;
  font-weight: 500;
  transition: 0.15s;
}

.size-btn:hover, .size-btn.active {
  background: var(--maroon);
  color: #fff;
  border-color: var(--maroon);
}

.card-actions {
  display: flex;
  gap: 6px;
}

.btn-add {
  flex: 1;
  padding: 7px 0;
  border: 1.5px solid var(--maroon);
  color: var(--maroon);
  background: #fff;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
  font-family: "Inter", sans-serif;
}

.btn-add:hover {
  background: var(--maroon);
  color: #fff;
}

.btn-buy {
  flex: 1;
  padding: 7px 0;
  background: var(--maroon);
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  font-family: "Inter", sans-serif;
}

.btn-buy:hover {
  background: var(--maroon-dark);
}

/* ── COLLECTIONS ── */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.collection-card {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.collection-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s;
}

.collection-card:hover img {
  transform: scale(1.07);
}

.ccard-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.58) 0%, transparent 55%);
}

.collection-label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.93);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.collection-link {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-size: 11px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.collection-card.special {
  background: var(--maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  text-align: center;
  padding: 20px;
}

.special-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  opacity: 0.8;
  text-transform: uppercase;
  color: #fff;
}

.special-off {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.special-btn {
  background: #fff;
  color: var(--maroon);
  padding: 7px 20px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  margin-top: 6px;
}

/* ── VIDEO ── */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.video-card {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.video-thumb {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s;
}

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

.play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--maroon);
  padding-left: 3px;
}

.video-duration {
  position: absolute;
  bottom: 7px;
  right: 8px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 3px;
}

.video-meta {
  padding: 8px 0 0;
}

.video-title {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 3px;
}

.video-platform {
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.fb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1877f2;
}

.yt-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff0000;
}

/* ── PROMO BANNER ── */
.promo-banner {
  background: var(--maroon);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 210px;
}

.promo-banner img {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.25;
}

.promo-content {
  position: relative;
  z-index: 2;
  padding: 44px 52px;
  color: #fff;
}

.promo-content .plabel {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.78;
  margin-bottom: 8px;
}

.promo-content .poff {
  font-family: "Playfair Display", serif;
  font-size: 54px;
  font-weight: 700;
  line-height: 1;
}

.promo-content .psub {
  font-size: 14px;
  opacity: 0.85;
  margin-top: 6px;
}

.promo-btn {
  margin-top: 20px;
  background: #fff;
  color: var(--maroon);
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  display: inline-block;
}

/* ── TRUST ── */
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 28px 20px;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-icon {
  font-size: 28px;
  color: var(--maroon);
}

.trust-title {
  font-size: 13px;
  font-weight: 600;
}

.trust-sub {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── FOOTER ── */
footer {
  background: #1a1a1a;
  color: #aaa;
  padding: 48px 0 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  margin: 12px 0;
  color: #aaa;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.social-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
  color: #aaa;
}

.social-btn:hover {
  background: var(--maroon);
  color: #fff;
}

.footer-col h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #aaa;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #fff;
}

.newsletter-form {
  display: flex;
  margin-top: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 12px;
  border: none;
  border-radius: 4px 0 0 4px;
  font-size: 13px;
  outline: none;
}

.newsletter-form button {
  background: var(--maroon);
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 0 4px 4px 0;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  font-family: "Inter", sans-serif;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.payment-icon {
  background: #333;
  color: #aaa;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  display: inline-block;
  margin-left: 8px;
}

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--maroon);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
}

.marquee-wrap::before, .marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--maroon), transparent);
}

.marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--maroon), transparent);
}

.marquee-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: mq 35s linear infinite;
}

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

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.6px;
  white-space: nowrap;
  font-family: "Playfair Display", serif;
}

.marquee-dot {
  color: rgba(255, 255, 255, 0.55);
  font-size: 18px;
  line-height: 1;
}

@keyframes mq {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
/* ── CAROUSEL (Trending - 4 visible) ── */
.carousel-wrap {
  position: relative;
  overflow: hidden;
  padding: 0 4px;
}

.carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-track .product-card {
  min-width: calc(25% - 12px);
  flex-shrink: 0;
}

.car-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--maroon);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 10;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.13);
  transition: 0.2s;
  margin-top: -30px;
}

.car-arrow:hover {
  background: var(--maroon);
  color: #fff;
  border-color: var(--maroon);
}

.car-arrow.left {
  left: -18px;
}

.car-arrow.right {
  right: -18px;
}

/* ── VIDEO CAROUSEL ── */
.vid-carousel-wrap {
  position: relative;
  overflow: hidden;
  padding: 0 4px;
}

.vid-carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.vid-carousel-track .video-card {
  min-width: calc(25% - 12px);
  flex-shrink: 0;
}

.vid-car-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--maroon);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 10;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.13);
  transition: 0.2s;
}

.vid-car-arrow:hover {
  background: var(--maroon);
  color: #fff;
  border-color: var(--maroon);
}

.vid-car-arrow.left {
  left: -18px;
}

.vid-car-arrow.right {
  right: -18px;
}

/* ── NEW SECTION (3 rows) ── */
.sec-newcol {
  background: #f2ede8;
}

.newcol-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 18px;
}

.newcol-grid:last-child {
  margin-bottom: 0;
}

.newcol-card {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  transition: box-shadow 0.22s, transform 0.22s;
  cursor: pointer;
}

.newcol-card:hover {
  box-shadow: 0 6px 20px rgba(123, 28, 44, 0.1);
  transform: translateY(-2px);
}

.newcol-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #f0e8e2;
  position: relative;
}

.newcol-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s;
}

.newcol-card:hover .newcol-img img {
  transform: scale(1.05);
}

.newcol-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--maroon);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.newcol-wish {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #fff;
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: 0.2s;
  z-index: 2;
}

.newcol-wish:hover {
  background: var(--maroon);
  color: #fff;
}

.newcol-info {
  padding: 10px 10px 12px;
}

.newcol-name {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 3px;
}

.newcol-stars {
  font-size: 11px;
  margin-bottom: 5px;
}

.newcol-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--maroon);
  margin-bottom: 7px;
}

.newcol-actions {
  display: flex;
  gap: 6px;
}

.newcol-add {
  flex: 1;
  padding: 7px 0;
  border: 1.5px solid var(--maroon);
  color: var(--maroon);
  background: #fff;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
  font-family: "Inter", sans-serif;
}

.newcol-add:hover {
  background: var(--maroon);
  color: #fff;
}

.newcol-buy {
  flex: 1;
  padding: 7px 0;
  background: var(--maroon);
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  font-family: "Inter", sans-serif;
}

.newcol-buy:hover {
  background: var(--maroon-dark);
}

/* ── NOTIFICATION ── */
.cart-notif {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--maroon);
  color: #fff;
  padding: 12px 26px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, bottom 0.3s;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(123, 28, 44, 0.4);
}

.cart-notif.show {
  opacity: 1;
  bottom: 30px;
}