/* ============================================================
   DecoRugs-bd — style.css
   ============================================================ */

/* ==================== VARIABLES ==================== */
:root {
  --slate: #111318;
  --slate-mid: #1c1f27;
  --slate-soft: #252931;
  --ivory: #f7f2ea;
  --terra: #c0532a;
  --terra-light: #d4693f;
  --gold: #c9a96e;
  --gold-light: #dfc08a;
  --white: #ffffff;
  --text-dim: #9a9a9a;
  --wa-green: #25d366;
  --ff-display: "Cormorant Garamond", serif;
  --ff-body: "Outfit", sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --tr: 0.35s var(--ease);
}

/* ==================== RESET ==================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--ff-body);
  background: var(--slate);
  color: var(--ivory);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  cursor: pointer;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--slate);
}
::-webkit-scrollbar-thumb {
  background: var(--terra);
  border-radius: 3px;
}

/* ==================== UTILITIES ==================== */
.section-label {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terra);
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2.1rem, 3.5vw, 3.3rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.1;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-line {
  width: 52px;
  height: 2px;
  background: var(--terra);
  margin-top: 1rem;
}

/* ==================== BUTTONS ==================== */
.btn-terra {
  background: var(--terra);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 0.72rem 2rem;
  border: none;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background var(--tr);
}
.btn-terra:hover {
  background: var(--terra-light);
  color: var(--white);
}
.btn-outline-ivory {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(247, 242, 234, 0.35);
  font-family: var(--ff-body);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 0.72rem 2rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--tr);
}
.btn-outline-ivory:hover {
  background: var(--ivory);
  color: var(--slate);
  border-color: var(--ivory);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  font-family: var(--ff-body);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 0.72rem 2rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--tr);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--slate);
}
.btn-outline-terra {
  background: transparent;
  color: var(--terra);
  border: 1px solid var(--terra);
  font-family: var(--ff-body);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 0.72rem 2rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--tr);
}
.btn-outline-terra:hover {
  background: var(--terra);
  color: var(--white);
}

/* ==================== FLUID LAYOUT WRAPPER ====================
   Replaces Bootstrap's container-xl px-4 on every section.
   < 1200px  — identical to container-xl + px-4 (mobile/tablet unchanged)
   ≥ 1200px  — fluid, 3.5% safe zones (laptop)
   ≥ 1400px  — 5% safe zones (1440p / wide desktop)
   ≥ 2560px  — 8% safe zones (4K / ultrawide)
======================================================== */
.fluid-wrap {
  width: 100%;
  padding-right: 1.5rem;
  padding-left:  1.5rem;
  margin-right: auto;
  margin-left:  auto;
}
@media (min-width: 1200px) {
  .fluid-wrap {
    max-width: none;
    padding-right: 3.5%;
    padding-left:  3.5%;
  }
}
@media (min-width: 1400px) {
  .fluid-wrap {
    padding-right: 5%;
    padding-left:  5%;
  }
}
@media (min-width: 2560px) {
  .fluid-wrap {
    padding-right: 8%;
    padding-left:  8%;
  }
}

/* ==================== REVEAL ==================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.12s;
}
.reveal-delay-2 {
  transition-delay: 0.24s;
}
.reveal-delay-3 {
  transition-delay: 0.36s;
}

/* ==================== ANNOUNCEMENT BAR ==================== */
#announcementBar {
  background: linear-gradient(90deg, #16181f 0%, #1e2129 50%, #16181f 100%);
  overflow: hidden;
  padding: 0.48rem 0;
  white-space: nowrap;
  border-bottom: 1px solid rgba(201, 169, 110, 0.12);
}
.ann-track {
  display: inline-block;
  animation: annScroll 30s linear infinite;
}
.ann-track span {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(247, 242, 234, 0.55);
  margin: 0 1.3rem;
  letter-spacing: 0.04em;
}
.ann-dot {
  color: var(--gold) !important;
  opacity: 0.5;
  margin: 0 0.3rem !important;
}
@keyframes annScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ==================== TOP BAR ==================== */
#topBar {
  background: var(--slate-mid);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.42rem 0;
  font-size: 0.74rem;
  color: var(--text-dim);
}
#topBar a {
  color: var(--text-dim);
  transition: color 0.2s;
}
#topBar a:hover {
  color: var(--gold);
}
.tb-divider {
  display: inline-block;
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.12);
  vertical-align: middle;
}
.tb-follow {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(154, 154, 154, 0.5);
  margin-right: 0.4rem;
}
.tb-socials a {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 0.66rem;
  color: var(--text-dim);
  margin-left: 4px;
  transition: var(--tr);
}
.tb-socials a:hover {
  border-color: var(--terra);
  color: var(--terra);
}
@media (max-width: 991px) {
  #topBar {
    display: none;
  }
}

/* ==================== MAIN HEADER ==================== */
#siteHeader {
  background: rgba(17, 19, 24, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 0;
  transition:
    box-shadow 0.3s,
    padding 0.3s;
}
#siteHeader.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 6px 35px rgba(0, 0, 0, 0.6);
}
/* Mobile-first: flex with space-between (logo left, icons right, no search visible) */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

/* Desktop ≥992px: true 3-column grid so search sits at the geometric centre.
   Column 1 (1fr)               = logo  (left-anchored via justify-self)
   Column 2 (minmax(280px,560px)) = search (constrained but never collapses)
   Column 3 (1fr)               = icons (right-anchored via justify-self)
   Equal outer columns → search is always perfectly centred.                 */
@media (min-width: 992px) {
  .header-inner {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 560px) 1fr;
    align-items: center;
    gap: 1.2rem;
  }
}
@media (min-width: 1400px) {
  .header-inner {
    grid-template-columns: 1fr minmax(380px, 660px) 1fr;
  }
}
@media (min-width: 2560px) {
  .header-inner {
    grid-template-columns: 1fr minmax(500px, 860px) 1fr;
  }
}

/* Logo — justify-self: start keeps the clickable area tight to the logo text,
   preventing the anchor from spanning the whole 1fr column.                  */
.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
  justify-self: start;
  width: fit-content;
}
.text-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.text-logo-main {
  font-family: var(--ff-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--ivory);
  letter-spacing: -0.01em;
  line-height: 1;
}
.text-logo-main em {
  font-style: italic;
  color: var(--terra);
}
.text-logo-sub {
  font-family: var(--ff-body);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(247, 242, 234, 0.38);
  margin-top: 3px;
}
.text-logo--center {
  align-items: center;
}
.text-logo-main--footer {
  font-size: 2rem;
}
.text-logo-sub--footer {
  color: rgba(247, 242, 234, 0.3);
  margin-top: 5px;
}
@media (max-width: 575px) {
  .text-logo-main {
    font-size: 1.4rem;
  }
  .text-logo-sub {
    font-size: 0.5rem;
    letter-spacing: 0.22em;
  }
}

/* Search — fills the constrained centre column of the header grid on desktop,
   full-width on mobile (flex layout). */
.header-search {
  display: flex;
  align-items: stretch;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  width: 100%;
}
.search-category {
  position: relative;
  flex-shrink: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.search-category select {
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  color: rgba(247, 242, 234, 0.7);
  font-family: var(--ff-body);
  font-size: 0.74rem;
  padding: 0 2rem 0 0.85rem;
  height: 100%;
  outline: none;
  cursor: pointer;
  min-width: 110px;
}
.search-category select option {
  background: #1c1f27;
  color: var(--ivory);
}
.search-category i {
  position: absolute;
  right: 0.6rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.6rem;
  color: rgba(247, 242, 234, 0.4);
  pointer-events: none;
}
.header-search input {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: none;
  color: var(--ivory);
  font-family: var(--ff-body);
  font-size: 0.84rem;
  padding: 0 1rem;
  outline: none;
}
.header-search input::placeholder {
  color: rgba(247, 242, 234, 0.3);
}
.search-btn {
  background: var(--terra);
  border: none;
  color: var(--white);
  padding: 0 1.1rem;
  font-size: 0.95rem;
  transition: background 0.2s;
  flex-shrink: 0;
}
.search-btn:hover {
  background: var(--terra-light);
}

/* Header icons */
.header-icons {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
  justify-self: end;   /* anchors to right edge of col 3 in grid */
  margin-left: auto;   /* fallback for the mobile flex layout */
}
.hdr-icon-btn {
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  color: rgba(247, 242, 234, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border-radius: 0;
  transition:
    color 0.2s,
    background 0.2s;
  position: relative;
}
.hdr-icon-btn:hover {
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.06);
}
.cart-btn .cart-badge {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 16px;
  height: 16px;
  background: var(--terra);
  border-radius: 50%;
  font-size: 0.58rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  line-height: 1;
}

/* Mobile search bar */
.mobile-search-bar {
  display: none;
  padding: 0.6rem 0;
}
.mobile-search-bar.open {
  display: block;
}
.mobile-search-bar .header-search {
  width: 100%;
  height: 40px;
}

/* ==================== SECONDARY NAV ==================== */
#secondaryNav {
  background: var(--slate-mid);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  position: sticky;
  top: 65px;   /* = header padding(24px) + icon height(40px) + border(1px) */
  z-index: 1050;
  transition: top 0.3s;
}
#siteHeader.scrolled ~ #secondaryNav {
  top: 57px;   /* = header scrolled padding(16px) + icon height(40px) + border(1px) */
}

.sec-nav-list {
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.sec-nav-list::-webkit-scrollbar {
  display: none;
}

.sec-item {
  position: relative;
  flex-shrink: 0;
}
.sec-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: rgba(247, 242, 234, 0.6);
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.82rem 1.05rem;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition:
    color 0.2s,
    background 0.2s,
    border-color 0.2s;
}
.sec-btn:hover,
.sec-item.open .sec-btn {
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.04);
  border-bottom-color: var(--terra);
}
.sec-btn > i:first-child {
  font-size: 0.82rem;
  color: var(--terra);
}
.sec-arrow {
  font-size: 0.6rem !important;
  color: rgba(247, 242, 234, 0.3) !important;
  transition: transform 0.3s;
}
.sec-item.open .sec-arrow {
  transform: rotate(180deg);
}

/* ==================== MEGA MENU ==================== */
.mega-menu {
  position: fixed;
  top: auto;
  left: auto;
  min-width: 680px;
  background: #181b22;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 2px solid var(--terra);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
  display: flex;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
  z-index: 9999;
}
.sec-item.open .mega-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.mega-menu .mega-inner {
  flex: 1;
  padding: 1.6rem;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.mega-menu .mega-side {
  width: 230px;
  padding: 1.6rem;
  flex-shrink: 0;
}
.mega-heading {
  font-family: var(--ff-body);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1rem;
}

/* Mega grid of cards */
.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.mega-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.mega-card {
  display: flex;
  flex-direction: column;
  color: rgba(247, 242, 234, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: var(--tr);
}
.mega-card:hover {
  border-color: rgba(192, 83, 42, 0.35);
  color: var(--ivory);
  transform: translateY(-2px);
}
.mega-card-img {
  width: 100%;
  height: 90px;
  background-size: cover;
  background-position: center;
  position: relative;
  filter: brightness(0.75);
  transition: filter 0.3s;
}
.mega-card:hover .mega-card-img {
  filter: brightness(0.9);
}
.mega-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--terra);
  color: var(--white);
  padding: 0.18rem 0.5rem;
}
.mega-badge.sale {
  background: #e74c3c;
}
.mega-badge.new {
  background: #27ae60;
}
.mega-card-name {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.5rem 0.6rem 0.1rem;
  line-height: 1.2;
}
.mega-card small {
  font-size: 0.65rem;
  color: rgba(247, 242, 234, 0.38);
  padding: 0 0.6rem 0.55rem;
  line-height: 1.3;
}
.mega-card:hover small {
  color: rgba(247, 242, 234, 0.55);
}

/* Mega service cards (2-col grid) */
.mega-service-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--terra);
  color: rgba(247, 242, 234, 0.65);
  transition: var(--tr);
}
.mega-service-card:hover {
  background: rgba(192, 83, 42, 0.07);
  color: var(--ivory);
}
.mega-service-card > i {
  font-size: 1.1rem;
  color: var(--terra);
  margin-top: 2px;
  flex-shrink: 0;
}
.mega-service-card div {
  display: flex;
  flex-direction: column;
}
.mega-service-card span {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.2;
}
.mega-service-card small {
  font-size: 0.68rem;
  color: rgba(247, 242, 234, 0.38);
  margin-top: 2px;
}

/* Mega side */
.mega-side-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.8rem;
  color: rgba(247, 242, 234, 0.55);
  padding: 0.45rem 0.3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: color 0.2s;
}
.mega-side-link:last-child {
  border-bottom: none;
}
.mega-side-link:hover {
  color: var(--ivory);
}
.mega-side-link i {
  font-size: 0.75rem;
  color: var(--terra);
}
.mega-sz-xl {
  font-size: 1rem !important;
}
.mega-sz-l {
  font-size: 0.85rem !important;
}
.mega-sz-m {
  font-size: 0.7rem !important;
}
.mega-sz-s {
  font-size: 0.55rem !important;
}

/* Colour swatches */
.mega-colors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.mega-color-swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition:
    transform 0.2s,
    border-color 0.2s;
}
.mega-color-swatch:hover {
  transform: scale(1.18);
  border-color: var(--white);
}

/* Mega feature list */
.mega-feature {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.8rem;
  color: rgba(247, 242, 234, 0.55);
  padding: 0.4rem 0;
}
.mega-feature i {
  color: var(--terra);
  font-size: 0.85rem;
}
.mega-feature span {
  line-height: 1.3;
}
.mega-wa-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.2rem;
  background: var(--wa-green);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 0.65rem 1.1rem;
  border-radius: 0;
  transition: background 0.2s;
}
.mega-wa-btn:hover {
  background: #1ebe5d;
  color: var(--white);
}

/* Mega bottom */
.mega-bottom {
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.mega-view-all {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.mega-view-all:hover {
  gap: 10px;
  color: var(--terra-light);
}

/* section-line hidden on mobile */
@media (max-width: 767px) {
  .section-line {
    display: none;
  }
}

/* ==================== SIDEBAR OVERLAY ==================== */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.sidebar-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ==================== ACCOUNT SIDEBAR ==================== */
#accountSidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 360px;
  max-width: 95vw;
  background: #13161d;
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.38s var(--ease);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
#accountSidebar.open {
  transform: translateX(0);
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.sidebar-title {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.sidebar-close {
  background: none;
  border: none;
  color: rgba(247, 242, 234, 0.5);
  font-size: 1rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    color 0.3s,
    transform 0.3s var(--ease),
    background 0.3s;
  border-radius: 50%;
}
.sidebar-close:hover {
  color: var(--ivory);
  transform: rotate(90deg) scale(1.15);
  background: rgba(255, 255, 255, 0.08);
}

.account-body {
  padding: 2rem 1.5rem;
  flex: 1;
}
.account-logo {
  text-align: center;
  margin-bottom: 1.4rem;
}
.account-welcome {
  font-family: var(--ff-display);
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--ivory);
  text-align: center;
  margin-bottom: 0.35rem;
}
.account-sub {
  font-size: 0.8rem;
  color: rgba(247, 242, 234, 0.4);
  text-align: center;
  margin-bottom: 1.8rem;
  line-height: 1.6;
}

.form-group-custom {
  margin-bottom: 1.1rem;
}
.form-group-custom label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 242, 234, 0.5);
  margin-bottom: 0.4rem;
}
.form-group-custom input {
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--ivory);
  font-family: var(--ff-body);
  font-size: 0.86rem;
  padding: 0.72rem 1rem;
  outline: none;
  border-radius: 8px;
  transition: border-color 0.25s, background 0.25s;
}
.form-group-custom input::placeholder {
  color: rgba(247, 242, 234, 0.38);
}
.form-group-custom input:focus {
  border-color: var(--terra);
  background: rgba(255, 255, 255, 0.09);
}
.pass-wrap {
  position: relative;
}
.pass-wrap input {
  padding-right: 2.6rem;
}
.pass-toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(247, 242, 234, 0.35);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.pass-toggle:hover {
  color: var(--ivory);
}
.remember-label {
  font-size: 0.78rem;
  color: rgba(247, 242, 234, 0.45);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
}
.remember-label input {
  width: 14px;
  height: 14px;
  accent-color: var(--terra);
}
.forgot-link {
  font-size: 0.75rem;
  color: var(--terra);
  transition: color 0.2s;
}
.forgot-link:hover {
  color: var(--terra-light);
}
.account-divider {
  text-align: center;
  position: relative;
  margin: 1rem 0;
  color: rgba(247, 242, 234, 0.25);
  font-size: 0.75rem;
}
.account-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}
.account-divider span {
  position: relative;
  background: #13161d;
  padding: 0 0.8rem;
}
.btn-wa-full {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wa-green);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.75rem;
  border-radius: 8px;
  border: none;
  width: 100%;
  transition: background 0.2s;
}
.btn-wa-full:hover {
  background: #1ebe5d;
  color: var(--white);
}
.account-register {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(247, 242, 234, 0.4);
  margin-top: 1.4rem;
}
.account-register a {
  color: var(--terra);
}
.account-register a:hover {
  color: var(--terra-light);
}

/* ==================== MOBILE MENU DRAWER ==================== */
#mobileMenuDrawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 320px;
  max-width: 92vw;
  background: #13161d;
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.38s var(--ease);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
#mobileMenuDrawer.open {
  transform: translateX(0);
}
.drawer-body {
  flex: 1;
  overflow-y: auto;
}
.drawer-search {
  display: flex;
  align-items: stretch;
  height: 40px;
  margin: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.drawer-search input {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: none;
  color: var(--ivory);
  font-family: var(--ff-body);
  font-size: 0.82rem;
  padding: 0 0.85rem;
  outline: none;
}
.drawer-search input::placeholder {
  color: rgba(247, 242, 234, 0.28);
}
.drawer-search button {
  background: var(--terra);
  border: none;
  color: var(--white);
  padding: 0 0.9rem;
  font-size: 0.9rem;
}

/* Drawer accordion */
.drawer-accordion {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.drawer-acc-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.drawer-acc-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  color: rgba(247, 242, 234, 0.7);
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.85rem 1.2rem;
  text-align: left;
  transition:
    background 0.2s,
    color 0.2s;
}
.drawer-acc-btn span {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.drawer-acc-btn span i {
  color: var(--terra);
  font-size: 0.88rem;
}
.drawer-acc-btn > i {
  font-size: 0.65rem;
  color: rgba(247, 242, 234, 0.3);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.drawer-acc-btn.open {
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.04);
}
.drawer-acc-btn.open > i {
  transform: rotate(180deg);
}
.drawer-acc-body {
  display: none;
  background: rgba(0, 0, 0, 0.2);
  padding: 0.4rem 0;
}
.drawer-acc-body.show {
  display: block;
}
.drawer-acc-body a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.8rem;
  color: rgba(247, 242, 234, 0.55);
  padding: 0.6rem 1.6rem;
  transition:
    color 0.2s,
    background 0.2s;
}
.drawer-acc-body a:hover {
  color: var(--ivory);
  background: rgba(192, 83, 42, 0.08);
}
.drawer-acc-body a i {
  color: var(--terra);
  font-size: 0.8rem;
  flex-shrink: 0;
}
.view-all-link {
  color: var(--terra) !important;
  font-weight: 600;
  font-size: 0.72rem !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

/* Drawer nav links */
.drawer-links {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0.5rem 0;
}
.drawer-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.82rem;
  color: rgba(247, 242, 234, 0.55);
  padding: 0.65rem 1.2rem;
  transition: color 0.2s;
}
.drawer-link:hover {
  color: var(--ivory);
}
.drawer-link i {
  font-size: 0.88rem;
  color: var(--terra);
}
.drawer-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin: 1rem;
  background: var(--wa-green);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 0.84rem;
  font-weight: 600;
  padding: 0.85rem;
  border-radius: 8px;
}
.drawer-wa:hover {
  background: #1ebe5d;
  color: var(--white);
}

/* ==================== HERO ==================== */
#heroSlider {
  position: relative;
  height: 88vh;
  min-height: 540px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: all;
}
.hero-slide-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 8s ease;
  filter: brightness(0.7);
}
.hero-slide.active .hero-slide-bg {
  transform: scale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    rgba(17, 19, 24, 0.85) 0%,
    rgba(17, 19, 24, 0.32) 55%,
    rgba(17, 19, 24, 0.08) 100%
  );
}
.hero-content {
  position: absolute;
  bottom: 13%;
  left: 7%;
  max-width: 620px;
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.85s 0.4s ease,
    transform 0.85s 0.4s ease;
}
.hero-slide.active .hero-content {
  opacity: 1;
  transform: translateY(0);
}
.hero-tag {
  font-family: var(--ff-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-tag::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 1px;
  background: var(--terra);
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 5.5vw, 5.3rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--ivory);
  margin-bottom: 1.1rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-subtitle {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(247, 242, 234, 0.6);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 430px;
}
.hero-btns {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}
.hero-controls {
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.hero-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(247, 242, 234, 0.22);
  background: rgba(17, 19, 24, 0.45);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--tr);
  backdrop-filter: blur(6px);
  flex-shrink: 0;
}
.hero-btn:hover {
  background: var(--terra);
  border-color: var(--terra);
}
.hero-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.hero-dot {
  width: 22px;
  height: 2px;
  background: rgba(247, 242, 234, 0.22);
  border: none;
  padding: 0;
  transition: var(--tr);
}
.hero-dot.active {
  background: var(--terra);
  width: 40px;
}

/* ==================== CATEGORIES ==================== */
#products {
  background: var(--slate);
}
.cat-header {
  padding: 5.5rem 0 3rem;
}
.cat-header h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.1;
  margin-top: 0.5rem;
}
.cat-header h2 em {
  font-style: italic;
  color: var(--gold);
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 370px 270px;
  gap: 3px;
}
.cat-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.cat-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.07);
  transition:
    transform 0.85s var(--ease),
    filter 0.85s;
  filter: brightness(0.7);
}
.cat-item:hover .cat-item-img {
  transform: scale(1);
  filter: brightness(0.45);
}
.cat-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(17, 19, 24, 0.8) 0%,
    transparent 55%
  );
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 2rem;
  transition: var(--tr);
}
.cat-item:hover .cat-item-overlay {
  background: linear-gradient(
    to top,
    rgba(17, 19, 24, 0.92) 0%,
    rgba(17, 19, 24, 0.25) 100%
  );
}
.cat-item-title {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--ivory);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.cat-item-sub {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 242, 234, 0.45);
  margin-bottom: 0.9rem;
}
.cat-item-cta {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--tr);
}
.cat-item:hover .cat-item-cta {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== COLLECTIONS ==================== */
.collections-section {
  background: var(--slate);
  padding: 5rem 0 7rem;
}
.product-card {
  position: relative;
  overflow: hidden;
  background: var(--slate-soft);
}
.product-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition:
    transform 0.75s var(--ease),
    filter 0.75s;
  filter: brightness(0.82);
}
.product-card:hover .product-card-img {
  transform: scale(1.08);
  filter: brightness(0.52);
}
.product-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.4rem;
  background: linear-gradient(
    to top,
    rgba(17, 19, 24, 0.95) 0%,
    transparent 100%
  );
  transform: translateY(1.2rem);
  transition: transform var(--tr);
}
.product-card:hover .product-card-body {
  transform: translateY(0);
}
.product-card-type {
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.product-card-name {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.65rem;
}
.product-card-link {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory);
  display: flex;
  align-items: center;
  gap: 7px;
  opacity: 0;
  transition: opacity 0.3s 0.1s;
}
.product-card:hover .product-card-link {
  opacity: 1;
}

/* ==================== MARQUEE ==================== */
#marquee {
  background: var(--terra);
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-block;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-track span {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 1.4rem;
}
.m-sep {
  margin: 0 0.3rem !important;
  opacity: 0.45;
  font-style: normal !important;
}
@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ==================== PROJECTS ==================== */
#projects {
  background: var(--slate-mid);
  padding: 7rem 0;
}
.project-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.project-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition:
    transform 0.75s var(--ease),
    filter 0.7s;
  filter: brightness(0.8);
}
.project-card:hover .project-img {
  transform: scale(1.08);
  filter: brightness(0.45);
}
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(17, 19, 24, 0.9) 0%,
    transparent 55%
  );
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: var(--tr);
}
.project-card:hover .project-overlay {
  background: linear-gradient(
    to top,
    rgba(17, 19, 24, 0.95) 0%,
    rgba(17, 19, 24, 0.3) 100%
  );
}
.project-tag {
  display: inline-block;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--terra);
  padding: 0.22rem 0.7rem;
  margin-bottom: 0.55rem;
  width: fit-content;
}
.project-name {
  font-family: var(--ff-display);
  font-size: 1.12rem;
  font-weight: 500;
  color: var(--ivory);
  line-height: 1.2;
  margin-bottom: 0.32rem;
}
.project-loc {
  font-size: 0.7rem;
  color: rgba(247, 242, 234, 0.42);
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
}

/* ==================== BLOG ==================== */
#blog {
  background: var(--ivory);
  color: var(--slate);
  padding: 7rem 0;
}
#blog .section-label {
  color: var(--terra);
}
.blog-title {
  color: var(--slate) !important;
}
.blog-title em {
  color: var(--terra) !important;
}
.blog-card {
  background: var(--white);
  overflow: hidden;
  transition:
    box-shadow var(--tr),
    transform var(--tr);
}
.blog-card:hover {
  box-shadow: 0 22px 55px rgba(17, 19, 24, 0.14);
  transform: translateY(-5px);
}
.blog-card-img-wrap {
  overflow: hidden;
}
.blog-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.75s var(--ease);
  filter: brightness(0.9);
}
.blog-card:hover .blog-card-img {
  transform: scale(1.05);
}
.blog-card-body {
  padding: 1.4rem 1.5rem 1.7rem;
}
.blog-card-cat {
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.blog-card-title {
  font-family: var(--ff-display);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--slate);
  line-height: 1.28;
  margin-bottom: 0.65rem;
}
.blog-card-excerpt {
  font-size: 0.82rem;
  line-height: 1.75;
  color: rgba(17, 19, 24, 0.52);
  margin-bottom: 1rem;
}
.blog-card-link {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terra);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  transition: gap 0.25s;
}
.blog-card-link:hover {
  gap: 12px;
  color: var(--terra);
}

/* ==================== ABOUT ==================== */
/* Excellence */
#excellence {
  background: var(--slate-mid);
  padding: 7rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#excellence::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(192, 83, 42, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.excellence-pre {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 6.5vw, 6.8rem);
  font-weight: 300;
  color: var(--ivory);
  display: block;
  line-height: 0.9;
}
.excellence-mid {
  font-family: var(--ff-display);
  font-size: clamp(3.8rem, 8vw, 8.8rem);
  font-weight: 600;
  font-style: italic;
  color: var(--terra);
  display: block;
  line-height: 0.92;
}
.excellence-post {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 5vw, 5.8rem);
  font-weight: 300;
  color: var(--gold);
  display: block;
  line-height: 1.05;
}

/* Why Choose */
#why-choose {
  background: var(--slate);
  padding: 7rem 0;
}
.why-img-wrap {
  position: relative;
}
.why-main-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.why-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 105px;
  height: 105px;
  background: var(--terra);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  font-family: var(--ff-body);
  box-shadow: 0 8px 30px rgba(192, 83, 42, 0.45);
  z-index: 2;
}
.why-img-badge i {
  font-size: 1.5rem;
}
.why-img-badge span {
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
  line-height: 1.3;
}
.why-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.1;
}
.why-title em {
  font-style: italic;
  color: var(--gold);
}
.why-desc {
  font-size: 0.88rem;
  line-height: 1.82;
  color: rgba(247, 242, 234, 0.52);
  margin: 1rem 0 1.8rem;
  max-width: 460px;
}
.why-features {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.why-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--terra);
  transition: var(--tr);
}
.why-feature-item:hover {
  background: rgba(192, 83, 42, 0.06);
}
.why-icon {
  width: 38px;
  height: 38px;
  background: rgba(192, 83, 42, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.05rem;
  color: var(--terra);
}
.why-feature-text h5 {
  font-family: var(--ff-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 0.28rem;
}
.why-feature-text p {
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(247, 242, 234, 0.48);
  margin: 0;
}

/* Our Story */
#our-story {
  background: var(--ivory);
  color: var(--slate);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
#our-story::before {
  content: "BD";
  position: absolute;
  right: -1%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--ff-display);
  font-size: clamp(10rem, 20vw, 20rem);
  font-weight: 700;
  color: rgba(17, 19, 24, 0.04);
  pointer-events: none;
  user-select: none;
}
.story-images {
  position: relative;
  height: 450px;
}
.story-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 73%;
  height: 78%;
  object-fit: cover;
}
.story-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 52%;
  object-fit: cover;
  border: 6px solid var(--ivory);
}
.story-badge {
  position: absolute;
  top: 50%;
  left: 56%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  background: var(--terra);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 2;
  box-shadow: 0 8px 30px rgba(192, 83, 42, 0.4);
}
.story-badge-num {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
}
.story-badge-text {
  font-size: 0.53rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.story-text {
  padding-left: 1rem;
}
.story-text .section-label {
  color: var(--terra);
}
.story-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
  color: var(--slate);
  line-height: 1.1;
  margin-top: 0.4rem;
  margin-bottom: 1.3rem;
}
.story-text h2 em {
  font-style: italic;
  color: var(--terra);
}
.story-text p {
  font-size: 0.9rem;
  line-height: 1.88;
  color: rgba(17, 19, 24, 0.65);
  margin-bottom: 0.9rem;
}
.story-meta {
  display: flex;
  gap: 2rem;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(17, 19, 24, 0.08);
  border-bottom: 1px solid rgba(17, 19, 24, 0.08);
  margin: 1.5rem 0;
}
.story-meta-num {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--terra);
  line-height: 1;
}
.story-meta-label {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(17, 19, 24, 0.42);
  margin-top: 0.2rem;
}

/* Stats */
#stats {
  background: var(--slate-mid);
  padding: 5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.stat-item {
  padding: 0.5rem 0;
}
.stat-num {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-suffix {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 3.3rem);
  color: var(--terra);
}
.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 0.5rem;
  display: block;
}

/* Clients */
#clients {
  background: var(--slate);
  padding: 5.5rem 0;
}
#clients .section-title {
  color: var(--ivory);
}
.clients-track-wrap {
  overflow: hidden;
  position: relative;
}
.clients-track-wrap::before,
.clients-track-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
}
.clients-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--slate), transparent);
}
.clients-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--slate), transparent);
}
.clients-track {
  display: flex;
  align-items: center;
  animation: clientsScroll 20s linear infinite;
  width: max-content;
}
.client-logo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.9rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  margin: 0 0.5rem;
  white-space: nowrap;
  color: rgba(247, 242, 234, 0.4);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: var(--tr);
  flex-shrink: 0;
}
.client-logo-item:hover {
  color: var(--ivory);
  border-color: rgba(192, 83, 42, 0.35);
}
.client-logo-item i {
  font-size: 1.1rem;
  color: var(--terra);
}
@keyframes clientsScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ==================== FOOTER ==================== */
#footer {
  background: #0c0e12;
  color: var(--ivory);
  padding-top: 5.5rem;
}
.footer-tagline {
  font-size: 0.67rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.2rem;
}
.footer-desc {
  font-size: 0.82rem;
  line-height: 1.85;
  color: rgba(247, 242, 234, 0.38);
  margin-bottom: 1.4rem;
}
.footer-social a {
  width: 35px;
  height: 35px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 0.82rem;
  margin-right: 5px;
  transition: var(--tr);
}
.footer-social a:hover {
  border-color: var(--terra);
  color: var(--terra);
}
.footer-heading {
  font-family: var(--ff-body);
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ivory);
  font-weight: 600;
  margin-bottom: 1.2rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 0.52rem;
}
.footer-links a {
  font-size: 0.82rem;
  color: rgba(247, 242, 234, 0.38);
  transition:
    color 0.2s,
    padding-left 0.2s;
}
.footer-links a:hover {
  color: var(--ivory);
  padding-left: 7px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
}
.footer-contact-icon {
  color: var(--terra);
  font-size: 0.88rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-text {
  font-size: 0.82rem;
  color: rgba(247, 242, 234, 0.4);
  line-height: 1.55;
}
.footer-contact-text a {
  color: rgba(247, 242, 234, 0.4);
  transition: color 0.2s;
}
.footer-contact-text a:hover {
  color: var(--gold);
}
.footer-newsletter-input {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-right: none;
  color: var(--ivory);
  font-family: var(--ff-body);
  font-size: 0.82rem;
  padding: 0.7rem 1rem;
  flex: 1;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 8px 0 0 8px;
}
.footer-newsletter-input::placeholder {
  color: rgba(247, 242, 234, 0.38);
}
.footer-newsletter-input:focus {
  border-color: var(--terra);
}
/* Newsletter subscribe button pairs with the input */
.footer-newsletter-input + .btn-terra {
  border-radius: 0 8px 8px 0;
  flex-shrink: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.4rem 0;
  margin-top: 4.5rem;
}
.footer-bottom-text {
  font-size: 0.73rem;
  color: rgba(247, 242, 234, 0.2);
}
.footer-bottom-text a {
  color: rgba(247, 242, 234, 0.33);
  transition: color 0.2s;
}
.footer-bottom-text a:hover {
  color: var(--gold);
}

/* ==================== FLOATING WHATSAPP ==================== */
#whatsappFloat {
  position: fixed;
  bottom: 5.5rem;
  right: 1.8rem;
  width: 52px;
  height: 52px;
  background: var(--wa-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 998;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
#whatsappFloat:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
  color: var(--white);
}
.wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--slate);
  color: var(--ivory);
  font-family: var(--ff-body);
  font-size: 0.73rem;
  font-weight: 500;
  padding: 0.38rem 0.8rem;
  white-space: nowrap;
  border-radius: 3px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
#whatsappFloat:hover .wa-tooltip {
  opacity: 1;
}
#backToTop {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  width: 44px;
  height: 44px;
  background: var(--terra);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--tr);
  z-index: 999;
}
#backToTop.visible {
  opacity: 1;
  pointer-events: all;
}
#backToTop:hover {
  background: var(--terra-light);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1199px) {
  .mega-menu {
    min-width: 560px;
  }
  .mega-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  #secondaryNav {
    display: none;
  }
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 260px);
  }
  .cat-header {
    padding: 4rem 0 2.5rem;
  }
  #why-choose {
    padding: 5rem 0;
  }
  .why-main-img {
    height: 400px;
  }
  #our-story {
    padding: 5rem 0;
  }
  .story-images {
    height: 360px;
    margin-bottom: 2rem;
  }
  .story-text {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  #heroSlider {
    height: 76vh;
    min-height: 500px;
  }
  .hero-content {
    left: 5%;
    bottom: 20%;
    max-width: 90%;
  }
  .cat-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 210px);
  }
  .story-meta {
    gap: 1.2rem;
  }
  #excellence {
    padding: 5rem 0;
  }
  #why-choose,
  .collections-section,
  #projects,
  #blog,
  #our-story {
    padding: 4.5rem 0;
  }
  #stats {
    padding: 3.5rem 0;
  }
}
@media (max-width: 575px) {
  .cat-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 190px);
  }
  .story-images {
    height: 290px;
  }
  .story-img-main {
    width: 78%;
    height: 74%;
  }
  .story-img-accent {
    width: 55%;
    height: 50%;
  }
  .hero-controls {
    bottom: 3%;
    right: 4%;
  }
  #whatsappFloat {
    bottom: 5rem;
    right: 1.2rem;
    width: 46px;
    height: 46px;
    font-size: 1.3rem;
  }
  #backToTop {
    bottom: 1.2rem;
    right: 1.2rem;
  }
  .hero-btns {
    gap: 0.6rem;
  }
  .hero-btns .btn-terra,
  .hero-btns .btn-outline-ivory {
    padding: 0.62rem 1.3rem;
    font-size: 0.7rem;
  }
}

/* ============================================================
   INNER PAGE STYLES — category.html / product.html / product-details.html
   ============================================================ */

/* ==================== BREADCRUMB BAR ==================== */
.breadcrumb-bar {
  background: var(--slate-mid);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0.65rem 0;
}
.breadcrumb-bar .breadcrumb {
  margin: 0;
  padding: 0;
  background: none;
  font-size: 0.72rem;
  font-family: var(--ff-body);
  gap: 0;
  flex-wrap: wrap;
}
.breadcrumb-item {
  color: var(--text-dim);
  letter-spacing: 0.03em;
}
.breadcrumb-item a {
  color: var(--text-dim);
  transition: color 0.2s;
}
.breadcrumb-item a:hover {
  color: var(--gold);
}
.breadcrumb-item.active {
  color: var(--ivory);
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  padding: 0 0.55rem;
  color: rgba(255,255,255,0.2);
}

/* ==================== PAGE HERO (inner pages) ==================== */
.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .page-hero { min-height: 300px; }
}
@media (min-width: 1200px) {
  .page-hero { min-height: 340px; }
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.35) saturate(0.7);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(17,19,24,0.85) 40%, rgba(17,19,24,0.35) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 3rem;
  padding-bottom: 3rem;
  /* Do NOT use padding shorthand — fluid-wrap already supplies left/right padding */
}
.page-hero-tag {
  font-family: var(--ff-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.page-hero-tag::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--terra);
  flex-shrink: 0;
}
.page-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.1;
  margin-bottom: 0.8rem;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.page-hero-desc {
  font-size: 0.9rem;
  color: rgba(247,242,234,0.6);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 1.4rem;
}
.page-hero-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.page-hero-meta-item {
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(247,242,234,0.45);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.page-hero-meta-item i {
  color: var(--gold);
  font-size: 0.78rem;
}

/* ==================== SHOP LAYOUT (sidebar + grid) ==================== */
.shop-section {
  padding: 3rem 0 5rem;
}
.shop-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 992px) {
  .shop-layout {
    grid-template-columns: 260px 1fr;
    gap: 2.5rem;
  }
}
@media (min-width: 1400px) {
  .shop-layout {
    grid-template-columns: 280px 1fr;
    gap: 3rem;
  }
}

/* ==================== SIDEBAR ==================== */
.shop-sidebar {
  position: relative;
}
@media (min-width: 992px) {
  .shop-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--terra) transparent;
  }
}
/* Mobile filter toggle */
.sidebar-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--slate-mid);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.75rem 1rem;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ivory);
  width: 100%;
  text-align: left;
  margin-bottom: 0;
}
.sidebar-mobile-toggle i {
  color: var(--terra);
  font-size: 1rem;
}
@media (min-width: 992px) {
  .sidebar-mobile-toggle { display: none; }
}
.sidebar-body {
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.sidebar-body.collapsed {
  max-height: 0;
}
.sidebar-body.expanded {
  max-height: 2000px;
}
@media (min-width: 992px) {
  .sidebar-body {
    max-height: none !important;
    overflow: visible;
  }
}
/* Filter group */
.filter-group {
  background: var(--slate-mid);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 1.2rem;
  margin-bottom: 1px;
}
.filter-group:first-child { border-top: none; }
.filter-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  margin-bottom: 1rem;
  user-select: none;
}
.filter-group-title {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
}
.filter-toggle-icon {
  font-size: 0.65rem;
  color: var(--text-dim);
  transition: transform 0.25s;
}
.filter-group.open .filter-toggle-icon {
  transform: rotate(180deg);
}
.filter-group-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.filter-check-label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  cursor: pointer;
  font-size: 0.82rem;
  color: rgba(247,242,234,0.65);
  transition: color 0.2s;
}
.filter-check-label:hover {
  color: var(--ivory);
}
.filter-check-label input[type="checkbox"] {
  width: 14px;
  height: 14px;
  accent-color: var(--terra);
  flex-shrink: 0;
}
.filter-count {
  margin-left: auto;
  font-size: 0.68rem;
  color: var(--text-dim);
  background: rgba(255,255,255,0.06);
  padding: 1px 6px;
  border-radius: 10px;
}
/* Color filter swatches */
.filter-colors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.3rem;
}
.filter-color-swatch {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
}
.filter-color-swatch:hover,
.filter-color-swatch.active {
  border-color: var(--ivory);
  transform: scale(1.15);
}
/* Price range */
.filter-price-range {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.4rem;
}
.filter-price-range input[type="range"] {
  flex: 1;
  accent-color: var(--terra);
  height: 3px;
}
.filter-price-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  white-space: nowrap;
}
/* Clear filters */
.filter-clear-btn {
  background: none;
  border: 1px solid rgba(192,83,42,0.4);
  color: var(--terra);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  width: 100%;
  cursor: pointer;
  transition: var(--tr);
  margin-top: 1px;
}
.filter-clear-btn:hover {
  background: var(--terra);
  color: var(--white);
  border-color: var(--terra);
}

/* ==================== SORT BAR ==================== */
.sort-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.sort-result-count {
  font-size: 0.8rem;
  color: var(--text-dim);
}
.sort-result-count strong {
  color: var(--ivory);
  font-weight: 500;
}
.sort-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.sort-select {
  background: var(--slate-mid);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--ivory);
  font-family: var(--ff-body);
  font-size: 0.78rem;
  padding: 0.4rem 2rem 0.4rem 0.75rem;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%239a9a9a'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7rem center;
  cursor: pointer;
  outline: none;
}
.sort-select:focus {
  border-color: var(--terra);
}
.view-toggle {
  display: flex;
  gap: 3px;
}
.view-btn {
  width: 32px;
  height: 32px;
  background: var(--slate-mid);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--tr);
}
.view-btn.active,
.view-btn:hover {
  background: var(--terra);
  color: var(--white);
  border-color: var(--terra);
}

/* ==================== PRODUCT GRID (shop) ==================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 576px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 992px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1200px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1600px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); }
}
/* Shop product card */
.shop-card {
  background: var(--slate-mid);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.shop-card-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--slate-soft);
  display: flex;
  line-height: 0;
}
.shop-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.shop-card:hover .shop-card-img {
  transform: scale(1.07);
}
.shop-card-badges {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.shop-badge {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.22rem 0.55rem;
  line-height: 1;
}
.shop-badge-new { background: var(--gold); color: var(--slate); }
.shop-badge-sale { background: var(--terra); color: var(--white); }
.shop-badge-stock { background: #2c6e49; color: var(--white); }
.shop-card-quick {
  position: absolute;
  bottom: -100%;
  left: 0;
  right: 0;
  background: rgba(17,19,24,0.9);
  backdrop-filter: blur(6px);
  display: flex;
  gap: 1px;
  transition: bottom 0.35s var(--ease);
}
.shop-card:hover .shop-card-quick {
  bottom: 0;
}
.shop-quick-btn {
  flex: 1;
  background: none;
  border: none;
  color: rgba(247,242,234,0.7);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.65rem 0.4rem;
  text-align: center;
  transition: var(--tr);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.shop-quick-btn:hover {
  background: var(--terra);
  color: var(--white);
}
.shop-quick-btn i { font-size: 0.85rem; }
.shop-card-body {
  padding: 1rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.shop-card-type {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.3rem;
}
.shop-card-name {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.25;
  margin-bottom: 0.35rem;
}
.shop-card-desc {
  font-size: 0.77rem;
  color: var(--text-dim);
  line-height: 1.5;
  margin-bottom: 0.75rem;
  flex: 1;
}
.shop-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.shop-card-price {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
}
.shop-card-price-sub {
  font-size: 0.7rem;
  color: var(--text-dim);
  display: block;
  font-family: var(--ff-body);
  font-weight: 400;
}
.shop-card-cta {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
}
.shop-card-cta:hover { color: var(--gold); }
.shop-card-cta i { font-size: 0.75rem; }

/* ==================== PAGINATION ==================== */
.pagination-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding-top: 3rem;
  flex-wrap: wrap;
}
.page-num {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--slate-mid);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-dim);
  font-size: 0.8rem;
  font-family: var(--ff-body);
  cursor: pointer;
  transition: var(--tr);
  text-decoration: none;
}
.page-num:hover,
.page-num.active {
  background: var(--terra);
  border-color: var(--terra);
  color: var(--white);
}
.page-num-prev,
.page-num-next {
  padding: 0 0.8rem;
  width: auto;
  gap: 0.3rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ==================== ALL PRODUCTS PAGE — Category tabs ==================== */
.cat-tabs-bar {
  background: var(--slate-mid);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-tabs-bar::-webkit-scrollbar { display: none; }
.cat-tabs {
  display: flex;
  white-space: nowrap;
}
.cat-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.9rem 1.3rem;
  font-size: 0.77rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: var(--text-dim);
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  text-decoration: none;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  white-space: nowrap;
}
.cat-tab i { font-size: 0.85rem; }
.cat-tab:hover { color: var(--ivory); }
.cat-tab.active {
  color: var(--terra);
  border-bottom-color: var(--terra);
}

/* ==================== PRODUCT DETAIL PAGE ==================== */
.pd-section {
  padding: 3rem 0 5rem;
}
.pd-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 992px) {
  .pd-layout {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
  }
}
@media (min-width: 1200px) {
  .pd-layout {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

/* Gallery */
.pd-gallery {
  position: relative;
}
@media (min-width: 992px) {
  .pd-gallery {
    position: sticky;
    top: 110px;
  }
}
.pd-main-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--slate-soft);
  margin-bottom: 0.6rem;
}
.pd-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.pd-main-img-wrap:hover .pd-main-img {
  transform: scale(1.04);
}
.pd-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 0.6rem;
  pointer-events: none;
  z-index: 2;
}
.pd-gallery-btn {
  width: 36px;
  height: 36px;
  background: rgba(17,19,24,0.75);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--ivory);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  transition: background 0.2s;
}
.pd-gallery-btn:hover { background: var(--terra); border-color: var(--terra); }
.pd-thumbs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--terra) transparent;
  padding-bottom: 2px;
}
.pd-thumb {
  flex-shrink: 0;
  width: 72px;
  height: 56px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s, opacity 0.2s;
  opacity: 0.5;
}
.pd-thumb.active,
.pd-thumb:hover {
  border-color: var(--terra);
  opacity: 1;
}
.pd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pd-img-badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

/* Product Info */
.pd-info-type {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.5rem;
}
.pd-info-name {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.pd-info-name em {
  font-style: italic;
  color: var(--gold);
}
.pd-info-meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 1.4rem;
}
.pd-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pd-meta-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.pd-meta-value {
  font-size: 0.83rem;
  color: var(--ivory);
  font-weight: 500;
}
.pd-info-desc {
  font-size: 0.88rem;
  color: rgba(247,242,234,0.65);
  line-height: 1.8;
  margin-bottom: 1.6rem;
}
/* Variant selectors */
.pd-option-group {
  margin-bottom: 1.3rem;
}
.pd-option-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pd-option-label span {
  color: var(--ivory);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.pd-size-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.pd-size-btn {
  background: var(--slate-mid);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(247,242,234,0.65);
  font-size: 0.74rem;
  padding: 0.4rem 0.85rem;
  cursor: pointer;
  transition: var(--tr);
}
.pd-size-btn:hover,
.pd-size-btn.active {
  background: var(--terra);
  border-color: var(--terra);
  color: var(--white);
}
.pd-colors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.pd-color-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
}
.pd-color-btn:hover,
.pd-color-btn.active {
  border-color: var(--ivory);
  transform: scale(1.12);
}
/* CTA buttons */
.pd-ctas {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.pd-ctas .btn-terra {
  flex: 1;
  min-width: 140px;
  justify-content: center;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}
.pd-ctas .btn-outline-ivory {
  flex: 1;
  min-width: 140px;
  justify-content: center;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}
.btn-wa {
  background: var(--wa-green);
  color: var(--white);
  border: none;
  font-family: var(--ff-body);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 0.85rem 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 8px;
  transition: opacity 0.2s;
  flex: 1;
  min-width: 140px;
}
.btn-wa:hover { opacity: 0.9; color: var(--white); }
/* Quantity selector */
.pd-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}
.pd-qty-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: var(--ivory);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pd-qty-btn:hover {
  background: rgba(255,255,255,0.08);
}
.pd-qty-input {
  width: 52px;
  height: 40px;
  border: none;
  border-left: 1px solid rgba(255,255,255,0.1);
  border-right: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  color: var(--ivory);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  -moz-appearance: textfield;
}
.pd-qty-input::-webkit-outer-spin-button,
.pd-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Secondary CTA (WhatsApp enquiry) */
.pd-ctas-secondary {
  margin-bottom: 1.5rem;
}
.btn-wa-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--wa-green);
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s;
  padding: 0.5rem 0;
  border-bottom: 1px dashed rgba(37,211,102,0.3);
}
.btn-wa-sm:hover {
  opacity: 0.8;
  color: var(--wa-green);
}
.btn-wa-sm i {
  font-size: 1rem;
}
/* Assurance badges */
.pd-assurance {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.pd-assurance-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  color: rgba(247,242,234,0.45);
}
.pd-assurance-item i {
  color: var(--gold);
  font-size: 1rem;
}

/* ==================== PRODUCT TABS ==================== */
.pd-tabs-section {
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.pd-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.pd-tabs::-webkit-scrollbar { display: none; }
.pd-tab-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-dim);
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.8rem 1.4rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
  margin-bottom: -1px;
}
.pd-tab-btn:hover { color: var(--ivory); }
.pd-tab-btn.active {
  color: var(--terra);
  border-bottom-color: var(--terra);
}
.pd-tab-pane { display: none; }
.pd-tab-pane.active { display: block; }
/* Spec table */
.spec-table {
  width: 100%;
  border-collapse: collapse;
}
.spec-table tr {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.spec-table td {
  padding: 0.75rem 0.5rem;
  font-size: 0.83rem;
  vertical-align: top;
}
.spec-table td:first-child {
  color: var(--text-dim);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  width: 38%;
  padding-right: 1.5rem;
}
.spec-table td:last-child { color: var(--ivory); }
.tab-desc p {
  font-size: 0.87rem;
  color: rgba(247,242,234,0.65);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.tab-desc ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}
.tab-desc ul li {
  font-size: 0.85rem;
  color: rgba(247,242,234,0.6);
  line-height: 1.7;
  margin-bottom: 0.3rem;
}
.tab-desc ul li::marker { color: var(--terra); }

/* ==================== RELATED PRODUCTS ==================== */
.related-section {
  padding: 3rem 0 5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

/* ==================== EMPTY / NO RESULTS ==================== */
.no-results {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-dim);
}
.no-results i {
  font-size: 3rem;
  color: rgba(255,255,255,0.12);
  margin-bottom: 1rem;
}
.no-results h5 {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}

/* ==================== INNER PAGE — additional responsive fixes ==================== */
@media (max-width: 575px) {
  .page-hero { min-height: 200px; }
  .page-hero h1 { font-size: 1.75rem; }
  .pd-ctas { flex-direction: column; }
  .pd-ctas .btn-terra,
  .pd-ctas .btn-outline-ivory,
  .pd-ctas .btn-wa { min-width: unset; width: 100%; }
  .sort-bar { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 767px) {
  .shop-section { padding: 1.5rem 0 3rem; }
  .pd-section { padding: 1.5rem 0 3rem; }
}

/* ============================================================
   SIGNUP / SIGNIN PAGE — signup.html
   ============================================================ */

/* ==================== AUTH LAYOUT ==================== */
#authSection {
  min-height: calc(100vh - 180px);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.auth-layout {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 600px;
  position: relative;
}
/* The left brand panel becomes a full-page background */
.auth-panel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.auth-panel-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.15) saturate(0.5);
  transition: transform 12s ease;
}
.auth-panel:hover .auth-panel-bg {
  transform: scale(1.03);
}
.auth-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17, 19, 24, 0.95) 0%,
    rgba(17, 19, 24, 0.85) 50%,
    rgba(17, 19, 24, 0.92) 100%
  );
}
/* Hide the brand panel content (logo, quote, stats) — it's now just a bg */
.auth-panel-content {
  display: none;
}
/* The form panel sits on top, centered */
.auth-form-panel {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
}
@media (min-width: 576px) {
  .auth-form-panel {
    padding: 3rem 2rem;
  }
}
@media (min-width: 992px) {
  .auth-form-panel {
    padding: 3.5rem 3rem;
  }
}

.auth-form-wrap {
  width: 100%;
  max-width: 440px;
  background: rgba(17, 19, 24, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 2.5rem 2rem;
}

/* ==================== AUTH TABS ==================== */
.auth-tabs {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 2rem;
  gap: 0;
}

/* ==================== AUTH ALERT ==================== */
.auth-alert {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.85rem 0.95rem;
  border-radius: 10px;
  margin-bottom: 1.25rem;
  font-size: 0.86rem;
  line-height: 1.55;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(17,19,24,0.65);
}
.auth-alert i { margin-top: 0.15rem; }
.auth-alert-danger {
  border-color: rgba(231, 76, 60, 0.35);
  background: rgba(231, 76, 60, 0.08);
  color: rgba(247,242,234,0.92);
}
.auth-alert-danger i { color: #e74c3c; }
.auth-alert-success {
  border-color: rgba(46, 204, 113, 0.32);
  background: rgba(46, 204, 113, 0.10);
  color: rgba(247,242,234,0.92);
}
.auth-alert-success i { color: #2ecc71; }
.auth-tab {
  flex: 1;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-dim);
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 0.5rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  margin-bottom: -1px;
}
.auth-tab:hover {
  color: var(--ivory);
}
.auth-tab.active {
  color: var(--terra);
  border-bottom-color: var(--terra);
}

/* ==================== AUTH TAB PANELS ==================== */
.auth-panel-tab {
  display: none;
}
.auth-panel-tab.active {
  display: block;
}

/* ==================== FORM HEADER ==================== */
.auth-form-header {
  margin-bottom: 1.8rem;
}
.auth-form-title {
  font-family: var(--ff-display);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}
.auth-form-title em {
  font-style: italic;
  color: var(--gold);
}
.auth-form-sub {
  font-size: 0.84rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ==================== FORM FIELDS ==================== */
.auth-field-group {
  margin-bottom: 1.1rem;
  position: relative;
}
.auth-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 242, 234, 0.55);
  margin-bottom: 0.45rem;
}
.auth-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.auth-input-icon {
  position: absolute;
  left: 0.9rem;
  font-size: 0.88rem;
  color: rgba(247, 242, 234, 0.25);
  pointer-events: none;
  transition: color 0.2s;
  z-index: 1;
}
.auth-input {
  width: 100%;
  background: var(--slate-mid);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--ivory);
  font-family: var(--ff-body);
  font-size: 0.87rem;
  padding: 0.75rem 2.8rem 0.75rem 2.6rem;
  outline: none;
  border-radius: 6px;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.auth-input::placeholder {
  color: rgba(247, 242, 234, 0.2);
}
.auth-input:focus {
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(192, 83, 42, 0.12);
}
.auth-input:focus + .auth-input-icon,
.auth-input-wrap:focus-within .auth-input-icon {
  color: var(--terra);
}
/* Validation states */
.auth-field-group.has-error .auth-input {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}
.auth-field-group.has-success .auth-input {
  border-color: #2c6e49;
}
.auth-field-error {
  display: block;
  font-size: 0.72rem;
  color: #e06c5a;
  margin-top: 0.3rem;
  min-height: 1rem;
}

/* Password toggle button */
.auth-pass-toggle {
  position: absolute;
  right: 0.75rem;
  background: none;
  border: none;
  color: rgba(247, 242, 234, 0.3);
  font-size: 0.9rem;
  padding: 0.25rem;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 1;
}
.auth-pass-toggle:hover {
  color: var(--ivory);
}

/* Password strength indicator */
.auth-strength-bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  margin-top: 0.5rem;
  overflow: hidden;
}
.auth-strength-fill {
  height: 100%;
  width: 0%;
  border-radius: 2px;
  transition: width 0.35s var(--ease), background 0.35s;
}
.auth-strength-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
  min-height: 1rem;
  transition: color 0.2s;
}

/* Checkbox label */
.auth-check-label {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  cursor: pointer;
  font-size: 0.82rem;
  color: rgba(247, 242, 234, 0.6);
  line-height: 1.5;
}
.auth-check-label input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: var(--terra);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}
.auth-link {
  color: var(--gold);
  transition: color 0.2s;
}
.auth-link:hover {
  color: var(--gold-light);
  text-decoration: underline;
}
.auth-forgot-link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

/* ==================== SUBMIT BUTTON ==================== */
.auth-submit-btn {
  width: 100%;
  padding: 0.9rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  margin-top: 0.5rem;
  border-radius: 6px;
  position: relative;
}
@keyframes authSpin {
  to { transform: rotate(360deg); }
}
.auth-spin {
  animation: authSpin 0.8s linear infinite;
  display: inline-block;
}

/* ==================== DIVIDER ==================== */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.4rem 0;
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
}
.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

/* ==================== WHATSAPP BUTTON ==================== */
.auth-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.25);
  color: var(--wa-green);
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.8rem;
  border-radius: 6px;
  transition: background 0.2s, border-color 0.2s;
}
.auth-wa-btn i {
  font-size: 1rem;
}
.auth-wa-btn:hover {
  background: var(--wa-green);
  border-color: var(--wa-green);
  color: var(--white);
}

/* ==================== SWITCH TEXT ==================== */
.auth-switch-text {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 1.25rem;
  margin-bottom: 0;
}
.auth-switch-btn {
  background: none;
  border: none;
  color: var(--terra);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}
.auth-switch-btn:hover {
  color: var(--terra-light);
  text-decoration: underline;
}

/* ==================== SUCCESS MESSAGE ==================== */
.auth-success-msg {
  text-align: center;
  padding: 2.5rem 1rem;
}
.auth-success-msg i {
  font-size: 3rem;
  color: #2c6e49;
  display: block;
  margin-bottom: 1rem;
  animation: successPop 0.5s var(--ease);
}
@keyframes successPop {
  0% { transform: scale(0.5); opacity: 0; }
  70% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}
.auth-success-msg h3 {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}
.auth-success-msg p {
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 575px) {
  .auth-form-panel {
    padding: 1.5rem 1rem;
  }
  .auth-form-wrap {
    max-width: 100%;
    padding: 1.5rem 1.2rem;
    border-radius: 8px;
  }
  .auth-form-title {
    font-size: 1.7rem;
  }
  .auth-tab {
    font-size: 0.72rem;
    padding: 0.65rem 0.4rem;
  }
}

/* ============================================================
   CART PAGE — cart.html
   ============================================================ */

/* ==================== CART SECTION ==================== */
.cart-section {
  padding: 3rem 0 5rem;
}

/* ==================== CART HEADER ==================== */
.cart-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.cart-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.1;
  margin-top: 0.4rem;
}
.cart-title em {
  font-style: italic;
  color: var(--gold);
}
.cart-header-left {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.cart-header-right {
  flex-shrink: 0;
}
.cart-item-count {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  padding: 0.35rem 0.9rem;
  background: var(--slate-mid);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  white-space: nowrap;
}

/* ==================== CART BODY LAYOUT ==================== */
.cart-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 992px) {
  .cart-body {
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
  }
}
@media (min-width: 1400px) {
  .cart-body {
    grid-template-columns: 1fr 420px;
  }
}

/* ==================== CART ITEMS ==================== */
.cart-items-col {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.cart-item {
  display: flex;
  gap: 1.2rem;
  background: var(--slate-mid);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 1.4rem;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.cart-item:hover {
  border-color: rgba(192,83,42,0.2);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

/* Item image */
.cart-item-img-wrap {
  width: 110px;
  height: 110px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--slate-soft);
}
.cart-item-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.cart-item-img-wrap:hover img {
  transform: scale(1.06);
}

/* Item info */
.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}
.cart-item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
}
.cart-item-type {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.25rem;
}
.cart-item-name {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.25;
  margin-bottom: 0.35rem;
  transition: color 0.2s;
}
.cart-item-name:hover {
  color: var(--gold);
}
.cart-item-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.cart-item-meta span {
  font-size: 0.72rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.cart-item-meta span i {
  font-size: 0.72rem;
  color: rgba(247,242,234,0.25);
}

/* Remove button */
.cart-remove-btn {
  width: 32px;
  height: 32px;
  background: none;
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: var(--tr);
  border-radius: 4px;
}
.cart-remove-btn:hover {
  background: #e74c3c;
  border-color: #e74c3c;
  color: var(--white);
}

/* Bottom row: qty + price */
.cart-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.85rem;
  gap: 1rem;
}

/* Quantity control */
.cart-qty-control {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
  height: 36px;
}
.cart-qty-btn {
  width: 36px;
  height: 100%;
  background: rgba(255,255,255,0.04);
  border: none;
  color: rgba(247,242,234,0.6);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.cart-qty-btn:hover {
  background: var(--terra);
  color: var(--white);
}
.cart-qty-input {
  width: 44px;
  height: 100%;
  background: transparent;
  border: none;
  border-left: 1px solid rgba(255,255,255,0.08);
  border-right: 1px solid rgba(255,255,255,0.08);
  color: var(--ivory);
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  outline: none;
  -moz-appearance: textfield;
}
.cart-qty-input::-webkit-outer-spin-button,
.cart-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Price display */
.cart-item-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.cart-price-unit {
  font-size: 0.72rem;
  color: var(--text-dim);
}
.cart-price-total {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold);
}

/* Continue shopping / Clear cart row */
.cart-continue {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

/* ==================== ORDER SUMMARY SIDEBAR ==================== */
.cart-summary-col {
  position: relative;
}
@media (min-width: 992px) {
  .cart-summary-col {
    position: sticky;
    top: 120px;
  }
}

.cart-summary {
  background: var(--slate-mid);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 2rem 1.6rem;
}
.cart-summary-title {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Summary rows */
.cart-summary-rows {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}
.cart-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(247,242,234,0.7);
}
.cart-summary-row small {
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-left: 0.3rem;
}
.cart-summary-ship {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-style: italic;
}

/* Coupon */
.cart-coupon {
  margin-bottom: 1rem;
}
.cart-coupon-input-wrap {
  display: flex;
  gap: 0;
  height: 40px;
}
.cart-coupon-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-right: none;
  color: var(--ivory);
  font-family: var(--ff-body);
  font-size: 0.8rem;
  padding: 0 0.85rem;
  outline: none;
  border-radius: 4px 0 0 4px;
  transition: border-color 0.2s;
}
.cart-coupon-input::placeholder {
  color: rgba(247,242,234,0.25);
}
.cart-coupon-input:focus {
  border-color: var(--terra);
}
.cart-coupon-btn {
  background: var(--terra);
  border: 1px solid var(--terra);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 1.1rem;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.cart-coupon-btn:hover {
  background: var(--terra-light);
}
.cart-coupon-msg {
  display: block;
  font-size: 0.72rem;
  margin-top: 0.35rem;
  min-height: 1rem;
}
.cart-coupon-msg.success {
  color: #2c6e49;
}
.cart-coupon-msg.error {
  color: #e06c5a;
}

/* Summary divider */
.cart-summary-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 0.75rem 0;
}

/* Discount row */
.cart-discount-row {
  color: #2c6e49;
}
.cart-discount-amt {
  font-weight: 600;
  color: #2c6e49;
}

/* Total */
.cart-summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ivory);
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 0.5rem;
}
.cart-summary-total span:last-child {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}

/* Checkout button */
.cart-checkout-btn {
  width: 100%;
  padding: 0.95rem;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  margin-bottom: 0.6rem;
  border-radius: 6px;
}
.cart-wa-btn {
  width: 100%;
  padding: 0.85rem;
  font-size: 0.76rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
}

/* Assurance badges */
.cart-assurance {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.cart-assurance-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  color: rgba(247,242,234,0.4);
}
.cart-assurance-item i {
  color: var(--gold);
  font-size: 0.88rem;
}

/* ==================== EMPTY CART STATE ==================== */
.cart-empty {
  text-align: center;
  padding: 5rem 2rem;
}
.cart-empty-icon {
  font-size: 4rem;
  color: rgba(255,255,255,0.08);
  margin-bottom: 1.5rem;
}
.cart-empty-icon i {
  font-size: inherit;
}
.cart-empty-title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 0.75rem;
}
.cart-empty-title em {
  font-style: italic;
  color: var(--gold);
}
.cart-empty-sub {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto 2rem;
}
.cart-empty-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

/* ==================== CART ITEM REMOVE ANIMATION ==================== */
.cart-item.removing {
  opacity: 0;
  transform: translateX(-30px);
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  border-color: transparent;
  overflow: hidden;
  transition: opacity 0.35s, transform 0.35s, max-height 0.45s 0.1s, padding 0.45s 0.1s, border-color 0.35s;
}

/* ==================== CART RESPONSIVE ==================== */
@media (max-width: 767px) {
  .cart-section {
    padding: 1.5rem 0 3rem;
  }
  .cart-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }
  .cart-item {
    flex-direction: column;
    gap: 1rem;
    padding: 1.1rem;
  }
  .cart-item-img-wrap {
    width: 100%;
    height: 180px;
  }
  .cart-item-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .cart-item-price {
    align-items: flex-start;
    flex-direction: row;
    gap: 0.75rem;
  }
}
@media (max-width: 575px) {
  .cart-continue {
    flex-direction: column;
  }
  .cart-continue .btn-outline-ivory,
  .cart-continue .btn-outline-terra {
    width: 100%;
    justify-content: center;
  }
  .cart-empty-btns {
    flex-direction: column;
  }
  .cart-empty-btns .btn-terra,
  .cart-empty-btns .btn-outline-ivory {
    width: 100%;
  }
}

/* ============================================================
   CHECKOUT PAGE — checkout.html
   ============================================================ */

/* ==================== CHECKOUT SECTION ==================== */
.checkout-section {
  padding: 3rem 0 5rem;
}

/* ==================== CHECKOUT HEADER ==================== */
.checkout-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
  gap: 1.5rem;
}
.checkout-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.1;
  margin-top: 0.4rem;
}
.checkout-title em {
  font-style: italic;
  color: var(--gold);
}

/* Checkout Steps Indicator */
.checkout-steps {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.checkout-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.4;
  transition: opacity 0.3s;
}
.checkout-step.active {
  opacity: 1;
}
.step-num {
  width: 28px;
  height: 28px;
  background: var(--slate-mid);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ivory);
}
.checkout-step.active .step-num {
  background: var(--terra);
  border-color: var(--terra);
  color: var(--white);
}
.step-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-dim);
}
.checkout-step-divider {
  width: 24px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 0 0.25rem;
}

/* ==================== CHECKOUT BODY GRID ==================== */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 992px) {
  .checkout-grid {
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
  }
}
@media (min-width: 1400px) {
  .checkout-grid {
    grid-template-columns: 1fr 420px;
  }
}

/* ==================== CHECKOUT CARDS ==================== */
.checkout-card {
  background: var(--slate-mid);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 1.8rem;
  margin-bottom: 1.5rem;
  display: none;
}
.checkout-card.active {
  display: block;
  animation: fadeIn 0.4s var(--ease);
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.checkout-card-title {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.step-badge {
  width: 26px;
  height: 26px;
  background: var(--terra);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--white);
  flex-shrink: 0;
}
.checkout-subtitle {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 1rem;
}

/* Checkout Form Labels */
.checkout-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(247,242,234,0.6);
  margin-bottom: 0.45rem;
}
.checkout-input,
.checkout-select,
.checkout-textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--ivory);
  font-family: var(--ff-body);
  font-size: 0.87rem;
  padding: 0.7rem 0.9rem;
  outline: none;
  border-radius: 6px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.checkout-input::placeholder,
.checkout-textarea::placeholder {
  color: rgba(247,242,234,0.2);
}
.checkout-input:focus,
.checkout-select:focus,
.checkout-textarea:focus {
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(192,83,42,0.12);
}
.checkout-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%239a9a9a'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
}
.checkout-select option {
  background: var(--slate-mid);
  color: var(--ivory);
}
.checkout-textarea {
  resize: vertical;
  min-height: 90px;
}
.checkout-error {
  display: block;
  font-size: 0.72rem;
  color: #e06c5a;
  margin-top: 0.3rem;
  min-height: 1rem;
}

/* Checkbox */
.checkout-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
  font-size: 0.82rem;
  color: rgba(247,242,234,0.7);
  line-height: 1.5;
}
.checkout-checkbox input {
  width: 16px;
  height: 16px;
  accent-color: var(--terra);
  margin-top: 2px;
}
.checkout-link {
  color: var(--gold);
}
.checkout-link:hover {
  text-decoration: underline;
}

/* ==================== SHIPPING OPTIONS ==================== */
.checkout-shipping-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.shipping-option {
  display: flex;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 1.2rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.shipping-option:hover {
  border-color: rgba(192,83,42,0.3);
}
.shipping-option.active {
  border-color: var(--terra);
  background: rgba(192,83,42,0.08);
}
.shipping-option input {
  display: none;
}
.shipping-option-content {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  width: 100%;
}
.shipping-option-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.shipping-option-header i {
  font-size: 1.1rem;
  color: var(--terra);
}
.shipping-option-title {
  flex: 1;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ivory);
}
.shipping-option-price {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
}
.shipping-option-desc {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 0.25rem;
}

/* ==================== PAYMENT OPTIONS ==================== */
.checkout-payment-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 576px) {
  .checkout-payment-options {
    grid-template-columns: repeat(2, 1fr);
  }
}
.payment-option {
  display: flex;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 1.2rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.payment-option:hover {
  border-color: rgba(192,83,42,0.3);
}
.payment-option.active {
  border-color: var(--terra);
  background: rgba(192,83,42,0.08);
}
.payment-option input {
  display: none;
}
.payment-option-content {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.payment-option-content i {
  font-size: 1.5rem;
  color: var(--terra);
}
.payment-option-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.payment-option-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ivory);
}
.payment-option-desc {
  font-size: 0.72rem;
  color: var(--text-dim);
}

/* Payment Details */
.payment-details {
  display: none;
}
.payment-details.active {
  display: block;
  animation: fadeIn 0.3s var(--ease);
}
.checkout-payment-info {
  font-size: 0.85rem;
  color: rgba(247,242,234,0.7);
  margin-bottom: 0.5rem;
}
.checkout-input-sm {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--ivory);
  font-size: 0.82rem;
  padding: 0.4rem 0.6rem;
  border-radius: 4px;
  width: 160px;
}
.bank-details {
  font-size: 0.82rem;
  color: rgba(247,242,234,0.7);
  line-height: 1.8;
  background: rgba(255,255,255,0.03);
  padding: 1rem;
  border-radius: 6px;
}
.bank-details p {
  margin-bottom: 0.25rem;
}

/* ==================== REVIEW ITEMS ==================== */
.review-items {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.review-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.review-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.review-item img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.review-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-item-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ivory);
}
.review-item-meta {
  font-size: 0.72rem;
  color: var(--text-dim);
}
.review-item-price {
  font-family: var(--ff-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
}
.review-details {
  font-size: 0.82rem;
  color: rgba(247,242,234,0.7);
  line-height: 1.7;
}

/* ==================== CHECKOUT NAVIGATION ==================== */
.checkout-nav {
  display: flex;
  justify-content: space-between;
  gap: 0.85rem;
  margin-top: 1.5rem;
}
.btn-next,
.btn-place-order {
  margin-left: auto;
}
.btn-prev {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(247,242,234,0.7);
}
.btn-prev:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.25);
  color: var(--ivory);
}
.btn-place-order {
  font-size: 0.88rem;
  letter-spacing: 0.1em;
}

/* ==================== CHECKOUT SUMMARY SIDEBAR ==================== */
.checkout-summary-col {
  position: relative;
}
@media (min-width: 992px) {
  .checkout-summary-col {
    position: sticky;
    top: 120px;
  }
}

.checkout-summary {
  background: var(--slate-mid);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 1.8rem 1.5rem;
}
.checkout-summary-title {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.checkout-summary-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.summary-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.summary-item img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.summary-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.summary-item-name {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ivory);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px;
}
.summary-item-qty {
  font-size: 0.72rem;
  color: var(--text-dim);
}
.summary-item-price {
  font-family: var(--ff-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
}

.checkout-summary-rows {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.checkout-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(247,242,234,0.7);
}
.checkout-summary-row small {
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-left: 0.3rem;
}

.checkout-summary-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 0.75rem 0;
}

.checkout-summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ivory);
  padding: 0.75rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.checkout-summary-total span:last-child {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
}

.checkout-summary-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.checkout-summary-secure i {
  color: var(--terra);
}

/* ==================== CHECKOUT RESPONSIVE ==================== */
@media (max-width: 767px) {
  .checkout-section {
    padding: 1.5rem 0 3rem;
  }
  .checkout-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .checkout-steps {
    width: 100%;
    justify-content: flex-start;
    margin-top: 0.5rem;
  }
  .step-label {
    display: none;
  }
  .checkout-card {
    padding: 1.25rem;
  }
}
@media (max-width: 575px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }
  .checkout-nav {
    flex-direction: column;
  }
  .checkout-nav .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   ORDER SUCCESS PAGE — order-success.html
   ============================================================ */

.success-section {
  padding: 6rem 0 8rem;
  min-height: calc(100vh - 400px);
  display: flex;
  align-items: center;
}
.success-card {
  background: var(--slate-mid);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 3.5rem 2rem;
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}
.success-icon {
  font-size: 5rem;
  color: #2c6e49;
  margin-bottom: 1.5rem;
}
.success-icon i {
  font-size: inherit;
  animation: successPop 0.5s var(--ease);
}
@keyframes successPop {
  0% { transform: scale(0.5); opacity: 0; }
  70% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}
.success-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
.success-title em {
  font-style: italic;
  color: var(--gold);
}
.success-sub {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 440px;
  margin: 0 auto 2.5rem;
}
.success-order-details {
  background: rgba(255,255,255,0.04);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  text-align: left;
}
.success-order-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.87rem;
  color: rgba(247,242,234,0.7);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.success-order-row:last-child {
  border-bottom: none;
}
.success-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 575px) {
  .success-buttons {
    flex-direction: column;
  }
  .success-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}