/* ============================================================
   ShopKaro Premium UI — style.css
   Design: Luxury Editorial — Deep Navy + Warm Gold
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700&display=swap');

/* ── Design Tokens ── */
:root {
  --sk-gold: #c9a84c;
  --sk-gold-bright: #e8c873;
  --sk-gold-light: rgba(201, 168, 76, 0.15);
  --sk-gold-glow: rgba(201, 168, 76, 0.35);
  --sk-navy: #0d1b2a;
  --sk-navy-dark: #070d14;
  --sk-dark: #0e0e16;
  --sk-darker: #08080f;
  --sk-cream: #f8f6f0;
  --sk-cream-card: #ffffff;
  --sk-white: #ffffff;
  --sk-gray: #7d7d8e;
  --sk-border: #e6dfd1;
  --sk-border-subtle: rgba(201, 168, 76, 0.18);
  --sk-green: #27a85a;
  --sk-red: #e04444;
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.38s cubic-bezier(0.25, 0.8, 0.25, 1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 50px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.14);
  --shadow-gold: 0 8px 30px rgba(201, 168, 76, 0.28);
}

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; }

html {
  overflow-x: hidden;
  max-width: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
  background: var(--sk-cream);
  color: #1a1a24;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100%;
}

h1, h2, h3, h4, .brand-font {
  font-family: 'Playfair Display', serif;
}

/* ── Custom Scrollbar ── */
::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
::-webkit-scrollbar-track {
  background: #f0ebe1;
}
::-webkit-scrollbar-thumb {
  background: #c9a84c;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #0d1b2a;
}

/* ── Modern Keyframes ── */
@keyframes skFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-7px); }
}

@keyframes skPulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.5); }
  50% { box-shadow: 0 0 0 12px rgba(201, 168, 76, 0); }
}

@keyframes skBadgePop {
  0% { transform: scale(0.6); opacity: 0; }
  70% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes skFadeSlideUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes skShimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}


/* ── Spinner ── */
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease-out, visibility 0s linear .5s;
  z-index: 99999;
}
#spinner.show {
  transition: opacity .5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}


/* ── Buttons ── */
.btn {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  transition: var(--transition);
  border-radius: var(--radius-sm);
}
.btn-square  { width: 38px; height: 38px; }
.btn-sm-square { width: 32px; height: 32px; }
.btn-md-square { width: 46px; height: 46px; }
.btn-lg-square { width: 58px; height: 58px; }

.btn-square, .btn-sm-square, .btn-md-square, .btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.btn-gold {
  background: var(--sk-gold);
  color: #000;
  border: none;
}
.btn-gold:hover {
  background: var(--sk-navy);
  color: var(--sk-gold);
}

.btn-navy {
  background: var(--sk-navy);
  color: var(--sk-gold);
  border: none;
}
.btn-navy:hover {
  background: var(--sk-gold);
  color: #000;
}

.back-to-top {
  position: fixed;
  width: 46px; height: 46px;
  right: 28px; bottom: 28px;
  z-index: 99;
  background: var(--sk-navy);
  color: var(--sk-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: var(--transition);
}
.back-to-top:hover {
  background: var(--sk-gold);
  color: #000;
  transform: translateY(-3px);
}


/* ── Top Bar ── */
.topbar { letter-spacing: .4px; }
.topbar .top-link { display: flex; align-items: center; justify-content: center; }
.topbar .top-link a { margin-right: 10px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color .2s; }
.topbar .top-link a:hover { color: var(--sk-gold); }

/* Scrolling notice */
#note { width: 100%; max-width: 500px; overflow: hidden; }
#note small {
  position: relative;
  display: inline-block;
  animation: marqueeScroll 8s linear infinite;
}
@keyframes marqueeScroll {
  from { left: -100%; }
  to { left: 100%; }
}


/* ── Luxury Carousel & Responsive Banner ── */
.carousel-item {
  position: relative;
  overflow: hidden;
}
.carousel-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 13, 20, 0.85) 0%, rgba(13, 27, 42, 0.55) 50%, rgba(7, 13, 20, 0.3) 100%);
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 768px) {
  .carousel-item::after {
    background: linear-gradient(180deg, rgba(7, 13, 20, 0.4) 0%, rgba(7, 13, 20, 0.75) 50%, rgba(7, 13, 20, 0.9) 100%);
  }
}

.carousel-caption {
  position: absolute;
  inset: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 2;
  padding: 20px 0;
  text-align: left;
}

.carousel-item p {
  max-width: 620px;
  margin-bottom: 24px;
}

/* ── Carousel Controls (Prev/Next) ── */
.carousel-control-prev,
.carousel-control-next {
  width: 48px;
  height: 48px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(13, 27, 42, 0.7);
  border: 1px solid rgba(201, 168, 76, 0.4);
  backdrop-filter: blur(8px);
  opacity: 0.85;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 50%;
  z-index: 5;
}

.carousel-control-prev {
  left: 20px;
}
.carousel-control-next {
  right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--sk-gold);
  border-color: var(--sk-gold);
  opacity: 1;
  transform: translateY(-50%) scale(1.08);
}
.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  filter: brightness(0);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 18px;
  height: 18px;
}

/* ── Indicators ── */
#carouselId .carousel-indicators {
  margin-bottom: 18px;
  gap: 6px;
  z-index: 4;
}

#carouselId .carousel-indicators li {
  width: 10px;
  height: 6px;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  border-radius: 4px;
  opacity: 0.7;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  margin: 0 3px;
}

#carouselId .carousel-indicators li.active {
  width: 32px;
  background: var(--sk-gold);
  opacity: 1;
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.6);
}

/* ── Responsive Viewport Adjustments ── */
@media (max-width: 992px) {
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }
  .carousel-control-prev { left: 12px; }
  .carousel-control-next { right: 12px; }
}

@media (max-width: 576px) {
  .carousel-control-prev,
  .carousel-control-next {
    display: none !important;
  }
  #carouselId .carousel-indicators {
    margin-bottom: 12px;
  }
}

/* Page Header */
.page-header {
  background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)), url(../img/banner10.jpg) center center no-repeat;
  background-size: cover;
}
.page-header .breadcrumb-item+.breadcrumb-item::before { color: #fff; }
.page-header .breadcrumb-item,
.page-header .breadcrumb-item a { font-size: 17px; color: #fff; }


/* ── Services ── */
.services .services-item {
  box-shadow: 0 4px 30px rgba(0,0,0,.1);
  width: 100%; height: 100%;
  border-radius: var(--radius-md);
  padding: 10px 0;
  position: relative;
}
.services-content::after {
  position: absolute; content: "";
  width: 100%; height: 0;
  top: 0; left: 0;
  border-radius: var(--radius-md);
  background: rgba(13, 27, 42, 0.88);
  transition: .4s;
}
.services-item:hover .services-content::after { height: 100%; opacity: 1; }
.services-item:hover .services-content-icon { position: relative; z-index: 2; }
.services-item .services-content-icon i,
.services-item .services-content-icon p { transition: .4s; }
.services-item:hover .services-content-icon i { color: var(--sk-gold) !important; }
.services-item:hover .services-content-icon p { color: #fff; }


/* ── Category Cards ── */
.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(.25,.8,.25,1), box-shadow 0.35s;
  box-shadow: 0 6px 24px rgba(0,0,0,.1);
  cursor: pointer;
}
.category-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
}
.category-card img {
  height: 400px;
  object-fit: cover;
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.category-card:hover img { transform: scale(1.08); }
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.85) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  padding: 24px;
  display: flex;
  align-items: flex-end;
  border-radius: var(--radius-lg);
  transition: background 0.3s;
}
.custom-btn {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 32px;
  border-radius: 50px;
  background: var(--sk-gold);
  border: none;
  color: #000;
  transition: var(--transition);
}
.custom-btn:hover {
  background: #fff;
  color: #000;
  transform: scale(1.04);
}


/* ── Product Cards ── */
.product-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,.14);
}
.product-img {
  height: 300px;
  object-fit: cover;
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
  transition: transform 0.5s ease;
}
.product-card:hover .product-img { transform: scale(1.06); }
.product-content {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 42, 0.72);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 24px;
  border-radius: var(--radius-lg);
}
.product-card:hover .product-content { opacity: 1; }
.product-content h6 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 8px;
}
.product-content p { font-size: 1rem; font-weight: 600; color: rgba(255,255,255,.9); }


/* ── Nav Icons ── */
.nav-icon {
  text-decoration: none;
  transition: transform .2s ease;
}
.nav-icon:hover { transform: scale(1.12); }

@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}
@media (max-width: 991px) {
  .navbar-nav { text-align: center; }
  .d-flex.align-items-center { justify-content: center; width: 100%; padding-top: 10px; }
  .nav-item.dropdown { text-align: center; width: 100%; }
}


/* ── Testimonials ── */
.testimonial-item { background: #f0ece4; border-radius: var(--radius-md); }
.testimonial-message { width: 100%; max-width: 350px; height: 200px; overflow: auto; text-align: justify; }
.testimonial-message::-webkit-scrollbar { display: none; }

.testimonial-carousel .owl-dots { margin-top: 15px; display: flex; align-items: flex-end; justify-content: center; }
.testimonial-carousel .owl-dot {
  position: relative; display: inline-block; margin: 0 5px;
  width: 15px; height: 15px;
  background: #ccc; border-radius: 15px; transition: .4s;
}
.testimonial-carousel .owl-dot.active { width: 30px; background: var(--sk-gold); }
.testimonial-carousel .owl-item.center { position: relative; z-index: 1; }
.testimonial-carousel .owl-item.center .testimonial-item {
  background: #fff !important;
  box-shadow: 0 0 30px rgba(0,0,0,.1);
}


/* ── Team ── */
.team-item {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-item:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,.15); }
.team-img { border-radius: var(--radius-md); box-shadow: 0 4px 16px rgba(0,0,0,.1); transition: var(--transition); }
.team-img:hover { box-shadow: 0 10px 32px rgba(0,0,0,.25); }
.team-icon .btn { transition: background .25s, transform .2s; }
.team-icon .btn:hover { background: var(--sk-navy); transform: scale(1.05); }

.team-carousel .owl-stage { position: relative; width: 100%; height: 100%; }
.team-carousel .owl-nav { position: absolute; top: -100px; right: 50px; display: flex; }
.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
  width: 52px; height: 52px;
  border-radius: 52px;
  margin-left: 12px;
  background: var(--sk-gold); color: #000;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover { background: var(--sk-navy); color: var(--sk-gold); }

@media (max-width: 992px) {
  .team-carousel { margin-top: 3rem; }
  .team-carousel .owl-nav { top: -80px; left: 50%; right: auto; transform: translateX(-50%); margin-left: -15px; }
}


/* ── Contact ── */
.contact-detail::before {
  position: absolute; content: "";
  height: 50%; width: 100%; top: 0; left: 0;
  background: linear-gradient(rgba(210,243,235,1), rgba(230,250,245,.3)), url(../img/background.jpg) center no-repeat;
  background-size: cover;
  border-radius: var(--radius-md);
  z-index: -1;
}
.contact-map { background: var(--sk-gold); }
.contact-form { background: var(--sk-gold); }


/* ── Footer ── */
.footer .short-link a,
.footer .help-link a,
.footer .contact-link a { transition: var(--transition); }
.footer .short-link a:hover,
.footer .help-link a:hover,
.footer .contact-link a:hover { letter-spacing: 1px; color: var(--sk-gold); }
.footer .hightech-link a:hover { background: var(--sk-gold); border: 0; }


/* ── Mobile Filter Collapse ── */
#mobileFilters { transition: all .3s ease-in-out; }


/* ── Order Progress ── */
.order-progress { position: relative; margin-top: 20px; }
.order-step { flex: 1; position: relative; text-align: center; }
.status-circle {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid #ddd;
  background: #fff;
  display: flex; justify-content: center; align-items: center;
  margin: 0 auto;
  transition: var(--transition);
}
.status-circle.completed { background: var(--sk-navy); border-color: var(--sk-navy); color: var(--sk-gold); }
.progress-line-container {
  position: absolute;
  top: 16px; left: 0;
  width: 100%; height: 4px;
  background: #e8e0d0;
  z-index: -1;
  border-radius: 4px;
}
.progress-line { height: 100%; background: var(--sk-gold); transition: width .5s ease; border-radius: 4px; }


/* ── Animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-in { animation: fadeInUp 0.4s ease-in-out forwards; }


/* ── Scrollbar ── */
.scrollbar-thin::-webkit-scrollbar { width: 5px; }
.scrollbar-thin::-webkit-scrollbar-thumb { background: rgba(150,150,150,.35); border-radius: 10px; }

/* Global scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f0ece4; }
::-webkit-scrollbar-thumb { background: rgba(201,168,76,.4); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--sk-gold); }


/* ── Selection ── */
::selection { background: var(--sk-gold, #c9a84c); color: #fff; }

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

  .wl-root {
    background: #faf9f6;
    min-height: 100vh;
    padding: 48px 0 120px;
    position: relative;
  }
  .wl-root::before {
    content: ''; position: fixed; top: -300px; right: -300px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .wl-container { max-width: 1100px; margin: 0 auto; padding: 0 32px; }

  .wl-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 40px; padding-bottom: 24px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }
  .wl-header-left {}
  .wl-eyebrow {
    font-family: 'DM Sans', sans-serif; font-size: 10px;
    font-weight: 500; letter-spacing: 3px; text-transform: uppercase;
    color: #a5822f; margin: 0 0 8px;
  }
  .wl-title {
    font-family: 'Cormorant Garamond', serif; font-size: 2.4rem;
    font-weight: 300; color: #1a1a1a; margin: 0; line-height: 1.1;
  }
  .wl-title em { font-style: italic; color: #a5822f; }
  .wl-count {
    font-family: 'DM Sans', sans-serif; font-size: 12px;
    font-weight: 300; color: rgba(26,26,26,0.45);
    margin-top: 6px;
  }
  .wl-shop-link {
    font-family: 'DM Sans', sans-serif; font-size: 11px;
    font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
    color: rgba(26,26,26,0.5); text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,0.15); padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
  }
  .wl-shop-link:hover { color: #a5822f; border-color: #a5822f; }

  /* Table */
  .wl-table-wrap {
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 4px; overflow: hidden;
    background: #ffffff;
  }
  .wl-table {
    width: 100%; border-collapse: collapse;
  }
  .wl-table thead tr {
    background: rgba(201,168,76,0.1);
    border-bottom: 1px solid rgba(201,168,76,0.25);
  }
  .wl-table thead th {
    font-family: 'DM Sans', sans-serif; font-size: 9px;
    font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase;
    color: rgba(26,26,26,0.55); padding: 16px 18px; text-align: left;
  }
  .wl-table thead th.center { text-align: center; }
  .wl-table tbody tr {
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: background 0.2s;
  }
  .wl-table tbody tr:last-child { border-bottom: none; }
  .wl-table tbody tr:hover { background: rgba(0,0,0,0.015); }
  .wl-table td, .wl-table th {
    padding: 18px 18px; vertical-align: middle;
  }
  .wl-img-cell { width: 70px; }
  .wl-img-link {
    display: block; width: 56px; height: 56px;
    border-radius: 4px; overflow: hidden;
    border: 1px solid rgba(0,0,0,0.08);
  }
  .wl-img { width: 100%; height: 100%; object-fit: cover; }
  .wl-product-name {
    font-family: 'Cormorant Garamond', serif; font-size: 1rem;
    font-weight: 400; color: #1a1a1a; margin: 0 0 3px;
  }
  .wl-product-brand {
    font-family: 'DM Sans', sans-serif; font-size: 11px;
    font-weight: 300; color: rgba(26,26,26,0.45);
  }
  .wl-badge {
    display: inline-block;
    font-family: 'DM Sans', sans-serif; font-size: 10px;
    padding: 3px 10px; border-radius: 20px; font-weight: 400;
  }
  .wl-badge-color {
    background: rgba(0,0,0,0.05); color: rgba(26,26,26,0.6);
  }
  .wl-badge-size {
    background: rgba(0,0,0,0.05); color: rgba(26,26,26,0.6);
  }
  .wl-price {
    font-family: 'DM Sans', sans-serif; font-size: 14px;
    font-weight: 500; color: #1a1a1a;
  }
  .wl-stock-ok {
    font-family: 'DM Sans', sans-serif; font-size: 11px;
    color: #1e8a4a;
  }
  .wl-stock-out {
    font-family: 'DM Sans', sans-serif; font-size: 11px;
    color: #d84545;
  }
  .wl-btn-cart {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 50%;
    background: #c9a84c; color: #ffffff;
    text-decoration: none; transition: background 0.2s, transform 0.15s;
    font-size: 14px;
  }
  .wl-btn-cart:hover { background: #b6953d; transform: scale(1.08); }
  .wl-btn-delete {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 50%; background: none;
    border: 1px solid rgba(200,60,60,0.25); color: rgba(200,60,60,0.6);
    cursor: pointer; transition: all 0.2s;
  }
  .wl-btn-delete:hover {
    background: rgba(200,60,60,0.08); border-color: rgba(200,60,60,0.6);
    color: #d84545;
  }

  /* Empty state */
  .wl-empty {
    text-align: center; padding: 100px 20px;
  }
  .wl-empty-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 80px; height: 80px; border: 1px solid rgba(201,168,76,0.3);
    border-radius: 50%; margin-bottom: 24px; color: rgba(165,130,47,0.6);
  }
  .wl-empty-title {
    font-family: 'Cormorant Garamond', serif; font-size: 2rem;
    font-weight: 300; color: rgba(26,26,26,0.65); margin: 0 0 10px;
  }
  .wl-empty-desc {
    font-family: 'DM Sans', sans-serif; font-size: 13px;
    color: rgba(26,26,26,0.4); margin-bottom: 32px;
  }
  .wl-empty-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: #c9a84c; color: #ffffff; text-decoration: none;
    font-family: 'DM Sans', sans-serif; font-size: 11px;
    font-weight: 500; letter-spacing: 3px; text-transform: uppercase;
    padding: 14px 32px; border-radius: 2px;
    transition: background 0.2s, transform 0.15s;
  }
  .wl-empty-btn:hover { background: #b6953d; transform: translateY(-2px); }

.about-section {
          padding: 100px 0;
          background: #f7f4ef;
          overflow: hidden;
        }
        .about-image-stack {
          position: relative;
          height: 520px;
        }
        .about-img-main {
          position: absolute;
          top: 0; left: 0;
          width: 75%;
          height: 400px;
          object-fit: cover;
          border-radius: 16px;
          box-shadow: 0 24px 60px rgba(13,27,42,0.18);
        }
        .about-img-secondary {
          position: absolute;
          bottom: 0; right: 0;
          width: 72%;
          height: 320px;
          object-fit: cover;
          border-radius: 16px;
          box-shadow: 0 24px 60px rgba(13,27,42,0.22);
          border: 5px solid #f7f4ef;
        }
        .about-badge {
          position: absolute;
          top: 50%; left: 50%;
          transform: translate(-50%, -50%);
          background: #0d1b2a;
          color: #c9a84c;
          border-radius: 50%;
          width: 90px; height: 90px;
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          z-index: 10;
          font-family: 'Playfair Display', serif;
          box-shadow: 0 8px 32px rgba(0,0,0,0.3);
          border: 3px solid #c9a84c;
        }
        .about-badge-num {
          font-size: 22px;
          font-weight: 700;
          line-height: 1;
        }
        .about-badge-text {
          font-size: 9px;
          font-weight: 600;
          letter-spacing: 1px;
          text-transform: uppercase;
          text-align: center;
          line-height: 1.3;
          color: rgba(201,168,76,0.75);
        }
        .about-eyebrow {
          display: inline-flex;
          align-items: center;
          gap: 10px;
          font-size: 12px;
          font-weight: 700;
          letter-spacing: 3px;
          text-transform: uppercase;
          color: #c9a84c;
          margin-bottom: 16px;
        }
        .about-eyebrow::before {
          content: '';
          display: block;
          width: 32px;
          height: 2px;
          background: #c9a84c;
          border-radius: 2px;
        }
        .about-heading {
          font-family: 'Playfair Display', serif;
          font-size: clamp(2rem, 3.5vw, 3rem);
          color: #0d1b2a;
          line-height: 1.2;
          margin-bottom: 24px;
        }
        .about-heading em {
          color: #c9a84c;
          font-style: italic;
        }
        .about-body {
          font-size: 15px;
          line-height: 1.85;
          color: #555;
          margin-bottom: 16px;
        }
        .about-divider {
          width: 48px; height: 3px;
          background: linear-gradient(90deg, #c9a84c, rgba(201,168,76,0.2));
          border-radius: 3px;
          margin-bottom: 28px;
        }
        .about-features {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 12px;
          margin-bottom: 32px;
        }
        .about-feature {
          display: flex;
          align-items: center;
          gap: 8px;
          font-size: 13px;
          font-weight: 600;
          color: #0d1b2a;
        }
        .about-feature-dot {
          width: 7px; height: 7px;
          border-radius: 50%;
          background: #c9a84c;
          flex-shrink: 0;
        }
        .btn-about {
          display: inline-flex;
          align-items: center;
          gap: 10px;
          background: #0d1b2a;
          color: #c9a84c;
          border: none;
          border-radius: 50px;
          padding: 14px 36px;
          font-size: 14px;
          font-weight: 700;
          letter-spacing: 1.5px;
          text-transform: uppercase;
          text-decoration: none;
          transition: all 0.3s ease;
        }
        .btn-about:hover {
          background: #c9a84c;
          color: #000;
          transform: translateY(-2px);
          box-shadow: 0 12px 32px rgba(201,168,76,0.3);
        }
        .btn-about svg {
          transition: transform 0.3s ease;
        }
        .btn-about:hover svg {
          transform: translateX(4px);
        }

        .sk-cat-section {
          background: #0d1b2a;
          padding: 80px 0;
          font-family: 'DM Sans', sans-serif;
          overflow: hidden;
        }
        .sk-cat-eyebrow {
          font-size: 11px;
          font-weight: 700;
          letter-spacing: 3px;
          text-transform: uppercase;
          color: #c9a84c;
          display: block;
          margin-bottom: 10px;
        }
        .sk-cat-heading {
          font-family: 'Playfair Display', serif;
          font-size: 2.8rem;
          color: #ffffff;
          line-height: 1.15;
          margin-bottom: 0;
        }
        .sk-cat-heading em {
          font-style: italic;
          color: #c9a84c;
        }
        .sk-cat-subtext {
          color: rgba(255,255,255,0.5);
          font-size: 14px;
          margin-top: 12px;
        }

        /* Swiper card */
        .sk-cat-card {
          border-radius: 20px;
          overflow: hidden;
          position: relative;
          cursor: pointer;
          display: block;
          text-decoration: none;
          height: 440px;
          background: #111;
        }
        .sk-cat-card img {
          width: 100%; height: 100%;
          object-fit: cover;
          transition: transform 0.6s cubic-bezier(.25,.8,.25,1);
          display: block;
        }
        .sk-cat-card:hover img {
          transform: scale(1.08);
        }

        .sk-cat-card-gradient {
          position: absolute;
          inset: 0;
          background: linear-gradient(
            to top,
            rgba(0,0,0,0.85) 0%,
            rgba(0,0,0,0.35) 45%,
            transparent 100%
          );
          transition: background 0.4s ease;
        }
        .sk-cat-card:hover .sk-cat-card-gradient {
          background: linear-gradient(
            to top,
            rgba(13,27,42,0.92) 0%,
            rgba(0,0,0,0.4) 50%,
            transparent 100%
          );
        }

        .sk-cat-card-body {
          position: absolute;
          bottom: 0; left: 0; right: 0;
          padding: 28px 24px;
          transform: translateY(8px);
          transition: transform 0.3s ease;
        }
        .sk-cat-card:hover .sk-cat-card-body {
          transform: translateY(0);
        }

        .sk-cat-card-tag {
          display: inline-block;
          font-size: 10px;
          font-weight: 700;
          letter-spacing: 2px;
          text-transform: uppercase;
          color: #c9a84c;
          margin-bottom: 6px;
        }
        .sk-cat-card h4 {
          font-family: 'Playfair Display', serif;
          color: #fff;
          font-size: 1.4rem;
          margin-bottom: 14px;
        }
        .sk-cat-cta {
          display: inline-flex;
          align-items: center;
          gap: 8px;
          font-size: 11px;
          font-weight: 700;
          letter-spacing: 1.5px;
          text-transform: uppercase;
          color: #000;
          background: #c9a84c;
          padding: 8px 20px;
          border-radius: 50px;
          text-decoration: none;
          transition: all 0.25s;
          opacity: 0;
          transform: translateY(6px);
          transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s;
        }
        .sk-cat-card:hover .sk-cat-cta {
          opacity: 1;
          transform: translateY(0);
        }
        .sk-cat-cta:hover {
          background: #fff;
          color: #000;
        }

        .sk-cat-swiper {
          padding: 8px 2px 20px !important;
          overflow: visible !important;
        }

        @media (max-width: 992px) {
          .sk-cat-heading { font-size: 2.2rem; }
          .sk-cat-card { height: 360px; }
          .sk-cat-cta {
            opacity: 1;
            transform: translateY(0);
          }
        }

        @media (max-width: 768px) {
          .sk-cat-heading { font-size: 1.8rem; }
          .sk-cat-subtext { font-size: 0.85rem; margin-bottom: 0; }
          .sk-cat-card {
            height: 260px;
            border-radius: 14px;
          }
          .sk-cat-card-body {
            padding: 14px 12px;
            transform: translateY(0);
          }
          .sk-cat-card-tag {
            font-size: 8.5px;
            letter-spacing: 1.5px;
            margin-bottom: 2px;
          }
          .sk-cat-card h4 {
            font-size: 1.05rem;
            margin-bottom: 8px;
          }
          .sk-cat-cta {
            opacity: 1;
            transform: translateY(0);
            font-size: 9.5px;
            letter-spacing: 0.8px;
            padding: 5px 12px;
            gap: 5px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.3);
          }
        }

        @media (max-width: 480px) {
          .sk-cat-card {
            height: 220px;
            border-radius: 12px;
          }
          .sk-cat-card-body {
            padding: 10px 8px;
          }
          .sk-cat-card h4 {
            font-size: 0.92rem;
            margin-bottom: 6px;
          }
          .sk-cat-cta {
            font-size: 8.5px;
            letter-spacing: 0.5px;
            padding: 4px 10px;
            border-radius: 20px;
          }
        }
        .features-section {
          background: #f7f4ef;
          padding: 100px 0;
          position: relative;
          overflow: hidden;
        }
        .features-section::before {
          content: '';
          position: absolute;
          top: 0; left: 0; right: 0;
          height: 4px;
          background: linear-gradient(90deg, transparent 0%, #c9a84c 50%, transparent 100%);
        }
        .features-eyebrow {
          display: inline-flex;
          align-items: center;
          gap: 10px;
          font-size: 12px;
          font-weight: 700;
          letter-spacing: 3px;
          text-transform: uppercase;
          color: #c9a84c;
          margin-bottom: 14px;
        }
        .features-eyebrow::before,
        .features-eyebrow::after {
          content: '';
          display: block;
          width: 28px; height: 2px;
          background: #c9a84c;
          border-radius: 2px;
        }
        .features-heading {
          font-family: 'Playfair Display', serif;
          font-size: clamp(1.8rem, 3.5vw, 2.8rem);
          color: #0d1b2a;
          margin-bottom: 12px;
        }
        .features-heading em {
          color: #c9a84c;
          font-style: italic;
        }
        .features-sub {
          font-size: 15px;
          color: #888;
          max-width: 480px;
          margin: 0 auto;
          line-height: 1.7;
        }

        /* Feature Card */
        .feature-card {
          background: #fff;
          border-radius: 20px;
          padding: 36px 28px;
          height: 100%;
          position: relative;
          overflow: hidden;
          transition: transform 0.35s ease, box-shadow 0.35s ease;
          border: 1.5px solid transparent;
          cursor: default;
        }
        .feature-card::after {
          content: '';
          position: absolute;
          inset: 0;
          background: linear-gradient(135deg, #0d1b2a 0%, #162236 100%);
          opacity: 0;
          transition: opacity 0.35s ease;
          z-index: 0;
          border-radius: 18px;
        }
        .feature-card:hover {
          transform: translateY(-8px);
          box-shadow: 0 24px 60px rgba(13,27,42,0.16);
          border-color: rgba(201,168,76,0.4);
        }
        .feature-card:hover::after { opacity: 1; }

        .feature-card-inner {
          position: relative;
          z-index: 1;
          display: flex;
          flex-direction: column;
          height: 100%;
        }
        .feature-icon-wrap {
          width: 60px; height: 60px;
          border-radius: 16px;
          background: rgba(201,168,76,0.1);
          display: flex; align-items: center; justify-content: center;
          margin-bottom: 22px;
          transition: background 0.35s ease;
        }
        .feature-card:hover .feature-icon-wrap {
          background: rgba(201,168,76,0.15);
        }
        .feature-icon-wrap i {
          font-size: 22px;
          color: #c9a84c;
          transition: transform 0.3s ease;
        }
        .feature-card:hover .feature-icon-wrap i {
          transform: scale(1.1);
        }
        .feature-title {
          font-family: 'Playfair Display', serif;
          font-size: 1.2rem;
          color: #0d1b2a;
          margin-bottom: 12px;
          transition: color 0.35s ease;
        }
        .feature-card:hover .feature-title { color: #fff; }

        .feature-desc {
          font-size: 13.5px;
          color: #888;
          line-height: 1.8;
          flex: 1;
          margin-bottom: 24px;
          transition: color 0.35s ease;
        }
        .feature-card:hover .feature-desc { color: rgba(255,255,255,0.65); }

        .feature-number {
          position: absolute;
          top: 20px; right: 24px;
          font-family: 'Playfair Display', serif;
          font-size: 3.5rem;
          font-weight: 700;
          color: rgba(0,0,0,0.04);
          line-height: 1;
          transition: color 0.35s ease;
          user-select: none;
        }
        .feature-card:hover .feature-number {
          color: rgba(201,168,76,0.06);
        }

        .feature-link {
          display: inline-flex;
          align-items: center;
          gap: 8px;
          font-size: 12px;
          font-weight: 700;
          letter-spacing: 1.5px;
          text-transform: uppercase;
          color: #c9a84c;
          text-decoration: none;
          transition: gap 0.25s ease;
        }
        .feature-link:hover { gap: 12px; color: #c9a84c; }
        .feature-link svg {
          transition: transform 0.25s ease;
        }
        .feature-link:hover svg { transform: translateX(3px); }
        .hero-banner {
          position: relative;
          background:
            linear-gradient(rgba(13,27,42,0.72), rgba(13,27,42,0.72)),
            url('/img/banner10.jpg') center center / cover no-repeat;
          padding: 100px 0 80px;
          overflow: hidden;
        }
        .hero-banner::before {
          content: '';
          position: absolute;
          inset: 0;
          background: repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 40px,
            rgba(201,168,76,0.02) 40px,
            rgba(201,168,76,0.02) 41px
          );
        }
        .hero-banner::after {
          content: '';
          position: absolute;
          bottom: 0; left: 0; right: 0;
          height: 4px;
          background: linear-gradient(90deg, transparent, #c9a84c 40%, #c9a84c 60%, transparent);
        }
        .hero-inner {
          position: relative;
          z-index: 1;
          text-align: center;
        }
        .hero-eyebrow {
          display: inline-flex;
          align-items: center;
          gap: 10px;
          font-size: 11px;
          font-weight: 700;
          letter-spacing: 3.5px;
          text-transform: uppercase;
          color: rgba(201,168,76,0.8);
          margin-bottom: 16px;
          animation: fadeDown 0.6s ease forwards;
        }
        .hero-eyebrow::before,
        .hero-eyebrow::after {
          content: '';
          display: block;
          width: 24px; height: 1.5px;
          background: rgba(201,168,76,0.5);
          border-radius: 2px;
        }
        .hero-title {
          font-family: 'Playfair Display', serif;
          font-size: clamp(2rem, 5vw, 3.8rem);
          color: #fff;
          font-weight: 700;
          line-height: 1.15;
          margin-bottom: 24px;
          animation: fadeDown 0.7s ease 0.1s both;
        }
        .hero-breadcrumb {
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 10px;
          animation: fadeDown 0.7s ease 0.2s both;
        }
        .hero-breadcrumb a {
          font-size: 13px;
          color: rgba(255,255,255,0.5);
          text-decoration: none;
          transition: color 0.2s;
        }
        .hero-breadcrumb a:hover { color: #c9a84c; }
        .hero-breadcrumb-sep {
          color: rgba(201,168,76,0.4);
          font-size: 10px;
        }
        .hero-breadcrumb-current {
          font-size: 13px;
          font-weight: 600;
          color: #c9a84c;
        }
        @keyframes fadeDown {
          from { opacity: 0; transform: translateY(-16px); }
          to   { opacity: 1; transform: translateY(0); }
        }

        :root {
          --sk-gold: #c9a84c;
          --sk-dark: #0f0f0f;
          --sk-navy: #0d1b2a;
          --sk-cream: #f9f5ee;
        }

        .sk-topbar {
          background: var(--sk-dark);
          padding: 8px 0;
          font-family: 'DM Sans', sans-serif;
          font-size: 12px;
          letter-spacing: 0.5px;
          border-bottom: 1px solid rgba(201,168,76,0.2);
        }
        .sk-topbar a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
        .sk-topbar a:hover { color: var(--sk-gold); }
        .sk-topbar .social-btn {
          width: 28px; height: 28px;
          border-radius: 50%;
          border: 1px solid rgba(201,168,76,0.3);
          display: inline-flex; align-items: center; justify-content: center;
          color: rgba(255,255,255,0.5);
          transition: all 0.25s;
          text-decoration: none;
          font-size: 11px;
        }
        .sk-topbar .social-btn:hover {
          background: var(--sk-gold);
          border-color: var(--sk-gold);
          color: #000;
          transform: translateY(-1px);
        }

        .sk-navbar {
          font-family: 'DM Sans', sans-serif;
          background: var(--sk-navy);
          transition: all 0.3s ease;
          padding: 0;
          position: sticky;
          top: 0;
          z-index: 1000;
          border-bottom: 2px solid rgba(201,168,76,0.15);
        }
        .sk-navbar.scrolled {
          background: rgba(13,27,42,0.96);
          backdrop-filter: blur(12px);
          box-shadow: 0 4px 30px rgba(0,0,0,0.3);
        }

        .sk-brand {
          font-family: 'Playfair Display', serif;
          font-size: 1.8rem;
          color: #fff !important;
          text-decoration: none;
          letter-spacing: -0.5px;
        }
        .sk-brand span { color: var(--sk-gold); }

        .sk-nav-link {
          font-size: 13px;
          font-weight: 600;
          letter-spacing: 1.2px;
          text-transform: uppercase;
          color: rgba(255,255,255,0.7) !important;
          padding: 28px 14px !important;
          position: relative;
          transition: color 0.25s;
          text-decoration: none;
          display: block;
        }
        .sk-nav-link::after {
          content: '';
          position: absolute;
          bottom: 0; left: 14px; right: 14px;
          height: 2px;
          background: var(--sk-gold);
          transform: scaleX(0);
          transform-origin: center;
          transition: transform 0.3s ease;
        }
        .sk-nav-link:hover, .sk-nav-link.active {
          color: #fff !important;
        }
        .sk-nav-link:hover::after, .sk-nav-link.active::after {
          transform: scaleX(1);
        }

        .sk-icon-btn {
          background: rgba(255,255,255,0.07);
          border: 1px solid rgba(255,255,255,0.12);
          border-radius: 8px;
          width: 38px; height: 38px;
          display: inline-flex; align-items: center; justify-content: center;
          color: rgba(255,255,255,0.8);
          text-decoration: none;
          transition: all 0.25s;
          font-size: 14px;
        }
        .sk-icon-btn:hover {
          background: var(--sk-gold);
          border-color: var(--sk-gold);
          color: #000;
          transform: translateY(-2px);
        }

        .sk-avatar {
          width: 36px; height: 36px;
          border-radius: 50%;
          border: 2px solid var(--sk-gold);
          object-fit: cover;
          cursor: pointer;
        }

        .sk-dropdown {
          min-width: 220px;
          border: 1px solid rgba(201,168,76,0.2);
          border-radius: 12px;
          box-shadow: 0 20px 60px rgba(0,0,0,0.3);
          background: var(--sk-navy);
          overflow: hidden;
          padding: 0;
          margin-top: 8px !important;
        }
        .sk-dropdown-header {
          background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
          padding: 16px;
          border-bottom: 1px solid rgba(201,168,76,0.15);
          text-align: center;
        }
        .sk-dropdown-header img {
          width: 52px; height: 52px;
          border-radius: 50%;
          border: 2px solid var(--sk-gold);
          object-fit: cover;
          margin-bottom: 6px;
        }
        .sk-dropdown-header .user-name {
          font-size: 13px; font-weight: 600;
          color: #fff; display: block;
        }
        .sk-dropdown-item {
          display: flex; align-items: center; gap: 10px;
          padding: 10px 16px;
          color: rgba(255,255,255,0.7);
          font-size: 13px;
          text-decoration: none;
          transition: all 0.2s;
          border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .sk-dropdown-item:hover {
          background: rgba(201,168,76,0.1);
          color: var(--sk-gold);
          padding-left: 22px;
        }
        .sk-dropdown-item i { width: 16px; text-align: center; }
        .sk-dropdown-item.danger { color: #ff6b6b; }
        .sk-dropdown-item.danger:hover { background: rgba(255,107,107,0.1); color: #ff6b6b; }
        .sk-dropdown-item.success { color: #51cf66; }
        .sk-dropdown-item.success:hover { background: rgba(81,207,102,0.1); color: #51cf66; }

        .sk-toggler {
          background: rgba(255,255,255,0.07);
          border: 1px solid rgba(255,255,255,0.15);
          border-radius: 8px;
          padding: 13px 10px;
          cursor: pointer;
        }
        .sk-toggler span, .sk-toggler span::before, .sk-toggler span::after {
          display: block; width: 22px; height: 2px;
          background: rgba(255,255,255,0.8);
          border-radius: 2px;
          position: relative;
          transition: all 0.3s;
        }
        .sk-toggler span::before, .sk-toggler span::after {
          content: ''; position: absolute; left: 0;
        }
        .sk-toggler span::before { top: -7px; }
        .sk-toggler span::after { top: 7px; }

        @media (max-width: 991px) {
          .sk-nav-link { padding: 12px 0 !important; border-bottom: 1px solid rgba(255,255,255,0.06); }
          .sk-nav-link::after { display: none; }
          .sk-collapse { padding: 16px 0; }
          .sk-icons-row { justify-content: center; padding: 12px 0; gap: 12px; }
        }
        .ps-section { padding: 60px 0; }

        .ps-header {
          display: flex;
          align-items: flex-end;
          justify-content: space-between;
          margin-bottom: 32px;
          gap: 16px;
          flex-wrap: wrap;
        }
        .ps-eyebrow {
          font-size: 11px;
          font-weight: 700;
          letter-spacing: 3px;
          text-transform: uppercase;
          color: #c9a84c;
          margin-bottom: 6px;
        }
        .ps-heading {
          font-family: 'Playfair Display', serif;
          font-size: clamp(1.5rem, 3vw, 2.2rem);
          color: #0d1b2a;
          margin: 0;
        }
        .ps-heading em { color: #c9a84c; font-style: italic; }
        .ps-view-all {
          display: inline-flex;
          align-items: center;
          gap: 8px;
          font-size: 12px;
          font-weight: 700;
          letter-spacing: 1.5px;
          text-transform: uppercase;
          color: #0d1b2a;
          text-decoration: none;
          border-bottom: 2px solid #c9a84c;
          padding-bottom: 2px;
          transition: color 0.2s;
          white-space: nowrap;
        }
        .ps-view-all:hover { color: #c9a84c; }

        /* Product Card */
        .ps-card {
          background: #fff;
          border-radius: 20px;
          overflow: hidden;
          position: relative;
          transition: transform 0.35s ease, box-shadow 0.35s ease;
          box-shadow: 0 2px 12px rgba(0,0,0,0.05);
        }
        .ps-card:hover {
          transform: translateY(-8px);
          box-shadow: 0 20px 50px rgba(13,27,42,0.14);
        }
        .ps-img-wrap {
          position: relative;
          overflow: hidden;
          height: 260px;
          background: #faf8f4;
        }
        .ps-img {
          width: 100%; height: 100%;
          object-fit: cover;
          transition: transform 0.5s ease;
          display: block;
        }
        .ps-card:hover .ps-img { transform: scale(1.07); }

        .ps-badge {
          position: absolute;
          top: 14px; left: 14px;
          background: #0d1b2a;
          color: #c9a84c;
          font-size: 10px;
          font-weight: 700;
          letter-spacing: 1px;
          text-transform: uppercase;
          padding: 4px 10px;
          border-radius: 20px;
          z-index: 2;
        }
        .ps-rating {
          position: absolute;
          top: 14px; right: 14px;
          background: #c9a84c;
          color: #000;
          font-size: 11px;
          font-weight: 700;
          padding: 4px 9px;
          border-radius: 20px;
          display: flex;
          align-items: center;
          gap: 3px;
          z-index: 2;
        }

        .ps-overlay {
          position: absolute;
          inset: 0;
          background: rgba(13,27,42,0.78);
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          gap: 10px;
          opacity: 0;
          transition: opacity 0.3s ease;
          z-index: 3;
          padding: 20px;
        }
        .ps-card:hover .ps-overlay { opacity: 1; }
        .ps-overlay-btn {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          gap: 8px;
          width: 100%;
          max-width: 200px;
          padding: 11px 20px;
          border-radius: 50px;
          font-size: 12px;
          font-weight: 700;
          letter-spacing: 1px;
          text-transform: uppercase;
          text-decoration: none;
          border: none;
          cursor: pointer;
          transition: all 0.25s ease;
        }
        .ps-overlay-btn.primary {
          background: #c9a84c;
          color: #000;
        }
        .ps-overlay-btn.primary:hover {
          background: #fff;
          color: #0d1b2a;
        }
        .ps-overlay-btn.secondary {
          background: transparent;
          color: #fff;
          border: 1.5px solid rgba(255,255,255,0.4);
        }
        .ps-overlay-btn.secondary:hover {
          background: rgba(255,255,255,0.1);
          border-color: rgba(255,255,255,0.7);
        }

        .ps-body {
          padding: 18px 20px 20px;
        }
        .ps-name {
          font-family: 'Playfair Display', serif;
          font-size: 1rem;
          color: #0d1b2a;
          margin: 0 0 8px;
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis;
        }
        .ps-pricing {
          display: flex;
          align-items: baseline;
          gap: 8px;
          flex-wrap: wrap;
        }
        .ps-final {
          font-size: 1.1rem;
          font-weight: 700;
          color: #0d1b2a;
        }
        .ps-original {
          font-size: 13px;
          text-decoration: line-through;
          color: #bbb;
        }
        .ps-discount {
          font-size: 11px;
          font-weight: 700;
          background: rgba(39,168,90,0.1);
          color: #27a85a;
          padding: 2px 8px;
          border-radius: 20px;
        }

        /* Swiper nav override */
        .ps-swiper .swiper-button-prev,
        .ps-swiper .swiper-button-next {
          width: 42px !important; height: 42px !important;
          border-radius: 50% !important;
          background: #0d1b2a !important;
          color: #c9a84c !important;
          top: -52px !important;
          transition: background 0.25s !important;
        }
        .ps-swiper .swiper-button-prev { right: 52px !important; left: auto !important; }
        .ps-swiper .swiper-button-next { right: 0 !important; }
        .ps-swiper .swiper-button-prev:hover,
        .ps-swiper .swiper-button-next:hover {
          background: #c9a84c !important;
          color: #000 !important;
        }
        .ps-swiper .swiper-button-prev::after,
        .ps-swiper .swiper-button-next::after {
          font-size: 14px !important;
          font-weight: 700 !important;
        }

        .sk-product-section {
          background: #f7f4ef;
          padding: 60px 0;
          font-family: 'DM Sans', sans-serif;
        }
        .sk-section-label {
          display: inline-block;
          font-size: 11px;
          font-weight: 700;
          letter-spacing: 3px;
          text-transform: uppercase;
          color: #c9a84c;
          margin-bottom: 10px;
        }
        .sk-section-title {
          font-family: 'Playfair Display', serif;
          font-size: 2.5rem;
          color: #0f0f0f;
          line-height: 1.2;
          margin-bottom: 0;
        }
        .sk-divider {
          width: 40px; height: 3px;
          background: #c9a84c;
          margin: 16px auto 0;
          border-radius: 2px;
        }

        /* Product Card */
        .sk-pcard {
          border-radius: 16px;
          overflow: hidden;
          background: #fff;
          box-shadow: 0 2px 12px rgba(0,0,0,0.06);
          transition: transform 0.35s cubic-bezier(.25,.8,.25,1), box-shadow 0.35s;
          position: relative;
        }
        .sk-pcard:hover {
          transform: translateY(-8px);
          box-shadow: 0 20px 50px rgba(0,0,0,0.13);
        }
        .sk-pcard-img-wrap {
          overflow: hidden;
          position: relative;
          aspect-ratio: 3/4;
        }
        .sk-pcard img {
          width: 100%; height: 100%;
          object-fit: cover;
          transition: transform 0.5s ease;
          display: block;
        }
        .sk-pcard:hover img {
          transform: scale(1.07);
        }
        .sk-pcard-badge {
          position: absolute;
          top: 12px; left: 12px;
          background: #c9a84c;
          color: #000;
          font-size: 10px;
          font-weight: 700;
          letter-spacing: 1px;
          text-transform: uppercase;
          padding: 4px 10px;
          border-radius: 20px;
        }
        .sk-pcard-overlay {
          position: absolute;
          inset: 0;
          background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
          opacity: 0;
          transition: opacity 0.35s ease;
          display: flex;
          align-items: flex-end;
          padding: 20px;
          pointer-events: none;
        }
        .sk-pcard:hover .sk-pcard-overlay {
          opacity: 1;
        }
        .sk-pcard-overlay button,
        .sk-pcard-overlay a {
          pointer-events: auto;
        }
        .sk-pcard-overlay-content {
          transform: translateY(8px);
          transition: transform 0.3s ease;
          width: 100%;
        }
        .sk-pcard:hover .sk-pcard-overlay-content {
          transform: translateY(0);
        }
        .sk-pcard-overlay-content h6 {
          color: #fff;
          font-size: 15px;
          font-weight: 600;
          margin-bottom: 4px;
        }
        .sk-pcard-overlay-price {
          color: rgba(255,255,255,0.9);
          font-size: 13px;
          display: flex; align-items: center; gap: 8px;
        }
        .sk-pcard-overlay-price del { color: rgba(255,100,100,0.9); }
        .sk-pcard-overlay-price .off { color: #6ddc9c; font-size: 11px; }
        .sk-pcard-overlay-btn {
          display: block;
          text-align: center;
          background: #c9a84c;
          color: #000;
          font-size: 11px;
          font-weight: 700;
          letter-spacing: 1px;
          text-transform: uppercase;
          padding: 8px;
          border-radius: 8px;
          text-decoration: none;
          margin-top: 10px;
          transition: background 0.2s;
        }
        .sk-pcard-overlay-btn:hover { background: #e0bf6a; }

        /* Mobile info */
        .sk-pcard-info {
          padding: 12px 14px;
          border-top: 1px solid #f0ece4;
        }
        .sk-pcard-info .name {
          font-size: 13px; font-weight: 600;
          color: #1a1a1a; white-space: nowrap;
          overflow: hidden; text-overflow: ellipsis;
          margin-bottom: 4px;
        }
        .sk-pcard-info .price {
          font-size: 13px; color: #444;
        }
        .sk-pcard-info .price del { color: #e04444; font-size: 11px; }
        .sk-pcard-info .price .off { color: #27a85a; font-size: 11px; margin-left: 4px; }

        /* Buttons */
        .sk-btn {
          display: inline-flex; align-items: center; justify-content: center;
          gap: 8px;
          font-family: 'DM Sans', sans-serif;
          font-size: 12px;
          font-weight: 700;
          letter-spacing: 1.5px;
          text-transform: uppercase;
          padding: 12px 32px;
          border-radius: 50px;
          border: none;
          cursor: pointer;
          transition: all 0.3s ease;
          text-decoration: none;
        }
        .sk-btn-gold {
          background: #c9a84c;
          color: #000;
        }
        .sk-btn-gold:hover {
          background: #0d1b2a;
          color: #c9a84c;
          transform: translateY(-2px);
          box-shadow: 0 8px 20px rgba(201,168,76,0.3);
        }
        .sk-btn-outline {
          background: transparent;
          border: 2px solid #c9a84c;
          color: #c9a84c;
        }
        .sk-btn-outline:hover {
          background: #c9a84c;
          color: #000;
        }
        .sk-btn-dark {
          background: #0d1b2a;
          color: #c9a84c;
        }
        .sk-btn-dark:hover {
          background: #c9a84c;
          color: #000;
        }
        .testimonial-section {
          padding: 100px 0 80px;
          background: #f7f4ef;
          position: relative;
          overflow: hidden;
        }
        .testimonial-section::before {
          content: '';
          position: absolute;
          top: -120px; right: -80px;
          width: 400px; height: 400px;
          border-radius: 50%;
          background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
          pointer-events: none;
        }
        .testimonial-eyebrow {
          display: inline-flex;
          align-items: center;
          gap: 10px;
          font-size: 12px;
          font-weight: 700;
          letter-spacing: 3px;
          text-transform: uppercase;
          color: #c9a84c;
          margin-bottom: 14px;
        }
        .testimonial-eyebrow::before,
        .testimonial-eyebrow::after {
          content: '';
          display: block;
          width: 28px; height: 2px;
          background: #c9a84c;
          border-radius: 2px;
        }
        .testimonial-heading {
          font-family: 'Playfair Display', serif;
          font-size: clamp(2rem, 4vw, 3rem);
          color: #0d1b2a;
          margin-bottom: 16px;
        }
        .testimonial-heading em { color: #c9a84c; font-style: italic; }
        .testimonial-sub {
          font-size: 15px;
          color: #888;
          max-width: 520px;
          margin: 0 auto;
          line-height: 1.7;
        }

        /* Cards */
        .t-card {
          background: #fff;
          border-radius: 20px;
          padding: 32px;
          box-shadow: 0 4px 24px rgba(13,27,42,0.07);
          transition: transform 0.3s ease, box-shadow 0.3s ease;
          height: 100%;
          border: 1.5px solid transparent;
        }
        .swiper-slide-active .t-card,
        .swiper-slide-center .t-card {
          border-color: rgba(201,168,76,0.3);
          box-shadow: 0 16px 48px rgba(13,27,42,0.14);
          transform: translateY(-4px);
        }
        .t-quote-icon {
          font-size: 40px;
          color: rgba(201,168,76,0.2);
          line-height: 1;
          margin-bottom: 12px;
          font-family: Georgia, serif;
        }
        .t-message {
          font-size: 14px;
          line-height: 1.85;
          color: #555;
          margin-bottom: 24px;
          display: -webkit-box;
          -webkit-line-clamp: 5;
          -webkit-box-orient: vertical;
          overflow: hidden;
        }
        .t-stars {
          display: flex;
          gap: 3px;
          margin-bottom: 20px;
        }
        .t-stars i { color: #c9a84c; font-size: 12px; }
        .t-profile {
          display: flex;
          align-items: center;
          gap: 14px;
          padding-top: 20px;
          border-top: 1px solid #f0ece4;
        }
        .t-avatar {
          width: 52px; height: 52px;
          border-radius: 50%;
          object-fit: cover;
          border: 2px solid rgba(201,168,76,0.3);
          flex-shrink: 0;
        }
        .t-name {
          font-family: 'Playfair Display', serif;
          font-size: 16px;
          color: #0d1b2a;
          margin: 0 0 2px;
        }
        .t-tag {
          font-size: 11px;
          font-weight: 700;
          color: #c9a84c;
          letter-spacing: 1.5px;
          text-transform: uppercase;
        }
        .swiper-pagination-bullet {
          width: 24px !important;
          height: 4px !important;
          border-radius: 4px !important;
          background: #ccc !important;
          opacity: 1 !important;
          transition: all 0.3s !important;
        }
        .swiper-pagination-bullet-active {
          background: #c9a84c !important;
          width: 36px !important;
        }
        .swiper-pagination { margin-top: 32px !important; position: relative !important; bottom: auto !important; }

        /* Trust Pills */
        .trust-grid {
          display: grid;
          grid-template-columns: repeat(4, 1fr);
          gap: 16px;
          margin-top: 64px;
        }
        @media (max-width: 992px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 576px) { .trust-grid { grid-template-columns: 1fr; } }
        .trust-item {
          background: #fff;
          border-radius: 16px;
          padding: 24px 20px;
          display: flex;
          align-items: flex-start;
          gap: 14px;
          transition: transform 0.25s ease, box-shadow 0.25s ease;
        }
        .trust-item:hover {
          transform: translateY(-4px);
          box-shadow: 0 12px 32px rgba(13,27,42,0.1);
        }
        .trust-icon {
          width: 42px; height: 42px;
          background: rgba(201,168,76,0.1);
          border-radius: 12px;
          display: flex; align-items: center; justify-content: center;
          color: #c9a84c;
          font-size: 16px;
          flex-shrink: 0;
        }
        .trust-title {
          font-size: 14px;
          font-weight: 700;
          color: #0d1b2a;
          margin: 0 0 4px;
        }
        .trust-desc {
          font-size: 12.5px;
          color: #888;
          line-height: 1.6;
          margin: 0;
        }

        /* CTA */
        .testimonial-cta {
          text-align: center;
          margin-top: 64px;
          padding: 56px 32px;
          background: #0d1b2a;
          border-radius: 24px;
          position: relative;
          overflow: hidden;
        }
        .testimonial-cta::before {
          content: '';
          position: absolute;
          inset: 0;
          background: repeating-linear-gradient(
            -45deg, transparent, transparent 30px,
            rgba(201,168,76,0.025) 30px, rgba(201,168,76,0.025) 31px
          );
        }
        .testimonial-cta-title {
          font-family: 'Playfair Display', serif;
          font-size: clamp(1.6rem, 3vw, 2.4rem);
          color: #fff;
          margin-bottom: 12px;
          position: relative;
          z-index: 1;
        }
        .testimonial-cta-title em { color: #c9a84c; font-style: italic; }
        .testimonial-cta-sub {
          font-size: 15px;
          color: rgba(255,255,255,0.55);
          margin-bottom: 28px;
          position: relative; z-index: 1;
        }
        .btn-cta {
          display: inline-flex;
          align-items: center;
          gap: 10px;
          background: #c9a84c;
          color: #000;
          border: none;
          border-radius: 50px;
          padding: 14px 40px;
          font-size: 14px;
          font-weight: 700;
          letter-spacing: 1.5px;
          text-transform: uppercase;
          text-decoration: none;
          transition: all 0.3s ease;
          position: relative; z-index: 1;
        }
        .btn-cta:hover {
          background: #fff;
          color: #0d1b2a;
          transform: translateY(-2px);
          box-shadow: 0 12px 32px rgba(201,168,76,0.35);
        }

  .auth-root {
    min-height: 100vh;
    background: #0a0a0f;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px 100px;
    position: relative;
    overflow: hidden;
  }
  .auth-root::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .auth-root::after {
    content: '';
    position: absolute;
    bottom: -200px; left: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
    pointer-events: none;
  }

  .auth-card {
    width: 100%;
    max-width: 440px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 4px;
    padding: 48px 44px;
    position: relative;
    backdrop-filter: blur(20px);
    animation: cardIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  @keyframes cardIn {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .auth-card::before {
    content: '';
    position: absolute;
    top: 0; left: 44px; right: 44px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c9a84c, transparent);
  }

  .auth-brand {
    text-align: center;
    margin-bottom: 36px;
  }
  .auth-brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px; height: 48px;
    border: 1px solid rgba(201,168,76,0.4);
    border-radius: 50%;
    margin-bottom: 16px;
  }
  .auth-brand-mark svg { color: #c9a84c; }
  .auth-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: #f0ede6;
    letter-spacing: 0.5px;
    margin: 0 0 6px;
    line-height: 1.2;
  }
  .auth-title em { font-style: italic; color: #c9a84c; }
  .auth-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: rgba(240,237,230,0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
  }

  .auth-field { margin-bottom: 20px; }
  .auth-label {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(240,237,230,0.5);
    margin-bottom: 8px;
  }
  .auth-input {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 2px;
    padding: 13px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #f0ede6;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    box-sizing: border-box;
  }
  .auth-input::placeholder { color: rgba(240,237,230,0.2); }
  .auth-input:focus {
    border-color: rgba(201,168,76,0.5);
    background: rgba(201,168,76,0.04);
  }
  .auth-input.error { border-color: rgba(220,80,80,0.5); }

  .auth-input-wrap { position: relative; }
  .auth-input-wrap .auth-input { padding-right: 48px; }
  .auth-eye {
    position: absolute;
    right: 14px; top: 50%;
    transform: translateY(-50%);
    background: none; border: none;
    color: rgba(240,237,230,0.3);
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s;
  }
  .auth-eye:hover { color: #c9a84c; }

  .auth-error {
    background: rgba(220,80,80,0.08);
    border: 1px solid rgba(220,80,80,0.2);
    border-radius: 2px;
    padding: 10px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: #ff8080;
    margin-bottom: 20px;
  }

  .auth-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
  }
  .auth-check-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: rgba(240,237,230,0.4);
    cursor: pointer;
  }
  .auth-check {
    width: 14px; height: 14px;
    accent-color: #c9a84c;
    cursor: pointer;
  }

  .auth-btn-primary {
    width: 100%;
    background: #c9a84c;
    color: #0a0a0f;
    border: none;
    border-radius: 2px;
    padding: 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    margin-bottom: 16px;
  }
  .auth-btn-primary:hover { background: #dbb85a; transform: translateY(-1px); }
  .auth-btn-primary:active { transform: translateY(0); }

  .auth-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
  }
  .auth-divider-line {
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.06);
  }
  .auth-divider-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 300;
    color: rgba(240,237,230,0.25);
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .auth-social {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
  }
  .auth-btn-social {
    flex: 1;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 2px;
    padding: 11px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: rgba(240,237,230,0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: border-color 0.2s, color 0.2s;
  }
  .auth-btn-social:hover {
    border-color: rgba(201,168,76,0.3);
    color: #c9a84c;
  }

  .auth-links {
    display: flex;
    justify-content: space-between;
  }
  .auth-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 300;
    color: rgba(240,237,230,0.35);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    border-bottom: 1px solid transparent;
  }
  .auth-link:hover { color: #c9a84c; border-bottom-color: rgba(201,168,76,0.4); }

        .od-wrap {
          background: #f7f4ef;
          min-height: 100vh;
          padding: 40px 0 80px;
        }

        /* Page header */
        .od-page-header {
          background: #0d1b2a;
          border-radius: 16px;
          padding: 22px 28px;
          display: flex;
          align-items: center;
          justify-content: space-between;
          margin-bottom: 28px;
          flex-wrap: wrap;
          gap: 12px;
        }
        .od-page-header-left { display: flex; align-items: center; gap: 14px; }
        .od-page-icon {
          width: 42px; height: 42px;
          border-radius: 12px;
          background: rgba(201,168,76,0.15);
          border: 1.5px solid rgba(201,168,76,0.3);
          display: flex; align-items: center; justify-content: center;
          color: #c9a84c; font-size: 16px;
        }
        .od-page-title {
          font-family: 'Playfair Display', serif;
          font-size: 20px; color: #fff; margin: 0;
        }
        .od-page-sub {
          font-size: 11px; color: rgba(201,168,76,0.6);
          letter-spacing: 2px; text-transform: uppercase;
        }

        /* Cards */
        .od-card {
          background: #fff;
          border-radius: 20px;
          overflow: hidden;
          box-shadow: 0 2px 16px rgba(13,27,42,0.06);
          margin-bottom: 20px;
        }
        .od-card-header {
          padding: 18px 24px;
          border-bottom: 1px solid #f0ece4;
          display: flex;
          align-items: center;
          gap: 10px;
        }
        .od-card-header-icon {
          width: 32px; height: 32px;
          border-radius: 8px;
          background: rgba(201,168,76,0.1);
          display: flex; align-items: center; justify-content: center;
          color: #c9a84c; font-size: 13px;
          flex-shrink: 0;
        }
        .od-card-header-title {
          font-family: 'Playfair Display', serif;
          font-size: 16px; color: #0d1b2a; margin: 0;
        }
        .od-card-body { padding: 20px 24px; }

        /* Summary grid */
        .od-summary-grid {
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          gap: 16px;
        }
        @media (max-width: 576px) { .od-summary-grid { grid-template-columns: 1fr; } }
        .od-summary-item {
          background: #faf8f4;
          border-radius: 12px;
          padding: 14px 16px;
        }
        .od-summary-item-label {
          font-size: 10px; font-weight: 700;
          letter-spacing: 2px; text-transform: uppercase;
          color: #bbb; margin-bottom: 5px;
        }
        .od-summary-item-value {
          font-size: 14px; font-weight: 600; color: #0d1b2a;
        }
        .od-status-pill {
          display: inline-flex;
          align-items: center;
          gap: 5px;
          font-size: 12px; font-weight: 700;
          padding: 4px 12px;
          border-radius: 20px;
        }
        .od-status-pill.delivered  { background: rgba(39,168,90,0.1);  color: #27a85a; }
        .od-status-pill.cancelled  { background: rgba(220,53,69,0.1);  color: #dc3545; }
        .od-status-pill.processing { background: rgba(201,168,76,0.12); color: #a07830; }
        .od-pay-pill {
          display: inline-flex; align-items: center; gap: 5px;
          font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 20px;
        }
        .od-pay-pill.paid    { background: rgba(39,168,90,0.1); color: #27a85a; }
        .od-pay-pill.pending { background: rgba(220,53,69,0.1); color: #dc3545; }

        /* Tracker */
        .od-tracker {
          display: flex;
          align-items: flex-start;
          position: relative;
          padding: 8px 0;
          overflow-x: auto;
        }
        .od-tracker-step {
          flex: 1;
          display: flex;
          flex-direction: column;
          align-items: center;
          position: relative;
          min-width: 70px;
        }
        .od-tracker-step::before {
          content: '';
          position: absolute;
          top: 20px;
          left: calc(-50% + 20px);
          right: calc(50% + 20px);
          height: 3px;
          background: #e8e0d0;
          z-index: 0;
          border-radius: 3px;
        }
        .od-tracker-step:first-child::before { display: none; }
        .od-tracker-step.completed::before { background: #c9a84c; }
        .od-tracker-circle {
          width: 40px; height: 40px;
          border-radius: 50%;
          display: flex; align-items: center; justify-content: center;
          font-size: 14px;
          z-index: 1;
          position: relative;
          transition: all 0.3s ease;
          border: 2px solid #e8e0d0;
          background: #fff;
          color: #ccc;
        }
        .od-tracker-step.completed .od-tracker-circle {
          background: #0d1b2a;
          border-color: #0d1b2a;
          color: #c9a84c;
        }
        .od-tracker-step.current .od-tracker-circle {
          background: #c9a84c;
          border-color: #c9a84c;
          color: #000;
          box-shadow: 0 0 0 5px rgba(201,168,76,0.15);
        }
        .od-tracker-step.cancelled .od-tracker-circle {
          background: rgba(220,53,69,0.1);
          border-color: #dc3545;
          color: #dc3545;
        }
        .od-tracker-label {
          font-size: 10px; font-weight: 600;
          text-align: center;
          margin-top: 8px;
          color: #bbb;
          letter-spacing: 0.5px;
          line-height: 1.3;
          max-width: 68px;
        }
        .od-tracker-step.completed .od-tracker-label { color: #0d1b2a; }
        .od-tracker-step.current .od-tracker-label   { color: #c9a84c; font-weight: 700; }

        /* Info rows */
        .od-info-row {
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding: 11px 0;
          border-bottom: 1px solid #f7f4ef;
          gap: 16px;
        }
        .od-info-row:last-child { border-bottom: none; }
        .od-info-label {
          font-size: 11px; font-weight: 700;
          letter-spacing: 1.5px; text-transform: uppercase;
          color: #bbb; flex-shrink: 0;
        }
        .od-info-value {
          font-size: 13.5px; font-weight: 500; color: #0d1b2a;
          text-align: right;
        }

        /* Products table */
        .od-products-table {
          width: 100%;
          border-collapse: collapse;
          font-size: 13.5px;
        }
        .od-products-table th {
          font-size: 10px; font-weight: 700;
          letter-spacing: 2px; text-transform: uppercase;
          color: #bbb;
          padding: 10px 12px;
          border-bottom: 1px solid #f0ece4;
          text-align: left;
        }
        .od-products-table th:not(:first-child) { text-align: center; }
        .od-products-table td {
          padding: 14px 12px;
          border-bottom: 1px solid #f7f4ef;
          color: #333;
          vertical-align: middle;
        }
        .od-products-table td:not(:first-child) { text-align: center; }
        .od-products-table tr:last-child td { border-bottom: none; }
        .od-products-table tr:hover td { background: #faf8f4; }
        .od-product-name {
          font-weight: 600; color: #0d1b2a;
        }

        /* Footer bar */
        .od-footer-bar {
          background: #0d1b2a;
          border-radius: 16px;
          padding: 20px 28px;
          display: flex;
          align-items: center;
          justify-content: space-between;
          gap: 16px;
          flex-wrap: wrap;
        }
        .od-total-label {
          font-size: 11px; font-weight: 700;
          letter-spacing: 2px; text-transform: uppercase;
          color: rgba(255,255,255,0.4); margin-bottom: 4px;
        }
        .od-total-amount {
          font-family: 'Playfair Display', serif;
          font-size: 2rem; font-weight: 700;
          color: #c9a84c; line-height: 1;
        }
        .od-footer-actions { display: flex; gap: 10px; flex-wrap: wrap; }
        .od-btn {
          display: inline-flex; align-items: center; gap: 8px;
          padding: 12px 24px;
          border-radius: 50px;
          font-size: 12px; font-weight: 700;
          letter-spacing: 1px; text-transform: uppercase;
          text-decoration: none; border: none; cursor: pointer;
          transition: all 0.28s ease;
        }
        .od-btn.primary {
          background: #c9a84c; color: #000;
        }
        .od-btn.primary:hover {
          background: #fff; color: #0d1b2a;
          box-shadow: 0 8px 24px rgba(201,168,76,0.3);
        }
        .od-btn.outline {
          background: transparent; color: rgba(255,255,255,0.7);
          border: 1.5px solid rgba(255,255,255,0.2);
        }
        .od-btn.outline:hover {
          background: rgba(255,255,255,0.07);
          color: #fff;
        }
        .sk-pp { background: #f7f4ef; min-height: 100vh; padding-bottom: 80px; }

        /* Breadcrumb */
        .sk-breadcrumb {
          font-size: 12px; color: #999;
          padding: 16px 0 4px;
          letter-spacing: 0.5px;
          display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
        }
        .sk-breadcrumb a { color: #999; text-decoration: none; transition: color .2s; }
        .sk-breadcrumb a:hover { color: #c9a84c; }
        .sk-breadcrumb-sep { color: rgba(201,168,76,0.4); font-size: 8px; }
        .sk-breadcrumb span { color: #0d1b2a; font-weight: 600; }

        /* Gallery */
        .sk-gallery-main {
          border-radius: 20px; overflow: hidden;
          background: #fff;
          box-shadow: 0 4px 24px rgba(0,0,0,0.08);
          position: relative;
        }
        .sk-gallery-main .swiper-slide img {
          width: 100%; height: 480px;
          object-fit: contain;
          background: #fafaf8; padding: 24px;
          display: block;
        }
        .sk-gallery-thumbs { margin-top: 10px; }
        .sk-gallery-thumbs .swiper-slide {
          border-radius: 10px; overflow: hidden;
          border: 2px solid transparent;
          cursor: pointer; transition: border-color 0.2s;
          background: #fff; opacity: 0.55;
        }
        .sk-gallery-thumbs .swiper-slide-thumb-active {
          border-color: #c9a84c; opacity: 1;
        }
        .sk-gallery-thumbs .swiper-slide img {
          width: 100%; height: 72px; object-fit: cover; display: block;
        }

        /* Discount ribbon */
        .sk-discount-ribbon {
          position: absolute;
          top: 20px; left: 0;
          background: #0d1b2a;
          color: #c9a84c;
          font-size: 11px; font-weight: 700;
          letter-spacing: 1px;
          padding: 6px 14px 6px 12px;
          border-radius: 0 20px 20px 0;
          z-index: 5;
        }

        /* Info card */
        .sk-pp-info {
          background: #fff;
          border-radius: 20px;
          padding: 32px;
          box-shadow: 0 4px 24px rgba(0,0,0,0.07);
        }
        .sk-pp-breadcrumb-tags {
          display: flex; flex-wrap: wrap; gap: 6px;
          margin-bottom: 14px;
        }
        .sk-tag {
          font-size: 10px; font-weight: 700;
          letter-spacing: 1.5px; text-transform: uppercase;
          background: #f0ece4; color: #888;
          padding: 4px 10px; border-radius: 20px;
        }
        .sk-tag.gold { background: rgba(201,168,76,0.15); color: #a07830; }

        .sk-pp-name {
          font-family: 'Playfair Display', serif;
          font-size: 2rem; color: #0d1b2a;
          line-height: 1.2; margin-bottom: 6px;
        }

        /* Pricing */
        .sk-pp-pricing {
          display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px;
          margin: 16px 0; padding-bottom: 16px;
          border-bottom: 1px solid #f0ece4;
        }
        .sk-pp-final { font-size: 2rem; font-weight: 700; color: #0d1b2a; }
        .sk-pp-original { font-size: 1.1rem; text-decoration: line-through; color: #ccc; }
        .sk-pp-savings {
          font-size: 12px; font-weight: 700; color: #fff;
          background: #27a85a; padding: 4px 12px; border-radius: 20px;
        }

        /* Meta */
        .sk-pp-meta {
          display: flex; flex-wrap: wrap; gap: 24px;
          font-size: 13px; color: #666;
          margin: 16px 0;
        }
        .sk-pp-meta-item { display: flex; flex-direction: column; }
        .sk-pp-meta-item .label {
          font-size: 10px; font-weight: 700;
          letter-spacing: 1.5px; text-transform: uppercase;
          color: #ccc; margin-bottom: 4px;
        }
        .sk-pp-meta-item .value { color: #0d1b2a; font-weight: 600; font-size: 14px; }
        .sk-stock-badge {
          display: inline-flex; align-items: center; gap: 5px;
          font-size: 12px; font-weight: 600;
          padding: 5px 12px; border-radius: 20px;
        }
        .sk-stock-badge.in  { background: rgba(39,168,90,0.1);  color: #27a85a; }
        .sk-stock-badge.out { background: rgba(220,53,69,0.1); color: #dc3545; }

        /* Qty */
        .sk-qty-wrap {
          display: flex; align-items: center; gap: 20px;
          margin-bottom: 20px; flex-wrap: wrap;
        }
        .sk-qty-label {
          font-size: 10px; font-weight: 700;
          letter-spacing: 1.5px; text-transform: uppercase;
          color: #bbb; margin-bottom: 6px;
        }
        .sk-qty-control {
          display: inline-flex; align-items: center;
          border: 1.5px solid #e8e0d0; border-radius: 12px; overflow: hidden;
        }
        .sk-qty-btn {
          background: #f7f4ef; border: none;
          width: 40px; height: 42px; font-size: 18px;
          cursor: pointer; color: #555;
          transition: background .2s, color .2s;
        }
        .sk-qty-btn:hover { background: #0d1b2a; color: #c9a84c; }
        .sk-qty-val {
          min-width: 44px; text-align: center;
          font-weight: 700; font-size: 15px; color: #0d1b2a;
        }
        .sk-qty-total {
          font-size: 13px; color: #888;
        }
        .sk-qty-total strong { color: #0d1b2a; font-size: 18px; }

        /* Actions */
        .sk-pp-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }
        .sk-pp-btn {
          display: inline-flex; align-items: center; justify-content: center; gap: 9px;
          font-size: 12px; font-weight: 700;
          letter-spacing: 1.5px; text-transform: uppercase;
          padding: 14px 28px; border-radius: 12px; border: none;
          cursor: pointer; transition: all 0.3s;
          text-decoration: none;
        }
        .sk-pp-btn-primary {
          background: #0d1b2a; color: #c9a84c; flex: 1;
        }
        .sk-pp-btn-primary:hover {
          background: #c9a84c; color: #000;
          transform: translateY(-2px);
          box-shadow: 0 10px 28px rgba(201,168,76,0.3);
        }
        .sk-pp-btn-wish {
          background: #fff; color: #dc3545;
          border: 1.5px solid rgba(220,53,69,0.25);
          padding: 14px 20px;
        }
        .sk-pp-btn-wish:hover { background: #dc3545; color: #fff; border-color: #dc3545; }

        /* Trust */
        .sk-trust-badges {
          display: grid; grid-template-columns: repeat(2, 1fr);
          gap: 10px; margin-top: 20px;
          padding-top: 20px; border-top: 1px solid #f0ece4;
        }
        .sk-trust-badge {
          display: flex; align-items: center; gap: 8px;
          background: #faf8f4; border-radius: 10px;
          padding: 10px 12px;
          font-size: 11.5px; color: #555; font-weight: 500;
        }
        .sk-trust-badge i { color: #c9a84c; font-size: 15px; width: 16px; text-align: center; }

        /* Tabs */
        .sk-tabs {
          background: #fff; border-radius: 20px;
          padding: 28px;
          box-shadow: 0 2px 14px rgba(0,0,0,0.06);
          margin-top: 24px;
        }
        .sk-tab-nav {
          display: flex; gap: 0;
          border-bottom: 2px solid #f0ece4;
          margin-bottom: 28px;
        }
        .sk-tab-btn {
          font-size: 12px; font-weight: 700;
          letter-spacing: 1.5px; text-transform: uppercase;
          padding: 12px 24px; border: none; background: none;
          color: #bbb; cursor: pointer; position: relative;
          transition: color .2s;
        }
        .sk-tab-btn::after {
          content: ''; position: absolute;
          bottom: -2px; left: 0; right: 0;
          height: 2px; background: #c9a84c;
          transform: scaleX(0); transition: transform .25s;
          border-radius: 2px;
        }
        .sk-tab-btn.active { color: #0d1b2a; }
        .sk-tab-btn.active::after { transform: scaleX(1); }

        /* Reviews */
        .sk-review-item {
          padding: 18px 0; border-bottom: 1px solid #f0ece4;
        }
        .sk-review-item:last-child { border-bottom: none; }
        .sk-review-author { font-weight: 700; color: #0d1b2a; font-size: 14px; }
        .sk-review-date { font-size: 11px; color: #bbb; margin-left: 8px; }
        .sk-review-text { font-size: 13px; color: #666; margin-top: 6px; line-height: 1.7; }
        .sk-coming-soon {
          display: inline-flex; align-items: center; gap: 6px;
          background: rgba(201,168,76,0.1); color: #a07830;
          font-size: 11px; font-weight: 700;
          letter-spacing: 1px; text-transform: uppercase;
          padding: 5px 12px; border-radius: 20px; margin-bottom: 16px;
        }
        .sk-review-input {
          width: 100%; border: 1.5px solid #e8e0d0;
          border-radius: 12px; padding: 14px 16px;
          font-size: 13px; resize: none; outline: none;
          transition: border-color .2s; background: #f7f4ef;
          font-family: 'DM Sans', sans-serif;
        }
        .sk-review-input:focus { border-color: #c9a84c; }
        .sk-review-submit {
          margin-top: 10px;
          background: #0d1b2a; color: #c9a84c; border: none;
          padding: 12px 28px; border-radius: 10px;
          font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
          text-transform: uppercase; cursor: not-allowed; opacity: 0.5;
        }

        @media (max-width: 768px) {
          .sk-gallery-main .swiper-slide img { height: 300px; }
          .sk-pp-name { font-size: 1.5rem; }
          .sk-pp-info { padding: 20px; }
          .sk-trust-badges { grid-template-columns: 1fr; }
        }

        .sk-shop-page {
          background: #f7f4ef;
          min-height: 100vh;
          font-family: 'DM Sans', sans-serif;
        }

        /* Sidebar */
        .sk-sidebar {
          background: #fff;
          border-radius: 16px;
          padding: 24px;
          box-shadow: 0 2px 16px rgba(0,0,0,0.06);
          position: sticky;
          top: 80px;
        }
        .sk-sidebar-title {
          font-family: 'Playfair Display', serif;
          font-size: 1.1rem;
          color: #0d1b2a;
          margin-bottom: 20px;
          padding-bottom: 12px;
          border-bottom: 2px solid #c9a84c;
          display: flex; align-items: center; gap: 8px;
        }
        .sk-filter-group {
          margin-bottom: 24px;
        }
        .sk-filter-group-title {
          font-size: 10px;
          font-weight: 700;
          letter-spacing: 2px;
          text-transform: uppercase;
          color: #c9a84c;
          margin-bottom: 10px;
        }
        .sk-filter-item {
          display: block;
          font-size: 13px;
          color: #555;
          padding: 7px 12px;
          border-radius: 8px;
          text-decoration: none;
          transition: all 0.2s;
          margin-bottom: 3px;
          border: 1px solid transparent;
        }
        .sk-filter-item:hover {
          background: #f7f4ef;
          color: #0d1b2a;
          border-color: #e8e0d0;
        }
        .sk-filter-item.active {
          background: #0d1b2a;
          color: #c9a84c;
          font-weight: 600;
        }

        .sk-price-filter label {
          font-size: 11px;
          font-weight: 600;
          letter-spacing: 1px;
          text-transform: uppercase;
          color: #888;
          margin-bottom: 4px;
          display: block;
        }
        .sk-price-input {
          width: 100%;
          padding: 8px 12px;
          border: 2px solid #e8e0d0;
          border-radius: 8px;
          font-size: 13px;
          font-family: 'DM Sans', sans-serif;
          outline: none;
          transition: border-color 0.2s;
          background: #f7f4ef;
        }
        .sk-price-input:focus { border-color: #c9a84c; }
        .sk-price-btn {
          width: 100%;
          background: #0d1b2a;
          color: #c9a84c;
          border: none;
          padding: 10px;
          border-radius: 8px;
          font-size: 12px;
          font-weight: 700;
          letter-spacing: 1px;
          text-transform: uppercase;
          cursor: pointer;
          transition: all 0.25s;
          margin-top: 8px;
          font-family: 'DM Sans', sans-serif;
        }
        .sk-price-btn:hover { background: #c9a84c; color: #000; }

        /* Search & Sort bar */
        .sk-toolbar {
          background: #fff;
          border-radius: 12px;
          padding: 14px 18px;
          box-shadow: 0 2px 10px rgba(0,0,0,0.05);
          margin-bottom: 24px;
          display: flex;
          gap: 12px;
          align-items: center;
        }
        .sk-search-wrap {
          flex: 1;
          display: flex;
          border: 2px solid #e8e0d0;
          border-radius: 8px;
          overflow: hidden;
          transition: border-color 0.2s;
        }
        .sk-search-wrap:focus-within { border-color: #c9a84c; }
        .sk-search-input {
          flex: 1;
          border: none;
          padding: 9px 14px;
          font-size: 13px;
          font-family: 'DM Sans', sans-serif;
          outline: none;
          background: transparent;
        }
        .sk-search-btn {
          background: #0d1b2a;
          color: #c9a84c;
          border: none;
          padding: 0 18px;
          cursor: pointer;
          font-size: 13px;
          transition: background 0.2s;
        }
        .sk-search-btn:hover { background: #c9a84c; color: #000; }
        .sk-sort-select {
          border: 2px solid #e8e0d0;
          border-radius: 8px;
          padding: 9px 12px;
          font-size: 12px;
          font-family: 'DM Sans', sans-serif;
          outline: none;
          background: #f7f4ef;
          color: #333;
          cursor: pointer;
          min-width: 160px;
          transition: border-color 0.2s;
        }
        .sk-sort-select:focus { border-color: #c9a84c; }

        /* Mobile filter toggle */
        .sk-mobile-filter-btn {
          background: #0d1b2a;
          color: #c9a84c;
          border: none;
          border-radius: 10px;
          padding: 10px 18px;
          font-size: 12px;
          font-weight: 700;
          letter-spacing: 1px;
          text-transform: uppercase;
          cursor: pointer;
          display: flex; align-items: center; gap: 8px;
          transition: all 0.2s;
          font-family: 'DM Sans', sans-serif;
        }
        .sk-mobile-filter-btn:hover { background: #c9a84c; color: #000; }
        .sk-mobile-sidebar {
          background: #fff;
          border-radius: 16px;
          padding: 20px;
          margin-bottom: 20px;
          box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        .sk-results-count {
          font-size: 13px;
          color: #888;
        }
        .sk-results-count strong { color: #0d1b2a; }

        /* Quick Price Scrollable Rail */
        .sk-quick-price-bar {
          display: flex;
          align-items: center;
          gap: 8px;
          overflow-x: auto;
          padding: 4px 2px 8px;
          margin: 6px 0 2px;
          -webkit-overflow-scrolling: touch;
          scrollbar-width: none;
          -ms-overflow-style: none;
        }
        .sk-quick-price-bar::-webkit-scrollbar {
          display: none;
        }
        .sk-quick-price-chip {
          display: inline-flex;
          align-items: center;
          white-space: nowrap;
          font-size: 0.78rem;
          font-weight: 600;
          padding: 6px 14px;
          border-radius: 50px;
          cursor: pointer;
          transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
          flex-shrink: 0;
          border: 1px solid #e2dac9;
          background: #ffffff;
          color: #444455;
          box-shadow: 0 1px 4px rgba(0,0,0,0.03);
          user-select: none;
        }
        .sk-quick-price-chip:hover {
          border-color: #c9a84c;
          color: #0d1b2a;
          transform: translateY(-1px);
        }
        .sk-quick-price-chip.active {
          background: #0d1b2a;
          color: #e8c873;
          border-color: #0d1b2a;
          box-shadow: 0 3px 10px rgba(13, 27, 42, 0.25);
          font-weight: 700;
        }
        .sk-quick-price-label {
          font-size: 0.72rem;
          font-weight: 700;
          letter-spacing: 0.1em;
          text-transform: uppercase;
          color: #8a8a9a;
          display: inline-flex;
          align-items: center;
          gap: 5px;
          white-space: nowrap;
          flex-shrink: 0;
          margin-right: 2px;
        }

        @media (max-width: 576px) {
          .sk-quick-price-chip {
            font-size: 0.74rem;
            padding: 5px 12px;
          }
          .sk-quick-price-label {
            font-size: 0.68rem;
          }
        }

        .features-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #ddd;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #333;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.features-arrow:hover {
  background: #000;        /* change to your brand color */
  border-color: #000;
  color: #fff;
}

.sk-active-filter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #0d1b2a;
  color: #c9a84c;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.sk-active-filter-remove {
  background: none;
  border: none;
  color: rgba(201,168,76,0.6);
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  margin-left: 2px;
  text-decoration: none;
  transition: color 0.2s;
}

.sk-active-filter-remove:hover {
  color: #fff;
}

.sk-description {
  font-size: 14px;
  color: #555;
  line-height: 1.85;
  overflow: hidden;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Constrain anything Quill injects */
.sk-description img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.sk-description p {
  margin-bottom: 0.75rem;
}

.sk-description ul,
.sk-description ol {
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.sk-description a {
  color: #c9a84c;
  word-break: break-all;
}

.sk-description blockquote {
  border-left: 3px solid #c9a84c;
  padding-left: 1rem;
  color: #7A6E65;
  margin: 0 0 0.75rem;
}

.sk-description table {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  display: block;
}

/* ── Circular Category Cards ── */
.sk-cat-swiper-circle {
  padding: 12px 4px 28px !important;
  overflow: visible !important;
}

.sk-cat-circle-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.sk-cat-circle-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 180px;
  margin: 0 auto 16px;
  border-radius: 50%;
  padding: 4px;
  background: rgba(201, 168, 76, 0.18);
  transition: background 0.4s ease, transform 0.35s cubic-bezier(.25,.8,.25,1);
}

.sk-cat-circle-img-wrap::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  transition: border-color 0.4s ease, transform 0.4s ease;
}

.sk-cat-circle-card:hover .sk-cat-circle-img-wrap {
  background: var(--sk-gold, #c9a84c);
  transform: translateY(-6px);
}

.sk-cat-circle-card:hover .sk-cat-circle-img-wrap::before {
  border-color: rgba(201, 168, 76, 0.4);
  transform: scale(1.08);
}

.sk-cat-circle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  background: #f7f4ef;
  transition: transform 0.5s ease;
}

.sk-cat-circle-card:hover .sk-cat-circle-img {
  transform: scale(1.06);
}

.sk-cat-circle-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
  transition: color 0.25s ease;
}

.sk-cat-circle-card:hover .sk-cat-circle-name {
  color: var(--sk-gold, #c9a84c);
}

@media (max-width: 768px) {
  .sk-cat-circle-img-wrap { max-width: 130px; }
  .sk-cat-circle-name { font-size: 0.82rem; }
}

@media (max-width: 480px) {
  .sk-cat-circle-img-wrap { max-width: 100px; margin-bottom: 12px; }
  .sk-cat-circle-name { font-size: 0.75rem; }
}


/* ============================================================
   ShopKaro — Saved Addresses (addr-*)
   Reuses the existing navy + gold tokens/typography so this page
   sits alongside the order-detail (od-*) and product (sk-*) pages
   rather than introducing a new visual language.
   ============================================================ */

.addr-wrap {
  background: var(--sk-cream);
  min-height: 100vh;
  padding: 40px 0 80px;
  font-family: 'DM Sans', sans-serif;
}
.addr-container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Header bar — mirrors .od-page-header */
.addr-header {
  background: var(--sk-navy);
  border-radius: var(--radius-lg);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.addr-header-left { display: flex; align-items: center; gap: 16px; }
.addr-page-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: rgba(201,168,76,0.15);
  border: 1.5px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--sk-gold); font-size: 18px;
  flex-shrink: 0;
}
.addr-page-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #fff;
  margin: 0 0 2px;
  line-height: 1.2;
}
.addr-page-title em { font-style: italic; color: var(--sk-gold); }
.addr-page-sub {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(201,168,76,0.65);
  margin: 0;
}

/* Alerts */
.addr-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 20px;
}
.addr-alert-error { background: rgba(220,53,69,0.08); color: #dc3545; border: 1px solid rgba(220,53,69,0.18); }
.addr-alert-success { background: rgba(39,168,90,0.08); color: #1e8449; border: 1px solid rgba(39,168,90,0.2); }

/* Empty state — mirrors .wl-empty */
.addr-empty {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 16px rgba(13,27,42,0.06);
}
.addr-empty-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 72px; height: 72px;
  border: 1.5px solid rgba(201,168,76,0.35);
  border-radius: 50%;
  color: var(--sk-gold);
  font-size: 26px;
  margin-bottom: 20px;
}
.addr-empty-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--sk-navy);
  margin: 0 0 8px;
}
.addr-empty-desc { font-size: 13.5px; color: #999; margin-bottom: 22px; }

/* Cards grid */
.addr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.addr-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 22px 22px 18px;
  box-shadow: 0 2px 14px rgba(13,27,42,0.06);
  border: 1.5px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.addr-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(13,27,42,0.12);
}
.addr-card.is-default { border-color: rgba(201,168,76,0.35); }

.addr-default-pill {
  position: absolute;
  top: 16px; right: 16px;
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--sk-gold); color: #000;
  font-size: 10px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px;
}

.addr-card-top { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.addr-label-icon {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: rgba(201,168,76,0.1);
  color: var(--sk-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.addr-label-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--sk-navy);
}

.addr-text {
  font-size: 13.5px;
  color: #666;
  line-height: 1.65;
  margin: 0 0 16px;
}

.addr-card-actions {
  display: flex;
  gap: 18px;
  padding-top: 14px;
  border-top: 1px solid #f0ece4;
}
.addr-action-link {
  background: none; border: none; padding: 0;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--sk-navy);
  cursor: pointer;
  transition: color 0.2s;
}
.addr-action-link:hover { color: var(--sk-gold); }
.addr-action-link.danger { color: #dc3545; }
.addr-action-link.danger:hover { color: #b3242f; }
.addr-action-link:disabled { opacity: 0.5; cursor: not-allowed; }

/* Modal overlay */
.addr-overlay {
  position: fixed; inset: 0;
  background: rgba(13,27,42,0.55);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 16px;
  overflow-y: auto;
  z-index: 1050;
}
.addr-modal {
  background: #fff;
  width: 100%; max-width: 560px;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  overflow: hidden;
}
.addr-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 26px;
  background: var(--sk-navy);
}
.addr-modal-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #fff;
  margin: 0;
}
.addr-close {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}
.addr-close:hover { background: var(--sk-gold); color: #000; }

.addr-form { padding: 24px 26px 26px; }

.addr-field { margin-bottom: 16px; }
.addr-field-label {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #a89f92;
  margin-bottom: 6px;
}
.addr-field input,
.addr-field select,
.addr-field textarea {
  width: 100%;
  border: 1.5px solid #e8e0d0;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13.5px;
  font-family: 'DM Sans', sans-serif;
  background: #faf8f4;
  color: #1a1a1a;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  resize: none;
}
.addr-field input:focus,
.addr-field select:focus,
.addr-field textarea:focus {
  border-color: var(--sk-gold);
  background: #fff;
}

.addr-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.addr-search-wrap i {
  position: absolute; left: 14px;
  color: #bbb; font-size: 13px;
}
.addr-search-wrap input { padding-left: 36px; }

.addr-suggestions {
  list-style: none;
  margin: 6px 0 0;
  padding: 6px;
  background: #fff;
  border: 1px solid #f0ece4;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(13,27,42,0.12);
  max-height: 220px;
  overflow-y: auto;
}
.addr-suggestions li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: #444;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.addr-suggestions li i { color: var(--sk-gold); font-size: 12px; flex-shrink: 0; }
.addr-suggestions li:hover { background: rgba(201,168,76,0.1); color: var(--sk-navy); }

.addr-or-divider {
  display: flex; align-items: center; gap: 12px;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: #ccc;
  margin: 18px 0;
}
.addr-or-divider span { flex: 1; height: 1px; background: #f0ece4; }

/* Map card */
.addr-map-card {
  border: 1.5px solid #f0ece4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 18px;
}
.map-wrap { position: relative; height: 260px; }
.map-wrap .leaflet-container { height: 100%; width: 100%; }

.addr-locate-fab {
  position: absolute;
  right: 12px; bottom: 12px;
  z-index: 500;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--sk-navy);
  color: var(--sk-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  box-shadow: 0 6px 18px rgba(13,27,42,0.35);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.addr-locate-fab:hover:not(:disabled) { background: var(--sk-gold); color: #000; transform: scale(1.06); }
.addr-locate-fab:disabled { opacity: 0.7; cursor: wait; }
.addr-fab-spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(201,168,76,0.35);
  border-top-color: var(--sk-gold);
  border-radius: 50%;
  animation: addrSpin 0.7s linear infinite;
}
@keyframes addrSpin { to { transform: rotate(360deg); } }

.addr-map-footer { padding: 14px 16px; background: #faf8f4; }
.map-hint {
  margin: 0; font-size: 12.5px; color: #999;
  display: flex; align-items: center; gap: 8px;
}
.map-hint i { color: var(--sk-gold); }

.addr-location-status {
  display: flex; align-items: center; gap: 12px;
}
.addr-location-status i {
  width: 34px; height: 34px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(39,168,90,0.12);
  color: #1e8449;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.addr-location-status-label {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: #1e8449;
}
.addr-location-status-value {
  font-size: 13px; color: var(--sk-navy); font-weight: 600;
  margin-top: 2px;
}

.addr-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 480px) { .addr-form-row { grid-template-columns: 1fr; } }

.addr-checkbox-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: #555;
  margin-bottom: 20px;
  cursor: pointer;
}
.addr-checkbox-row input { accent-color: var(--sk-gold); width: 16px; height: 16px; }

.addr-modal-footer {
  display: flex; align-items: center; justify-content: flex-end;
  gap: 20px;
  padding-top: 6px;
}