@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================
   LA VIE RESTAURANT — LUXURY DARK GOLD THEME
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color:    #C9A84C;
  --primary-light:    #E2C06C;
  --primary-dark:     #9A7A2A;
  --secondary-color:  #141414;
  --surface:          #1A1A1A;
  --surface-2:        #222222;
  --white-color:      #F5F0E8;
  --heading-color:    #F5F0E8;
  --paragraph-color:  #A89880;
  --default-color:    #C9A84C;
  --border-color:     rgba(201,168,76,0.18);
  --border-solid:     #2A2A2A;
  --gold-gradient:    linear-gradient(135deg, #9A7A2A 0%, #C9A84C 45%, #E2C06C 70%, #C9A84C 100%);
  --dark-gradient:    linear-gradient(180deg, #0D0D0D 0%, #141414 100%);
}

/* ─── BASE ─────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif !important;
  background-color: #0D0D0D;
  color: var(--white-color);
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--heading-color);
  letter-spacing: 0.02em;
}

a { transition: color 0.3s ease; }

/* ─── PRELOADER ─────────────────────────────── */
.ct-preloader {
  background-color: #0D0D0D;
}
.lds-ripple div {
  position: absolute;
  border: 4px solid var(--primary-color);
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0,0.2,0.8,1) infinite;
}

/* ─── HEADER ─────────────────────────────────── */
.main-header,
.main-header.header-4,
.main-header.header-section-menu,
.main-header.header-light {
  background: rgba(10,10,10,0.96) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color) !important;
  height: 70px !important;   /* lock — prevents responsive.css from inflating to 200px */
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

/* Homepage hero: header overlays the banner — transparent until scroll */
.main-header.header-absolute:not(.header-section-menu) {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom-color: transparent !important;
}

/* Solid again once JS adds .sticky (both homepage & menu pages) */
.main-header.sticky,
.main-header.header-absolute.sticky {
  background: rgba(10,10,10,0.97) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-bottom-color: var(--border-color) !important;
  box-shadow: 0 4px 40px rgba(0,0,0,0.6);
}

/* Logo */
.header-logo img,
.footer-logo img {
  filter: brightness(1.05);
  max-height: 60px;
  object-fit: contain;
}

/* Nav links */
.navbar .menu-item a {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white-color) !important;
  padding: 0;
  position: relative;
}

.navbar .menu-item a:hover {
  color: var(--primary-color) !important;
}

.main-header .menu-item a::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 1px;
  background: var(--gold-gradient);
  transition: 0.35s ease;
  z-index: 5;
}

.main-header li > a:hover::before,
.main-header li > a.active::before {
  width: 100%;
}

.main-header li > a.active {
  color: var(--primary-color) !important;
}

.navbar-nav { gap: 32px; }

/* Header controls */
.main-header.header-light .header-controls-inner li span {
  color: var(--paragraph-color);
  font-size: 12px;
  font-weight: 500;
}

.header-controls-inner {
  margin: 0;
  display: flex;
  gap: 28px;
}

.header-controls-inner .menu-item-has-children,
.header-controls-inner .cart-trigger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  justify-content: center;
  align-items: center;
}

.header-controls-inner li.cart-dropdown-wrapper,
.header-controls-inner li.search-dropdown-wrapper {
  padding: 30px 0;
  position: relative;
  line-height: 0.9;
}

.header-controls-inner li i {
  font-size: 14px;
  color: var(--white-color);
  transition: color 0.3s;
  font-weight: 600;
}

.header-controls-inner li i:hover { color: var(--primary-color); }

/* Cart badge */
.cart-item-count {
  width: 16px;
  height: 16px;
  background: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  top: 24px;
  right: -2px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(201,168,76,0.5);
  color: #0D0D0D !important;
  font-weight: 700 !important;
  font-size: 8px !important;
  line-height: 10px !important;
  pointer-events: none;
  z-index: 2;
}

.cart-item-count-static {
  width: 16px;
  height: 16px;
  background: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  top: 10px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(201,168,76,0.4);
  color: #0D0D0D !important;
  font-weight: 700 !important;
  font-size: 9px !important;
  line-height: 10px !important;
  pointer-events: none;
  z-index: 2;
}

/* Dropdown submenu */
.navbar .menu-item .submenu {
  min-width: 200px;
  background: #181818;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.7);
}

.navbar .menu-item .submenu .menu-item a {
  padding: 0;
  border-bottom: none;
  font-size: 13px;
  color: var(--paragraph-color) !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.navbar .menu-item .submenu .menu-item a:hover {
  color: var(--primary-color) !important;
  background-color: transparent;
}

/* Mobile toggler */
.aside-toggler {
  border: 1px solid var(--border-color);
  padding: 10px;
  border-radius: 6px;
  background: var(--surface);
  box-shadow: none;
}

.aside-toggler .fa-bars {
  font-size: 18px;
  color: var(--white-color);
}

@media screen and (min-width: 991px) {
  .aside-toggler { display: none; }
}

/* Mobile: show only language selector in the header bar */
@media screen and (max-width: 990px) {
  /* Hide cart and user/login items — keep only language selector */
  .header-controls-inner > li.cart-dropdown-wrapper,
  .header-controls-inner > li.search-dropdown-wrapper,
  .header-controls-inner > li:last-child {
    display: none;
  }

  /* Language item stays visible */
  .header-controls-inner > li:nth-child(2) {
    display: flex;
    align-items: center;
  }

  /* Push language to the far right of the header bar */
  .header-controls {
    display: flex;
    align-items: center;
    margin-left: auto;
  }

  .header-controls-inner {
    gap: 0;
  }

  /* Navbar row: [hamburger+logo] ... [language] */
  .main-header .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
  }
}

/* ─── BUTTONS ────────────────────────────────── */
.btn-custom {
  cursor: pointer;
  display: block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  position: relative;
  background: var(--gold-gradient);
  line-height: 22px;
  border: 0;
  color: #0D0D0D;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  transition: 0.35s;
  border-radius: 4px;
  z-index: 1;
  width: auto;
  min-width: 200px;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.btn-custom::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 100%;
  background: rgba(255,255,255,0.12);
  z-index: -1;
  transition: 0.35s;
  border-radius: 4px;
}

.btn-custom:hover::before { width: 100%; }
.btn-custom:hover { color: #0D0D0D; box-shadow: 0 6px 28px rgba(201,168,76,0.5); }
.btn-custom.primary { background: var(--gold-gradient); }

/* ─── BANNER ─────────────────────────────────── */

/* Outer wrapper — no intrinsic height, just block */
.banner.banner-1 {
  display: block;
  padding: 0;
  min-height: 0 !important;
}

/* banner-item must stretch to fill */
.banner.banner-1 .banner-item {
  display: block;
  width: 100%;
}

/* banner-inner = the full-viewport hero */
.banner.banner-1 .banner-inner,
.banner.banner-4 .banner-inner {
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 100vh;
  min-height: 100svh;
  max-height: 100vh;
  max-height: 100svh;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  padding: 0 !important;
  /* cover = always fills container, never tiles */
  background-size: cover !important;
  background-repeat: no-repeat !important;
  /* Focus on the upper-centre — where the restaurant name lives */
  background-position: center 22% !important;
}

/* Kill padding overrides from base template */
.can-sticky + .banner.banner-1 .banner-inner,
.header-absolute + .banner.banner-1 .banner-inner {
  padding: 0 !important;
}

/* Content container inside the hero */
.banner-inner > .container {
  width: 100%;
  padding-bottom: 40px;
}

.banner .title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(32px, 6vw, 72px);
  line-height: 1.1;
  color: var(--white-color);
  text-transform: none;
  margin-bottom: 0;
  letter-spacing: 0.01em;
}

.banner .subtitle {
  color: var(--paragraph-color);
  font-size: clamp(14px, 2vw, 17px);
  line-height: 1.7;
  margin-bottom: 0;
  font-weight: 300;
}

/* ── Tablet ── */
@media (max-width: 991px) {
  .banner.banner-1 .banner-inner,
  .banner.banner-4 .banner-inner {
    background-position: center 18% !important;
  }
  .banner-inner > .container {
    padding-top: 0;
  }
}

/* ── Mobile ── */
@media (max-width: 575px) {
  .banner.banner-1 .banner-inner,
  .banner.banner-4 .banner-inner {
    background-position: center 12% !important;
  }
  .banner-inner > .container {
    padding-top: 70px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .banner .title {
    font-size: clamp(28px, 8vw, 42px);
  }
  .banner .subtitle {
    font-size: 14px;
  }
  .banner-inner .btn-custom {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* ─── SECTIONS ───────────────────────────────── */
.section {
  position: relative;
  padding: 90px 0;
  background: #0D0D0D;
}

.section-title-wrap h5 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary-color);
  margin-bottom: 0;
}

.section-title-wrap .title {
  font-family: 'Cormorant Garamond', serif;
  color: var(--heading-color);
  font-weight: 600;
  font-size: 48px;
  line-height: 1.15;
}

.section-title-wrap p {
  color: var(--paragraph-color);
  font-size: 16px;
  line-height: 1.7;
}

/* ─── MINI MENU CARD ─────────────────────────── */
.menu_card {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 40px;
  row-gap: 30px;
  background: var(--surface);
}

.ct-mini-menu-item {
  margin-bottom: 0;
  border-bottom: 1px solid var(--border-solid);
  padding: 15px;
  display: flex;
  align-items: center;
}

.ct-mini-menu-item .ct-mini-menu-top h5 {
  font-weight: 600;
  font-size: 18px;
  color: var(--heading-color);
}

.ct-mini-menu-item .ct-mini-menu-bottom p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--paragraph-color);
}

.ct-mini-menu-item .price_sec {
  font-weight: 600;
  font-size: 20px;
  color: var(--primary-color);
}

/* ─── MENU PAGE ──────────────────────────────── */
.menu_page,
.about-us-page {
  padding-top: 180px;
  background-color: #0D0D0D;
}

.menu_page { background-color: #0D0D0D; }

/* Category slider */
.ct-menu-categories {
  background-color: transparent;
  padding: 0;
}

.slick-track {
  background: transparent;
  height: 200px;
  padding-top: 50px;
}

.ct-menu-category-item {
  width: 160px;
  height: 120px;
  padding: 15px 20px;
  background: var(--surface);
  border-radius: 6px;
  position: relative;
  border: 1px solid var(--border-solid);
  transition: all 0.3s ease;
}

.ct-menu-category-item:hover,
.slick-current,
.slick-active.active {
  border-color: var(--primary-color);
  background: var(--surface-2);
}

.slick-current h6,
.ct-menu-category-item:hover h6 {
  color: var(--primary-color);
}

.ct-menu-category-item h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--heading-color);
  transition: color 0.3s;
}

.ct-menu-category-item p {
  font-size: 11px;
  text-align: center;
  color: var(--paragraph-color);
}

.menu-category-desc {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 40px;
}

.menu-category-thumb {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  margin: 0 auto;
  transition: 0.3s;
  position: absolute;
  top: -38px;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid var(--border-color);
  overflow: hidden;
  background: #1A1A1A;
}

.menu-category-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Prev/Next arrows */
.customPrevBtn,
.customNextBtn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border-color);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.customPrevBtn:hover,
.customNextBtn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.customPrevBtn:hover svg path,
.customNextBtn:hover svg path {
  fill: #0D0D0D;
}

.customPrevBtn svg path,
.customNextBtn svg path {
  fill: var(--white-color);
  transition: fill 0.3s;
}

/* ─── PRODUCT CARDS ──────────────────────────── */
.product {
  margin-bottom: 0;
  background: var(--surface);
  border: 1px solid var(--border-solid);
  border-radius: 12px;
  height: 460px;
  overflow: hidden;
  transition: all 0.35s ease;
}

.product:hover {
  border-color: var(--primary-color);
  box-shadow: 0 12px 48px rgba(201,168,76,0.15);
  transform: translateY(-3px);
}

.product .product-thumb {
  display: block;
  text-align: center;
  margin-bottom: 0;
  transition: 0.3s;
  overflow: hidden;
}

.product .product-thumb img {
  width: 100%;
  height: 285px;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 0;
}

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

.product .product-body {
  background-color: var(--surface);
  border-radius: 0 0 12px 12px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.product .product-desc h4 a {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  color: var(--heading-color);
  transition: color 0.3s;
}

.product .product-desc h4 a:hover { color: var(--primary-color); }

.product-desc .rating { cursor: pointer; }

.product-desc .rating-num {
  font-size: 11px;
  color: var(--paragraph-color);
  line-height: 24px;
}

.product-desc .rating-wrap {
  display: flex;
  gap: 5px;
  align-items: center;
}

.product .product-price {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--primary-color);
  margin: 0;
  border: none;
  display: inline-block;
  padding: 0;
}

.product .product-controls {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.order-item {
  width: 44px;
  height: 44px;
  background: var(--surface-2);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.order-item:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}

.order-item:hover svg path { fill: #0D0D0D; }

.order-item svg path {
  fill: var(--white-color);
  transition: fill 0.3s;
}

.product .product-body .product-desc h4 { margin-bottom: 0; text-align: left; }
.product .product-body .product-desc { text-align: left; }

/* Related products */
.related-products .product .product-thumb img {
  width: 100%;
  height: 285px;
  object-fit: cover;
}

/* menu-v2 */
.menu-v2 .product {
  position: relative;
  background-color: var(--surface);
  border-radius: 12px;
  padding: 0;
}

.menu-v2 .product .product-thumb { margin-bottom: 0; }

.menu-v2 .product .product-body {
  padding: 24px;
  background-color: transparent;
  border-radius: 0;
  text-align: left;
  box-shadow: none;
}

/* ─── PRODUCT SINGLE ─────────────────────────── */
.product-single { padding-top: 180px; }

.product-thumb img {
  width: 100%;
  max-width: 520px;
  height: 480px;
  object-fit: cover;
  box-shadow: 0 16px 60px rgba(0,0,0,0.6);
  border-radius: 12px;
}

.product-single .title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 52px;
  line-height: 1.1;
  color: var(--heading-color);
  margin-bottom: 0;
}

.product-single .product_description {
  font-size: 16px;
  line-height: 1.7;
  color: var(--paragraph-color);
}

.product-single .product-price {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--primary-color);
}

/* ─── ATC FORM ───────────────────────────────── */
.atc-form {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  flex-direction: column;
}

.atc-form label {
  font-size: 15px;
  line-height: 1.6;
  color: var(--heading-color);
}

.atc-form textarea {
  width: 100%;
  max-width: 420px;
  height: 90px;
  background: var(--surface);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--white-color);
  resize: none;
  transition: border-color 0.3s;
}

.atc-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.atc-form .qty {
  background: var(--surface);
  border: 1px solid var(--border-color);
  border-radius: 170px;
  padding: 8px;
  width: 130px;
  height: 50px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.qty span.qty-add,
.qty span.qty-subtract {
  width: 34px !important;
  height: 34px;
  background: var(--surface-2);
  border-radius: 170px;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white-color);
  transition: all 0.3s;
}

.qty span.qty-add:hover,
.qty span.qty-subtract:hover {
  background: var(--primary-color);
  color: #0D0D0D;
  border-color: var(--primary-color);
}

.qty input {
  background-color: transparent;
  border: 0;
  outline: none;
  width: 34px;
  height: 34px;
  text-align: center;
  font-weight: 600;
  color: var(--white-color);
}

.atc-form .form-group .qty input { height: 34px; }

.single_order {
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background: var(--gold-gradient);
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0D0D0D;
  border: none;
  cursor: pointer;
  padding: 0 28px;
  transition: all 0.3s ease;
}

.single_order:hover { box-shadow: 0 6px 28px rgba(201,168,76,0.5); }

.go_to_checkout {
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background: var(--gold-gradient);
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0D0D0D;
  border: none;
  cursor: pointer;
  padding: 0 28px;
  transition: all 0.3s ease;
}

.go_to_checkout:hover { box-shadow: 0 6px 28px rgba(201,168,76,0.5); }

/* ─── CART SIDEBAR ───────────────────────────── */
.cart-sidebar {
  width: 440px;
  height: 100vh;
  background: linear-gradient(180deg, #111111 0%, #0D0D0D 100%);
  border-left: 1px solid var(--border-color);
}

.cart-sidebar-header {
  background: var(--surface);
  border-radius: 0;
  border-bottom: 1px solid var(--border-color);
  padding: 14px 32px;
  width: 440px;
  height: 56px;
}

.cart-sidebar-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--heading-color);
}

.close-btn {
  border: 0;
  background: none;
  padding: 0;
  width: unset;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  gap: 8px;
  color: var(--paragraph-color);
  transition: color 0.3s;
}

.close-btn:hover { color: var(--primary-color); }

.cart-sidebar-body {
  position: relative;
  padding: 20px 28px;
  padding-top: 20px;
}

.cart-sidebar-body .img1,
.cart-sidebar-body .img2 { display: none; }

.cart-sidebar-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  background: var(--surface);
  border-top: 1px solid var(--border-color);
  padding: 24px 28px;
}

.cart-sidebar-scroll {
  height: 100% !important;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.slimScrollDiv { height: 390px !important; }
.slimScrollRail { display: none !important; }
.cart-sidebar-body .slimScrollDiv { padding-right: 0; }

/* Cart card */
.sidebar-cart-card {
  background: var(--surface);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: border-color 0.3s;
}

.sidebar-cart-card:hover { border-color: var(--primary-color); }

.sidebar-cart-card img {
  width: 68px;
  height: 80px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid var(--border-color);
}

.sidebar-cart-card .card-header {
  display: flex;
  align-items: center;
  background: transparent;
  gap: 12px;
  border-bottom: none;
}

.sidebar-cart-card .card-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.3;
  margin-bottom: 0;
  color: var(--heading-color);
}

.sidebar-cart-card .card-title small {
  font-size: 13px;
  color: var(--paragraph-color);
  font-family: 'Inter', sans-serif;
}

.sidebar-cart-card .card-description {
  font-size: 11px;
  color: var(--paragraph-color);
  margin-bottom: 0;
}

.sidebar-cart-card .card-prices ul {
  list-style: none;
  margin-top: 12px;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.sidebar-cart-card .card-prices ul li {
  font-size: 12px;
  color: var(--paragraph-color);
  margin: 0;
}

.sidebar-cart-card .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border-top: 1px solid var(--border-solid);
  padding-top: 10px;
}

.sidebar-cart-card .quantity {
  display: flex;
  align-items: center;
  background: var(--surface-2);
  border-radius: 50px;
  width: 100px;
  height: 36px;
  justify-content: space-between;
  padding: 4px;
}

.sidebar-cart-card .quantity button {
  width: 28px;
  height: 28px;
  background: var(--surface);
  border: none;
  border-radius: 50%;
  font-size: 15px;
  cursor: pointer;
  color: var(--white-color);
  transition: background 0.2s;
}

.sidebar-cart-card .quantity button:hover {
  background: var(--primary-color);
  color: #0D0D0D;
}

.sidebar-cart-card .quantity input {
  width: 24px;
  height: 24px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 13px;
  color: var(--white-color);
}

.sidebar-cart-card .delete-btn {
  position: absolute;
  top: 14px; right: 14px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,100,80,0.7);
  font-size: 16px;
  transition: color 0.2s;
}

.sidebar-cart-card .delete-btn:hover { color: #ff4040; }

.sidebar-cart-card .price-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
  font-size: 15px;
}

.price-section div {
  font-size: 13px;
  color: var(--heading-color);
}

/* Order summary in cart */
.order_summary h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--heading-color);
  padding: 0 12px;
}

.order_summary_inner p {
  font-size: 14px;
  color: var(--paragraph-color);
  margin-bottom: 0;
}

.order_summary_inner {
  display: flex;
  flex-direction: column;
  padding: 0 12px;
}

.order_summary .total {
  padding: 10px 12px;
  background: var(--surface-2);
  border-radius: 6px;
  border: 1px solid var(--border-color);
}

.order_summary .total p {
  font-weight: 600;
  font-size: 16px;
  color: var(--primary-color);
  margin-bottom: 0;
}

.total_section_cart { z-index: 9999999; position: relative; }
.cart-sidebar-body .checkout_btn { margin: 0 auto; }

/* ─── FOOTER ─────────────────────────────────── */
.ct-footer.footer-dark {
  background-color: #080808;
  border-top: 1px solid var(--border-color);
}

.footer-widget .widget-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--heading-color);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.ct-footer .footer-widget p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--paragraph-color);
  margin-bottom: 0;
}

.ct-footer.footer-dark .footer-bottom ul li a,
.ct-footer.footer-dark .footer-widget ul li a {
  font-size: 15px;
  color: var(--paragraph-color);
  transition: color 0.3s;
}

.ct-footer.footer-dark .footer-widget ul li a:hover,
.ct-footer.footer-dark .footer-bottom ul li a:hover {
  color: var(--primary-color);
}

.footer-widget ul li a:hover { transform: none; }
.footer-widget ul li a:hover::before { opacity: 0; }

.footer-bottom .footer-copyright {
  padding-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--border-solid);
  padding-top: 20px;
}

.footer-bottom .footer-copyright p {
  color: var(--paragraph-color);
  font-size: 14px;
}

.ct-footer .social-links { gap: 16px; }

.ct-footer .social-links li a {
  width: 40px;
  height: 40px;
  background: var(--surface);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.ct-footer .social-links li a:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.ct-footer .social-links li a:hover svg path { fill: #0D0D0D; }

/* ─── CONTACT PAGE ───────────────────────────── */
.contact-wrapper {
  display: flex;
  padding: 80px 0 0;
  background: #0D0D0D;
}

.ct-info-box {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 50px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.ct-info-body { display: flex; flex-direction: column; gap: 14px; }

.ct-info-body h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--heading-color);
}

.ct-info-body span {
  font-size: 16px;
  line-height: 1.6;
  color: var(--paragraph-color);
}

.contact-wrapper .form-control {
  background: var(--surface);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 12px 18px;
  font-size: 15px;
  color: var(--white-color);
  transition: border-color 0.3s;
}

.contact-wrapper .form-control::placeholder { color: var(--paragraph-color); }

.contact-wrapper .form-control:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
  background: var(--surface);
  color: var(--white-color);
}

.contact-wrapper textarea { height: 140px; }

.contact-page { padding: 140px 0 80px; }

.contact-page .title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 44px;
  margin-bottom: 0;
  color: var(--heading-color);
}

.contact-page .title span { color: var(--primary-color); }
.contact-page .subtitle { color: var(--paragraph-color); }

.contact-page .card {
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  width: 200px;
  height: 150px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-page .card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 8px 32px rgba(201,168,76,0.15);
}

.contact-page .card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  align-items: center;
}

.contact-page .card-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--heading-color);
  margin-bottom: 0;
}

.contact-page .card-text {
  font-size: 13px;
  color: var(--primary-color);
}

/* ─── AUTH / LOGIN / REGISTER ─────────────────── */
.login_page { padding-top: 140px; }

.auth-wrapper {
  display: flex;
  box-shadow: 0 20px 80px rgba(0,0,0,0.8);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.auth-form {
  flex: 1;
  background: var(--surface);
  padding: 60px;
  text-align: center;
}

.auth-form h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 32px;
  color: var(--heading-color);
  letter-spacing: 0.02em;
  margin-bottom: 0;
}

.auth-form .subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: var(--paragraph-color);
}

.auth-form label {
  font-size: 15px;
  color: var(--heading-color);
  text-align: left;
}

.auth-form .form-control {
  background: var(--surface-2);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 12px 12px 44px;
  font-size: 14px;
  color: var(--white-color);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.auth-form .form-control::placeholder { color: var(--paragraph-color); }

.auth-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
  background: var(--surface-2);
  color: var(--white-color);
  outline: none;
}

.auth-form .form-group {
  margin-bottom: 14px;
  text-align: left;
}

.auth-form .btn-custom {
  width: 100%;
  border-radius: 8px;
  min-width: unset;
}

.ct-social-login {
  cursor: pointer;
  display: flex !important;
  width: 100%;
  margin-bottom: 10px;
  text-align: center;
  white-space: nowrap;
  line-height: 100%;
  border: 1px solid var(--border-color) !important;
  font-size: 15px;
  font-weight: 400;
  transition: 0.3s;
  background: var(--surface-2) !important;
  border-radius: 8px;
  padding: 12px;
  color: var(--white-color) !important;
  text-decoration: none !important;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.ct-social-login:hover {
  border-color: var(--primary-color) !important;
  color: var(--primary-color) !important;
}

.auth-form .register_text {
  font-size: 16px;
  color: var(--paragraph-color);
  display: flex;
  justify-content: center;
  gap: 5px;
}

.auth-form .register_text a { color: var(--primary-color); }

.auth-form .icon-inside {
  position: absolute;
  top: 12px;
  left: 18px;
  color: var(--paragraph-color);
}

.auth-form .eyeIcon-inside {
  position: absolute;
  right: 18px;
  top: 14px;
  color: var(--paragraph-color);
  cursor: pointer;
}

.auth-form .forgot_password_text {
  font-size: 14px;
  color: var(--primary-color);
  text-align: right;
  margin-top: 8px;
}

.auth-description {
  width: 560px;
  padding: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-direction: column;
  background-position: center;
  background-size: cover;
  position: relative;
}

.auth-description::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,13,13,0.7) 0%, rgba(201,168,76,0.12) 100%);
}

.auth-description-inner { position: relative; z-index: 1; }

.auth-description-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 42px;
  color: #ffffff;
  text-align: left;
}

.auth-description-inner p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  text-align: left;
}

.forgot-password-page {
  width: 520px;
  padding: 50px;
  background: var(--surface);
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 80px rgba(0,0,0,0.8);
  border-radius: 16px;
  margin: 0 auto;
}

.forgot-password-page .auth-form { padding: 0; display: flex; flex-direction: column; gap: 50px; }

/* ─── CHECKOUT ───────────────────────────────── */
.checkout-page { padding-top: 140px; }

.checkout-page h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 34px;
  color: var(--heading-color);
}

.checkout-page h6 {
  font-weight: 600;
  font-size: 18px;
  color: var(--heading-color);
}

.checkout-page label {
  font-size: 15px;
  color: var(--paragraph-color);
}

.checkout-billing { display: flex; justify-content: flex-end; }

.checkout-billing .order-summary {
  background: var(--surface);
  width: 460px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 24px;
}

.checkout-billing h2,
.checkout-billing h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--heading-color);
  margin: 0 0 20px;
}

.checkout-billing .item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.checkout-billing .item-details {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.checkout-billing .item-details img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.checkout-billing .item-details h4 {
  margin: 0;
  font-size: 16px;
  color: var(--heading-color);
}

.checkout-billing .item-details ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.checkout-billing .item-details ul li {
  font-size: 12px;
  color: var(--paragraph-color);
}

.checkout-billing .item-details .note {
  font-size: 12px;
  color: var(--paragraph-color);
}

.checkout-billing .price {
  font-size: 14px;
  color: var(--heading-color);
}

.checkout-billing hr {
  border: 0;
  border-top: 1px solid var(--border-solid);
  margin: 10px 0;
  opacity: 1;
}

.checkout-billing .totals { margin-top: 30px; }

.checkout-billing .totals p {
  display: flex;
  justify-content: space-between;
  margin: 14px 0;
}

.checkout-billing .totals .total {
  font-size: 15px;
  color: var(--paragraph-color);
}

.checkout-billing .totals .total span {
  font-weight: 700;
  font-size: 18px;
  color: var(--primary-color);
}

.checkout-billing form { margin-top: 20px; }

.checkout-billing form label {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
  cursor: pointer;
  color: var(--paragraph-color);
}

.checkout-billing form input[type="radio"] { margin-right: 8px; accent-color: var(--primary-color); }

.checkout-billing form button {
  width: 100%;
  background: var(--gold-gradient);
  color: #0D0D0D;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: box-shadow 0.3s;
}

.checkout-billing form button:hover { box-shadow: 0 6px 24px rgba(201,168,76,0.45); }

.checkout-billing .shipping,
.checkout-billing .subtotal {
  font-size: 14px;
  color: var(--paragraph-color);
}

.checkout-billing .shipping span,
.checkout-billing .subtotal span {
  font-size: 14px;
  color: var(--heading-color);
}

.payment_card label { display: flex; gap: 10px; margin-bottom: 0; }

.payment_card label span {
  font-size: 14px;
  color: var(--paragraph-color);
}

.payment_card label input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary-color);
}

/* ─── OLD ORDERS ─────────────────────────────── */
.old_order_section { padding-top: 140px; }

.old_order_section .card {
  background: var(--surface);
  border: 1px solid var(--border-color);
  border-radius: 10px;
}

.old_order_section .card-header {
  padding: 14px 20px;
  background: transparent;
  border-bottom: 1px solid var(--border-solid);
}

.old_order_section .card-header h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--heading-color);
  margin-bottom: 0;
}

.old_order_section table th {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paragraph-color);
  background: var(--surface-2);
  height: 40px;
  font-family: 'Inter', sans-serif;
}

.old_order_section table tr { height: 46px; }

.old_order_section table td {
  background: transparent;
  border-bottom: 1px solid var(--border-solid);
  font-size: 15px;
  color: var(--heading-color);
}

.old_order_section .btn1 {
  padding: 6px 12px;
  border: 1px solid var(--primary-color);
  font-size: 13px;
  color: var(--primary-color);
  border-radius: 4px;
  transition: all 0.3s;
}

.old_order_section .btn1:hover {
  background: var(--primary-color);
  color: #0D0D0D;
}

.old_order_section .btn2 {
  padding: 6px 12px;
  border: 1px solid #C9A84C80;
  font-size: 13px;
  color: var(--paragraph-color);
  border-radius: 4px;
}

.old_order_section .btn2:hover {
  background: var(--primary-color);
  color: #0D0D0D;
  border-color: var(--primary-color);
}

.old_order_section .pagination .icon {
  width: 36px; height: 36px;
  background: var(--surface);
  border: 1px solid var(--border-color);
  border-radius: 500px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}

.old_order_section .pagination .icon.disabled { background: var(--surface-2); cursor: not-allowed; }

.old_order_section .pagination .icon:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.old_order_section .pagination .icon:hover svg path { stroke: #0D0D0D; }

.old_order_section .pagination .number {
  width: 36px; height: 36px;
  background: transparent;
  border: none;
  border-radius: 130px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: var(--paragraph-color);
  transition: all 0.3s;
}

.old_order_section .pagination .number.active,
.old_order_section .pagination .number:hover {
  background: var(--primary-color);
  color: #0D0D0D;
}

/* ─── ORDER DETAILS ──────────────────────────── */
.order_details_section { padding-top: 140px; }

.order_details_section .order-details {
  background: var(--surface);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  max-width: 820px;
  margin: 0 auto;
  padding: 24px;
}

.order_details_section .order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-solid);
  padding-bottom: 14px;
  margin-bottom: 20px;
}

.order_details_section .order-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--heading-color);
  margin-bottom: 0;
}

.order_details_section .order-header .order-info {
  list-style-type: disc;
  display: flex;
  gap: 24px;
  margin-bottom: 5px;
}

.order_details_section .order-header .order-info li {
  font-size: 13px;
  color: var(--paragraph-color);
}

.order_details_section .order-header .back-link {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 15px;
}

.order_details_section .billing-section,
.order_details_section .summary-section {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px;
  background: var(--surface-2);
}

.order_details_section .billing-section h3 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paragraph-color);
  border-bottom: 1px solid var(--border-solid);
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.order_details_section .billing-section p {
  font-size: 15px;
  color: var(--heading-color);
  margin-bottom: 0;
}

.order_details_section .summary-section strong { color: var(--primary-color); font-weight: 700; }

.order_details_section .products table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.order_details_section .products th,
.order_details_section .products td {
  text-align: left;
  border-bottom: 1px solid var(--border-solid);
  padding: 10px;
  background: transparent;
  font-size: 14px;
  color: var(--heading-color);
}

.order_details_section .products th {
  background: var(--surface-2);
  border: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paragraph-color);
}

.summary-section .top_section {
  border-bottom: 1px solid var(--border-solid);
  padding-bottom: 14px;
}

.summary-section .payment-method p:first-child,
.summary-section .order-id p:first-child {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paragraph-color);
  margin-bottom: 6px;
}

.summary-section .payment-method p:last-child,
.summary-section .order-id p:last-child {
  font-size: 14px;
  color: var(--heading-color);
  margin-bottom: 0;
}

.summary-section .hori-line { width: 1px; border: 1px solid var(--border-solid); }
.summary-section .bottom_section { margin-top: 12px; }

.summary-section .bottom_section p {
  padding: 0 0 12px;
  border-bottom: 1px solid var(--border-solid);
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--paragraph-color);
}

.summary-section .bottom_section span {
  font-weight: 500;
  font-size: 14px;
  color: var(--heading-color);
}

.summary-section .bottom_section .total {
  border-bottom: none;
  font-size: 16px;
  color: var(--heading-color);
}

.summary-section .bottom_section .total span {
  font-weight: 700;
  font-size: 18px;
  color: var(--primary-color);
}

.paragraph-color { color: var(--paragraph-color) !important; }

/* ─── TIMELINE ───────────────────────────────── */
.timeline .checkout-wrap {
  color: var(--heading-color);
  font-family: 'Inter', sans-serif;
  margin: 40px auto;
  position: relative;
}

.timeline ul.checkout-bar { margin: 0 20px; }

.timeline ul.checkout-bar li {
  color: var(--paragraph-color);
  display: block;
  font-size: 14px;
  font-weight: 400;
  padding: 14px 20px 14px 80px;
  position: relative;
  line-height: 1.5;
}

.timeline ul.checkout-bar li:before {
  background: transparent;
  border: 2px dashed var(--primary-color);
  border-radius: 50%;
  color: var(--primary-color);
  font-size: 14px;
  left: 20px;
  line-height: 40px;
  height: 35px;
  position: absolute;
  text-align: center;
  top: 4px;
  width: 35px;
  z-index: 999;
}

.timeline ul.checkout-bar li.active { color: #4ade80; }

.timeline ul.checkout-bar li.active:before {
  background: var(--primary-color);
  border: none;
  color: #0D0D0D;
}

.timeline ul.checkout-bar li.visited { background: var(--surface-2); color: var(--primary-color); }

.timeline ul.checkout-bar li.visited:before {
  background: var(--primary-color);
  border: none;
  color: #0D0D0D;
}

@media all and (min-width: 800px) {
  .timeline .checkout-bar li.active:after {
    background-color: var(--primary-color);
    content: '';
    height: 8px;
    width: 93%;
    left: 50%;
    position: absolute;
    top: -45px;
    z-index: 0;
  }

  .timeline .checkout-wrap { margin: 80px auto; margin-bottom: 120px; }

  .timeline ul.checkout-bar {
    background-color: var(--surface-2);
    border-radius: 15px;
    height: 8px;
    margin: 0 auto;
    padding: 0;
    width: 100%;
  }

  .timeline ul.checkout-bar:before {
    background-color: var(--primary-color);
    border-radius: 15px;
    content: ' ';
    height: 8px;
    left: 0;
    position: absolute;
    width: 0%;
  }

  .timeline ul.checkout-bar li {
    display: inline-block;
    margin: 50px 0 0;
    padding: 0;
    text-align: center;
    width: 24%;
  }

  .timeline ul.checkout-bar li:before {
    height: 45px;
    left: 40%;
    line-height: 42px;
    position: absolute;
    top: -65px;
    width: 45px;
    z-index: 99;
  }

  .timeline ul.checkout-bar li.visited { background: none; }

  .timeline ul.checkout-bar li.visited:after {
    background-color: var(--primary-color);
    content: '';
    height: 8px;
    left: 50%;
    position: absolute;
    top: -45px;
    width: 100%;
    z-index: 99;
  }

  .timeline ul.checkout-bar li.next::after {
    background-color: var(--surface-2);
    content: '';
    height: 8px;
    left: 63%;
    position: absolute;
    top: -45px;
    width: 81%;
    z-index: 99;
  }
}

/* ─── ORDER SUCCESS ───────────────────────────── */
.payment_success_section { padding-top: 140px; }

.payment_success_section .success_col {
  background: var(--surface);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  justify-content: center;
  display: flex;
  height: 680px;
  align-items: center;
  flex-direction: column;
  gap: 40px;
}

.payment_success_section .payment-success {
  width: 360px;
  padding: 28px;
  background: var(--surface-2);
  border: 1px solid var(--border-color);
  box-shadow: 0 12px 48px rgba(0,0,0,0.5);
  border-radius: 20px;
}

.payment_success_section .payment_success {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.payment-success-icon { display: flex; justify-content: center; margin-bottom: 16px; }

.payment_success_section .payment_success p:first-child {
  font-size: 15px;
  color: var(--paragraph-color);
  margin-bottom: 0;
}

.payment_success_section .payment_success p:last-child {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 26px;
  color: var(--heading-color);
  margin-bottom: 0;
}

.payment_success_section .payment_success_hr {
  width: 100%;
  border: 1px solid var(--border-solid);
  margin: 16px 0;
  opacity: 1;
}

.payment_success_section .order-header {
  gap: 12px;
  display: flex;
  flex-direction: column;
}

.payment_success_section .payment-info p {
  margin-bottom: 0;
  font-size: 13px;
  color: var(--paragraph-color);
}

.payment_success_section .payment-info p:last-child {
  font-weight: 500;
  color: var(--heading-color);
}

.payment_success_section .payment_amount_hr {
  width: 100%;
  border: 1px dashed var(--border-solid);
  margin: 10px 0;
  opacity: 1;
  background: transparent;
}

.payment_success_section .payment-success-btn a {
  border-radius: 8px;
  width: 100%;
  text-transform: none;
}

/* ─── PHOTO / GALLERY ─────────────────────────── */
.photo-card img {
  width: 300px;
  height: 380px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--border-color);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.photo-card:hover img {
  border-color: var(--primary-color);
  box-shadow: 0 12px 40px rgba(201,168,76,0.2);
}

/* ─── STAR RATING ─────────────────────────────── */
.full-stars-example-two .rating {
  unicode-bidi: bidi-override;
  direction: rtl;
  text-align: center;
}

.full-stars-example-two .rating > span {
  display: inline-block;
  position: relative;
  width: 1.1em;
  font-size: 13px;
  color: var(--primary-color);
  cursor: pointer;
}

.full-stars-example-two .rating > span:hover,
.full-stars-example-two .rating > span:hover ~ span {
  color: var(--primary-light);
}

/* ─── COLOR PICKER (CART FAB) ─────────────────── */
.color-picker {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 20px;
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 9999;
}

.color-picker .color-picker-toggle {
  width: 58px;
  height: 58px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(201,168,76,0.4);
  transition: box-shadow 0.3s;
}

.color-picker .color-picker-toggle:hover {
  box-shadow: 0 6px 36px rgba(201,168,76,0.6);
}

.color-picker-toggle svg path { fill: #0D0D0D; }
.cart-item-count-static { background: var(--primary-color); }

.color-picker .color-picker-content {
  width: 210px;
  background: var(--surface);
  border: 1px solid var(--border-color);
  padding: 15px;
  position: relative;
  transition: left 0.3s ease-in-out, opacity 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  border-radius: 8px;
}

.color-picker-content.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.color-picker-content h5 {
  font-size: 12px;
  color: var(--paragraph-color);
  margin-bottom: 14px;
}

.color-picker .color-list {
  display: flex;
  column-gap: 18px;
  row-gap: 9px;
  flex-wrap: wrap;
}

.color-picker .color-list li {
  width: 28px;
  height: 28px;
  margin: 0;
  cursor: pointer;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: border-color 0.3s;
}

.color-picker .color-list li:hover { border-color: rgba(255,255,255,0.4); }

.color-picker .color-list .color1 { background: #ff1010; }
.color-picker .color-list .color2 { background: #C9A84C; }
.color-picker .color-list .color3 { background: #00833e; }
.color-picker .color-list .color4 { background: #d68240; }
.color-picker .color-list .color5 { background: #1abc9c; }
.color-picker .color-list .color6 { background: #7B3F00; }

.color-list .active::before {
  content: '✓';
  color: #fff;
  font-size: 16px;
  position: absolute;
  left: 24%;
  top: 8%;
}

.color-picker-content .right_arrow {
  position: absolute;
  right: -14px;
  top: 40%;
}

/* ─── BACK BUTTON ─────────────────────────────── */
.back-button {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: var(--surface);
  border: 1px solid var(--border-color);
  color: var(--primary-color);
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  z-index: 9000;
}

.back-button:hover {
  background: var(--primary-color);
  color: #0D0D0D;
  border-color: var(--primary-color);
}

/* ─── FORMS (GLOBAL) ──────────────────────────── */
input, select, textarea {
  font-family: 'Inter', sans-serif;
}

.form-control {
  background: var(--surface);
  border: 1px solid var(--border-color);
  color: var(--white-color);
  border-radius: 6px;
}

.form-control:focus {
  background: var(--surface);
  border-color: var(--primary-color);
  color: var(--white-color);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
  outline: none;
}

.form-control::placeholder { color: var(--paragraph-color); }

select option {
  background: var(--surface);
  color: var(--white-color);
}

/* ─── OWL CAROUSEL ───────────────────────────── */
.owl-carousel .owl-dots.disabled {
  margin-top: 30px !important;
  display: block;
}

.owl-theme .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 2px;
  background: var(--border-solid);
  display: block;
  border-radius: 30px;
  transition: background 0.3s;
}

.owl-carousel button.active { border: 1px solid var(--primary-color) !important; }

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--primary-color);
}

/* ─── STATUS BADGES ───────────────────────────── */
.approved {
  border: 1px solid #23a26d;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(35,162,109,0.15);
  color: #4ade80;
}

.decline {
  border: 1px solid #f87171;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(248,113,113,0.12);
  color: #f87171;
}

.pending {
  border: 1px solid #C9A84C;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(201,168,76,0.12);
  color: var(--primary-color);
}

/* ─── UTILITY ─────────────────────────────────── */
.gap40px { gap: 40px; }
.gap35px { gap: 35px; }
.gap30px { gap: 30px; }
.gap25px { gap: 25px; }
.gap20px { gap: 20px; }
.gap16px { gap: 16px; }
.gap15px { gap: 15px; }
.gap12px { gap: 12px; }
.gap10px { gap: 10px; }
.gap60px { gap: 60px; }
.gap70px { gap: 70px; }

.section-map .ct-contact-map-wrapper { height: 100%; }

.no_access { pointer-events: none; }
.button_show_cl { display: none; }

.text-center-total-amount {
  text-align: center;
  display: block;
  padding-top: 11px !important;
}

.error_txt p { color: #f87171; text-align: left; margin-left: 3px; }
.red_error { color: #f87171; }
.green_error { color: #4ade80; }

.callout.callout-danger,
.alert-error,
.label-danger,
.modal-danger .modal-body {
  background-color: rgba(248,113,113,0.2) !important;
  border: 1px solid rgba(248,113,113,0.4);
}

.callout p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 1px;
  color: var(--white-color);
  padding: 8px;
}

.p_msg { margin-bottom: 0; }
.display_none { display: none; }

/* ─── SCROLLBAR ───────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #0D0D0D; }
::-webkit-scrollbar-thumb { background: #2A2A2A; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-color); }

/* ─── HEIGHT ADJUSTMENTS ─────────────────────── */
@media (max-height: 800px) {
  .cart-sidebar { height: 100%; }
  .slimScrollDiv { height: 300px !important; }
}

/* ─── SECTION ALTERNATE BACKGROUNDS ─────────── */
.section:nth-child(even) { background: #101010; }

/* Override any white backgrounds from base styles */
.product-body,
.contact-wrapper,
.menu_page .section,
.about-us-page .section {
  background: transparent !important;
}

/* Ensure modals and dropdowns fit dark theme */
.modal-content {
  background: var(--surface);
  border: 1px solid var(--border-color);
  color: var(--white-color);
}

.modal-header {
  border-bottom: 1px solid var(--border-solid);
  background: var(--surface-2);
}

.modal-footer {
  border-top: 1px solid var(--border-solid);
  background: var(--surface-2);
}

.modal-title { color: var(--heading-color); font-family: 'Cormorant Garamond', serif; font-size: 22px; }

/* ─── CATCH-ALL DARK OVERRIDES ───────────────── */
/* Ensure no white/light surfaces bleed through from base CSS */

body,
.section-light,
.contact-wrapper,
.auth-page-wrapper,
.reservation-section,
.about-us-page > *,
.menu_page > * { background-color: transparent !important; }

body { background-color: #0D0D0D !important; }

/* Table defaults */
table { color: var(--heading-color); }
thead th { color: var(--paragraph-color) !important; background: var(--surface-2) !important; border-color: var(--border-solid) !important; }
tbody td { border-color: var(--border-solid) !important; background: transparent !important; color: var(--heading-color) !important; }
tbody tr:hover td { background: var(--surface-2) !important; }

/* Input overrides */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
textarea,
select {
  background: var(--surface) !important;
  color: var(--white-color) !important;
  border-color: var(--border-color) !important;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12) !important;
  outline: none;
}

/* Alert boxes */
.alert { border-radius: 6px; }
.alert-success { background: rgba(74,222,128,0.1) !important; border-color: #4ade80 !important; color: #4ade80 !important; }
.alert-danger, .alert-error { background: rgba(248,113,113,0.1) !important; border-color: #f87171 !important; color: #f87171 !important; }
.alert-warning { background: rgba(201,168,76,0.1) !important; border-color: var(--primary-color) !important; color: var(--primary-color) !important; }
.alert-info { background: rgba(96,165,250,0.1) !important; border-color: #60a5fa !important; color: #60a5fa !important; }

/* Nav mobile aside */
.main-sidebar { background: #0D0D0D !important; border-right: 1px solid var(--border-color) !important; }

/* Toastr */
#toast-container > div { opacity: 0.96; border-radius: 6px !important; }
