/* ==========================================================================
   SKINITY LUXURY SKINCARE & COSMETICS DESIGN SYSTEM
   Inspired by Kharzaat Luxury Architecture
   ========================================================================== */

:root {
  --sk-black: #111111;
  --sk-onyx: #171717;
  --sk-graphite: #262626;
  --sk-stone: #888682;
  --sk-muted: #9e9c99;
  --sk-border: #e7e7e4;
  --sk-border-subtle: #f2f0ec;
  --sk-linen: #faf9f7;
  --sk-ivory: #f5f3ef;
  --sk-white: #ffffff;
  --sk-pink: #DE8A95;
  --sk-pink-dark: #cb7783;
  --sk-pink-light: #fdf2f4;
  --sk-olive: #BCBD6F;
  --sk-font-serif: 'Cormorant Garamond', 'Trirong', 'Book Antiqua', Georgia, serif;
  --sk-font-sans: 'Jost', 'Aileron', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
  font-family: var(--sk-font-sans);
  color: var(--sk-onyx);
  background-color: var(--sk-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Typography Helpers */
.font-serif {
  font-family: var(--sk-font-serif) !important;
}

.font-sans {
  font-family: var(--sk-font-sans) !important;
}

.text-onyx {
  color: var(--sk-onyx) !important;
}

.text-stone {
  color: var(--sk-stone) !important;
}

.text-pink {
  color: var(--sk-pink) !important;
}

.bg-onyx {
  background-color: var(--sk-onyx) !important;
}

.bg-linen {
  background-color: var(--sk-linen) !important;
}

.bg-ivory {
  background-color: var(--sk-ivory) !important;
}

.bg-pink {
  background-color: var(--sk-pink) !important;
}

.bg-pink-light {
  background-color: var(--sk-pink-light) !important;
}

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

.tracking-luxury {
  letter-spacing: 0.14em;
}

.tracking-wide-luxury {
  letter-spacing: 0.2em;
}

/* Luxury Announcement Marquee */
.sk-marquee-bar {
  background-color: var(--sk-onyx);
  color: var(--sk-white);
  overflow: hidden;
  white-space: nowrap;
  padding: 8px 0;
  position: relative;
}

.sk-marquee-track {
  display: inline-flex;
  animation: sk-marquee 32s linear infinite;
}

.sk-marquee-item {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
}

.sk-marquee-item i {
  color: var(--sk-pink);
  font-size: 0.55rem;
  margin-right: 12px;
}

@keyframes sk-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Header & Navigation */
.sk-header {
  background: #ffffff;
  border-bottom: 1px solid #e7e7e4;
  position: sticky;
  top: 0;
  z-index: 1020;
  transition: all 0.3s ease;
}

.sk-header-container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 992px) {
  .sk-header-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.sk-header-inner {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.sk-header-nav {
  gap: 2rem;
}

@media (min-width: 1200px) {
  .sk-header-nav {
    gap: 2.25rem;
  }
}

.sk-nav-link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(23, 23, 23, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
  padding: 6px 0;
  display: inline-flex;
  align-items: center;
}

.sk-nav-link:hover {
  color: #171717;
}

.sk-nav-link.active,
.sk-nav-link.text-onyx,
.sk-nav-link.fw-semibold {
  color: #171717;
  font-weight: 600;
}

.sk-nav-dropdown .dropdown-toggle::after {
  display: none !important;
}

.sk-header-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  text-decoration: none;
}

.sk-logo-img {
  height: 28px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

.sk-logo-img:hover {
  opacity: 0.75;
}

.sk-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}

@media (min-width: 576px) {
  .sk-header-actions {
    gap: 0.75rem;
  }
}

.sk-icon-btn {
  background: none;
  border: none;
  color: #171717;
  padding: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.sk-icon-btn:hover {
  color: #171717;
  opacity: 0.65;
  transform: none;
}

.sk-icon-btn.active {
  color: #171717;
}

.sk-icon-btn svg {
  width: 19px;
  height: 19px;
  stroke-width: 1.25;
}

.sk-cart-badge {
  position: absolute;
  top: 2px;
  right: 1px;
  background-color: var(--sk-pink, #df7a86);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 600;
  height: 15px;
  min-width: 15px;
  padding: 0 4px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Hero Section */
.sk-hero {
  position: relative;
  min-height: 560px;
  height: 76vh;
  width: 100%;
  overflow: hidden;
  background-color: #171717;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sk-hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.88);
  transform: scale(1);
  transition: transform 6s ease-out;
}

.sk-hero:hover .sk-hero-img {
  transform: scale(1.03);
}

.sk-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,17,17,0.2) 0%, rgba(17,17,17,0.45) 100%);
}

.sk-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--sk-white);
  padding: 0 20px;
  max-width: 860px;
}

.sk-hero-subtitle {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--sk-pink-light);
}

.sk-hero-title {
  font-family: var(--sk-font-serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  line-height: 1.06;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.sk-hero-desc {
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  max-width: 520px;
  margin: 0 auto 30px auto;
  font-weight: 300;
}

.sk-hero-btn {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sk-white);
  border-bottom: 1px solid var(--sk-white);
  padding-bottom: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.sk-hero-btn:hover {
  color: var(--sk-pink);
  border-bottom-color: var(--sk-pink);
}

/* Brands Marquee & Bar */
.sk-brands-bar {
  border-top: 1px solid var(--sk-border);
  border-bottom: 1px solid var(--sk-border);
  background-color: var(--sk-white);
  padding: 24px 0;
  overflow: hidden;
}

.sk-brands-track {
  display: inline-flex;
  align-items: center;
  animation: sk-brands-scroll 45s linear infinite;
  white-space: nowrap;
}

.sk-brands-bar:hover .sk-brands-track {
  animation-play-state: paused;
}

.sk-brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  margin: 0 10px;
  border-radius: 999px;
  background-color: var(--sk-linen);
  border: 1px solid var(--sk-border-subtle);
  color: var(--sk-onyx);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
}

.sk-brand-pill:hover {
  background-color: var(--sk-onyx);
  color: var(--sk-white);
  border-color: var(--sk-onyx);
  transform: translateY(-2px);
}

.sk-brand-pill .sparkle {
  color: var(--sk-pink);
  font-size: 0.6rem;
}

@keyframes sk-brands-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Section Headers */
.sk-section-header {
  text-align: center;
  margin-bottom: 38px;
}

.sk-section-subtitle {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sk-stone);
  margin-bottom: 8px;
}

.sk-section-title {
  font-family: var(--sk-font-serif);
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  font-weight: 300;
  color: var(--sk-onyx);
  line-height: 1.15;
}

/* Snap-Scroll Product Slider */
.sk-product-snap-container {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.sk-snap-card-wrapper {
  flex: 0 0 78%;
  scroll-snap-align: start;
}

@media (min-width: 576px) {
  .sk-snap-card-wrapper {
    flex: 0 0 45%;
  }
}

@media (min-width: 992px) {
  .sk-snap-card-wrapper {
    flex: 0 0 23.5%;
  }
}

/* Product Card */
.sk-product-card {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease;
}

.sk-product-image-box {
  position: relative;
  aspect-ratio: 17/22;
  background-color: var(--sk-linen);
  overflow: hidden;
  border-radius: 2px;
}

.sk-product-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.sk-product-card:hover .sk-product-img.primary {
  opacity: 0;
}

.sk-product-card:hover .sk-product-img.hover {
  opacity: 1;
  transform: scale(1.04);
}

.sk-product-img.hover {
  opacity: 0;
}

.sk-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: var(--sk-pink);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.sk-badge.badge-black {
  background-color: var(--sk-onyx);
}

.sk-quick-add-btn {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(17, 17, 17, 0.92);
  color: #fff;
  border: none;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 0;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
  z-index: 3;
}

.sk-product-card:hover .sk-quick-add-btn {
  opacity: 1;
  transform: translateY(0);
}

.sk-quick-add-btn:hover {
  background: var(--sk-pink);
}

.sk-quick-add-btn:disabled,
.sk-quick-add-btn.is-out-of-stock {
  background: rgba(120, 120, 120, 0.92);
  color: #f5f5f5;
  cursor: not-allowed;
  pointer-events: none;
}

.sk-quick-add-btn:disabled:hover,
.sk-quick-add-btn.is-out-of-stock:hover {
  background: rgba(120, 120, 120, 0.92);
  color: #f5f5f5;
}

.sk-product-details {
  padding-top: 14px;
}

.sk-product-brand {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sk-stone);
  margin-bottom: 4px;
}

.sk-product-title {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sk-onyx);
  line-height: 1.3;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sk-product-price {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--sk-onyx);
  display: flex;
  align-items: center;
  gap: 8px;
}

.sk-product-price .old-price {
  color: var(--sk-stone);
  text-decoration: line-through;
  font-size: 0.74rem;
  font-weight: 400;
}

/* Custom Scroll Progress Bar */
.sk-scroll-track {
  height: 2px;
  background-color: var(--sk-border);
  position: relative;
  width: 100%;
  margin-top: 28px;
  border-radius: 2px;
}

.sk-scroll-thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 25%;
  background-color: var(--sk-onyx);
  transition: left 0.15s ease-out;
  border-radius: 2px;
}

/* Dual Editorial Split Grid */
.sk-dual-editorial {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .sk-dual-editorial {
    grid-template-columns: 1fr 1fr;
  }
}

.sk-editorial-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background-color: #171717;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

@media (min-width: 992px) {
  .sk-editorial-card {
    aspect-ratio: 1/1;
  }
}

.sk-editorial-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  filter: brightness(0.85);
}

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

.sk-editorial-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.28);
  transition: background 0.4s ease;
}

.sk-editorial-card:hover .sk-editorial-overlay {
  background: rgba(17, 17, 17, 0.38);
}

.sk-editorial-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 24px;
}

.sk-editorial-kicker {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--sk-pink-light);
}

.sk-editorial-title {
  font-family: var(--sk-font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 18px;
}

.sk-editorial-link {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid #fff;
  padding-bottom: 3px;
  color: #fff;
  transition: all 0.3s ease;
}

.sk-editorial-card:hover .sk-editorial-link {
  color: var(--sk-pink);
  border-bottom-color: var(--sk-pink);
}

/* The House Brand Banner */
.sk-house-banner {
  position: relative;
  min-height: 480px;
  height: 64vh;
  overflow: hidden;
  background-color: var(--sk-onyx);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sk-house-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.72);
}

.sk-house-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 720px;
  padding: 0 20px;
}

.sk-house-title {
  font-family: var(--sk-font-serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.12;
  margin-bottom: 18px;
}

.sk-house-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 26px;
  font-weight: 300;
}

/* Category Regimen Grid */
.sk-category-card {
  text-decoration: none;
  color: inherit;
  display: block;
  text-align: center;
}

.sk-category-img-box {
  position: relative;
  aspect-ratio: 17/23;
  overflow: hidden;
  background-color: var(--sk-linen);
  margin-bottom: 14px;
}

.sk-category-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.7s ease;
}

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

.sk-category-name {
  font-family: var(--sk-font-serif);
  font-size: 1.22rem;
  font-weight: 400;
  margin-bottom: 4px;
  color: var(--sk-onyx);
}

.sk-category-link {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sk-stone);
  transition: color 0.25s ease;
}

.sk-category-card:hover .sk-category-link {
  color: var(--sk-pink);
}

/* Trust / Perks Grid */
.sk-perks-section {
  border-top: 1px solid var(--sk-border);
  border-bottom: 1px solid var(--sk-border);
  background-color: var(--sk-white);
  padding: 42px 0;
}

.sk-perk-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.sk-perk-icon {
  font-size: 1.4rem;
  color: var(--sk-onyx);
  margin-bottom: 4px;
}

.sk-perk-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sk-onyx);
  margin: 0;
}

.sk-perk-desc {
  font-size: 0.74rem;
  color: var(--sk-stone);
  margin: 0;
}

/* VIP Newsletter Box */
.sk-newsletter-section {
  background-color: var(--sk-onyx);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 68px 0;
  text-align: center;
}

.sk-newsletter-input-group {
  display: flex;
  max-width: 460px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: border-color 0.25s ease;
}

.sk-newsletter-input-group:focus-within {
  border-color: var(--sk-pink);
}

.sk-newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 18px;
  color: #fff;
  font-size: 0.85rem;
  outline: none;
}

.sk-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.sk-newsletter-btn {
  background-color: #fff;
  color: var(--sk-onyx);
  border: none;
  padding: 0 24px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
}

.sk-newsletter-btn:hover {
  background-color: var(--sk-pink);
  color: #fff;
}

/* Footer */
.sk-footer {
  background-color: var(--sk-onyx);
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 0 24px 0;
}

.sk-footer-heading {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}

.sk-footer-link {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.82rem;
  line-height: 2.1;
  display: block;
  transition: color 0.25s ease;
}

.sk-footer-link:hover {
  color: var(--sk-pink);
}

.sk-social-icon {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-right: 18px;
  text-decoration: none;
  transition: color 0.25s ease;
}

.sk-social-icon:hover {
  color: var(--sk-pink);
}

.sk-sub-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  margin-top: 50px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (min-width: 576px) {
  .sk-sub-footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* Slide-out Cart Drawer (Side Bag) */
.sk-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.sk-drawer-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

.sk-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 420px;
  background-color: var(--sk-white);
  z-index: 1060;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.sk-cart-drawer.open {
  transform: translateX(0);
}

.sk-drawer-header {
  height: 68px;
  border-bottom: 1px solid var(--sk-border);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.sk-drawer-title {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.sk-drawer-count {
  display: inline !important;
  font-weight: 600;
  white-space: nowrap;
}

.sk-drawer-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--sk-onyx);
  cursor: pointer;
  padding: 6px;
  transition: color 0.25s ease;
}

.sk-drawer-close:hover {
  color: var(--sk-pink);
}

.sk-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.sk-drawer-empty {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--sk-stone);
}

.sk-drawer-footer {
  border-top: 1px solid var(--sk-border);
  padding: 24px;
  background-color: var(--sk-linen);
  flex-shrink: 0;
}

.sk-cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--sk-border-subtle);
  align-items: center;
}

.sk-cart-item-img {
  width: 72px;
  height: 90px;
  object-fit: contain;
  background-color: var(--sk-linen);
  border-radius: 2px;
  padding: 6px;
}

.sk-cart-item-info {
  flex: 1;
}

.sk-cart-item-brand {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sk-stone);
}

.sk-cart-item-name {
  font-size: 0.76rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--sk-onyx);
  margin: 2px 0 4px 0;
  line-height: 1.25;
}

.sk-cart-item-price {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--sk-onyx);
}

.sk-cart-qty-btn {
  background: none;
  border: 1px solid var(--sk-border);
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  cursor: pointer;
}

.sk-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: var(--sk-onyx);
  color: #fff;
  border: none;
  padding: 14px 24px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.sk-btn-primary:hover {
  background-color: #000;
  color: #fff;
}

.sk-btn-pink {
  background-color: var(--sk-pink);
}

.sk-btn-pink:hover {
  background-color: var(--sk-pink-dark);
}

/* Toast alert notification */
.sk-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: var(--sk-onyx);
  color: #fff;
  padding: 14px 22px;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  border-left: 3px solid var(--sk-pink);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  z-index: 1080;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sk-toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .sk-header-inner {
    height: 60px;
  }
}

/* =========================================================================
   SHOP / CATALOG PAGE (Kharzaat Parity)
   ========================================================================= */

/* Category Navigation Pill Strip */
.sk-category-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2rem;
  border-top: 1px solid var(--sk-border);
  border-bottom: 1px solid var(--sk-border);
  padding: 1.1rem 1rem;
}

@media (max-width: 768px) {
  .sk-category-nav {
    gap: 0.75rem 1.25rem;
    padding: 0.85rem 0.5rem;
  }
}

.sk-category-pill {
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sk-stone);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.sk-category-pill:hover {
  color: var(--sk-onyx);
}

.sk-category-pill.active {
  color: var(--sk-onyx);
  font-weight: 600;
}

.sk-category-pill.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--sk-onyx);
}

/* Shop Card with 17/25 aspect ratio */
.sk-card-ratio {
  position: relative;
  aspect-ratio: 17/25;
  background-color: var(--sk-linen);
  overflow: hidden;
}

.sk-card-img-primary,
.sk-card-img-secondary {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
}

.sk-card-img-secondary {
  opacity: 0;
}

.sk-catalog-card:hover .sk-card-img-primary {
  opacity: 0;
}

.sk-catalog-card:hover .sk-card-img-secondary {
  opacity: 1;
}

/* Fallback if no secondary image exists */
.sk-catalog-card:hover .sk-card-img-primary:only-child {
  opacity: 0.92;
  transform: scale(1.02);
}

/* Shop Card Badges */
.sk-badge-flame {
  background-color: #B3261E;
  color: #fff;
  font-size: 0.56rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 3px 7px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.sk-badge-sale {
  background-color: #fff;
  color: var(--sk-onyx);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 3px 7px;
  border: 1px solid var(--sk-border);
}

.sk-badge-luxury {
  background-color: var(--sk-pink);
  color: #fff;
  font-size: 0.56rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 3px 7px;
}

/* Card Hover Quick Add Bar */
.sk-card-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px;
  display: flex;
  gap: 6px;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 4;
}

.sk-catalog-card:hover .sk-card-actions {
  opacity: 1;
  transform: translateY(0);
}

.sk-card-action-btn {
  flex: 1;
  background: rgba(255, 255, 255, 0.95);
  color: var(--sk-onyx);
  border: none;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 10px;
  transition: all 0.2s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.sk-card-action-btn:hover {
  background: #000;
  color: #fff;
}

.sk-card-action-btn:disabled,
.sk-card-action-btn.is-out-of-stock {
  background: rgba(235, 235, 235, 0.95);
  color: #888;
  cursor: not-allowed;
  pointer-events: none;
}

.sk-card-action-btn:disabled:hover,
.sk-card-action-btn.is-out-of-stock:hover {
  background: rgba(235, 235, 235, 0.95);
  color: #888;
}

.sk-card-action-icon {
  background: rgba(255, 255, 255, 0.95);
  color: var(--sk-onyx);
  border: none;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sk-card-action-icon:hover {
  background: #000;
  color: #fff;
}

/* Custom Minimalist Select */
.sk-select-minimal {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--sk-border);
  background-color: transparent;
  padding: 8px 28px 8px 12px;
  color: var(--sk-onyx);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23171717' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.sk-select-minimal:focus {
  outline: none;
  border-color: var(--sk-onyx);
}

/* Luxury Pagination (Kharzaat Style) */
.sk-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 3rem 0 1rem;
}

.sk-pagination .page-item .page-link {
  border: 1px solid var(--sk-border);
  background-color: #fff;
  color: var(--sk-onyx);
  font-size: 0.75rem;
  padding: 7px 14px;
  text-decoration: none;
  transition: all 0.2s ease;
  letter-spacing: 0.05em;
}

.sk-pagination .page-item.active .page-link {
  background-color: var(--sk-onyx);
  border-color: var(--sk-onyx);
  color: #fff;
}

.sk-pagination .page-item .page-link:hover {
  background-color: var(--sk-linen);
  color: var(--sk-onyx);
}

.sk-pagination .page-item.disabled .page-link {
  opacity: 0.4;
  pointer-events: none;
}

/* =========================================================================
   HEADER BRAND DROPDOWN
   ========================================================================= */
.sk-nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* Seamless hover bridge: connects trigger to dropdown menu */
.sk-nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 20px;
  background: transparent;
  z-index: 1045;
  pointer-events: auto;
}

.sk-brands-dropdown {
  background-color: #fff !important;
  border: 1px solid var(--sk-border) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08) !important;
  border-radius: 0 !important;
  top: 100% !important;
  margin: 0 !important;
  z-index: 1060 !important;
  animation: skFadeIn 0.15s ease-out;
}

/* Seamless hover bridge: connects top of menu upwards to trigger */
.sk-brands-dropdown::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
  background: transparent;
  display: block;
  z-index: 1050;
  pointer-events: auto;
}

@media (min-width: 992px) {
  .sk-nav-dropdown:hover .sk-brands-dropdown,
  .sk-nav-dropdown.is-open .sk-brands-dropdown,
  .sk-brands-dropdown:hover,
  .sk-brands-dropdown.show {
    display: block !important;
  }
}

@keyframes skFadeIn {
  from {
    opacity: 0;
    transform: translateY(2px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sk-dropdown-brand-link {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--sk-onyx);
  text-decoration: none;
  padding: 6px 10px;
  transition: all 0.15s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sk-dropdown-brand-link:hover {
  background-color: var(--sk-linen);
  color: var(--sk-pink-dark);
  padding-left: 14px;
}

/* =========================================================================
   SINGLE PRODUCT PAGE (Kharzaat Parity)
   ========================================================================= */

.sk-pdp-container {
  max-width: 1460px;
  margin-left: auto;
  margin-right: auto;
}

/* Gallery Layout */
.sk-gallery-layout {
  display: flex;
  flex-direction: column-reverse;
  gap: 12px;
}

@media (min-width: 992px) {
  .sk-gallery-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
  }
}

/* Thumbnails */
.sk-gallery-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}

@media (min-width: 992px) {
  .sk-gallery-thumbs {
    flex-direction: column;
    overflow-y: auto;
    max-height: 760px;
    width: 68px;
    shrink: 0;
  }
}

.sk-gallery-thumb-btn {
  width: 56px;
  aspect-ratio: 4/5;
  background-color: var(--sk-linen);
  border: 1px solid transparent;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  opacity: 0.55;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

@media (min-width: 992px) {
  .sk-gallery-thumb-btn {
    width: 64px;
  }
}

.sk-gallery-thumb-btn:hover {
  opacity: 0.9;
}

.sk-gallery-thumb-btn.active {
  opacity: 1;
  border-color: var(--sk-onyx);
  box-shadow: 0 0 0 1px var(--sk-onyx);
}

.sk-gallery-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Main Focal Image */
.sk-gallery-main {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  background-color: var(--sk-linen);
  overflow: hidden;
}

@media (min-width: 992px) {
  .sk-gallery-main {
    max-height: 800px;
  }
}

.sk-gallery-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.25s ease-in-out;
}

/* Sticky Product Sidebar */
@media (min-width: 992px) {
  .sk-pdp-sticky {
    position: sticky;
    top: 96px;
    align-self: flex-start;
  }
}

/* Quantity Box */
.sk-pdp-qty-box {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--sk-border);
  background-color: #fff;
}

.sk-pdp-qty-btn {
  background: none;
  border: none;
  width: 38px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--sk-onyx);
  transition: opacity 0.15s ease;
}

.sk-pdp-qty-btn:hover {
  opacity: 0.6;
}

.sk-pdp-qty-input {
  width: 44px;
  height: 44px;
  border: none;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--sk-onyx);
  background: transparent;
  outline: none;
}

/* PDP Perks 3-Col Block */
.sk-pdp-perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border-top: 1px solid var(--sk-border);
  border-bottom: 1px solid var(--sk-border);
  padding: 16px 0;
  margin: 24px 0;
}

.sk-pdp-perk-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

.sk-pdp-perk-text {
  font-size: 0.62rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sk-stone);
  line-height: 1.35;
}

/* Luxury Accordion */
.sk-accordion-item {
  border-bottom: 1px solid var(--sk-border);
}

.sk-accordion-item:first-child {
  border-top: 1px solid var(--sk-border);
}

.sk-accordion-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  color: var(--sk-onyx);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.sk-accordion-btn:hover {
  color: var(--sk-pink-dark);
}

.sk-accordion-icon {
  transition: transform 0.25s ease;
  font-size: 0.95rem;
  line-height: 1;
}

.sk-accordion-btn[aria-expanded="true"] .sk-accordion-icon {
  transform: rotate(45deg);
}

.sk-accordion-content {
  font-size: 0.86rem;
  line-height: 1.75;
  color: #5b5957;
  padding-bottom: 20px;
}

/* =========================================================================
   CONTACT PAGE (KHARZAAT REPLICA STYLES)
   ========================================================================= */
.sk-contact-page {
  background-color: #fff;
  min-height: calc(100vh - 200px);
}

.sk-contact-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9a9898;
}

.sk-contact-title {
  font-family: var(--sk-font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 300;
  color: var(--sk-onyx);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.sk-contact-intro {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #5b5957;
}

.sk-contact-icon-box {
  width: 24px;
  flex-shrink: 0;
}

.sk-contact-item-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sk-onyx);
  margin-bottom: 6px;
}

.sk-contact-item-link {
  font-size: 0.88rem;
  color: #5b5957;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}

.sk-contact-item-link:hover {
  color: var(--sk-onyx);
}

.sk-contact-item-text {
  font-size: 0.88rem;
  color: #5b5957;
}

.sk-social-connect-link {
  font-size: 0.85rem;
  color: #5b5957;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.sk-social-connect-link:hover {
  color: var(--sk-onyx);
}

.sk-contact-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sk-onyx);
  margin-bottom: 8px;
}

.sk-contact-input {
  width: 100%;
  border: 1px solid var(--sk-border);
  background-color: #fff;
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--sk-onyx);
  outline: none;
  border-radius: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sk-contact-input:focus {
  border-color: var(--sk-onyx);
  box-shadow: 0 0 0 1px var(--sk-onyx);
}

.sk-contact-textarea {
  resize: none;
  min-height: 150px;
}

.sk-contact-submit-btn {
  background-color: var(--sk-onyx);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 16px 42px;
  border: none;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.15s ease;
  display: inline-block;
}

.sk-contact-submit-btn:hover {
  background-color: #000;
  transform: translateY(-1px);
}

.sk-contact-alert-success {
  background-color: #f7faf7;
  border: 1px solid #d4edda;
}

/* =========================================================================
   ACCOUNT & AUTHENTICATION (KHARZAAT REPLICA STYLES)
   ========================================================================= */
.sk-account-page {
  min-height: calc(100vh - 220px);
}

.sk-auth-card {
  margin: 0 auto;
}

.sk-auth-tab-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sk-stone);
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: -1px;
}

.sk-auth-tab-btn:hover {
  color: var(--sk-onyx);
}

.sk-auth-tab-btn.active {
  color: var(--sk-onyx);
  border-bottom: 2px solid var(--sk-onyx);
  font-weight: 600;
}

.hover-onyx:hover {
  color: var(--sk-onyx) !important;
}

.cursor-pointer {
  cursor: pointer;
}

.accent-onyx {
  accent-color: var(--sk-onyx);
}





