/*
 * TI Jewelry Theme - OpenCart 3.0.8.0
 * Theme Name: ti_jewelry
 * Version: 1.1
 * Author: TI Jewelry Team
 */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --primary-pink: #FF1493;
  --primary-pink-dark: #CC0070;
  --secondary-dark-pink: #E91E63;
  --accent-gold: #D4AF37;
  --accent-rose-gold: #C3996B;
  --white: #FFFFFF;
  --off-white: #F9F9F9;
  --light-gray: #F5F5F5;
  --dark-text: #222222;
  --light-text: #666666;
  --error: #DC3545;
  --color-dark-warm: #1d1511;
  --color-dark-warm-2: #2b1b12;
  --color-footer-bg: #1a1008;
  --font-logo: 'Great Vibes', cursive;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-warm: 0 8px 24px rgba(29, 21, 17, 0.14);
  --transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
  --transition-color: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-pill: 999px;
}

/* ============================================
   BASE STYLES
   ============================================ */
* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--dark-text);
  background-color: var(--white);
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--dark-text);
  margin-top: 0;
}

a {
  color: var(--primary-pink);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-dark-pink);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1380px;
}

.container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.container-fluid > .row {
  margin-left: 0;
  margin-right: 0;
}

.container-fluid > .row > [class*='col-'] {
  padding-left: 0;
  padding-right: 0;
}

.cursive {
  font-family: var(--font-logo);
}

/* ============================================
   HEADER
   ============================================ */
header {
  padding: 15px 0;
  background-color: var(--white);
  border-bottom: 1px solid #f0f0f0;
  position: relative;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

.header-left,
.header-right {
  flex: 0 0 auto;
}

.header-left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.header-center {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.header-right {
  display: flex;
  justify-content: flex-end;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--dark-text);
  cursor: pointer;
  padding: 8px;
  transition: var(--transition);
}

.menu-toggle:hover {
  color: var(--primary-pink);
}

#logo {
  text-align: center;
}

#logo img {
  display: block;
  width: auto;
  height: auto;
  max-height: 92px;
  max-width: 280px;
}

.logo-text {
  font-family: var(--font-logo);
  font-size: 48px;
  color: var(--primary-pink);
  line-height: 1;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-icons a {
  color: var(--dark-text);
  font-size: 20px;
  position: relative;
  transition: var(--transition);
}

.header-icons a:hover {
  color: var(--primary-pink);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--primary-pink);
  color: var(--white);
  font-size: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-menu {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #f2ece6;
}

.header-menu-inline {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
  width: 100%;
}

.header-menu-inline .header-menu-list {
  justify-content: center;
}

.header-menu-list {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.header-menu-item {
  position: relative;
}

.header-menu-link,
.header-menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--dark-text);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
}

.header-menu-link:hover,
.header-menu-trigger:hover,
.header-menu-link.is-active,
.header-menu-trigger.is-active {
  color: var(--primary-pink);
  background-color: rgba(255, 20, 147, 0.06);
}

.header-menu-link .fa,
.header-menu-trigger .fa {
  font-size: 14px;
}

.header-menu-dropdown {
  position: relative;
}

.header-menu-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: min(900px, calc(100vw - 48px));
  background: var(--white);
  border: 1px solid #f0e7df;
  border-radius: 18px;
  box-shadow: 0 24px 50px rgba(34, 34, 34, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 20;
}

.header-center .header-menu-panel {
  min-width: min(860px, calc(100vw - 240px));
}

.header-menu-dropdown:hover .header-menu-panel,
.header-menu-dropdown:focus-within .header-menu-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.header-menu-panel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  padding: 20px;
}

.header-menu-column-title {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--dark-text);
  font-weight: 600;
  font-family: var(--font-heading);
}

.header-menu-column-title:hover {
  color: var(--primary-pink);
}

.header-menu-sublist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.header-menu-sublist li + li {
  margin-top: 8px;
}

.header-menu-sublist a {
  color: var(--light-text);
  font-size: 13px;
}

.header-menu-sublist a:hover {
  color: var(--primary-pink);
}

/* ============================================
   EXPANDABLE SEARCH BAR
   ============================================ */
.search-expandable {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  background-color: var(--light-gray);
}

.search-expandable.open {
  max-height: 80px;
  padding: 15px 0;
}

.search-expandable-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-expandable-input {
  flex: 1;
  padding: 12px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 30px;
  font-size: 14px;
  font-family: var(--font-body);
  transition: var(--transition);
  outline: none;
}

.search-expandable-input:focus {
  border-color: var(--primary-pink);
}

.search-expandable-btn {
  background-color: var(--primary-pink);
  color: var(--white);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.search-expandable-btn:hover {
  background-color: var(--secondary-dark-pink);
}

.search-expandable-close {
  background: none;
  border: none;
  font-size: 18px;
  color: var(--light-text);
  cursor: pointer;
  padding: 8px;
  transition: var(--transition);
  flex-shrink: 0;
}

.search-expandable-close:hover {
  color: var(--dark-text);
}

/* ============================================
   SIDE MENU DRAWER
   ============================================ */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.side-menu {
  position: fixed;
  top: 0;
  left: -320px;
  width: 320px;
  height: 100%;
  background-color: var(--white);
  z-index: 9999;
  overflow-y: auto;
  transition: left 0.35s ease;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.side-menu.open {
  left: 0;
}

.side-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.side-menu-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-text);
}

.side-menu-close {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--light-text);
  cursor: pointer;
  padding: 5px;
  transition: var(--transition);
}

.side-menu-close:hover {
  color: var(--dark-text);
}

.side-menu-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.side-menu-nav > li {
  border-bottom: 1px solid #f5f5f5;
}

.side-menu-nav > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  color: var(--dark-text);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.side-menu-link-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.side-menu-nav > li > a:hover {
  color: var(--primary-pink);
  background-color: var(--light-gray);
}

.side-menu-link-home {
  justify-content: flex-start;
}

.side-menu-link-home .fa-home {
  width: 16px;
  text-align: center;
}

.toggle-submenu {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.has-children.open > a .toggle-submenu {
  transform: rotate(180deg);
}

.side-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  background-color: var(--light-gray);
}

.has-children.open > .side-submenu {
  display: block;
}

.side-submenu li a {
  display: block;
  padding: 12px 20px 12px 35px;
  color: var(--light-text);
  font-size: 13px;
  transition: var(--transition);
}

.side-submenu li a:hover {
  color: var(--primary-pink);
}

.see-all-link {
  color: var(--primary-pink) !important;
  font-weight: 500;
  font-size: 12px !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   RESPONSIVE HEADER
   ============================================ */
@media (max-width: 991px) {
  /* Show hamburger, hide desktop nav */
  .menu-toggle {
    display: block;
  }

  .header-menu-inline {
    display: none;
  }

  .header-center {
    display: none;
  }

  /* 3-column mobile header: hamburger | logo (centered) | icons */
  .header-row {
    justify-content: space-between;
  }

  .header-left {
    flex: 1;
    justify-content: flex-start;
  }

  .header-right {
    flex: 1;
    justify-content: flex-end;
  }

  #logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  #logo img {
    max-height: 80px;
    max-width: 200px;
  }
}

@media (max-width: 767px) {
  .header-icons {
    gap: 15px;
  }

  .header-icons a {
    font-size: 18px;
  }

  #logo img {
    max-height: 60px;
    max-width: 160px;
  }

  .logo-text {
    font-size: 36px;
  }

  .side-menu {
    width: 280px;
    left: -280px;
  }
}

/* Sticky Header */
header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

/* ============================================
   HERO BANNER
   ============================================ */
.hero-banner {
  position: relative;
  margin-bottom: 0;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.hero-slider,
.hero-slider .owl-stage-outer,
.hero-slider .item {
  margin: 0;
  padding: 0;
}

.hero-slider .owl-stage-outer {
  overflow: hidden;
}

.hero-slider .owl-item {
  float: left;
}

.hero-slider .owl-item:not(.active) {
  opacity: 0;
}

.hero-slider .owl-item.active {
  opacity: 1;
}

.hero-slide {
  min-height: 760px;
  width: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-slide.default-slide {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

a.hero-slide-link {
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
}

a.hero-slide-link:hover {
  color: var(--white);
  text-decoration: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1080px;
  padding: 0 72px;
  text-align: center;
  color: var(--white);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
  color: var(--white);
}

.hero-subtitle {
  font-family: var(--font-logo);
  font-size: 72px;
  color: var(--primary-pink);
  margin-bottom: 10px;
}

.hero-discount {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.hero-text {
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.btn-hero {
  background-color: var(--primary-pink);
  color: var(--white);
  padding: 15px 40px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 0;
  border: 2px solid var(--primary-pink);
  transition: var(--transition);
}

.btn-hero:hover {
  background-color: transparent;
  color: var(--primary-pink);
}

/* ============================================
   SECTION TITLES
   ============================================ */
.section-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  color: var(--dark-text);
}

.section-description {
  color: var(--light-text);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* ============================================
   SHOP BY CATEGORY
   ============================================ */
.shop-by-category {
  padding: 68px 0 78px;
  background: #fbf8f5;
}

.category-showcase-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.category-showcase-copy .section-title,
.category-showcase-copy .section-description {
  text-align: left;
  margin-left: 0;
}

.section-kicker {
  margin: 0 0 10px;
  color: #9f6b44;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.category-showcase-badge {
  flex-shrink: 0;
  padding: 12px 20px;
  border: 1px solid rgba(159, 107, 68, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 10px 30px rgba(114, 76, 46, 0.08);
  color: #6f4b31;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.category-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.category-card {
  min-height: 300px;
}

.category-card-link {
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: 0;
  background: #f7efe8;
}

.category-image {
  position: absolute;
  inset: 0;
}

.category-card-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 15, 10, 0.04) 0%, rgba(20, 15, 10, 0.18) 100%);
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.4s ease;
}

.category-card:hover .category-image img {
  transform: scale(1.04);
  filter: saturate(1.03);
}

.category-card-panel {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 58%;
  max-width: calc(100% - 48px);
  padding: 18px 26px 20px;
  background: rgba(244, 229, 220, 0.62);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0 12px 32px rgba(70, 39, 20, 0.14);
  transform: translateX(-50%);
  text-align: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.category-card:hover .category-card-panel {
  background: rgba(247, 236, 228, 0.72);
  transform: translateX(-50%) translateY(-4px);
}

.category-name {
  color: #1d1714;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.01em;
  margin: 0;
}

.category-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 22px;
  border-radius: 999px;
  background: #050505;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.25s ease, transform 0.25s ease;
}

.category-card:hover .category-cta {
  background: #231812;
  transform: translateY(-1px);
}

/* ============================================
   NEW ARRIVAL
   ============================================ */
.new-arrival {
  padding: 60px 0;
  background-color: var(--off-white);
}

/* ============================================
   BEST DEALS
   ============================================ */
.best-deals {
  padding: 76px 0 88px;
  background: radial-gradient(circle at top left, #fffaf6 0%, #f7efe7 52%, #efe3d7 100%);
}

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

.deals-header-copy .section-title,
.deals-header-copy .section-description {
  text-align: left;
  margin-left: 0;
}

.deals-header-copy .section-title {
  font-size: clamp(34px, 4.5vw, 62px);
  line-height: 0.96;
  margin-bottom: 12px;
}

.deals-header-copy .section-description {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  max-width: 760px;
}

.deals-header-badge {
  flex-shrink: 0;
  padding: 12px 20px;
  border: 1px solid rgba(159, 107, 68, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #6f4b31;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 12px 32px rgba(114, 76, 46, 0.08);
}

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

.deal-card {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
}

.deal-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 16px 34px rgba(77, 52, 29, 0.12);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.deal-card:hover .deal-link {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px rgba(77, 52, 29, 0.16);
}

.deal-card-visual .deal-link {
  background: #f7efe8;
}

.deal-image {
  position: relative;
  overflow: hidden;
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.deal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.03);
  transition: var(--transition);
}

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

.deal-copy-shell {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 22px;
  background:
    radial-gradient(circle at top right, rgba(255, 240, 229, 0.95) 0%, rgba(255, 240, 229, 0.3) 32%, transparent 33%),
    linear-gradient(180deg, #fffdfb 0%, #f6ede5 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.deal-card-copy .deal-link::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(143, 99, 68, 0.12);
  border-radius: 20px;
  pointer-events: none;
}

.deal-card-copy .deal-link::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(178, 132, 98, 0.09);
  pointer-events: none;
}

.deal-card-copy .deal-content {
  gap: 12px;
  margin-top: 0;
}

.deal-card-copy .deal-title {
  color: #2f1f15;
  font-size: clamp(24px, 2.3vw, 30px);
}

.deal-card-copy .deal-copy {
  max-width: 100%;
  color: #725441;
}

.deal-card-copy .deal-cta {
  background: #2f1f15;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(47, 31, 21, 0.18);
}

.deal-card-copy:hover .deal-cta {
  background: #21150f;
  color: #ffffff;
}

.deal-card-visual .deal-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(21, 14, 9, 0.12) 100%);
  pointer-events: none;
}

.deal-card-visual .deal-link::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

.deal-card-visual:hover .deal-link::before {
  opacity: 1;
}

.deal-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.deal-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 247, 240, 0.88);
  color: #8c5b37;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.deal-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.1;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.deal-copy {
  margin: 0;
  max-width: 92%;
  color: rgba(255, 247, 241, 0.9);
  font-size: 14px;
  line-height: 1.5;
}

.deal-cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #3d281b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(56, 28, 17, 0.18);
  transition: transform 0.25s ease, background 0.25s ease;
}

.deal-card:hover .deal-cta {
  transform: translateY(-2px);
  background: #ffffff;
  color: #2b1b12;
}

.deal-visual-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 64%;
  max-width: calc(100% - 28px);
  padding: 14px 20px 16px;
  background: rgba(255, 247, 240, 0.92);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0 12px 28px rgba(70, 39, 20, 0.16);
  transform: translate(-50%, -50%);
  text-align: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.deal-card-visual:hover .deal-visual-panel {
  background: rgba(255, 250, 245, 0.96);
  transform: translate(-50%, calc(-50% - 4px));
}

.deal-visual-title {
  margin: 0;
  color: #1d1714;
  font-family: var(--font-heading);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.01em;
}

.deal-visual-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 22px;
  border-radius: 999px;
  background: #050505;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.25s ease, transform 0.25s ease;
}

.deal-card-visual:hover .deal-visual-cta {
  background: #231812;
  transform: translateY(-1px);
}

/* ============================================
   VIDEO CAROUSEL
   ============================================ */
.best-products-video {
  padding: 60px 0;
  background-color: var(--off-white);
}

.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.video-wrapper {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.video-card:hover .video-overlay {
  background: rgba(0, 0, 0, 0.1);
}

.btn-play {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.btn-play i {
  color: var(--primary-pink);
  font-size: 20px;
  margin-left: 5px;
}

.btn-play:hover {
  background-color: var(--primary-pink);
}

.btn-play:hover i {
  color: var(--white);
}

/* ============================================
   PRODUCT THUMB
   ============================================ */
.product-grid {
  margin: 0 -10px;
  display: flex;
  flex-wrap: wrap;
}

.product-grid > [class*='col-'] {
  display: flex;
  flex-direction: column;
}

.product-thumb {
  margin-bottom: 30px;
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-thumb:hover {
  transform: scale(1.03);
}

.product-thumb .image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.product-thumb .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: var(--transition);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.product-thumb:hover .image img {
  transform: scale(1.05);
}

.product-thumb .product-actions {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(20px);
  transition: var(--transition);
}

.product-thumb:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}

@media (hover: none) {
  .product-thumb .product-actions {
    opacity: 1;
    transform: translateX(0);
  }
}

.btn-wishlist,
.btn-quickview {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.btn-wishlist i,
.btn-quickview i {
  color: var(--dark-text);
  font-size: 16px;
}

.btn-wishlist:hover,
.btn-quickview:hover {
  background-color: var(--primary-pink);
}

.btn-wishlist:hover i,
.btn-quickview:hover i {
  color: var(--white);
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 15px;
  background-color: var(--primary-pink);
  color: var(--white);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-thumb .caption {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-thumb .caption h4 {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 8px;
  height: 2.8em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-thumb .caption h4 a {
  color: var(--dark-text);
}

.product-thumb .caption h4 a:hover {
  color: var(--primary-pink);
}

.product-thumb .description {
  font-size: 13px;
  color: var(--light-text);
  margin-bottom: 12px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-thumb .price {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}

.btn-card-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  margin-top: 0;
  border: 1px solid #1d1511;
  border-radius: 999px;
  background: #1d1511;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-card-cart:hover {
  background: transparent;
  color: #1d1511;
  border-color: #1d1511;
}

.price-old {
  color: #999;
  text-decoration: line-through;
  margin-right: 10px;
  font-weight: 400;
}

.price-new {
  color: var(--primary-pink);
}

/* ============================================
   BEST SELLING
   ============================================ */
.best-selling {
  padding: 60px 0;
}

.btn-view-all {
  background-color: var(--primary-pink);
  color: var(--white);
  padding: 12px 40px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0;
  border: 2px solid var(--primary-pink);
  margin-top: 20px;
  transition: var(--transition);
}

.btn-view-all:hover {
  background-color: transparent;
  color: var(--primary-pink);
}

/* ============================================
   WALL OF LOVE (TESTIMONIALS)
   ============================================ */
.wall-of-love {
  padding: 60px 0;
  background-color: var(--off-white);
}

.testimonial-slider .item {
  height: 100%;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border-radius: 8px;
  padding: 25px;
  box-shadow: var(--shadow);
  margin: 10px;
  height: calc(100% - 20px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  flex: 0 0 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f1d7c2 0%, #c58f68 100%);
  box-shadow: 0 8px 18px rgba(90, 55, 31, 0.16);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-avatar-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-info h4 {
  font-size: 16px;
  margin-bottom: 3px;
}

.testimonial-role,
.testimonial-company {
  font-size: 12px;
  color: var(--light-text);
  margin-bottom: 0;
}

.testimonial-rating {
  margin-bottom: 15px;
}

.testimonial-rating i {
  color: var(--accent-gold);
  font-size: 14px;
}

.testimonial-content {
  flex: 1 1 auto;
  display: flex;
}

.testimonial-content p {
  margin-bottom: 0;
  font-size: 14px;
  color: var(--light-text);
  line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background-color: var(--color-footer-bg);
  color: var(--white);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1.1fr 1.4fr;
  gap: 40px;
  align-items: flex-start;
}

.footer-col {
  min-width: 0;
}

.footer-heading {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 18px;
  letter-spacing: 0.04em;
}

.footer-heading-secondary {
  margin-top: 28px;
}

.footer-list {
  margin: 0;
}

.footer-list li {
  margin-bottom: 10px;
}

.footer-list li a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  line-height: 1.6;
  transition: color 0.2s ease;
}

.footer-list li a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-newsletter-form {
  position: relative;
  display: flex;
  align-items: stretch;
  background: var(--white);
  border-radius: 999px;
  padding: 4px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  max-width: 100%;
}

.footer-newsletter-input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  outline: none;
  padding: 10px 18px;
  font-size: 13px;
  color: var(--dark-text);
  background: transparent;
  border-radius: 999px;
}

.footer-newsletter-input::placeholder {
  color: #999;
}

.footer-newsletter-btn {
  flex: 0 0 auto;
  border: 0;
  padding: 10px 22px;
  background: var(--secondary-dark-pink);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer-newsletter-btn:hover {
  background: var(--dark-text);
  transform: translateY(-1px);
}

.newsletter-message {
  min-height: 20px;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 500;
}

.newsletter-message.is-success {
  color: var(--white);
}

.newsletter-message.is-error {
  color: #ffe0e0;
}

.footer-newsletter-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin: 12px 0 0;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 18px;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-social-link:hover {
  background: var(--white);
  color: var(--primary-pink);
  transform: translateY(-2px);
}

.footer-social-tiktok {
  width: 16px;
  height: 16px;
  display: block;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  margin-top: 50px;
  padding: 22px 0;
  text-align: center;
}

.footer-copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.footer-copyright strong {
  color: var(--white);
  font-weight: 600;
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }
}

@media (max-width: 767px) {
  /* 2-column product grid on mobile */
  .product-grid > [class*='col-'] {
    width: 50%;
  }

  .product-thumb .caption {
    padding: 10px;
  }

  .product-thumb .caption h4 {
    font-size: 13px;
    height: auto;
    min-height: 0;
    -webkit-line-clamp: 2;
  }

  .product-thumb .price {
    font-size: 13px;
  }

  .btn.btn-card-cart {
    font-size: 10px !important;
    padding: 0 8px !important;
    letter-spacing: 0.04em !important;
    min-height: 30px;
    width: 100%;
    margin-top: 8px;
  }

  .btn-view-details {
    font-size: 10px;
    padding: 6px 10px;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 575px) {
  /* Footer */
  .site-footer {
    padding: 40px 0 0;
  }

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

  .footer-bottom {
    margin-top: 32px;
  }

  /* Hero */
  .hero-slide {
    min-height: 320px;
  }

  /* Category showcase — single column */
  .category-showcase-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 260px;
  }

  /* Deals — single column */
  .deals-showcase {
    grid-template-columns: 1fr;
  }

  /* Category name smaller */
  .category-name {
    font-size: 18px;
  }

  .category-card-panel {
    padding: 12px 16px 14px;
    gap: 8px;
  }
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  right: 26px;
  bottom: 90px;
  z-index: 1100;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.whatsapp-float:hover {
  background: #1ebe57;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.55);
}

.whatsapp-float-icon {
  width: 30px;
  height: 30px;
  display: block;
}

@media (max-width: 575px) {
  .whatsapp-float {
    right: 18px;
    bottom: 88px;
    width: 48px;
    height: 48px;
  }

  .whatsapp-float-icon {
    width: 24px;
    height: 24px;
  }
}

/* ============================================
   CATEGORY PAGE
   ============================================ */
.category-banner {
  margin-bottom: 24px;
}

.category-banner-inner {
  min-height: 380px;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}

.category-banner-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(90deg, rgba(33, 19, 12, 0.58) 0%, rgba(33, 19, 12, 0.26) 42%, rgba(33, 19, 12, 0.12) 100%);
}

.category-banner-no-image {
  background: linear-gradient(120deg, #fce4ec 0%, #f8bbd9 40%, #fce4ec 100%);
}

.category-banner-no-image::before {
  background: linear-gradient(90deg, rgba(255, 20, 147, 0.18) 0%, rgba(255, 20, 147, 0.06) 100%);
}

.category-banner-no-image .category-banner-content {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 20, 147, 0.15);
}

.category-banner-no-image .category-kicker {
  color: var(--primary-pink);
}

.category-banner-no-image .category-title {
  color: #222;
}

.category-banner-content {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-left: 8%;
  padding: 28px 34px;
  max-width: 520px;
  background: rgba(255, 246, 240, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 22px 48px rgba(31, 17, 11, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.category-kicker {
  color: rgba(255, 244, 236, 0.92);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.category-banner-meta {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #4f372a;
  font-size: 12px;
  font-weight: 600;
}

.category-title {
  position: relative;
  z-index: 1;
  font-size: 64px;
  color: var(--white);
  margin: 0;
  line-height: 0.94;
}

.breadcrumb {
  background: none !important;
  padding: 0 0 10px !important;
  margin-bottom: 0 !important;
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
}

.breadcrumb > li {
  display: flex !important;
  align-items: center;
  min-width: 0;
}

/* Remove Bootstrap's default separator, use our own */
.breadcrumb > li + li::before {
  content: "/" !important;
  padding: 0 6px !important;
  color: var(--light-text);
  flex-shrink: 0;
}

.breadcrumb li a {
  color: var(--light-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
  display: block;
}

.breadcrumb li:last-child a {
  color: var(--dark-text);
  font-weight: 500;
}

@media (max-width: 767px) {
  .breadcrumb {
    flex-wrap: nowrap !important;
    overflow: hidden;
    padding: 10px 0 16px !important;
  }

  .breadcrumb > li {
    flex-shrink: 1;
    min-width: 0;
  }

  /* Parent crumbs: keep short */
  .breadcrumb > li:not(:last-child) {
    flex-shrink: 0;
  }

  .breadcrumb > li:not(:last-child) a {
    max-width: 80px;
  }

  /* Last crumb (current page): takes remaining space, truncates */
  .breadcrumb > li:last-child {
    flex-shrink: 1;
    overflow: hidden;
  }

  .breadcrumb > li:last-child a {
    max-width: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

.category-page-shell {
  padding-bottom: 14px;
}

.category-intro-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 32px;
  padding: 26px 30px;
  background: linear-gradient(135deg, #fffaf6 0%, #f8f1ea 100%);
  border: 1px solid rgba(152, 105, 71, 0.12);
  box-shadow: 0 18px 42px rgba(82, 52, 33, 0.08);
}

.category-intro-copy {
  max-width: 760px;
}

.category-intro-label {
  display: inline-block;
  margin-bottom: 12px;
  color: #986947;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.category-intro {
  max-width: 760px;
  margin: 0;
  color: var(--light-text);
  font-size: 15px;
  line-height: 1.8;
}

.category-intro p:last-child {
  margin-bottom: 0;
}

.category-intro-aside {
  flex: 0 0 auto;
}

.category-intro-stat {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(152, 105, 71, 0.16);
  color: #6b4731;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.category-main {
  display: flex;
  align-items: flex-start;
}

.category-sidebar-column {
  position: sticky;
  top: 24px;
}

/* Filter Sidebar */
.filter-sidebar {
  background: linear-gradient(180deg, #ffffff 0%, #fcf7f2 100%);
  padding: 24px;
  border-radius: 0;
  border: 1px solid rgba(152, 105, 71, 0.1);
  box-shadow: 0 18px 42px rgba(82, 52, 33, 0.08);
}

.filter-title {
  font-size: 18px;
  margin-bottom: 20px;
  color: #2f221b;
}

.filter-group {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #f0f0f0;
}

.filter-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.filter-group h5 {
  font-size: 14px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-range {
  margin-bottom: 18px;
}

.price-range-control {
  position: relative;
  padding: 10px 0;
  height: 36px;
}

.price-range-track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: #eadfd6;
  transform: translateY(-50%);
}

.price-range-progress {
  position: absolute;
  top: 0;
  height: 100%;
  background: #1d1511;
}

.price-range-input {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  margin: 0;
  background: transparent;
  pointer-events: none;
  appearance: none;
  -webkit-appearance: none;
  transform: translateY(-50%);
}

.price-range-input::-webkit-slider-runnable-track {
  height: 4px;
  background: transparent;
}

.price-range-input::-moz-range-track {
  height: 4px;
  background: transparent;
}

.price-range-input::-webkit-slider-thumb {
  width: 18px;
  height: 18px;
  border: 2px solid #1d1511;
  border-radius: 50%;
  background: #fff;
  pointer-events: auto;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -7px;
  box-shadow: 0 4px 12px rgba(29, 21, 17, 0.18);
}

.price-range-input::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 2px solid #1d1511;
  border-radius: 50%;
  background: #fff;
  pointer-events: auto;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(29, 21, 17, 0.18);
}

.price-inputs .form-control {
  border-radius: 0;
  border: 1px solid rgba(152, 105, 71, 0.16);
  box-shadow: none;
}

.filter-list li {
  margin-bottom: 10px;
}

.filter-list li a {
  color: var(--light-text);
  font-size: 13px;
  transition: color 0.25s ease, transform 0.25s ease;
}

.filter-list li a:hover {
  color: var(--primary-pink);
  transform: translateX(2px);
}

.filter-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.filter-checkbox input {
  display: none;
}

.filter-checkbox span {
  position: relative;
  padding-left: 28px;
  font-size: 13px;
  color: var(--light-text);
}

.filter-checkbox span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border: 2px solid #ddd;
  border-radius: 3px;
  transition: var(--transition);
}

.filter-checkbox input:checked + span::before {
  background-color: var(--primary-pink);
  border-color: var(--primary-pink);
}

.filter-checkbox input:checked + span::after {
  content: '\f00c';
  font-family: 'FontAwesome';
  position: absolute;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 11px;
}

.category-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid rgba(152, 105, 71, 0.12);
  border-radius: 0;
  box-shadow: 0 16px 34px rgba(82, 52, 33, 0.08);
}

.category-toolbar-results {
  color: var(--light-text);
  font-size: 13px;
}

.category-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sort-dropdown {
  display: flex;
  align-items: center;
}

.sort-label {
  margin-right: 10px;
  font-size: 13px;
  color: var(--light-text);
}

.sort-dropdown select {
  border: 1px solid #ddd;
  border-radius: 0;
  padding: 8px 15px;
  font-size: 13px;
  min-width: 138px;
  background: #fff;
}

/* Mobile Filter */
.mobile-filter-bar {
  margin-bottom: 20px;
}

.btn-filter {
  background-color: var(--white);
  border: 1px solid #ddd;
  padding: 10px 20px;
  font-size: 13px;
}

.mobile-filter-panel {
  background-color: var(--white);
  padding: 20px;
  margin-top: 15px;
  border-radius: 0;
  box-shadow: 0 14px 28px rgba(82, 52, 33, 0.08);
}

.category-products-panel {
  padding: 10px 10px 0;
  background: linear-gradient(180deg, #fffefd 0%, #fbf7f2 100%);
  border: 1px solid rgba(152, 105, 71, 0.1);
  box-shadow: 0 18px 42px rgba(82, 52, 33, 0.07);
}

.category-product-card {
  margin-bottom: 20px;
  border-radius: 0;
  box-shadow: none;
  border: 1px solid rgba(152, 105, 71, 0.1);
}

.category-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 36px rgba(82, 52, 33, 0.12);
}

.category-product-card .image {
  aspect-ratio: 0.9;
  background: #f8f2ed;
}

.category-product-card .caption {
  padding: 22px 22px 20px;
}

.category-product-card .caption h4 {
  min-height: 44px;
  margin-bottom: 10px;
}

.category-product-card .price {
  color: #2f221b;
  margin-bottom: 16px;
}

.category-product-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(152, 105, 71, 0.22);
  color: #6d4932;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.category-product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
}

.category-product-actions .btn-card-cart,
.category-product-actions .category-product-link {
  margin-top: 0;
  width: 100%;
  justify-content: center;
  padding: 0 10px;
  font-size: 11px;
  min-height: 36px;
}

.category-product-link:hover {
  background: #1d1511;
  border-color: #1d1511;
  color: #fff;
}

.category-empty-state {
  padding: 34px 28px;
  background: #fff;
  border-radius: 0;
  box-shadow: 0 18px 42px rgba(82, 52, 33, 0.08);
  text-align: center;
}

.category-empty-state p {
  margin-bottom: 18px;
  color: var(--light-text);
}

/* ============================================
   SEARCH PAGE
   ============================================ */
.search-page {
  padding-bottom: 72px;
}

.search-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  padding: 18px 24px;
  background: linear-gradient(135deg, #fffdfb 0%, #f7efe7 52%, #efe3d7 100%);
  border: 1px solid rgba(152, 105, 71, 0.12);
  box-shadow: 0 10px 24px rgba(82, 52, 33, 0.06);
}

.search-hero-kicker {
  display: inline-block;
  margin-bottom: 6px;
  color: #9f6b44;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.search-hero-title {
  margin: 0 0 4px;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.15;
}

.search-hero-text {
  max-width: 560px;
  margin: 0;
  color: #6e5544;
  font-size: 13px;
  line-height: 1.5;
}

.search-hero-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(152, 105, 71, 0.16);
  color: #6d4932;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.search-panel {
  margin-bottom: 22px;
  padding: 18px 22px 20px;
  background: #fff;
  border: 1px solid rgba(152, 105, 71, 0.12);
  box-shadow: 0 10px 22px rgba(82, 52, 33, 0.06);
}

.search-panel-header {
  margin-bottom: 12px;
}

.search-panel-title {
  margin: 0;
  font-size: 18px;
}

.search-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(220px, 1fr);
  gap: 14px 16px;
  align-items: end;
}

.search-field-keyword {
  grid-column: 1 / 2;
}

.search-label {
  display: block;
  margin-bottom: 6px;
  color: #5e4739;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-input,
.search-select {
  height: 48px;
  border: 1px solid rgba(152, 105, 71, 0.18);
  border-radius: 0;
  box-shadow: none;
}

.search-input:focus,
.search-select:focus {
  border-color: #c3996b;
  box-shadow: none;
}

.search-toggles {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.search-toggle-option {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #624a3b;
  font-size: 14px;
  font-weight: 500;
}

.search-toggle-option input {
  margin: 0;
}

.search-actions {
  display: flex;
  justify-content: flex-start;
}

.search-submit {
  min-width: 180px;
  min-height: 48px;
  border-radius: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.search-toolbar {
  margin-bottom: 22px;
}

.search-products-panel {
  padding-top: 18px;
}

.search-product-card .description {
  min-height: 66px;
}

.search-pagination-row {
  margin-top: 26px;
}

.search-empty-state .category-empty-state {
  padding: 44px 32px;
  background: linear-gradient(180deg, #fffefd 0%, #fbf7f2 100%);
  border: 1px solid rgba(152, 105, 71, 0.1);
}

.search-empty-title {
  margin: 0 0 12px;
  font-size: 28px;
}

.search-empty-hint {
  margin-bottom: 0;
  font-size: 14px;
}

/* ============================================
   CHECKOUT PAGE (Shopify-style single page)
   ============================================ */

/* Hide the regular site chrome on checkout */
body.ti-shop-checkout > header,
body.ti-shop-checkout > footer.site-footer,
body.ti-shop-checkout > #cart-sidebar,
body.ti-shop-checkout > #cart-overlay,
body.ti-shop-checkout > #back-to-top,
body.ti-shop-checkout > .whatsapp-float,
body.ti-shop-checkout > .modal:not(#modal-agree) {
  display: none !important;
}

/* The Bootstrap modal that common.js builds for the Terms link is appended
   directly to <body>, so the hide rule above must explicitly exclude it.
   These rules also make sure the modal renders above the checkout cards and
   that the backdrop dimming uses the brand's warm tone. */
body.ti-shop-checkout #modal-agree {
  display: block;
}

body.ti-shop-checkout #modal-agree .modal-dialog {
  position: relative;
  z-index: 1051;
  max-width: 720px;
  margin: 48px auto;
}

body.ti-shop-checkout #modal-agree .modal-content {
  background: #ffffff;
  border: 1px solid #ece4d6;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(31, 21, 17, 0.25);
  overflow: hidden;
}

/* `common.js` builds the modal header as
     <button class="close">×</button><h4 class="modal-title">...</h4>
   — close-button BEFORE the title in DOM order. Use row-reverse so the title
   reads on the left and the close button sits on the right. */
body.ti-shop-checkout #modal-agree .modal-header {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid #f1ead9;
  background: #fbf7ef;
}

body.ti-shop-checkout #modal-agree .modal-header .modal-title {
  flex: 1;
  margin: 0;
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1d1511;
}

body.ti-shop-checkout #modal-agree .modal-header .close {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  background: #ffffff;
  border: 1px solid #ece4d6;
  border-radius: 999px;
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  color: #8c5b37;
  opacity: 1;
  text-shadow: none;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  float: none; /* Override Bootstrap 3's default `.close { float: right }` */
}

body.ti-shop-checkout #modal-agree .modal-header .close:hover,
body.ti-shop-checkout #modal-agree .modal-header .close:focus {
  background: #1d1511;
  border-color: #1d1511;
  color: var(--accent-gold, #D4AF37);
  opacity: 1;
  outline: none;
}

body.ti-shop-checkout #modal-agree .modal-header .close span,
body.ti-shop-checkout #modal-agree .modal-header .close > * {
  line-height: 1;
}

body.ti-shop-checkout #modal-agree .modal-body {
  padding: 22px 26px 28px;
  max-height: 70vh;
  overflow-y: auto;
  color: #2b1b12;
  font-size: 14px;
  line-height: 1.65;
}

body.ti-shop-checkout #modal-agree .modal-body p {
  margin: 0 0 12px;
}

body.ti-shop-checkout #modal-agree .modal-body h1,
body.ti-shop-checkout #modal-agree .modal-body h2,
body.ti-shop-checkout #modal-agree .modal-body h3 {
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  color: #1d1511;
  margin: 18px 0 10px;
}

body.ti-shop-checkout {
  background: #f7f1e9;
  font-family: var(--font-body, 'Poppins', sans-serif);
}

.ti-shop-checkout-page {
  min-height: 100vh;
  background: #f7f1e9;
  color: #2b1b12;
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: 0.005em;
}

.ti-shop-checkout-bar {
  background: #ffffff;
  border-bottom: 1px solid #ece4d6;
  box-shadow: 0 1px 0 rgba(31, 21, 17, 0.02);
}

.ti-shop-checkout-bar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 22px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ti-shop-checkout-brand {
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1d1511;
  text-decoration: none;
  line-height: 1;
}

.ti-shop-checkout-brand img {
  max-height: 68px;
  width: auto;
  display: block;
}

@media (max-width: 575px) {
  .ti-shop-checkout-brand img {
    max-height: 52px;
  }
}

.ti-shop-checkout-bag {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid #ece4d6;
  border-radius: 999px;
  color: #1d1511;
  text-decoration: none;
  transition: var(--transition, all 0.25s ease);
}

.ti-shop-checkout-bag:hover {
  color: #1d1511;
  border-color: var(--accent-gold, #D4AF37);
  background: #fff7e6;
}

.ti-shop-checkout-bag-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  background: var(--accent-gold, #D4AF37);
  color: #1d1511;
  font-size: 11px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  border-radius: 999px;
  box-shadow: 0 0 0 2px #ffffff;
}

.ti-shop-checkout-alert {
  max-width: 1240px;
  margin: 18px auto 0;
  padding: 14px 22px;
  background: #fdecec;
  border: 1px solid #f1c4c4;
  border-radius: 8px;
  color: #8a1f1f;
  font-size: 13px;
}

.ti-shop-checkout-grid {
  max-width: 1240px;
  margin: 32px auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
  gap: 32px;
  padding: 0 32px;
}

.ti-shop-checkout-main {
  background: #ffffff;
  padding: 40px 44px;
  border: 1px solid #ece4d6;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(31, 21, 17, 0.04);
}

.ti-shop-summary {
  background: transparent;
  border-left: none;
}

.ti-shop-summary-inner {
  position: sticky;
  top: 24px;
  padding: 32px 30px;
  background: #ffffff;
  border: 1px solid #ece4d6;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(31, 21, 17, 0.04);
}

.ti-shop-summary-inner::before {
  content: 'Order Summary';
  display: block;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #ece4d6;
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5a4421;
}

.ti-shop-form {
  max-width: 600px;
}

.ti-shop-section {
  position: relative;
  margin: 0 0 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid #f1ead9;
}

.ti-shop-section + .ti-shop-section {
  padding-top: 6px;
}

.ti-shop-section:last-of-type {
  border-bottom: none;
  padding-bottom: 18px;
}

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

.ti-shop-section-title {
  position: relative;
  margin: 0;
  padding-left: 18px;
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: #1d1511;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ti-shop-section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 16px;
  margin-top: -8px;
  border-radius: 2px;
  background: var(--accent-gold, #D4AF37);
}

.ti-shop-section-sub {
  margin: 0 0 16px;
  color: #6a503a;
  font-size: 13.5px;
  line-height: 1.55;
}

.ti-shop-section-link {
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  color: #8c5b37;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition, all 0.2s ease);
}

.ti-shop-section-link:hover {
  color: var(--accent-gold, #D4AF37);
}

/* Floating-label fields */
.ti-shop-field {
  position: relative;
  margin-bottom: 14px;
}

.ti-shop-field input,
.ti-shop-field select {
  width: 100%;
  height: 58px;
  padding: 24px 14px 8px;
  background: #ffffff;
  border: 1px solid #d8cfc1;
  border-radius: 10px;
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-size: 15px;
  color: #2b1b12;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.ti-shop-field input:hover,
.ti-shop-field select:hover {
  border-color: #b9ad99;
}

.ti-shop-field select {
  padding-right: 40px;
  cursor: pointer;
}

.ti-shop-field input:focus,
.ti-shop-field select:focus {
  border-color: var(--accent-rose-gold, #C3996B);
  box-shadow: 0 0 0 3px rgba(195, 153, 107, 0.18);
  background: #fffdf8;
}

.ti-shop-field label {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #6a503a;
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-size: 14.5px;
  pointer-events: none;
  background: transparent;
  padding: 0;
  margin: 0;
  transition: top 0.15s ease, font-size 0.15s ease, transform 0.15s ease, color 0.15s ease;
}

.ti-shop-field input:focus + label,
.ti-shop-field input:not(:placeholder-shown) + label,
.ti-shop-field select:focus + label,
.ti-shop-field select:not([value=""]) + label {
  top: 10px;
  transform: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #6a503a;
}

.ti-shop-field select + label {
  top: 10px;
  transform: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #6a503a;
}

.ti-shop-field-caret {
  position: absolute;
  right: 18px;
  top: 50%;
  width: 9px;
  height: 9px;
  margin-top: -7px;
  border-right: 1.5px solid #8c5b37;
  border-bottom: 1.5px solid #8c5b37;
  transform: rotate(45deg);
  pointer-events: none;
  transition: transform 0.15s ease;
}

.ti-shop-field:focus-within .ti-shop-field-caret {
  border-color: var(--accent-rose-gold, #C3996B);
}

.ti-shop-field.has-error input,
.ti-shop-field.has-error select {
  border-color: #d04848;
  box-shadow: 0 0 0 3px rgba(208, 72, 72, 0.14);
  background: #fff8f7;
}

.ti-shop-field.has-error label {
  color: #c93030;
}

.ti-shop-field-error {
  display: block;
  margin-top: 6px;
  margin-left: 2px;
  color: #c93030;
  font-size: 12px;
}

.ti-shop-row {
  display: grid;
  gap: 14px;
  margin-bottom: 0;
}

.ti-shop-row-2 {
  grid-template-columns: 1fr 1fr;
}

.ti-shop-row .ti-shop-field {
  margin-bottom: 14px;
}

/* Checkboxes */
.ti-shop-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0 0;
  color: #2b1b12;
  font-size: 13.5px;
  cursor: pointer;
  user-select: none;
}

.ti-shop-checkbox input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--accent-gold, #D4AF37);
}

.ti-shop-checkbox-agree {
  margin-top: 14px;
}

/* Separate billing address block (revealed when the customer picks
   "Use a different billing address"). */
.ti-shop-billing-fields {
  margin-top: 16px;
  padding: 20px;
  background: #fbf7ef;
  border: 1px solid #ece4d6;
  border-radius: 12px;
}

.ti-shop-billing-fields[hidden] {
  display: none;
}

.ti-shop-billing-fields .ti-shop-field:last-child {
  margin-bottom: 0;
}

/* Bank-transfer details panel: surfaces the saved theme bank settings inside
   the Payment section when the customer picks "Bank Transfer". */
.ti-shop-bank-details {
  margin-top: 16px;
  padding: 18px 20px;
  background: #fff7e6;
  border: 1px solid #e8d2a3;
  border-radius: 12px;
  color: #5a4421;
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.08);
}

.ti-shop-bank-details[hidden] {
  display: none;
}

.ti-shop-bank-title {
  margin: 0 0 14px;
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8c5b37;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ti-shop-bank-title i {
  font-size: 14px;
  line-height: 1;
  color: var(--accent-gold, #D4AF37);
}

.ti-shop-bank-list {
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 16px;
  row-gap: 8px;
  margin: 0;
  font-size: 14px;
}

.ti-shop-bank-list dt {
  color: #5a4421;
  font-weight: 500;
}

.ti-shop-bank-list dd {
  margin: 0;
  color: #1d1511;
  font-weight: 600;
  word-break: break-word;
}

.ti-shop-bank-hint {
  margin: 12px 0 0;
  font-size: 12.5px;
  color: #5a4421;
  line-height: 1.55;
}

@media (max-width: 480px) {
  .ti-shop-bank-list {
    grid-template-columns: 1fr;
    row-gap: 2px;
  }
  .ti-shop-bank-list dt {
    margin-top: 6px;
  }
}

/* Passive "By placing your order…" disclosure under the Pay now button. */
.ti-shop-agree-note {
  margin: 18px 0 0;
  color: #5a4421;
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

.ti-shop-agree-note a {
  color: #8c5b37;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ti-shop-agree-note a:hover {
  color: var(--accent-gold, #D4AF37);
}

/* Radio option boxes */
.ti-shop-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: none;
  border-radius: 0;
  overflow: visible;
  background: transparent;
}

.ti-shop-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  margin: 0;
  background: #ffffff;
  border: 1px solid #e1d8c8;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}

.ti-shop-option:hover {
  background: #fbf7ef;
  border-color: #d4c7b1;
}

.ti-shop-option.is-active {
  background: #fbf3e3;
  border-color: var(--accent-rose-gold, #C3996B);
  box-shadow: 0 0 0 1px var(--accent-rose-gold, #C3996B), 0 6px 14px rgba(195, 153, 107, 0.12);
}

.ti-shop-option.is-active .ti-shop-option-label {
  color: #1d1511;
  font-weight: 500;
}

.ti-shop-option input[type=radio] {
  width: 18px;
  height: 18px;
  margin: 0;
  flex-shrink: 0;
  accent-color: var(--accent-rose-gold, #C3996B);
}

.ti-shop-option-label {
  flex: 1;
  color: #2b1b12;
  font-size: 14px;
}

.ti-shop-option-meta {
  color: #1d1511;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}

.ti-shop-option-empty {
  padding: 16px;
  color: #6b6b6b;
  font-size: 14px;
}

/* Submit */
.ti-shop-submit-wrap {
  margin-top: 28px;
}

.ti-shop-submit {
  position: relative;
  width: 100%;
  height: 60px;
  border: 1px solid #1d1511;
  border-radius: 12px;
  background: #1d1511;
  color: #ffffff;
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 20px rgba(29, 21, 17, 0.18);
}

.ti-shop-submit::after {
  content: '\f061'; /* fa-arrow-right */
  font-family: 'FontAwesome';
  margin-left: 12px;
  font-size: 12px;
  color: var(--accent-gold, #D4AF37);
  transition: transform 0.2s ease, color 0.2s ease;
}

.ti-shop-submit:hover {
  background: #2b1b12;
  border-color: var(--accent-gold, #D4AF37);
  box-shadow: 0 12px 28px rgba(29, 21, 17, 0.28);
  transform: translateY(-1px);
}

.ti-shop-submit:hover::after {
  transform: translateX(4px);
  color: #ffffff;
}

.ti-shop-submit:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(29, 21, 17, 0.18);
}

.ti-shop-submit:disabled {
  background: #b9ad99;
  border-color: #b9ad99;
  color: #ffffff;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.ti-shop-submit:disabled::after {
  color: #ffffff;
}

.ti-shop-submit-error {
  margin: 14px 0 0;
  padding: 12px 16px;
  background: #fdecec;
  border: 1px solid #f1c4c4;
  border-radius: 10px;
  color: #8a1f1f;
  font-size: 13px;
}

.ti-shop-fineprint {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #f1ead9;
  color: #6a503a;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-align: center;
}

/* Order summary sidebar */
.ti-shop-summary-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid #f1ead9;
}

.ti-shop-summary-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}

.ti-shop-summary-thumb {
  position: relative;
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  background: radial-gradient(circle at top, #ffffff 0%, #f8f4ef 100%);
  border: 1px solid #ece4d6;
}

.ti-shop-summary-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ti-shop-summary-qty {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  background: #1d1511;
  color: var(--accent-gold, #D4AF37);
  font-size: 11px;
  font-weight: 700;
  line-height: 22px;
  text-align: center;
  border-radius: 999px;
  box-shadow: 0 0 0 2px #ffffff;
}

.ti-shop-summary-name {
  color: #1d1511;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.4;
}

.ti-shop-summary-price {
  color: #1d1511;
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
}

.ti-shop-summary-totals {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ti-shop-summary-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  color: #4a3526;
  font-size: 14px;
}

.ti-shop-summary-row strong {
  color: #1d1511;
  font-weight: 600;
}

.ti-shop-summary-row.is-grand {
  margin-top: 10px;
  padding-top: 18px;
  border-top: 1px solid #f1ead9;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5a4421;
}

.ti-shop-summary-row.is-grand strong {
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  color: #1d1511;
  text-transform: none;
}

/* Hidden injected confirm stage (used for click-through) */
#ti-shop-confirm-stage {
  display: none;
}

/* Tablet */
@media (max-width: 999px) {
  .ti-shop-checkout-grid {
    grid-template-columns: 1fr;
    margin: 20px auto;
    padding: 0 20px;
    gap: 20px;
  }
  .ti-shop-checkout-main {
    padding: 28px 22px;
    order: 2;
    border-radius: 12px;
  }
  .ti-shop-summary {
    border-bottom: none;
    order: 1;
  }
  .ti-shop-summary-inner {
    position: static;
    padding: 24px 22px;
    border-radius: 12px;
  }
  .ti-shop-form {
    max-width: none;
  }
}

/* Phone */
@media (max-width: 575px) {
  .ti-shop-checkout-bar-inner {
    padding: 16px 18px;
  }
  .ti-shop-checkout-brand {
    font-size: 18px;
    letter-spacing: 0.14em;
  }
  .ti-shop-checkout-grid {
    margin: 14px auto;
    padding: 0 14px;
    gap: 14px;
  }
  .ti-shop-checkout-main {
    padding: 22px 18px;
  }
  .ti-shop-summary-inner {
    padding: 20px 18px;
  }
  .ti-shop-row-2 {
    grid-template-columns: 1fr;
  }
  .ti-shop-section {
    margin-bottom: 28px;
    padding-bottom: 28px;
  }
  .ti-shop-section-head {
    margin-bottom: 18px;
  }
  .ti-shop-section-title {
    font-size: 14px;
    letter-spacing: 0.1em;
  }
  .ti-shop-summary-row.is-grand strong {
    font-size: 22px;
  }
  .ti-shop-submit {
    height: 56px;
    font-size: 12px;
    letter-spacing: 0.2em;
  }
}

/* ============================================
   CHECKOUT SUCCESS PAGE (ti-shop-success)
   Brand-aligned order-confirmation layout.
   ============================================ */
body.ti-shop-success {
  background: #f7f1e9;
  font-family: var(--font-body, 'Poppins', sans-serif);
}

body.ti-shop-success > #cart-sidebar,
body.ti-shop-success > #cart-overlay,
body.ti-shop-success > #back-to-top {
  /* Cart sidebar is irrelevant once the order is placed; back-to-top button
     gets in the way of the WhatsApp/help CTAs. Leave the main header and
     footer visible — the success page should still feel like part of the
     site, not a chrome-stripped lightbox. */
  display: none !important;
}

.ti-success-page {
  padding: 32px 0 64px;
  color: #2b1b12;
}

.ti-success-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Hero */
.ti-success-hero {
  position: relative;
  text-align: center;
  padding: 44px 32px 36px;
  margin-bottom: 28px;
  background: #ffffff;
  border: 1px solid #ece4d6;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(31, 21, 17, 0.05);
}

.ti-success-hero-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #f3ead4;
  color: #1d1511;
  box-shadow: 0 0 0 6px #faf2dd, 0 0 0 7px var(--accent-gold, #D4AF37);
}

.ti-success-hero-eyebrow {
  margin: 0 0 8px;
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8c5b37;
}

.ti-success-hero-title {
  margin: 0 0 12px;
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #1d1511;
}

.ti-success-hero-sub {
  margin: 0 auto 24px;
  max-width: 620px;
  color: #5a4421;
  font-size: 14.5px;
  line-height: 1.65;
}

.ti-success-hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 6px;
}

.ti-success-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: #fbf7ef;
  border: 1px solid #ece4d6;
  border-radius: 999px;
  font-size: 13px;
}

.ti-success-meta-label {
  color: #8c5b37;
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ti-success-meta-value {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1d1511;
  font-weight: 600;
}

.ti-success-status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent-gold, #D4AF37);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
}

.ti-success-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-left: 2px;
  padding: 0;
  background: #ffffff;
  border: 1px solid #ece4d6;
  border-radius: 999px;
  color: #8c5b37;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.ti-success-copy:hover {
  background: #1d1511;
  border-color: #1d1511;
  color: var(--accent-gold, #D4AF37);
}

.ti-success-copy.is-copied {
  background: #1d1511;
  border-color: #1d1511;
  color: var(--accent-gold, #D4AF37);
}

.ti-success-copy.is-copied::after {
  content: 'Copied';
  position: absolute;
  margin-left: 36px;
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8c5b37;
  white-space: nowrap;
}

/* Grid */
.ti-success-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
  gap: 24px;
}

.ti-success-main,
.ti-success-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Cards */
.ti-success-card {
  background: #ffffff;
  border: 1px solid #ece4d6;
  border-radius: 14px;
  padding: 26px 28px;
  box-shadow: 0 12px 32px rgba(31, 21, 17, 0.04);
}

.ti-success-card-head {
  margin-bottom: 18px;
}

.ti-success-card-title {
  position: relative;
  margin: 0;
  padding-left: 16px;
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1d1511;
}

.ti-success-card-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 14px;
  margin-top: -7px;
  border-radius: 2px;
  background: var(--accent-gold, #D4AF37);
}

.ti-success-card-title i {
  margin-right: 8px;
  color: var(--accent-gold, #D4AF37);
}

.ti-success-card-sub {
  margin: 10px 0 0;
  color: #5a4421;
  font-size: 13.5px;
  line-height: 1.6;
}

/* Bank-transfer card */
.ti-success-card-bank {
  background: #fff7e6;
  border-color: #e8d2a3;
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.08), 0 12px 32px rgba(31, 21, 17, 0.04);
}

.ti-success-bank-list {
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 18px;
  row-gap: 10px;
  margin: 18px 0 0;
  font-size: 14px;
}

.ti-success-bank-list dt {
  color: #5a4421;
  font-weight: 500;
}

.ti-success-bank-list dd {
  margin: 0;
  color: #1d1511;
  font-weight: 600;
  word-break: break-word;
}

.ti-success-bank-amount {
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-size: 18px !important;
  color: #1d1511 !important;
}

.ti-success-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 14px 22px;
  background: #25d366;
  color: #ffffff;
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.25);
}

.ti-success-wa:hover {
  background: #1da851;
  transform: translateY(-1px);
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.35);
}

.ti-success-wa i {
  font-size: 18px;
}

/* Order items */
.ti-success-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ti-success-item {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #f1ead9;
}

.ti-success-item:first-child { padding-top: 0; }
.ti-success-item:last-child  { padding-bottom: 0; border-bottom: none; }

.ti-success-item-qty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #1d1511;
  color: var(--accent-gold, #D4AF37);
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
}

.ti-success-item-name {
  color: #1d1511;
  font-weight: 500;
  font-size: 14.5px;
  line-height: 1.4;
}

.ti-success-item-meta {
  color: #8c7565;
  font-size: 12px;
  margin-top: 2px;
}

.ti-success-item-options {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  font-size: 12.5px;
  color: #6a503a;
}

.ti-success-item-options li span {
  color: #8c7565;
  margin-right: 4px;
}

.ti-success-item-total {
  color: #1d1511;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}

/* Totals */
.ti-success-totals {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #f1ead9;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ti-success-totals-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  color: #4a3526;
  font-size: 14px;
}

.ti-success-totals-row strong { color: #1d1511; font-weight: 600; }

.ti-success-totals-row.is-grand {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid #f1ead9;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5a4421;
}

.ti-success-totals-row.is-grand strong {
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0;
  color: #1d1511;
  text-transform: none;
}

/* Addresses */
.ti-success-addresses {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.ti-success-address address {
  margin: 0;
  font-style: normal;
  color: #1d1511;
  font-size: 14px;
  line-height: 1.6;
}

.ti-success-address-label {
  margin-bottom: 8px;
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8c5b37;
}

.ti-success-address-meta {
  margin-top: 10px;
  font-size: 13px;
  color: #5a4421;
}

.ti-success-address-meta strong { color: #1d1511; font-weight: 600; }

/* Steps timeline */
.ti-success-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ti-success-steps li {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: flex-start;
  gap: 16px;
}

.ti-success-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--accent-gold, #D4AF37);
  border-radius: 999px;
  background: #fff7e6;
  color: #1d1511;
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-weight: 700;
  font-size: 14px;
}

.ti-success-steps strong {
  display: block;
  margin-bottom: 4px;
  color: #1d1511;
  font-weight: 600;
  font-size: 14.5px;
}

.ti-success-steps p {
  margin: 0;
  color: #5a4421;
  font-size: 13.5px;
  line-height: 1.6;
}

/* Side card actions */
.ti-success-side-card { padding: 22px 22px; }

.ti-success-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.ti-success-action {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: #fbf7ef;
  border: 1px solid #ece4d6;
  border-radius: 12px;
  color: #1d1511;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.ti-success-action:hover {
  background: #ffffff;
  border-color: var(--accent-rose-gold, #C3996B);
  text-decoration: none;
  color: #1d1511;
}

.ti-success-action i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  background: #ffffff;
  border: 1px solid #ece4d6;
  border-radius: 999px;
  color: #8c5b37;
  font-size: 16px;
}

.ti-success-action span {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}

.ti-success-action strong {
  color: #1d1511;
  font-weight: 600;
}

.ti-success-action small {
  display: block;
  margin-top: 2px;
  color: #6a503a;
  font-size: 12px;
}

.ti-success-action-wa {
  background: #e8fbef;
  border-color: #b9ecca;
}

.ti-success-action-wa i {
  background: #25d366;
  border-color: #25d366;
  color: #ffffff;
}

.ti-success-action-wa:hover {
  background: #d6f5e0;
  border-color: #25d366;
}

.ti-success-action-primary {
  background: #1d1511;
  border-color: #1d1511;
  color: #ffffff;
}

.ti-success-action-primary i {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--accent-gold, #D4AF37);
}

.ti-success-action-primary strong { color: #ffffff; }
.ti-success-action-primary small  { color: rgba(255, 255, 255, 0.7); }

.ti-success-action-primary:hover {
  background: #2b1b12;
  border-color: var(--accent-gold, #D4AF37);
  color: #ffffff;
}

/* Contact-on-file list */
.ti-success-contact {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ti-success-contact li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f1ead9;
  font-size: 13.5px;
}

.ti-success-contact li:last-child { border-bottom: none; padding-bottom: 0; }
.ti-success-contact li span { color: #8c7565; }
.ti-success-contact li strong { color: #1d1511; font-weight: 600; text-align: right; word-break: break-word; }

/* Bottom CTAs */
.ti-success-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

.ti-success-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 56px;
  padding: 0 28px;
  border-radius: 12px;
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.ti-success-btn-primary {
  background: #1d1511;
  color: #ffffff;
  border: 1px solid #1d1511;
  box-shadow: 0 8px 20px rgba(29, 21, 17, 0.18);
}

.ti-success-btn-primary:hover {
  background: #2b1b12;
  border-color: var(--accent-gold, #D4AF37);
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(29, 21, 17, 0.28);
}

.ti-success-btn-ghost {
  background: transparent;
  color: #1d1511;
  border: 1px solid #d8cfc1;
}

.ti-success-btn-ghost:hover {
  background: #ffffff;
  border-color: var(--accent-rose-gold, #C3996B);
  color: #1d1511;
  text-decoration: none;
}

/* Tablet */
@media (max-width: 999px) {
  .ti-success-grid {
    grid-template-columns: 1fr;
  }
  .ti-success-shell {
    padding: 0 20px;
  }
  .ti-success-hero {
    padding: 36px 22px 28px;
    border-radius: 14px;
  }
  .ti-success-card {
    padding: 22px 22px;
    border-radius: 12px;
  }
  .ti-success-addresses {
    grid-template-columns: 1fr;
  }
}

/* Phone */
@media (max-width: 575px) {
  .ti-success-shell {
    padding: 0 14px;
  }
  .ti-success-hero {
    padding: 30px 18px 22px;
  }
  .ti-success-hero-meta {
    gap: 8px;
  }
  .ti-success-meta-item {
    padding: 8px 12px;
    font-size: 12.5px;
  }
  .ti-success-card {
    padding: 18px 18px;
  }
  .ti-success-item {
    grid-template-columns: 32px minmax(0, 1fr) auto;
    gap: 12px;
  }
  .ti-success-item-qty {
    width: 32px;
    height: 32px;
  }
  .ti-success-cta .ti-success-btn {
    min-width: 0;
    width: 100%;
    height: 52px;
    font-size: 12px;
    letter-spacing: 0.2em;
  }
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.product-detail-row {
  margin-bottom: 72px;
}

.product-images {
  position: sticky;
  top: 20px;
}

.main-image-wrapper {
  position: relative;
  margin-bottom: 20px;
}

.main-image {
  position: relative;
  min-height: 560px;
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #ece7e1;
  border-radius: 18px;
  background: radial-gradient(circle at top, #ffffff 0%, #f8f4ef 100%);
}

.main-image img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  display: block;
}

.product-gallery-protected {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

.product-gallery-protected img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}

.main-image {
  position: relative;
}

.product-zoom-pane {
  position: absolute;
  top: 22px;
  left: 22px;
  right: 22px;
  bottom: 22px;
  border: 1px solid rgba(236, 231, 225, 0.9);
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.96);
  background-repeat: no-repeat;
  background-size: 220%;
  background-position: center;
  box-shadow: 0 18px 40px rgba(34, 34, 34, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.main-image.is-zoom-active .product-zoom-pane {
  opacity: 1;
  transform: translateY(0);
}

.main-image.is-zoom-active #main-image {
  opacity: 0;
}

.btn-zoom {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.btn-zoom i {
  color: var(--dark-text);
  font-size: 16px;
}

.main-image.is-zoom-active .btn-zoom {
  background-color: var(--primary-pink);
}

.main-image.is-zoom-active .btn-zoom i {
  color: var(--white);
}

.btn-zoom:hover {
  background-color: var(--primary-pink);
}

.btn-zoom:hover i {
  color: var(--white);
}

.thumbnail-images {
  margin-top: 15px;
}

.thumbnail-images .item {
  padding: 2px;
}

.thumbnail-images .thumbnail {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  display: block;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background-color: #fff;
  transition: var(--transition);
}

.thumbnail-images .thumbnail img {
  display: block;
}

.thumbnail-images .thumbnail:focus {
  outline: none;
}

.thumbnail-images .thumbnail::-moz-focus-inner {
  border: 0;
}

.thumbnail-images .thumbnail.active,
.thumbnail-images .thumbnail:hover {
  border-color: var(--primary-pink);
}

.thumbnail-images .thumbnail img {
  width: 100%;
  height: 92px;
  object-fit: cover;
}

/* Product Info */
.product-info {
  padding-left: 18px;
}

.product-title {
  font-size: 34px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.product-short-description {
  color: var(--light-text);
  margin-bottom: 22px;
  line-height: 1.75;
}

.detail-information {
  margin-bottom: 25px;
}

.detail-information h4 {
  font-size: 16px;
  margin-bottom: 15px;
}

.product-attributes li {
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--light-text);
}

.product-attributes li i {
  color: var(--primary-pink);
  margin-right: 8px;
}

/* Color Swatches */
.color-swatches {
  margin-bottom: 25px;
}

.color-swatches label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.swatch-group {
  display: flex;
  gap: 10px;
}

.color-swatch {
  cursor: pointer;
}

.color-swatch input {
  display: none;
}

.color-swatch .swatch {
  display: block;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: var(--transition);
}

.color-swatch .swatch.gold {
  background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
}

.color-swatch .swatch.white-gold {
  background: linear-gradient(135deg, #F5F5F5 0%, #C0C0C0 100%);
}

.color-swatch .swatch.rose-gold {
  background: linear-gradient(135deg, #E8B4B8 0%, #C3996B 100%);
}

.color-swatch input:checked + .swatch {
  border-color: var(--primary-pink);
  box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--primary-pink);
}

/* Product Price */
.product-price-wrapper {
  margin-bottom: 14px;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
}

.product-price .price-old {
  font-size: 20px;
}

/* Product Actions */
.purchase-panel {
  padding: 22px;
  margin-bottom: 24px;
  border: 1px solid #eee3d8;
  border-radius: 18px;
  background: linear-gradient(180deg, #fffdfb 0%, #f8f3ed 100%);
  box-shadow: 0 16px 40px rgba(34, 34, 34, 0.08);
}

.product-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
  flex-wrap: wrap;
  position: static;
  opacity: 1;
  transform: none;
}

.quantity-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--white);
}

.btn-quantity {
  width: 40px;
  height: 45px;
  background-color: var(--white);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-quantity:hover {
  background-color: var(--light-gray);
}

.btn-quantity i {
  color: var(--dark-text);
  font-size: 12px;
}

.quantity-wrapper input {
  width: 50px;
  height: 45px;
  border: none;
  text-align: center;
  font-size: 14px;
  background-color: var(--white);
}

.btn-add-cart {
  background-color: var(--white);
  color: var(--primary-pink);
  padding: 12px 22px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--primary-pink);
  transition: var(--transition);
  height: 45px;
  min-width: 150px;
  border-radius: 10px;
  font-weight: 600;
}

.btn-add-cart:hover {
  background-color: var(--primary-pink);
  color: var(--white);
}

.btn-buy-now {
  background-color: var(--primary-pink);
  color: var(--white);
  padding: 12px 18px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--primary-pink);
  transition: var(--transition);
  height: 45px;
  border-radius: 10px;
  white-space: nowrap;
}

.btn-buy-now:hover {
  background-color: var(--secondary-dark-pink);
  border-color: var(--secondary-dark-pink);
}

.preorder-message {
  margin-top: 14px;
  color: var(--light-text);
  font-size: 13px;
  line-height: 1.6;
}

.preorder-modal .modal-body {
  background: linear-gradient(180deg, #fffdfb 0%, #f9f5f0 100%);
}

.preorder-intro {
  margin-bottom: 12px;
  color: var(--light-text);
}

.preorder-payment-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 18px;
  padding: 12px 14px;
  background: #fff4e3;
  border: 1px solid #e9c98a;
  border-radius: 8px;
  color: #4a2e10;
  font-size: 13.5px;
  line-height: 1.5;
}

.preorder-payment-note i {
  margin-top: 2px;
  color: #8a5a1c;
  font-size: 16px;
}

.preorder-payment-note strong {
  color: #2b1b12;
}

.preorder-bank-details {
  margin: 0 0 18px;
  padding: 16px 18px;
  background: #ffffff;
  border: 1px solid rgba(70, 39, 20, 0.12);
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(70, 39, 20, 0.05);
}

.preorder-bank-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: #2b1b12;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.preorder-bank-title i {
  color: #8a5a1c;
  font-size: 15px;
}

.preorder-bank-list {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 6px 18px;
  margin: 0;
}

.preorder-bank-list dt {
  margin: 0;
  color: #6a5a4f;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.preorder-bank-list dd {
  margin: 0;
  color: #2b1b12;
  font-size: 14px;
  font-weight: 500;
  word-break: break-word;
}

.preorder-bank-hint {
  margin: 12px 0 0;
  color: var(--light-text);
  font-size: 12.5px;
  line-height: 1.5;
}

@media (max-width: 480px) {
  .preorder-bank-list {
    grid-template-columns: 1fr;
    gap: 2px 0;
  }

  .preorder-bank-list dt {
    margin-top: 8px;
  }

  .preorder-bank-list dt:first-child {
    margin-top: 0;
  }
}

/* Product Benefits */
.product-benefits {
  margin-bottom: 25px;
  padding: 15px 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.benefit-item {
  font-size: 13px;
  color: var(--light-text);
}

.benefit-item i {
  color: var(--primary-pink);
  margin-right: 8px;
}

/* Membership Banner */
.membership-banner {
  background: linear-gradient(135deg, #fbf4eb 0%, #f3e3d2 100%);
  padding: 22px;
  border-radius: 18px;
}

.membership-banner h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.membership-banner p {
  font-size: 13px;
  color: var(--light-text);
  margin-bottom: 0;
}

.membership-banner a {
  color: var(--primary-pink);
  font-weight: 600;
}

/* Frequently Bought Together */
.related-products-primary {
  padding: 60px 0;
  background-color: var(--off-white);
}

.checkbox-inline input {
  display: none;
}

.checkbox-inline .checkmark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: var(--primary-pink);
  border-radius: 50%;
  color: var(--white);
  font-size: 12px;
}

.checkbox-inline input:not(:checked) + .checkmark {
  background-color: #ddd;
}

.total-price-wrapper {
  margin: 30px 0;
  font-size: 18px;
}

.total-price-wrapper .total-label {
  margin-right: 15px;
  font-weight: 600;
}

.total-price-wrapper .price-old {
  margin-right: 15px;
}

.total-price-wrapper .price-new {
  font-size: 24px;
  font-weight: 700;
}

/* Related Products */
.related-products {
  padding: 60px 0;
}

/* ============================================
   OWL CAROUSEL CUSTOMIZATION
   ============================================ */
.owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  pointer-events: none;
}

.owl-carousel .owl-nav button {
  position: absolute;
  width: 45px;
  height: 45px;
  background-color: var(--white) !important;
  border-radius: 50% !important;
  box-shadow: var(--shadow);
  pointer-events: auto;
  transition: var(--transition);
}

.owl-carousel .owl-nav button:hover {
  background-color: var(--primary-pink) !important;
}

.owl-carousel .owl-nav button.owl-prev {
  left: -20px;
}

.owl-carousel .owl-nav button.owl-next {
  right: -20px;
}

/* Pull the hero arrows above the bottom-right hot zone (WhatsApp + back-to-top
   stack) without touching the slider's full 760px height. */
.hero-slider .owl-nav {
  top: 38%;
}

.hero-slider .owl-nav button.owl-prev {
  left: 28px;
}

.hero-slider .owl-nav button.owl-next {
  right: 28px;
}

.hero-slider .owl-nav button.owl-prev,
.hero-slider .owl-nav button.owl-next {
  width: 52px;
  height: 52px;
  background-color: rgba(255, 255, 255, 0.96) !important;
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 12px 28px rgba(20, 12, 8, 0.22), 0 2px 6px rgba(20, 12, 8, 0.08);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.hero-slider .owl-nav button.owl-prev i,
.hero-slider .owl-nav button.owl-next i {
  font-size: 16px;
  transition: transform 0.25s ease, color 0.25s ease;
}

.hero-slider .owl-nav button.owl-prev:hover,
.hero-slider .owl-nav button.owl-next:hover {
  background-color: var(--primary-pink) !important;
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(218, 57, 132, 0.32), 0 2px 6px rgba(218, 57, 132, 0.18);
}

.hero-slider .owl-nav button.owl-prev:hover i,
.hero-slider .owl-nav button.owl-next:hover i {
  color: #ffffff;
}

.hero-slider .owl-nav button.owl-next:hover i {
  transform: translateX(2px);
}

.hero-slider .owl-nav button.owl-prev:hover i {
  transform: translateX(-2px);
}

.owl-carousel .owl-nav button i,
.owl-carousel .owl-nav button span {
  color: var(--dark-text);
  font-size: 18px;
}

.owl-carousel .owl-nav button:hover i,
.owl-carousel .owl-nav button:hover span {
  color: var(--white);
}

.owl-carousel .owl-dots {
  text-align: center;
  margin-top: 12px;
  line-height: 1;
}

.owl-carousel .owl-dots .owl-dot {
  width: 8px;
  height: 8px;
  background-color: #ddd;
  border-radius: 50%;
  margin: 0 4px;
  transition: var(--transition);
}

.owl-carousel .owl-dots .owl-dot.active {
  background-color: var(--primary-pink);
}

/* Hero slider dots overlay the bottom of the slider so they don't add a vertical gap */
.hero-banner {
  position: relative;
}

.hero-slider .owl-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  margin-top: 0;
  z-index: 5;
}

.hero-slider .owl-dots .owl-dot {
  width: 9px;
  height: 9px;
  background-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

.hero-slider .owl-dots .owl-dot.active {
  background-color: #ffffff;
}

/* Hide owl-dots blocks that contain only one page (otherwise they take vertical space for nothing) */
.owl-carousel .owl-dots:not(.disabled):empty,
.owl-carousel .owl-dots .owl-dot:only-child {
  display: none;
}

/* ============================================
   CART SIDEBAR
   ============================================ */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  background-color: var(--white);
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  transition: var(--transition);
  overflow-y: auto;
}

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

.cart-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.cart-sidebar-header h4 {
  margin: 0;
  font-size: 18px;
}

.close-cart {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--dark-text);
}

.cart-sidebar-content {
  padding: 20px;
}

.mini-cart-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mini-cart-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0e5dc;
}

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

.mini-cart-thumb {
  flex: 0 0 72px;
}

.mini-cart-thumb img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  background: #f7f1ec;
}

.mini-cart-body {
  flex: 1 1 auto;
  min-width: 0;
}

.mini-cart-name {
  display: block;
  margin-bottom: 6px;
  color: var(--dark-text);
  font-weight: 600;
  line-height: 1.4;
}

.mini-cart-options {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 6px;
  color: var(--light-text);
  font-size: 12px;
}

.mini-cart-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--light-text);
  font-size: 12px;
}

.mini-cart-price {
  color: var(--dark-text);
  font-weight: 700;
}

.mini-cart-remove {
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: #f7ebe5;
  color: #7a4e35;
  transition: var(--transition);
}

.mini-cart-remove:hover {
  background: #1d1511;
  color: #fff;
}

.mini-cart-summary {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #eadfd6;
}

.mini-cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--light-text);
}

.mini-cart-total-row strong {
  color: var(--dark-text);
}

.mini-cart-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.mini-cart-link {
  width: 100%;
  text-align: center;
}

.mini-cart-empty {
  text-align: center;
}

.mini-cart-empty p {
  margin-bottom: 16px;
}

.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background-color: var(--primary-pink);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--secondary-dark-pink);
  color: var(--white);
}

@media (max-width: 575px) {
  .back-to-top {
    bottom: 24px;
    right: 22px;
    width: 42px;
    height: 42px;
  }
}

/* ============================================
   MODAL
   ============================================ */
.modal-content {
  border-radius: 8px;
  border: none;
}

.modal-header {
  border-bottom: 1px solid #f0f0f0;
  padding: 20px;
}

.modal-title {
  font-size: 18px;
}

.modal-body {
  padding: 20px;
}

/* ============================================
   CART PAGE
   ============================================ */
.ti-cart-page {
  padding-top: 30px;
  padding-bottom: 64px;
}

.cart-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.cart-page-header h1 {
  margin: 0;
  font-size: 42px;
  line-height: 1.1;
}

.cart-page-heading {
  max-width: 720px;
}

.cart-page-subtitle {
  margin: 10px 0 0;
  color: var(--light-text);
  font-size: 15px;
  line-height: 1.6;
}

.cart-page-weight {
  color: var(--light-text);
  font-size: 20px;
  font-weight: 400;
}

.cart-page-overview {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.cart-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dark-text);
  font-size: 14px;
  font-weight: 600;
}

.cart-back-link:hover,
.cart-back-link:focus {
  color: var(--primary-pink);
  text-decoration: none;
}

.cart-page-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(320px, 0.82fr);
  gap: 36px;
  align-items: start;
}

.cart-page-shell .cart-page-items:only-child {
  grid-column: 1 / -1;
}

.cart-page-items,
.cart-summary-card {
  background: #fff;
  border: 1px solid #e7dfd8;
  border-radius: 18px;
  box-shadow: none;
}

.cart-page-items {
  overflow: hidden;
}

.cart-items-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px 120px;
  gap: 18px;
  padding: 18px 24px;
  border-bottom: 1px solid #eee6df;
  color: var(--light-text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cart-items-head span:last-child,
.cart-items-head span:nth-child(2) {
  text-align: right;
}

.cart-items-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px 0;
}

.cart-items-intro h2 {
  margin: 0;
  color: var(--dark-text);
  font-size: 24px;
}

.cart-items-intro p {
  max-width: 560px;
  margin: 0;
  color: var(--light-text);
  font-size: 14px;
  line-height: 1.7;
}

.cart-line-item {
  display: flex;
  gap: 18px;
  padding: 24px;
  border-bottom: 1px solid #eee6df;
}

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

.cart-line-thumb {
  flex: 0 0 112px;
}

.cart-line-thumb img {
  width: 112px;
  height: 112px;
  object-fit: cover;
  border-radius: 12px;
  background: #f7f1ec;
}

.cart-line-content {
  flex: 1 1 auto;
  min-width: 0;
}

.cart-line-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cart-line-details {
  min-width: 0;
  flex: 1 1 auto;
}

.cart-line-name {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--dark-text);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.cart-line-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 8px;
  color: var(--light-text);
  font-size: 13px;
}

.cart-meta-chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: #f8f5f1;
  color: #7b6050;
  font-size: 11px;
  line-height: 1.3;
}

.cart-line-unit-price {
  margin-top: 14px;
  color: var(--light-text);
  font-size: 14px;
}

.cart-remove-inline {
  margin-top: 10px;
  padding: 0;
  color: #7b6050;
  font-size: 13px;
  font-weight: 600;
}

.cart-remove-inline:hover,
.cart-remove-inline:focus {
  color: var(--primary-pink);
  text-decoration: none;
}

.cart-line-total {
  display: block;
  color: var(--dark-text);
  font-size: 18px;
  font-weight: 700;
}

.cart-line-sidebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 300px;
}

.cart-line-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.cart-qty-group {
  display: inline-flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
  border: 1px solid #d9d0c8;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.cart-qty-group .form-control {
  width: 58px;
  text-align: center;
  height: 46px;
  border: none;
  border-left: 1px solid #d9d0c8;
  border-right: 1px solid #d9d0c8;
  border-radius: 0;
  font-weight: 600;
  box-shadow: none;
}

.cart-qty-btn,
.cart-update-btn,
.cart-remove-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  font-weight: 600;
}

.cart-qty-btn {
  width: 42px;
  padding: 0;
  border: none;
  background: #fff;
  color: var(--dark-text);
}

.cart-qty-btn:hover,
.cart-qty-btn:focus {
  background: #f7f3ef;
  color: var(--dark-text);
}

.cart-update-btn {
  padding: 10px 14px;
  border: 1px solid #d9d0c8;
  border-radius: 12px;
  background: #fff;
  color: var(--dark-text);
}

.cart-update-btn:hover,
.cart-update-btn:focus {
  border-color: var(--primary-pink);
  background: #fff8f3;
  color: var(--dark-text);
}

.cart-line-total-wrap {
  min-width: 110px;
  text-align: right;
}

.cart-line-total-label {
  display: block;
  margin-bottom: 6px;
  color: var(--light-text);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cart-summary-card {
  padding: 24px;
  position: sticky;
  top: 24px;
}

.cart-summary-card h3 {
  margin: 0 0 8px;
  font-size: 26px;
}

.cart-summary-copy {
  margin: 0 0 20px;
  color: var(--light-text);
  font-size: 14px;
  line-height: 1.6;
}

.cart-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #eee6df;
}

.cart-summary-row-empty {
  padding-top: 14px;
}

.cart-summary-row:last-of-type {
  border-bottom: none;
}

.cart-summary-message {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #f8f5f1;
  color: #7b6050;
  font-size: 13px;
  line-height: 1.6;
}

.cart-summary-coupon {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #eee6df;
}

.cart-summary-coupon-head h4 {
  margin: 0;
  color: var(--dark-text);
  font-size: 17px;
  font-weight: 600;
}

.cart-summary-coupon-head p {
  margin: 6px 0 0;
  color: var(--light-text);
  font-size: 13px;
  line-height: 1.5;
}

.cart-summary-coupon-body {
  margin-top: 14px;
}

.cart-summary-coupon-body .panel {
  margin-bottom: 0;
  border: none;
  box-shadow: none;
}

.cart-summary-coupon-body .panel-heading {
  display: none;
}

.cart-summary-coupon-body .panel-collapse {
  display: block !important;
  height: auto !important;
}

.cart-summary-coupon-body .panel-body {
  padding: 0;
}

.cart-summary-coupon-body .control-label {
  display: none;
}

.cart-summary-coupon-body .input-group {
  display: flex;
  width: 100%;
  border: 1px solid #d9d0c8;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.cart-summary-coupon-body .input-group .form-control {
  border: none;
  border-radius: 0;
  height: 50px;
  padding: 14px 16px;
  box-shadow: none;
}

.cart-summary-coupon-body .input-group-btn {
  width: auto;
  white-space: nowrap;
}

.cart-summary-coupon-body .input-group-btn .btn {
  min-width: 124px;
  height: 50px;
  border: none;
  border-left: 1px solid #d9d0c8;
  border-radius: 0;
  padding: 0 18px;
}

.cart-summary-notes {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 12px;
  background: #fbf5ef;
  color: #7b6050;
  font-size: 13px;
}

.cart-summary-notes span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-summary-actions {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.cart-summary-link {
  width: 100%;
  text-align: center;
  min-height: 50px;
  padding-top: 14px;
  padding-bottom: 14px;
  border-radius: 12px;
}

.cart-summary-link-secondary {
  border: 1px solid #d9d0c8;
  background: #fff;
  color: var(--dark-text);
}

.cart-summary-link-secondary:hover,
.cart-summary-link-secondary:focus {
  background: #f8f5f1;
  color: var(--dark-text);
}

.cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 460px;
  padding: 44px 28px;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(229, 198, 170, 0.28), transparent 36%),
    linear-gradient(180deg, #fffdfb 0%, #fbf4ee 100%);
}

.cart-empty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f7d8c4 0%, #eed8bf 100%);
  color: #6d4631;
  font-size: 34px;
  box-shadow: 0 22px 40px rgba(82, 52, 33, 0.12);
}

.cart-empty-state h2 {
  max-width: 480px;
  margin: 0 0 12px;
  color: var(--dark-text);
  font-size: 34px;
  line-height: 1.2;
}

.cart-empty-copy {
  max-width: 460px;
  margin: 0;
  color: var(--light-text);
  font-size: 15px;
  line-height: 1.8;
}

.cart-empty-actions {
  margin-top: 24px;
}

.cart-empty-link {
  min-width: 220px;
  min-height: 48px;
  padding-top: 13px;
  padding-bottom: 13px;
  border-radius: 14px;
}

.cart-accordion-wrap {
  margin-top: 28px;
}

.cart-accordion-wrap h2 {
  margin: 0 0 8px;
  color: var(--dark-text);
  font-size: 30px;
}

.cart-accordion-wrap > p {
  max-width: 720px;
  margin: 0 0 20px;
  color: var(--light-text);
  font-size: 14px;
  line-height: 1.7;
}

.cart-accordion-wrap .panel-group {
  margin-bottom: 0;
}

.cart-accordion-wrap .panel {
  margin-bottom: 14px;
  border: 1px solid #e7dfd8;
  border-radius: 18px;
  box-shadow: none;
  overflow: hidden;
}

.cart-accordion-wrap .panel:last-child {
  margin-bottom: 0;
}

.cart-accordion-wrap .panel-heading {
  padding: 0;
  background: #fff;
  border: none;
}

.cart-accordion-wrap .panel-title {
  font-size: 18px;
  font-weight: 600;
}

.cart-accordion-wrap .panel-title > .accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  color: var(--dark-text);
  text-decoration: none;
}

.cart-accordion-wrap .panel-title > .accordion-toggle:hover,
.cart-accordion-wrap .panel-title > .accordion-toggle:focus {
  color: var(--primary-pink);
  text-decoration: none;
}

.cart-accordion-wrap .panel-title > .accordion-toggle i.fa-caret-down {
  color: var(--light-text);
  font-size: 16px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.cart-accordion-wrap .panel-title > .accordion-toggle[aria-expanded="true"] i.fa-caret-down,
.cart-accordion-wrap .panel-title > .accordion-toggle:not(.collapsed) i.fa-caret-down {
  color: var(--primary-pink);
  transform: rotate(180deg);
}

.cart-accordion-wrap .panel-collapse {
  border-top: 1px solid #eee6df;
}

.cart-accordion-wrap .panel-body {
  padding: 24px;
  background: #fffdfb;
}

.cart-accordion-wrap .panel-body > p:first-child {
  margin: 0 0 18px;
  color: var(--light-text);
  font-size: 14px;
  line-height: 1.7;
}

.cart-accordion-wrap .form-horizontal {
  display: grid;
  gap: 16px;
}

.cart-accordion-wrap .form-horizontal .form-group {
  margin: 0;
}

.cart-accordion-wrap .form-horizontal .control-label {
  margin-bottom: 8px;
  padding: 0;
  color: var(--dark-text);
  font-size: 13px;
  font-weight: 600;
  text-align: left;
}

.cart-accordion-wrap .form-horizontal .col-sm-2,
.cart-accordion-wrap .form-horizontal .col-sm-10 {
  width: 100%;
  padding: 0;
}

.cart-accordion-wrap .form-control,
.cart-accordion-wrap select.form-control,
.cart-accordion-wrap textarea.form-control {
  height: 48px;
  border: 1px solid #d9d0c8;
  border-radius: 12px;
  background: #fff;
  box-shadow: none;
}

.cart-accordion-wrap textarea.form-control {
  min-height: 120px;
  height: auto;
}

.cart-accordion-wrap .input-group {
  display: flex;
  width: 100%;
  border: 1px solid #d9d0c8;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.cart-accordion-wrap .input-group .form-control {
  border: none;
  border-radius: 0;
}

.cart-accordion-wrap .input-group-btn {
  width: auto;
  white-space: nowrap;
}

.cart-accordion-wrap .input-group-btn .btn {
  min-width: 140px;
  height: 48px;
  border: none;
  border-left: 1px solid #d9d0c8;
  border-radius: 0;
  padding: 0 18px;
}

.cart-accordion-wrap .btn {
  min-height: 48px;
  border-radius: 12px;
  font-weight: 600;
}

.cart-accordion-wrap .btn-primary {
  padding-left: 22px;
  padding-right: 22px;
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
  margin: 0;
}

.pagination > li > a,
.pagination > li > span {
  color: var(--dark-text);
  border: 1px solid #ddd;
  padding: 8px 15px;
  transition: var(--transition);
}

.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  background-color: var(--primary-pink);
  border-color: var(--primary-pink);
  color: var(--white);
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  background-color: var(--primary-pink);
  border-color: var(--primary-pink);
}

/* ============================================
   ALERTS
   ============================================ */
.alert {
  border-radius: 8px;
  padding: 15px 20px;
}

.alert-success {
  background-color: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
}

.alert-danger {
  background-color: #f8d7da;
  border-color: #f5c6cb;
  color: #721c24;
}

/* ============================================
   FORM ELEMENTS
   ============================================ */
.form-control {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 12px 15px;
  font-size: 14px;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-pink);
  box-shadow: none;
}

.btn {
  border-radius: 4px;
  padding: 10px 25px;
  font-size: 14px;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary-pink);
  border-color: var(--primary-pink);
  color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--secondary-dark-pink);
  border-color: var(--secondary-dark-pink);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 991px) {
  .search-hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 28px 30px;
  }

  .search-form-grid {
    grid-template-columns: 1fr;
  }

  .search-field-keyword,
  .search-toggles {
    grid-column: auto;
  }

  .search-actions {
    justify-content: flex-start;
  }

  .search-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-row {
    flex-wrap: wrap;
  }

  .header-center,
  .header-left,
  .header-right {
    flex: 0 0 100%;
  }

  .header-left,
  .header-right {
    justify-content: center;
  }

  .header-left {
    order: 1;
  }

  .header-center {
    order: 2;
  }

  .header-right {
    order: 3;
  }

  .header-menu-list {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .header-menu-item {
    flex: 0 0 auto;
  }

  .header-menu-link,
  .header-menu-trigger {
    white-space: nowrap;
  }

  .header-menu-panel {
    left: 0;
    transform: none;
    min-width: min(100vw - 24px, 680px);
  }

  .header-menu-dropdown:hover .header-menu-panel,
  .header-menu-dropdown:focus-within .header-menu-panel {
    transform: none;
  }

  .search-expandable-inner {
    flex-wrap: wrap;
  }

  .search-expandable-input {
    min-width: 0;
  }

  .hero-slide {
    min-height: 560px;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 54px;
  }
  
  .hero-discount {
    font-size: 48px;
  }
  
  .category-banner-inner {
    min-height: 320px;
  }

  .category-banner-content {
    margin: 0 24px;
    padding: 24px 26px;
    max-width: 460px;
  }

  .category-title {
    font-size: 54px;
  }

  .category-intro-card {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px 24px;
  }

  .category-main {
    display: block;
  }

  .cart-page-shell {
    grid-template-columns: 1fr;
  }

  .cart-summary-card {
    position: static;
  }

  .cart-page-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .cart-page-overview {
    justify-content: flex-start;
  }

  .cart-items-head {
    grid-template-columns: minmax(0, 1fr) 150px 100px;
  }

  .cart-line-main {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-images {
    position: static;
  }

  .mobile-filter-bar .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -6px;
    margin-right: -6px;
  }

  .mobile-filter-bar .row > [class*='col-'] {
    padding-left: 6px;
    padding-right: 6px;
  }

  .category-showcase-header {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .deals-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .product-title {
    font-size: 24px;
  }
  
  .cart-sidebar {
    width: 100%;
    right: -100%;
  }
}

@media (max-width: 767px) {
  .search-page {
    padding-bottom: 56px;
  }

  .search-hero {
    padding: 16px 18px;
    margin-bottom: 14px;
  }

  .search-hero-title {
    font-size: 24px;
  }

  .search-hero-text {
    font-size: 13px;
    line-height: 1.5;
  }

  .search-hero-badge {
    min-height: 36px;
    padding: 0 12px;
    font-size: 11px;
  }

  .search-panel {
    padding: 16px 18px 18px;
    margin-bottom: 18px;
  }

  .search-panel-title {
    font-size: 17px;
  }

  .search-toggles {
    gap: 10px 14px;
  }

  .search-toggle-option {
    font-size: 13px;
  }

  .search-submit {
    width: 100%;
    min-width: 0;
  }

  .search-product-card .description {
    min-height: 0;
  }

  .search-pagination-row .text-left,
  .search-pagination-row .text-right {
    text-align: left;
  }

  .ti-cart-page {
    padding-top: 20px;
    padding-bottom: 48px;
  }

  .ti-cart-page .breadcrumb {
    margin-bottom: 18px;
    white-space: normal;
  }

  .ti-cart-page .breadcrumb > li {
    display: inline;
    line-height: 1.8;
  }

  .header-row {
    gap: 10px;
  }

  .header-left,
  .header-right {
    flex: 0 0 auto;
  }

  .header-center {
    flex: 1 1 auto;
    min-width: 0;
  }

  #logo img {
    max-height: 58px;
    max-width: 180px;
  }

  .search-expandable.open {
    max-height: 140px;
  }

  .search-expandable-inner {
    gap: 8px;
  }

  .search-expandable-input {
    width: 100%;
    order: 1;
  }

  .search-expandable-btn,
  .search-expandable-close {
    order: 2;
  }
  
  .header-icons {
    gap: 15px;
  }
  
  .header-icons a {
    font-size: 18px;
  }

  .cart-page-header h1 {
    font-size: 34px;
  }

  .cart-page-header {
    margin-bottom: 20px;
  }

  .cart-page-subtitle {
    font-size: 14px;
  }

  .cart-page-shell {
    gap: 18px;
  }

  .cart-page-items,
  .cart-summary-card {
    border-radius: 16px;
  }

  .hero-banner {
    margin-bottom: 40px;
  }

  .hero-content {
    padding: 0 28px;
  }

  .hero-title {
    letter-spacing: 2px;
  }

  .hero-text {
    margin-bottom: 24px;
  }

  .btn-hero {
    padding: 13px 28px;
  }

  .section-description {
    margin-bottom: 28px;
    padding: 0 6px;
  }
  
  .mobile-search {
    display: block;
  }
  
  .hero-slide {
    min-height: 320px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 42px;
  }
  
  .hero-discount {
    font-size: 36px;
  }
  
  .section-title {
    font-size: 24px;
  }

  .shop-by-category {
    padding: 56px 0 64px;
  }

  .best-deals {
    padding: 56px 0 64px;
  }

  .deals-showcase {
    gap: 14px;
  }

  .deal-card,
  .deal-card-featured {
    aspect-ratio: 1 / 1;
  }

  .deal-copy-shell {
    padding: 18px;
  }

  .deal-title {
    font-size: 30px;
  }

  .deals-header-copy .section-title {
    font-size: 38px;
  }

  .category-showcase-grid {
    gap: 14px;
  }

  .category-card {
    min-height: 320px;
  }

  .category-card-link {
    border-radius: 0;
  }

  .category-card-panel {
    bottom: 24px;
    min-width: 68%;
    max-width: calc(100% - 32px);
    padding: 16px 20px 18px;
  }

  .category-name {
    font-size: 24px;
  }
  
  .category-title {
    font-size: 42px;
  }

  .category-banner-inner {
    min-height: 280px;
  }

  .category-banner-content {
    width: calc(100% - 32px);
    max-width: none;
    margin: 0 16px;
    padding: 18px 18px 20px;
    gap: 10px;
  }

  .category-banner-meta {
    min-height: 30px;
    padding: 0 12px;
    font-size: 11px;
  }

  .category-intro-card {
    margin-bottom: 24px;
    padding: 18px;
  }

  .category-toolbar {
    margin-bottom: 20px;
  }

  .mobile-filter-bar .row > .col-xs-4 {
    width: 100%;
    margin-bottom: 10px;
  }

  .mobile-filter-bar .row > .col-xs-4:last-child {
    margin-bottom: 0;
  }

  .mobile-filter-bar .btn-filter,
  .mobile-filter-bar .sort-dropdown,
  .mobile-filter-bar .sort-dropdown .form-control {
    width: 100%;
  }

  .mobile-filter-panel {
    padding: 16px;
  }

  .category-products-panel {
    padding: 8px 8px 0;
  }

  .category-product-card .caption {
    padding: 18px 18px 16px;
  }

  .cart-line-item {
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    flex-direction: row;
  }

  .cart-line-thumb {
    flex: 0 0 96px;
  }

  .cart-line-thumb img {
    width: 96px;
    height: 96px;
    border-radius: 10px;
  }

  .cart-line-content {
    display: grid;
    gap: 12px;
    width: 100%;
  }

  .cart-line-name {
    margin-bottom: 4px;
    font-size: 17px;
    line-height: 1.35;
  }

  .cart-line-meta {
    gap: 6px 8px;
    margin-top: 6px;
  }

  .cart-meta-chip {
    padding: 4px 8px;
    font-size: 10px;
  }

  .cart-line-unit-price {
    margin-top: 10px;
    font-size: 13px;
  }

  .cart-line-sidebar {
    width: 100%;
    min-width: 0;
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .cart-line-controls {
    width: 100%;
    justify-content: flex-start;
  }

  .cart-qty-group {
    width: auto;
  }

  .cart-line-total-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    min-width: 0;
    text-align: left;
  }

  .cart-line-total-label {
    margin-bottom: 0;
  }

  .cart-summary-card {
    padding: 18px;
  }

  .cart-summary-card h3 {
    font-size: 22px;
  }

  .cart-summary-row {
    align-items: flex-start;
    font-size: 14px;
  }

  .cart-summary-row strong {
    text-align: right;
  }

  .cart-empty-state {
    min-height: 360px;
    padding: 36px 22px;
  }

  .cart-empty-state h2 {
    font-size: 28px;
  }

  .cart-summary-coupon-body .input-group,
  .cart-accordion-wrap .input-group {
    flex-direction: column;
    border: none;
    border-radius: 0;
    background: transparent;
    gap: 10px;
  }

  .cart-summary-coupon-body .input-group .form-control,
  .cart-accordion-wrap .input-group .form-control {
    border: 1px solid #d9d0c8;
    border-radius: 12px;
  }

  .cart-summary-coupon-body .input-group-btn,
  .cart-accordion-wrap .input-group-btn {
    width: 100%;
  }

  .cart-summary-coupon-body .input-group-btn .btn,
  .cart-accordion-wrap .input-group-btn .btn {
    width: 100%;
    border: none;
    border-radius: 12px;
  }

  .cart-accordion-wrap .panel-title > .accordion-toggle {
    padding: 18px;
  }

  .cart-accordion-wrap .panel-body {
    padding: 18px;
  }

  .cart-accordion-wrap h2 {
    font-size: 24px;
  }
  
  .product-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .purchase-panel {
    padding: 16px;
  }

  .product-info {
    padding-left: 0;
    margin-top: 28px;
  }

  .main-image {
    min-height: 420px;
    padding: 18px;
  }

  .main-image img {
    max-height: 380px;
  }

  .product-zoom-pane {
    top: auto;
    left: 18px;
    right: 18px;
    bottom: 18px;
    width: auto;
    min-width: 0;
    height: 190px;
    background-size: 190%;
  }
  
  .btn-add-cart,
  .btn-buy-now {
    width: 100%;
  }
  
  footer .col-xs-6 {
    margin-bottom: 30px;
  }
  
  .footer-bottom .col-sm-4 {
    text-align: center !important;
    margin-bottom: 15px;
  }

  .footer-bottom-row {
    display: block;
  }

  .footer-bottom-brand,
  .footer-bottom-links,
  .footer-bottom-social {
    justify-content: center;
  }

  .footer-links,
  .social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .search-hero,
  .search-panel {
    padding-left: 16px;
    padding-right: 16px;
  }

  .search-empty-state .category-empty-state {
    padding: 34px 20px;
  }

  .search-empty-title {
    font-size: 24px;
  }

  .header-row {
    gap: 8px;
  }

  .menu-toggle {
    font-size: 20px;
    padding: 6px;
  }

  .header-icons {
    gap: 12px;
  }

  .hero-slide {
    height: 300px;
  }
  
  .hero-title {
    font-size: 24px;
  }
  
  .hero-subtitle {
    font-size: 36px;
  }
  
  .hero-discount {
    font-size: 30px;
  }
  
  .category-title {
    font-size: 36px;
  }

  .category-kicker {
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .category-intro {
    font-size: 14px;
  }

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

  .deals-showcase {
    grid-template-columns: 1fr;
  }

  .deals-header-badge {
    padding: 10px 16px;
    font-size: 11px;
  }

  .deal-card,
  .deal-card-featured {
    min-height: 300px;
  }

  .cart-page-header h1 {
    font-size: 30px;
  }

  .ti-cart-page {
    padding-top: 16px;
    padding-bottom: 40px;
  }

  .cart-page-header {
    gap: 10px;
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero-title {
    font-size: 22px;
    letter-spacing: 1px;
  }

  .hero-subtitle {
    font-size: 32px;
  }

  .hero-discount {
    font-size: 28px;
  }

  .section-title {
    font-size: 22px;
    margin-bottom: 28px;
  }

  .deals-header-copy .section-title {
    font-size: 30px;
    line-height: 1;
    margin-bottom: 10px;
  }

  .category-intro-card {
    gap: 16px;
  }

  .category-intro-stat {
    white-space: normal;
  }

  .category-product-card .caption {
    padding: 16px 16px 14px;
  }

  .category-product-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .category-product-link,
  .category-product-actions .btn-card-cart {
    width: 100%;
  }

  .cart-items-head {
    display: none;
  }

  .cart-page-items,
  .cart-summary-card,
  .cart-accordion-wrap .panel {
    border-radius: 14px;
  }

  .cart-line-item {
    gap: 12px;
    padding: 14px;
  }

  .cart-qty-group {
    width: auto;
  }

  .cart-qty-group .form-control {
    width: 52px;
  }

  .cart-line-thumb {
    flex-basis: 88px;
  }

  .cart-line-thumb img {
    width: 88px;
    height: 88px;
  }

  .cart-line-sidebar {
    align-items: flex-start;
    flex-direction: column;
  }

  .cart-line-controls {
    width: 100%;
    align-items: flex-start;
    flex-direction: row;
  }

  .cart-update-btn {
    width: 100%;
  }

  .cart-line-total-wrap {
    width: 100%;
    text-align: left;
  }

  .cart-summary-card {
    padding: 16px;
  }

  .cart-summary-copy,
  .cart-summary-message,
  .cart-summary-notes {
    font-size: 13px;
  }

  .cart-summary-coupon-head p,
  .cart-accordion-wrap > p,
  .cart-accordion-wrap .panel-body > p:first-child {
    font-size: 13px;
  }

  .cart-sidebar-header,
  .cart-sidebar-content {
    padding: 16px;
  }

  .mini-cart-actions {
    grid-template-columns: 1fr;
  }

  .cart-empty-icon {
    width: 78px;
    height: 78px;
    font-size: 28px;
  }

  .cart-empty-state h2 {
    font-size: 24px;
  }

  .deal-title {
    font-size: 28px;
  }

  .deals-header-copy .section-title {
    font-size: 26px;
    line-height: 1.02;
    margin-bottom: 10px;
  }

  .deal-copy {
    font-size: 13px;
    margin-bottom: 14px;
  }

  .deal-cta {
    min-height: 38px;
    padding: 0 14px;
    font-size: 15px;
  }

  .category-showcase-badge {
    padding: 10px 16px;
    font-size: 11px;
  }

  .category-card {
    min-height: 300px;
  }

  .category-card-panel {
    bottom: 18px;
    min-width: auto;
    width: calc(100% - 28px);
    max-width: calc(100% - 28px);
    padding: 14px 16px 16px;
  }

  .category-name {
    font-size: 20px;
  }
  
  .deal-price strong {
    font-size: 36px;
  }
  
  .owl-carousel .owl-nav button.owl-prev {
    left: 10px;
  }
  
  .owl-carousel .owl-nav button.owl-next {
    right: 10px;
  }

  .hero-slider .owl-nav button.owl-prev {
    left: 12px;
  }

  .hero-slider .owl-nav button.owl-next {
    right: 12px;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-primary {
  color: var(--primary-pink);
}

.bg-primary {
  background-color: var(--primary-pink);
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

/* ============================================
   ERROR PAGE
   ============================================ */
.error-page {
  padding: 100px 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-content {
  text-align: center;
}

.error-code {
  font-size: 150px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-pink);
  line-height: 1;
  margin-bottom: 20px;
}

.error-title {
  font-size: 32px;
  margin-bottom: 15px;
  color: var(--dark-text);
}

.error-message {
  font-size: 16px;
  color: var(--light-text);
  margin-bottom: 40px;
}

.error-actions {
  margin-top: 30px;
}

/* ============================================
   INFORMATION PAGE
   ============================================ */
.page-header {
  padding: 24px 0 20px;
  background-color: var(--light-gray);
}

.page-title {
  font-size: 28px;
  margin-bottom: 0;
  color: var(--dark-text);
}

/* =============================================
   INFORMATION PAGE LAYOUT
   ============================================= */
.info-page-section {
  padding: 60px 0 80px;
  background: #fff;
}

/* =============================================
   INFORMATION CONTENT — BASE RESET
   (strips all inline CKEditor garbage)
   ============================================= */
.information-content {
  font-family: inherit;
  font-size: 16px;
  line-height: 1.85;
  color: var(--dark-text, #2b1b12);
}

/* Kill every inline style injected by CKEditor */
.information-content * {
  font-size: inherit !important;
  font-family: inherit !important;
  background-color: transparent !important;
  color: inherit !important;
}

/* Headings — restored with real sizes after the * reset */
.information-content h1 {
  font-size: 2rem !important;
  font-weight: 700;
  margin: 0 0 24px;
  color: var(--dark-text, #2b1b12) !important;
  line-height: 1.2;
}

.information-content h2 {
  font-size: 1.5rem !important;
  font-weight: 700;
  margin: 40px 0 16px;
  color: var(--dark-text, #2b1b12) !important;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-pink, #e75480);
  line-height: 1.3;
}

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

.information-content h3 {
  font-size: 1.125rem !important;
  font-weight: 700;
  margin: 28px 0 10px;
  color: var(--dark-text, #2b1b12) !important;
  line-height: 1.3;
}

.information-content h4 {
  font-size: 1rem !important;
  font-weight: 600;
  margin: 20px 0 8px;
  color: var(--dark-text, #2b1b12) !important;
}

/* Paragraphs */
.information-content p {
  margin: 0 0 18px;
  font-size: 16px !important;
}

.information-content p.info-lead {
  font-size: 1.15rem !important;
  color: #555 !important;
  line-height: 1.9;
  margin-bottom: 28px;
  font-style: italic;
}

/* Lists */
.information-content ul,
.information-content ol {
  margin: 0 0 20px;
  padding-left: 24px;
}

.information-content li {
  margin-bottom: 8px;
  font-size: 16px !important;
  line-height: 1.7;
}

.information-content ul li::marker {
  color: var(--primary-pink, #e75480);
}

.information-content ol {
  padding-left: 20px;
}

.information-content ol li {
  padding-left: 4px;
}

/* Strong / bold */
.information-content strong,
.information-content b {
  font-weight: 700;
  color: var(--dark-text, #2b1b12) !important;
}

/* Links */
.information-content a {
  color: var(--primary-pink, #e75480) !important;
  text-decoration: underline;
}

.information-content a:hover {
  opacity: 0.8;
}

/* Horizontal rule */
.information-content hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 36px 0;
}

/* Images */
.information-content img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 24px 0;
  display: block;
}

/* =============================================
   CORE VALUES GRID
   ============================================= */
.information-content .cv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 12px;
}

.information-content .cv-item {
  background: #fdf6f9;
  border-left: 3px solid var(--primary-pink, #e75480);
  border-radius: 0 8px 8px 0;
  padding: 22px 24px;
}

.information-content .cv-item h3 {
  font-size: 1rem !important;
  font-weight: 700;
  margin: 0 0 8px !important;
  color: var(--primary-pink, #e75480) !important;
  border: none;
  padding: 0;
}

.information-content .cv-item p {
  margin: 0 !important;
  font-size: 14.5px !important;
  color: #555 !important;
  line-height: 1.65;
}

@media (max-width: 600px) {
  .information-content .cv-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* =============================================
   MOBILE INFORMATION PAGE
   ============================================= */
@media (max-width: 767px) {
  .info-page-section {
    padding: 36px 0 56px;
  }

  .information-content {
    font-size: 15px;
  }

  .information-content h2 {
    font-size: 1.25rem !important;
  }

  .information-content h3 {
    font-size: 1rem !important;
  }
}

/* Responsive Error Page */
@media (max-width: 767px) {
  .error-code {
    font-size: 100px;
  }

  .error-title {
    font-size: 24px;
  }

  .page-title {
    font-size: 28px;
  }
}

/* ============================================
   PREORDER CATEGORY (scoped to .category-preorder)
   ============================================ */
.category-preorder .breadcrumb,
.category-preorder .category-toolbar,
.category-preorder .mobile-filter-bar,
.category-preorder .category-sidebar-column,
.category-preorder .category-intro-card {
  display: none !important;
}

/* Pagination row inside the preorder layout */
.category-preorder .category-products-column > .row {
  margin: 16px 0 0;
  padding: 18px 22px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #f3e1d2;
  box-shadow: 0 14px 30px rgba(60, 27, 18, 0.04);
  align-items: center;
}

.category-preorder .category-products-column > .row > [class*='col-'] {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #6a4350;
  letter-spacing: 0.04em;
}

.category-preorder .category-products-column > .row > .text-left {
  justify-content: flex-start;
}

.category-preorder .category-products-column > .row > .text-right {
  justify-content: flex-end;
}

.category-preorder .pagination {
  margin: 0;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
}

.category-preorder .pagination > li > a,
.category-preorder .pagination > li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid #f0d9c2;
  background: #fff;
  color: #2a1014;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.category-preorder .pagination > li.active > span,
.category-preorder .pagination > li.active > a,
.category-preorder .pagination > li > a:hover,
.category-preorder .pagination > li > span:hover {
  background: #2a1014;
  color: #fff;
  border-color: #2a1014;
}

.category-preorder .pagination > li.disabled > span,
.category-preorder .pagination > li.disabled > a {
  opacity: 0.4;
  cursor: not-allowed;
  background: transparent;
  color: #6a4350;
}

@media (max-width: 575px) {
  .category-preorder .category-products-column > .row {
    flex-direction: column;
    gap: 10px;
    padding: 14px 18px;
  }

  .category-preorder .category-products-column > .row > .text-left,
  .category-preorder .category-products-column > .row > .text-right {
    justify-content: center;
    width: 100%;
    text-align: center;
  }
}

.category-preorder .category-page-shell {
  padding-top: 0;
}

.category-preorder .category-main {
  margin: 0;
}

.category-preorder .category-products-column {
  width: 100%;
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0;
}

/* Preorder hero */
.preorder-hero {
  position: relative;
  margin: 0 0 0;
  padding: 0;
  overflow: hidden;
  background: radial-gradient(circle at 12% 18%, #f3e3d6 0%, transparent 42%),
              radial-gradient(circle at 88% 80%, #f7d4d4 0%, transparent 48%),
              linear-gradient(135deg, #fff7ef 0%, #fbe6e6 100%);
}

.preorder-hero-inner {
  padding: 76px 0 88px;
}

.preorder-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.preorder-hero-copy {
  position: relative;
  z-index: 2;
}

.preorder-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #fff;
  color: #b34866;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 10px 28px rgba(179, 72, 102, 0.18);
}

.preorder-pill .fa {
  color: #d36bb1;
}

.preorder-hero-title {
  margin: 18px 0 16px;
  font-family: var(--font-heading);
  font-size: clamp(38px, 4.8vw, 64px);
  font-weight: 700;
  line-height: 1.04;
  color: #2a1014;
  letter-spacing: -0.01em;
}

.preorder-hero-title em {
  font-style: italic;
  font-family: var(--font-logo, serif);
  color: var(--primary-pink);
  font-weight: 400;
}

.preorder-hero-sub {
  margin: 0 0 28px;
  max-width: 540px;
  color: #5a3a40;
  font-size: 15px;
  line-height: 1.7;
}

.preorder-hero-cta {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.btn-preorder-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  background: #2a1014;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(42, 16, 20, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-preorder-primary:hover,
.btn-preorder-primary:focus {
  background: var(--primary-pink);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(218, 57, 132, 0.28);
}

.preorder-hero-meta {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8a5763;
}

.preorder-hero-art {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preorder-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(0.5px);
  opacity: 0.85;
  z-index: 1;
}

.preorder-hero-blob-a {
  width: 280px;
  height: 280px;
  top: -20px;
  right: -10px;
  background: radial-gradient(circle at 30% 30%, #ffd9d9, #f0a3c4 70%, transparent 72%);
}

.preorder-hero-blob-b {
  width: 200px;
  height: 200px;
  bottom: -10px;
  left: -10px;
  background: radial-gradient(circle at 30% 30%, #fff1c9, #f3c899 80%, transparent 82%);
  opacity: 0.75;
}

.preorder-hero-blob-c {
  width: 140px;
  height: 140px;
  top: 50%;
  left: 38%;
  background: radial-gradient(circle at 30% 30%, #ffffff, #f6e3ff 70%, transparent 72%);
  opacity: 0.6;
}

.preorder-hero-card {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 28px 30px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 24px 60px rgba(72, 24, 36, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.7);
  text-align: left;
  min-width: 260px;
}

.preorder-card-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.24em;
  color: #b34866;
}

.preorder-card-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: #2a1014;
}

.preorder-card-meta {
  font-size: 12px;
  color: #6a4350;
  letter-spacing: 0.04em;
}

/* How preorder works */
.preorder-steps {
  padding: 56px 0 36px;
  background: #fffaf6;
}

.preorder-step-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: preorder-step;
}

.preorder-step {
  position: relative;
  padding: 26px 28px 28px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(60, 27, 18, 0.06);
  border: 1px solid #f3e1d2;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.preorder-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px rgba(60, 27, 18, 0.1);
}

.preorder-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a1014 0%, #4a1d28 100%);
  color: #ffe0c8;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.preorder-step-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
  color: #2a1014;
}

.preorder-step-copy {
  margin: 0;
  font-size: 14px;
  color: #5a3a40;
  line-height: 1.65;
}

.preorder-payment-callout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 28px auto 0;
  max-width: 720px;
  padding: 14px 22px;
  background: #fff4e3;
  border: 1px solid #e9c98a;
  border-radius: 999px;
  color: #4a2e10;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.preorder-payment-callout i {
  color: #8a5a1c;
  font-size: 18px;
}

.preorder-payment-callout strong {
  color: #2b1b12;
}

@media (max-width: 560px) {
  .preorder-payment-callout {
    border-radius: 14px;
    text-align: left;
    align-items: flex-start;
    padding: 12px 16px;
  }
}

/* Product grid + cards inside preorder */
.category-preorder .category-products-panel {
  padding: 12px 0 60px;
}

.category-preorder .product-grid {
  margin: 0 -12px;
}

.category-preorder .product-grid > [class*='col-'] {
  padding: 0 12px;
  margin-bottom: 24px;
}

.category-preorder .product-thumb {
  position: relative;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(60, 27, 18, 0.06);
  border: 1px solid #f3e1d2;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-preorder .product-thumb:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(60, 27, 18, 0.12);
}

.category-preorder .product-thumb .image {
  position: relative;
  background: #fff7ef;
}

.category-preorder .product-thumb .image img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.category-preorder .product-thumb .caption {
  padding: 18px 20px 22px;
}

.category-preorder .product-thumb .caption h4 {
  margin: 0 0 6px;
  font-size: 17px;
  line-height: 1.25;
}

.category-preorder .product-thumb .caption h4 a {
  color: #2a1014;
}

.category-preorder .product-thumb .caption h4 a:hover {
  color: var(--primary-pink);
}

.category-preorder .product-thumb .description {
  font-size: 13px;
  color: #6a4350;
  margin-bottom: 12px;
}

.category-preorder .product-thumb .price {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: #2a1014;
  margin: 0 0 16px;
}

.product-badge.preorder-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #2a1014;
  color: #ffe0c8;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(42, 16, 20, 0.25);
  z-index: 2;
}

.product-badge.preorder-badge .fa {
  font-size: 10px;
  color: #f7c189;
}

.btn-preorder-card {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px 16px !important;
  border-radius: 999px !important;
  background: #2a1014 !important;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase;
  border: 0 !important;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-preorder-card:hover,
.btn-preorder-card:focus {
  background: var(--primary-pink) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(218, 57, 132, 0.28);
}

.btn-preorder-card .fa {
  font-size: 11px;
  transition: transform 0.25s ease;
}

.btn-preorder-card:hover .fa {
  transform: translateX(3px);
}

@media (max-width: 991px) {
  .preorder-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .preorder-hero-copy {
    order: 1;
  }

  .preorder-hero-art {
    order: 2;
    min-height: 240px;
  }

  .preorder-hero-cta {
    justify-content: center;
  }

  .preorder-hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .preorder-step-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .preorder-hero-inner {
    padding: 56px 0 64px;
  }

  .preorder-hero-card {
    min-width: 0;
    width: 100%;
    padding: 22px 24px;
  }

  .preorder-hero-blob-a {
    width: 220px;
    height: 220px;
  }

  .preorder-hero-blob-b {
    width: 160px;
    height: 160px;
  }

  .preorder-hero-blob-c {
    width: 100px;
    height: 100px;
  }
}

/* ============================================
   LOGIN PAGE
   ============================================ */
.ti-login-page {
  position: relative;
  min-height: calc(100vh - 90px);
  padding: 36px 0 72px;
  background:
    radial-gradient(circle at 12% 18%, #ffe5ec 0%, transparent 38%),
    radial-gradient(circle at 88% 82%, #fff0c9 0%, transparent 42%),
    linear-gradient(180deg, #fff8f3 0%, #fff 70%);
}

.ti-login-breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0 0 18px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #6a4350;
}

.ti-login-breadcrumb > li + li::before {
  color: #c2a08c;
}

.ti-login-flash {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  margin: 0 auto 18px;
  max-width: 980px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 500;
}

.ti-login-flash.is-success {
  background: #e8f7ee;
  color: #1e6b3c;
  border: 1px solid #c8eed6;
}

.ti-login-flash.is-error {
  background: #fdeceb;
  color: #9e2e2a;
  border: 1px solid #f6c6c2;
}

.ti-login-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  max-width: 980px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 32px 80px rgba(60, 27, 18, 0.12);
  border: 1px solid #f3e1d2;
}

/* Left brand panel */
.ti-login-side {
  position: relative;
  padding: 56px 48px;
  background: linear-gradient(160deg, #2a1014 0%, #4a1d28 55%, #c9466b 110%);
  color: #ffe6dd;
  overflow: hidden;
}

.ti-login-pill {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.ti-login-pill .fa {
  color: #ffd29a;
}

.ti-login-side-title {
  position: relative;
  z-index: 2;
  margin: 22px 0 14px;
  font-family: var(--font-heading);
  font-size: clamp(34px, 3.4vw, 52px);
  line-height: 1.04;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.ti-login-side-title em {
  font-style: italic;
  font-family: var(--font-logo, serif);
  color: #ffd29a;
  font-weight: 400;
}

.ti-login-side-sub {
  position: relative;
  z-index: 2;
  max-width: 420px;
  margin: 0 0 22px;
  color: rgba(255, 230, 221, 0.85);
  font-size: 14px;
  line-height: 1.7;
}

.ti-login-side-bullets {
  position: relative;
  z-index: 2;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.ti-login-side-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 230, 221, 0.92);
}

.ti-login-side-bullets .fa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #ffd29a;
  font-size: 10px;
}

.ti-login-side-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(0.5px);
}

.ti-login-side-blob-a {
  width: 280px;
  height: 280px;
  top: -90px;
  right: -90px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 200, 150, 0.55), rgba(201, 70, 107, 0.18) 70%, transparent 72%);
}

.ti-login-side-blob-b {
  width: 200px;
  height: 200px;
  bottom: -70px;
  left: -50px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 240, 220, 0.4), rgba(255, 240, 220, 0.05) 70%, transparent 72%);
}

/* Right form panel */
.ti-login-form-side {
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ti-login-form-header {
  margin-bottom: 26px;
}

.ti-login-form-title {
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 600;
  color: #2a1014;
}

.ti-login-form-sub {
  margin: 0;
  font-size: 14px;
  color: #6a4350;
}

.ti-login-form {
  display: grid;
  gap: 18px;
}

.ti-login-field {
  display: flex;
  flex-direction: column;
}

.ti-login-label-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.ti-login-label {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4a2d33;
}

.ti-login-forgot {
  font-size: 12px;
  color: #b34866;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.ti-login-forgot:hover {
  color: var(--primary-pink);
  text-decoration: underline;
}

.ti-login-input-wrap {
  position: relative;
}

.ti-login-input {
  width: 100%;
  padding: 14px 16px;
  font-size: 14px;
  color: #2a1014;
  background: #fff;
  border: 1px solid #ead8c5;
  border-radius: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  outline: none;
}

.ti-login-input:focus {
  border-color: #b34866;
  box-shadow: 0 0 0 4px rgba(179, 72, 102, 0.12);
  background: #fffaf6;
}

.ti-login-input::placeholder {
  color: #b09b8e;
}

.ti-login-input-wrap .ti-login-input {
  padding-right: 46px;
}

.ti-login-toggle-pw {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: #8a5763;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ti-login-toggle-pw:hover {
  background: rgba(179, 72, 102, 0.08);
  color: #b34866;
}

.ti-login-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  margin-top: 6px;
  border: 0;
  border-radius: 999px;
  background: #2a1014;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(42, 16, 20, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.ti-login-submit:hover {
  background: var(--primary-pink);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(218, 57, 132, 0.28);
}

.ti-login-submit .fa {
  font-size: 11px;
  transition: transform 0.25s ease;
}

.ti-login-submit:hover .fa {
  transform: translateX(3px);
}

.ti-login-divider {
  position: relative;
  margin: 30px 0 20px;
  text-align: center;
}

.ti-login-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: #f0d9c2;
}

.ti-login-divider span {
  position: relative;
  display: inline-block;
  padding: 0 14px;
  background: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a5763;
}

.ti-login-register {
  text-align: center;
}

.ti-login-register-copy {
  margin: 0 0 14px;
  font-size: 13px;
  color: #6a4350;
  line-height: 1.6;
}

.ti-login-register-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1.5px solid #2a1014;
  color: #2a1014;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: #ffffff;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.ti-login-register-btn:hover {
  background: #2a1014;
  color: #fff;
  border-color: #2a1014;
  transform: translateY(-1px);
}

/* Register-page extensions on top of .ti-login-* classes */
.ti-register-page .ti-login-card {
  max-width: 1080px;
}

.ti-register-form {
  gap: 24px;
}

.ti-register-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ti-register-section-tight {
  gap: 8px;
}

.ti-register-section-title {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a5763;
  margin-bottom: 2px;
}

.ti-register-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
}

.ti-register-radio-row,
.ti-register-checkbox-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ti-register-radio,
.ti-register-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid #ead8c5;
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  color: #4a2d33;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.ti-register-radio input,
.ti-register-checkbox input {
  margin: 0;
  accent-color: #b34866;
}

.ti-register-radio:has(input:checked),
.ti-register-checkbox:has(input:checked) {
  border-color: #2a1014;
  background: #2a1014;
  color: #fff;
}

.ti-register-customfields {
  border-top: 1px dashed #ead8c5;
  padding-top: 18px;
}

.ti-register-captcha {
  padding: 14px;
  border: 1px dashed #ead8c5;
  border-radius: 14px;
  background: #fffaf6;
}

.ti-register-agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #4a2d33;
  line-height: 1.5;
}

.ti-register-agree input {
  margin-top: 3px;
  accent-color: #b34866;
}

.ti-register-agree a {
  color: #b34866;
  font-weight: 600;
}

.ti-register-agree a:hover {
  color: var(--primary-pink);
  text-decoration: underline;
}

.ti-register-footnote {
  margin: 22px 0 0;
  text-align: center;
  font-size: 13px;
  color: #6a4350;
}

.ti-login-link {
  color: #b34866;
  font-weight: 700;
}

.ti-login-link:hover {
  color: var(--primary-pink);
  text-decoration: underline;
}

.ti-login-error {
  margin-top: 6px;
  font-size: 12px;
  color: #b73229;
  font-weight: 500;
}

@media (max-width: 767px) {
  .ti-login-page {
    padding: 24px 0 56px;
  }

  .ti-login-card {
    grid-template-columns: 1fr;
  }

  .ti-login-side {
    padding: 36px 28px;
  }

  .ti-login-side-title {
    font-size: 30px;
  }

  .ti-login-form-side {
    padding: 36px 28px;
  }

  .ti-login-form-title {
    font-size: 24px;
  }

  .ti-register-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Contact Page — Info Block
   ============================================ */
.ti-contact-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 18px 0 32px;
}

.ti-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: #fff7f0;
  border: 1px solid rgba(70, 39, 20, 0.08);
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(70, 39, 20, 0.05);
}

.ti-contact-info-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #2b1b12;
  color: #fff7f0;
  font-size: 18px;
}

.ti-contact-info-body {
  flex: 1 1 auto;
  min-width: 0;
}

.ti-contact-info-body strong {
  display: block;
  margin-bottom: 4px;
  color: #2b1b12;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ti-contact-info-body p {
  margin: 0;
  color: #4a3a2f;
  font-size: 15px;
  line-height: 1.45;
  word-break: break-word;
}

.ti-contact-info-body a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.ti-contact-info-body a:hover {
  border-bottom-color: #2b1b12;
}

@media (max-width: 640px) {
  .ti-contact-info {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* =============================================
   QUICK VIEW MODAL CONTENT
   ============================================= */
.quickview-wrap {
  padding: 10px 0;
}

.quickview-images .quickview-main-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.quickview-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.qv-thumb {
  background: none;
  border: 2px solid transparent;
  padding: 2px;
  cursor: pointer;
  border-radius: 4px;
  transition: border-color 0.2s;
}

.qv-thumb.active,
.qv-thumb:hover {
  border-color: var(--primary-pink, #e75480);
}

.qv-thumb img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

.quickview-info {
  padding: 0 10px;
}

.quickview-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--dark-text, #2b1b12);
}

.quickview-price {
  margin-bottom: 12px;
}

.quickview-price .price {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-pink, #e75480);
}

.quickview-price .price-old {
  font-size: 16px;
  color: #999;
  text-decoration: line-through;
  margin-right: 8px;
}

.quickview-price .price-new {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-pink, #e75480);
}

.quickview-stock {
  margin-bottom: 12px;
}

.quickview-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 16px 0 12px;
}

.quickview-actions .quantity-wrapper {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
}

.quickview-actions .quantity-wrapper .btn-quantity {
  background: #f5f5f5;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  color: #333;
}

.quickview-actions .quantity-wrapper #qv-quantity {
  width: 50px;
  text-align: center;
  border: none;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-radius: 0;
  box-shadow: none;
}

.quickview-actions .btn-add-cart {
  flex: 1;
  min-width: 120px;
}

.qv-view-details {
  display: inline-block;
  font-size: 13px;
  color: var(--dark-text, #2b1b12);
  text-decoration: underline;
  margin-top: 4px;
}

.qv-view-details:hover {
  color: var(--primary-pink, #e75480);
}

@media (max-width: 767px) {
  .quickview-info {
    padding: 16px 0 0;
  }

  .quickview-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .quickview-actions .btn-add-cart {
    width: 100%;
  }
}

/* ============================================
   ORDER TRACKING PAGE
   ============================================ */
.ti-tracking-page {
  background: #f7f1e9;
  min-height: 70vh;
  padding: 0 0 60px;
}

.ti-tracking-hero {
  text-align: center;
  padding: 48px 0 36px;
}

.ti-tracking-hero-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff7e6;
  border: 1px solid #e8d2a3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 26px;
  color: #D4AF37;
  box-shadow: 0 0 0 6px #faf2dd, 0 0 0 7px #D4AF37;
}

.ti-tracking-hero-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: #1d1511;
  margin: 0 0 10px;
  letter-spacing: 0.04em;
}

.ti-tracking-hero-sub {
  color: #6a503a;
  font-size: 15px;
  margin: 0;
}

/* Search card */
.ti-tracking-card {
  background: #fff;
  border: 1px solid #ece4d6;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(31,21,17,.05);
  padding: 32px 36px;
  max-width: 680px;
  margin: 0 auto 32px;
}

.ti-tracking-error {
  background: #fdecec;
  border: 1px solid #f1c4c4;
  color: #a03030;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 14px;
}

.ti-tracking-fields {
  display: flex;
  gap: 14px;
  align-items: flex-end;
  flex-wrap: wrap;
}

.ti-tracking-field {
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ti-tracking-field label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6a503a;
}

.ti-tracking-field input {
  height: 48px;
  border: 1px solid #d8cfc1;
  border-radius: 8px;
  padding: 0 14px;
  font-size: 14px;
  color: #1d1511;
  background: #fffdf8;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.ti-tracking-field input:focus {
  border-color: #C3996B;
  box-shadow: 0 0 0 3px rgba(195,153,107,.15);
}

.ti-tracking-btn {
  height: 48px;
  padding: 0 28px;
  background: #1d1511;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, transform .15s;
}

.ti-tracking-btn:hover {
  background: #D4AF37;
  color: #1d1511;
  transform: translateY(-1px);
}

/* Result card */
.ti-tracking-result {
  background: #fff;
  border: 1px solid #ece4d6;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(31,21,17,.05);
  max-width: 680px;
  margin: 0 auto;
  overflow: hidden;
}

.ti-tracking-result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid #f0e8de;
  background: #fffaf5;
}

.ti-tracking-label {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8c7565;
  display: block;
}

.ti-tracking-value {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #1d1511;
}

.ti-tracking-status {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff7e6;
  border: 1px solid #e8d2a3;
  border-radius: 20px;
  padding: 6px 14px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #8c5b37;
}

.ti-tracking-status.ti-tracking-canceled {
  background: #fdecec;
  border-color: #f1c4c4;
  color: #a03030;
}

.ti-tracking-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D4AF37;
  box-shadow: 0 0 0 3px rgba(212,175,55,.2);
  flex-shrink: 0;
}

.ti-tracking-canceled .ti-tracking-status-dot {
  background: #d04848;
  box-shadow: 0 0 0 3px rgba(208,72,72,.2);
}

/* Timeline */
.ti-tracking-timeline {
  display: flex;
  align-items: flex-start;
  padding: 28px 28px 20px;
  gap: 0;
  position: relative;
}

.ti-tracking-timeline::before {
  content: '';
  position: absolute;
  top: 42px;
  left: calc(28px + 16px);
  right: calc(28px + 16px);
  height: 2px;
  background: #ece4d6;
  z-index: 0;
}

.ti-tracking-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.ti-tracking-step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #d8cfc1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #fff;
  transition: all .2s;
}

.ti-tracking-step-done .ti-tracking-step-circle {
  background: #D4AF37;
  border-color: #D4AF37;
  color: #fff;
}

.ti-tracking-step-label {
  font-size: 11px;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #b0a090;
  text-align: center;
}

.ti-tracking-step-done .ti-tracking-step-label {
  color: #1d1511;
}

/* Details */
.ti-tracking-details {
  padding: 0 28px 4px;
}

.ti-tracking-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid #f5ede4;
  font-size: 14px;
}

.ti-tracking-detail-row:last-child {
  border-bottom: none;
}

.ti-tracking-detail-label {
  color: #8c7565;
  font-size: 13px;
}

.ti-tracking-detail-val {
  color: #1d1511;
  font-weight: 500;
  text-align: right;
}

.ti-tracking-total {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #8c5b37;
}

/* Products */
.ti-tracking-products {
  margin: 4px 28px 0;
  border-top: 1px solid #f0e8de;
  padding-top: 16px;
  padding-bottom: 4px;
}

.ti-tracking-section-title {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8c7565;
  margin-bottom: 12px;
}

.ti-tracking-product-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #f5ede4;
  font-size: 14px;
}

.ti-tracking-product-row:last-child {
  border-bottom: none;
}

.ti-tracking-product-qty {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #1d1511;
  color: #D4AF37;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ti-tracking-product-name {
  flex: 1;
  color: #1d1511;
}

.ti-tracking-product-total {
  flex-shrink: 0;
  color: #6a503a;
  font-weight: 500;
}

/* WhatsApp help */
.ti-tracking-help {
  padding: 16px 28px 20px;
  border-top: 1px solid #f0e8de;
  font-size: 13px;
  color: #8c7565;
  text-align: center;
}

.ti-tracking-help .fa-whatsapp {
  color: #25d366;
  font-size: 15px;
  margin-right: 4px;
}

.ti-tracking-help a {
  color: #8c5b37;
  font-weight: 600;
  text-decoration: none;
}

.ti-tracking-help a:hover {
  color: #D4AF37;
}

@media (max-width: 575px) {
  .ti-tracking-card,
  .ti-tracking-result {
    border-radius: 10px;
    margin: 0 0 20px;
  }

  .ti-tracking-card {
    padding: 22px 18px;
  }

  .ti-tracking-fields {
    flex-direction: column;
    gap: 12px;
  }

  .ti-tracking-field {
    min-width: 0;
    width: 100%;
  }

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

  .ti-tracking-timeline {
    padding: 20px 16px 16px;
  }

  .ti-tracking-timeline::before {
    left: calc(16px + 16px);
    right: calc(16px + 16px);
  }

  .ti-tracking-result-header,
  .ti-tracking-details,
  .ti-tracking-products,
  .ti-tracking-help {
    padding-left: 18px;
    padding-right: 18px;
  }

  .ti-tracking-hero-title {
    font-size: 22px;
  }
}

/* ============================================
   DESIGN SYSTEM IMPROVEMENTS — 2026-06-10
   Fixes: accessibility, consistency, polish
   ============================================ */

/* 1. Global focus ring for keyboard navigation */
*:focus-visible {
  outline: 2px solid var(--primary-pink);
  outline-offset: 3px;
  border-radius: 3px;
}

/* 2. Base font-size bump: 14px → 15px */
body {
  font-size: 15px;
}

/* 3. Add to Cart button — darkened for AA contrast */
.btn-primary {
  background-color: var(--primary-pink-dark);
  border-color: var(--primary-pink-dark);
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--secondary-dark-pink);
  border-color: var(--secondary-dark-pink);
}

/* Cart summary checkout button stays full pink since it's large bold text (AA at 3:1) */
.cart-summary-link.btn-primary {
  background-color: var(--primary-pink);
  border-color: var(--primary-pink);
}

/* 4. Filter list touch targets — 44px minimum */
.filter-list li {
  margin-bottom: 0;
}
.filter-list li a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 4px 0;
}

/* 5. Related products — 4-col grid on desktop */
.related-products .product-grid,
.related-products-primary .product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 0;
}
.related-products .product-grid > [class*='col-'],
.related-products-primary .product-grid > [class*='col-'] {
  width: 100% !important;
  padding: 0;
  float: none;
}
@media (max-width: 991px) {
  .related-products .product-grid,
  .related-products-primary .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .related-products .product-grid,
  .related-products-primary .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

/* 6. Product image thumbnail active state ring */
.thumbnail-images .thumbnail {
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  padding: 2px;
  background: none;
  cursor: pointer;
}
.thumbnail-images .thumbnail.active,
.thumbnail-images .thumbnail:hover {
  border-color: var(--primary-pink);
  box-shadow: 0 0 0 2px rgba(255, 20, 147, 0.18);
}

/* 7. Footer newsletter button — keep pink accent visible on dark bg */
.footer-newsletter-btn {
  background: var(--primary-pink);
}
.footer-newsletter-btn:hover {
  background: var(--primary-pink-dark);
  transform: translateY(-1px);
}

/* 8. Footer bottom border on dark bg */
.footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.12);
}

/* 9. Category banner text guard on small screens */
@media (max-width: 575px) {
  .category-banner-content {
    max-width: 90%;
    margin-left: 5%;
    padding: 20px 20px;
  }
}

/* 10. Improve product card button for dark bg cards */
.btn-card-cart {
  background: var(--color-dark-warm);
  border-color: var(--color-dark-warm);
}
.btn-card-cart:hover {
  background: transparent;
  color: var(--color-dark-warm);
  border-color: var(--color-dark-warm);
}


/* Category layout: narrower sidebar, wider product grid, pagination spacing */
.category-pagination-row {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #f0ebe4;
  align-items: center;
}

.category-pagination-row .pagination {
  margin: 0;
}

.category-pagination-row .col-sm-6.text-right {
  color: var(--light-text);
  font-size: 13px;
  line-height: 34px;
}

/* Sidebar at col-md-2 width — tighten internal padding */
.col-md-2.category-sidebar-column .filter-sidebar {
  padding: 18px 16px;
}

.col-md-2.category-sidebar-column .filter-title {
  font-size: 15px;
}
