/* ===============================
   KANDY GEM CENTRE – COLOR THEME
   Royal Ceylon Luxury
   =============================== */

:root {
  --kgc-dark: #0B0B0B;
  --kgc-dark-soft: #141414;
  --kgc-gold: #C9A24D;
  --kgc-gold-hover: #B18B3C;
  --kgc-light: #F8F6F2;
  --kgc-white: #FFFFFF;
  --kgc-text-main: #1C1C1C;
  --kgc-text-muted: #6F6F6F;
  --kgc-text-light: #CFCFCF;
  --kgc-border: #E6DEC9;
  --kgc-border-dark: #2A2A2A;
  --kgc-sapphire: #1F4FD8;
  --kgc-ruby: #9C1C2E;
  --kgc-emerald: #0E6B4F;
  --kgc-shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.10);
  --kgc-shadow-gold: 0 10px 25px rgba(201, 162, 77, 0.25);
  --kgc-radius-md: 14px;
  --kgc-radius-lg: 22px;
  --kgc-transition: .3s ease;

  --color-bg-light: #F7F4EF;
  --color-bg-dark: #0E0E0E;
  --color-text-primary: #1E1B18;
  --color-text-secondary: #5F554C;
  --color-text-invert: #F8F4EE;
  --color-gold-primary: #C9A24D;
  --color-gold-soft: #D8BF7A;
  --color-gold-muted: #B08D3F;
  --color-footer-bg: #6C5F55;
  --color-footer-text: #E6DED2;
  --color-footer-muted: #CFC5B8;
}

/* ===============================
   RESET & BASE
   =============================== */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--kgc-light);
  color: var(--kgc-text-main);
}

a {
  text-decoration: none;
  color: var(--color-text-primary);
  transition: color .3s ease;
}

a:hover {
  color: var(--color-gold-primary);
}

img {
  max-width: 100%;
  display: block;
}

p {
  color: var(--color-text-secondary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-text-primary);
}

.container {
  width: min(1180px, 92%);
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 18px;
  text-align: left;
}

.section {
  background: var(--kgc-light);
}

/* ===============================
   HEADER
   =============================== */

.sk-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--kgc-dark);
  box-shadow: var(--kgc-shadow-soft);
  padding: 0 0;
}

.sk-header__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 18px;
}

.sk-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
}

.sk-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.sk-brand__text {
  line-height: 1.1;
  min-width: 0;
}

.sk-brand__name {
  color: var(--kgc-white);
  font-family: "Cinzel", serif;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: .8px;
  white-space: nowrap;
}

.sk-brand__tag {
  color: var(--kgc-text-light);
  font-size: 20px;
  opacity: .75;
  white-space: nowrap;
}

.sk-header__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sk-nav--desktop {
  display: flex;
  align-items: center;
  gap: 22px;
}

.sk-nav--desktop a {
  color: var(--kgc-white);
  text-decoration: none;
  font-size: 17px;
  opacity: .92;
  font-weight: bold;
  transition: var(--kgc-transition);
}

.sk-nav--desktop a:hover {
  opacity: 1;
  color: var(--kgc-gold);
}

.sk-nav--desktop a.active {
  color: var(--kgc-gold);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.sk-cart {
  position: relative;
  color: var(--kgc-white);
  text-decoration: none;
  font-size: 20px;
  transition: var(--kgc-transition);
}

.sk-cart:hover {
  color: var(--kgc-gold);
}

.sk-cart__icon {
  display: inline-block;
  line-height: 1;
}

.sk-cart__count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--kgc-gold);
  color: var(--kgc-dark);
  font-size: 11px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 999px;
  min-width: 18px;
  text-align: center;
}

.sk-menu-btn {
  display: none;
  font-size: 22px;
  background: transparent;
  border: 0;
  color: var(--kgc-white);
  cursor: pointer;
}

.sk-auth-links {
  display: flex;
  align-items: center;
  align-self: center;
  line-height: 1;
}

.auth-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 18px;
  color: #d4af37;
  text-decoration: none;
  border-radius: 50%;
  transition: color 0.2s;
}

.auth-link:hover,
.auth-link:active,
.auth-link:focus {
  color: var(--kgc-gold);
  text-decoration: none;
  outline: none;
}

.user-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--kgc-white);
  line-height: 1;
  padding: 0;
  border-radius: 50%;
  transition: color 0.2s;
}

.sk-user-profile {
  position: relative;
  align-self: center;
}

.user-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 8px 0;
  margin: 4px 0 0 0;
  display: none;
  min-width: 140px;
  z-index: 100;
}

.user-dropdown li a {
  display: block;
  padding: 8px 16px;
  color: #2d3748;
  text-decoration: none;
}

.user-dropdown li a:hover {
  background: #f0e6d2;
  color: #b8860b;
}

/* ===============================
   OVERLAY & DRAWER
   =============================== */

.sk-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.sk-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.sk-drawer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 280px;
  max-width: 85%;
  background: var(--kgc-dark);
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform .28s ease;
  box-shadow: 10px 0 25px rgba(0, 0, 0, 0.35);
  padding: 16px;
}

.sk-drawer.open {
  transform: translateX(0);
}

.sk-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.sk-drawer__title {
  color: var(--kgc-white);
  font-weight: 800;
}

.sk-drawer__close {
  background: transparent;
  border: 0;
  color: var(--kgc-white);
  font-size: 20px;
  cursor: pointer;
}

.sk-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sk-drawer__nav a {
  color: var(--kgc-white);
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
}

.sk-drawer__nav a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.sk-drawer__hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 10px 0;
}

.sk-drawer__user a {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  color: #2d3748;
}

.sk-drawer__user a:hover {
  background: #f0e6d2;
  color: #b8860b;
}

.no-scroll {
  overflow: hidden;
}

/* ===============================
   BUTTONS
   =============================== */

.btn-gold {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--kgc-gold);
  color: var(--kgc-dark);
  font-weight: 700;
  text-decoration: none;
  border: 2px solid var(--kgc-gold);
  box-shadow: var(--kgc-shadow-gold);
  transition: var(--kgc-transition);
}

.btn-gold:hover {
  background: transparent;
  color: var(--kgc-gold);
  border-color: var(--kgc-gold);
  box-shadow: none;
}

.btn-gold.small,
.btn-outline.small {
  padding: 8px 12px;
  font-size: 13px;
}

.btn-outline {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  border: 2px solid var(--color-gold-primary);
  color: var(--color-gold-primary);
  font-weight: 700;
  text-decoration: none;
  transition: all .25s ease;
}

.btn-outline:hover {
  background: var(--color-gold-primary);
  color: #111;
}

/* ===============================
   HERO
   =============================== */

.sk-hero {
  padding: 60px 0;
  position: relative;
}

.sk-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.sk-hero__text {
  text-align: left;
}

.sk-hero__text h1 {
  margin: 0 0 14px;
  font-family: Cinzel, serif;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.25;
  color: var(--color-text-primary);
}

.sk-hero__text h1 span {
  color: var(--color-gold-primary);
}

.sk-list {
  margin: 16px 0 20px;
  padding-left: 22px;
  list-style-type: disc;
}

.sk-list li {
  margin-bottom: 6px;
  font-size: 15px;
  color: var(--color-text-secondary);
}

.sk-hero__media {
  position: relative;
}

.hero-slider {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.25);
}

.hero-slider::before {
  content: "";
  display: block;
  padding-top: 58%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .45s ease;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  z-index: 5;
  display: grid;
  place-items: center;
  transition: background .3s ease;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.65);
}

.hero-prev {
  left: 14px;
}

.hero-next {
  right: 14px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  z-index: 6;
}

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.55);
}

.hero-dot.is-active {
  background: #fff;
}

/* ===============================
   FEATURES STRIP
   =============================== */

.sk-features {
  background: #fff;
  padding: 10px 0;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}

.sk-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.sk-feature {
  background: #f6f6f7;
  border: 1px solid #e9e9ea;
  padding: 16px;
  text-align: center;
  border-radius: 12px;
  font-weight: 700;
}

/* ===============================
   SECTION TITLE & SHARED
   =============================== */

.sk-title {
  text-align: center;
  font-family: Cinzel, serif;
  font-size: 30px;
  margin: 0 0 14px;
  color: var(--color-text-primary);
}

.sk-sub {
  color: #555;
  max-width: 620px;
}

/* ===============================
   EXPLORE COLLECTIONS
   =============================== */

.explore-collections {
  padding-top: 40px;
  padding-bottom: 40px;
}

.explore-collections h2,
.explore-collections p,
.tradition-kandy h2,
.tradition-kandy p {
  text-align: left;
  margin-left: 0;
}

.sk-collections__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.sk-card {
  background: var(--kgc-white);
  border: 1px solid var(--kgc-border);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, .08);
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-text-primary);
}

.sk-card span {
  color: #b8892c;
  font-weight: 800;
}

.sk-card--img {
  position: relative;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
  transition: transform .3s ease, box-shadow .3s ease;
  padding: 0;
}

.sk-card--img:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
}

.sk-card--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.85);
}

.sk-card__info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, .65), transparent);
  color: #fff;
}

.sk-card__info h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--color-gold-soft);
  letter-spacing: 0.5px;
}

.sk-card__info span {
  font-size: 14px;
  font-weight: 600;
  color: #d4af37;
}

/* ===============================
   HAND-SELECTED HIGHLIGHTS
   =============================== */

/* ===============================
   HAND-SELECTED HIGHLIGHTS
   =============================== */

.hand-selected {
  padding: 8px 0;
}

.hand-selected h2,
.hand-selected p {
  text-align: left;
  margin-left: 0;
}

#hlWrap {
  position: relative;
  overflow: hidden;
  width: calc(100% - 40px);
  margin: 16px auto 0;
}

#hlTrack {
  display: flex;
  flex-wrap: nowrap;
  padding: 4px 0 8px;
  cursor: grab;
}

#hlTrack:active {
  cursor: grabbing;
}

/* ── Arrows ── */
.hl-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #111;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: all .2s ease;
}

.hl-arrow:hover {
  background: var(--kgc-gold);
  color: #fff;
  box-shadow: var(--kgc-shadow-gold);
}

.hl-prev {
  left: -0px;
}

.hl-next {
  right: -0px;
}

/* ── HL Card ── */
.hl-card {
  background: var(--kgc-white);
  border: 1px solid var(--kgc-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--kgc-shadow-soft);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  min-width: 0;
  cursor: grab;
  transition: transform .25s ease, box-shadow .25s ease;
  margin-right: 8px;
}

.hl-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--kgc-shadow-gold);
}

.hl-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.hl-card .hl-info {
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  overflow: hidden;
}

.hl-card .hl-name {
  font-weight: 700;
  font-size: 13px;
  color: var(--kgc-text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hl-card .hl-price {
  font-weight: 800;
  font-size: 14px;
  color: var(--kgc-gold);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Desktop ── */
@media (min-width: 769px) {
  .hl-card {
    flex: 0 0 220px;
    width: 220px;
  }

  .hl-card img {
    height: 150px;
  }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  #hlTrack {
    gap: 12px;
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .hl-card {
    flex: 0 0 auto;
  }

  .hl-card img {
    height: 170px;
  }

  .hl-card .hl-info {
    padding: 10px 12px 12px;
  }

  .hl-card .hl-name {
    font-size: 13px;
  }

  .hl-card .hl-price {
    font-size: 14px;
  }

  .hl-dots {
    display: flex;
  }
}

/* ── HL Card: shared styles ── */
.hl-card {
  background: var(--kgc-white);
  border: 1px solid var(--kgc-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--kgc-shadow-soft);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  min-width: 0;
  transition: transform .25s ease, box-shadow .25s ease;
}

.hl-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--kgc-shadow-gold);
}

.hl-card img {
  width: 100%;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.hl-card .hl-info {
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  overflow: hidden;
}

.hl-card .hl-name {
  font-weight: 700;
  font-size: 13px;
  color: var(--kgc-text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hl-card .hl-price {
  font-weight: 800;
  font-size: 14px;
  color: var(--kgc-gold);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Controls */
.hl-controls {
  display: flex;
  gap: 8px;
  align-items: center;
}

.hl-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--kgc-border);
  background: var(--kgc-white);
  color: var(--kgc-text-main);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s ease;
}

.hl-arrow:hover {
  background: var(--kgc-gold);
  border-color: var(--kgc-gold);
  color: #fff;
}

.hl-dots {
  display: none;
}

.hl-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .18);
  border: 0;
  cursor: pointer;
  transition: .2s;
}

.hl-dot.active {
  width: 20px;
  border-radius: 4px;
  background: var(--kgc-gold);
}

/* ===============================
   STORY / TRADITION SECTION
   =============================== */

.tradition-kandy {
  padding: 70px 0;
}

.custom-gem .sk-title {
  text-align: center;
}

.sk-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: center;
}

.sk-story__media {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.story-slider {
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0, 0, 0, .18);
  background: #111;
}

.story-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .5s ease;
}

.story-slide.is-active {
  opacity: 1;
}

.story-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, .35);
  color: #fff;
  cursor: pointer;
}

.story-prev {
  left: 12px;
}

.story-next {
  right: 12px;
}

.story-dots {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.story-dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, .45);
  cursor: pointer;
}

.story-dots button.is-active {
  background: #d4af37;
}

/* ===============================
   TRUST STRIP
   =============================== */

section.sk-trust {
  background: #fff;
  padding: 10px 0;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}

.sk-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-items: stretch;
}

.sk-trust__grid>.sk-trust {
  background: #f6f6f7;
  border: 1px solid #e9e9ea;
  padding: 16px;
  text-align: center;
  border-radius: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===============================
   QUICK ACTIONS
   =============================== */

.custom-gem {
  padding: 70px 0;
}

.custom-gem h2,
.custom-gem p {
  text-align: left;
  margin-left: 0;
}

.sk-actions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  justify-items: center;
  margin-top: 22px;
}

/* ===============================
   INSTAGRAM
   =============================== */

.sk-instagram {
  padding: 60px 0;
  background: var(--kgc-light);
}

.sk-instagram .sk-title {
  color: #833AB4;
  text-align: center;
  margin-bottom: 36px;
  letter-spacing: 1px;
}

.sk-ig__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.sk-ig__slider {
  overflow: hidden;
  border-radius: 18px;
  display: flex;
  justify-content: center;
}

.sk-ig__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  scrollbar-width: none;
}

.sk-ig__track::-webkit-scrollbar {
  display: none;
}

.sk-ig__card {
  flex: 0 0 calc((100% - 16px * 3) / 4);
  border-radius: 16px;
  overflow: hidden;
  background: #eee;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
  transition: transform .35s ease;
}

.sk-ig__card:hover {
  transform: translateY(-6px);
}

.sk-ig__card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.sk-ig__card:hover img {
  transform: scale(1.06);
}

/* ===============================
   FOOTER
   =============================== */

.sk-footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: 46px 0 28px;
}

.sk-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  align-items: start;
}

.sk-footer h4 {
  font-family: "Cinzel", serif;
  font-weight: 700;
  letter-spacing: .5px;
  margin: 0 0 12px;
  font-size: 16px;
  color: #F8F4EE;
}

.sk-footer p {
  margin: 8px 0;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  opacity: .92;
  color: var(--color-footer-text);
}

.sk-footer a {
  color: var(--color-footer-text);
}

.sk-footer a:hover {
  color: var(--kgc-gold);
}

.sk-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.sk-footer__social a {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .10);
  color: #fff;
  text-decoration: none;
}

.sk-footer__bottom {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  text-align: center;
  color: var(--color-footer-muted);
  font-size: 14px;
}

.sk-footer__bottom small {
  display: block;
  opacity: .9;
  margin-bottom: 14px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
}

.sk-footer__payments {
  display: flex;
  justify-content: center;
}

.sk-footer__payments img {
  max-width: 440px;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

/* ===============================
   GEMSTONES PAGE
   =============================== */

.gem-hero {
  background: var(--kgc-light);
  padding: 60px 0;
}

.gem-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: center;
}

.gem-hero__title {
  font-family: "Cinzel", serif;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.12;
  margin: 0 0 14px;
  color: #111;
}

.gem-hero__title span {
  color: #b88a2b;
}

.gem-hero__sub {
  font-family: "Inter", sans-serif;
  color: #333;
  line-height: 1.65;
  margin: 0 0 18px;
}

.gem-hero__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 14px 0 22px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #ececec;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #222;
}

.badge i {
  color: #b88a2b;
}

.badge-gemstone {
  background: #e8f5e9;
  color: #2e7d32;
}

.badge-jewelry {
  background: #fce4ec;
  color: #880e4f;
}

.badge-unknown {
  background: #f5f5f5;
  color: #757575;
}

.gem-hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.gem-hero__media {
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
}

.hero-slider--page {
  position: relative;
  width: 100%;
  height: 340px;
}

.hero-slider--page .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .35s ease;
}

.hero-slider--page .hero-slide.is-active {
  opacity: 1;
}

.hero-slider--page img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gem-filter {
  background: #fff;
  border-bottom: 1px solid #ececec;
  padding: 18px 0;
}

.gem-filter__grid {
  display: grid;
  grid-template-columns: 220px 220px 220px 1fr;
  gap: 12px;
  align-items: center;
}

.gem-filter__search {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #e6e6e6;
  background: #fafafa;
  border-radius: 999px;
  padding: 10px 14px;
}

.gem-filter__search input {
  border: none;
  outline: none;
  width: 100%;
  background: transparent;
  font-family: "Inter", sans-serif;
}

.gem-grid-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.gem-item {
  background: var(--kgc-light);
  border: 1px solid #eee;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .06);
}

.gem-item__img {
  height: 200px;
  background: #111;
}

.gem-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gem-item__body {
  padding: 14px 14px 16px;
}

.gem-item__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.gem-item__top h3 {
  font-family: "Cinzel", serif;
  font-size: 16px;
  margin: 0;
  color: #111;
}

.price {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  color: var(--kgc-gold);
  font-weight: 600;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: #555;
}

.meta i {
  color: #b88a2b;
  margin-right: 6px;
}

.gem-item__btns {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.gem-empty {
  margin-top: 18px;
  font-family: "Inter", sans-serif;
  color: #666;
}

.gem-why {
  background: #fff;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  padding: 28px 0;
}

.gem-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.why-card {
  background: #FFFFFF;
  border: 1px solid #E6DEC9;
  border-radius: 16px;
  padding: 18px 16px;
}

.why-card i {
  color: #b88a2b;
  font-size: 22px;
}

.why-card h3 {
  font-family: "Cinzel", serif;
  font-size: 16px;
  margin: 10px 0 6px;
}

.why-card p {
  font-family: "Inter", sans-serif;
  color: #444;
  margin: 0;
  line-height: 1.55;
}

/* ===============================
   SHOP PAGE
   =============================== */

.shop-hero {
  background: var(--kgc-light);
  padding: 60px 0;
}

.shop-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: center;
}

.shop-hero__title {
  font-family: "Cinzel", serif;
  font-size: clamp(28px, 3vw, 44px);
  margin: 0 0 12px;
  color: var(--kgc-text-main);
}

.shop-hero__title span {
  color: var(--kgc-gold);
}

.shop-hero__sub {
  margin: 0;
  color: var(--kgc-text-muted);
  line-height: 1.65;
  max-width: 560px;
}

.shop-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 0;
}

.shop-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--kgc-border);
  color: var(--kgc-text-main);
  font-size: 13px;
}

.shop-badge i {
  color: var(--kgc-gold);
}

.shop-hero__media {
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .15);
}

.shop-hero__media img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.shop-filter {
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 18px 0;
}

.shop-filter__grid {
  display: grid;
  grid-template-columns: 1fr 220px 240px 220px 140px;
  gap: 12px;
  align-items: center;
}

.shop-search {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #e6e6e6;
  background: #fafafa;
  border-radius: 999px;
  padding: 10px 14px;
}

.shop-search input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-family: "Inter", sans-serif;
}

.shop-select {
  border: 1px solid #e6e6e6;
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  font-family: "Inter", sans-serif;
}

.shop-grid {
  padding: 26px 0 70px;
  background: var(--kgc-light);
}

.shop-grid__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 16px;
}

.shop-grid__title {
  font-family: "Cinzel", serif;
  margin: 0;
  color: var(--kgc-text-main);
}

.shop-grid__count {
  color: var(--kgc-text-muted);
  font-size: 13px;
}

.shop-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.p-card {
  background: #fff;
  border: 1px solid var(--kgc-border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.p-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 46px rgba(0, 0, 0, .10);
}

.p-media {
  position: relative;
  height: 190px;
  background: #111;
}

.p-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-tag {
  position: absolute;
  left: 12px;
  top: 12px;
  background: rgba(0, 0, 0, .55);
  color: #fff;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
}

.p-body {
  padding: 14px 14px 16px;
}

.p-title {
  font-family: "Cinzel", serif;
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--kgc-text-main);
}

.p-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: var(--kgc-text-muted);
}

.p-meta i {
  color: var(--kgc-gold);
  margin-right: 6px;
}

.p-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.p-price {
  font-weight: 800;
  color: var(--kgc-text-main);
}

.p-actions {
  display: flex;
  gap: 8px;
}

.shop-empty {
  margin-top: 18px;
  color: var(--kgc-text-muted);
}

/* ===============================
   CONTACT PAGE
   =============================== */

.contact-hero {
  background: var(--kgc-light);
  padding: 60px 0;
}

.contact-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 36px;
  align-items: center;
}

.contact-title {
  font-family: "Cinzel", serif;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.15;
  margin: 0 0 14px;
  color: var(--kgc-text-main);
}

.contact-title span {
  color: var(--kgc-gold);
}

.contact-sub {
  font-family: "Inter", sans-serif;
  color: var(--kgc-text-muted);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 18px;
}

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--kgc-border);
  font-size: 13px;
  color: var(--kgc-text-main);
}

.contact-badges i {
  color: var(--kgc-gold);
}

.contact-hero__media {
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
}

.contact-hero__media img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.contact-section {
  padding: 70px 0;
  background: var(--kgc-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 36px;
}

.contact-info {
  background: #fff;
  border: 1px solid var(--kgc-border);
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .06);
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  font-family: "Inter", sans-serif;
  color: var(--kgc-text-main);
}

.contact-info i {
  color: var(--kgc-gold);
  width: 18px;
  text-align: center;
}

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.contact-social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 77, .12);
  color: var(--kgc-gold);
  font-size: 16px;
  transition: all .25s ease;
}

.contact-social a:hover {
  background: var(--kgc-gold);
  color: #111;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--kgc-border);
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .06);
}

.contact-form form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--kgc-border);
  padding: 12px 14px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  outline: none;
  background: #fafafa;
}

.contact-form textarea {
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--kgc-gold);
  background: #fff;
}

.contact-form button {
  margin-top: 6px;
  align-self: flex-start;
}

.contact-map {
  margin-top: 14px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--kgc-border);
  background: #111;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .06);
}

.contact-map iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
}

/* ===============================
   ABOUT PAGE
   =============================== */

.about-hero {
  padding: 60px 0;
  background: var(--kgc-light);
}

.about-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
}

.about-hero__title {
  margin: 0 0 12px;
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: clamp(18px, 3vw, 36px);
  line-height: 1.15;
  color: var(--kgc-text-main);
}

.about-hero__title span {
  color: var(--kgc-gold);
}

.about-hero__sub {
  margin: 0 0 18px;
  font-family: "Inter", sans-serif;
  color: var(--kgc-text-muted);
  line-height: 1.7;
  max-width: 62ch;
}

.about-hero__bullets {
  display: grid;
  gap: 10px;
  margin: 12px 0 22px;
}

.about-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--kgc-white);
  border: 1px solid var(--kgc-border);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--kgc-text-main);
}

.about-bullet i {
  color: var(--kgc-gold);
  font-size: 16px;
}

.about-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.about-hero__media {
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.about-hero__media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.about-stats {
  background: #fff;
  padding: 14px 0;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}

.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-items: stretch;
}

.about-stats .stat {
  background: #f6f6f7;
  border: 1px solid #e9e9ea;
  padding: 16px;
  text-align: center;
  border-radius: 12px;
  font-weight: 700;
  display: grid;
  gap: 6px;
}

.about-stats .stat__num {
  font-family: "Cinzel", serif;
  font-size: 18px;
  color: var(--kgc-text-main);
}

.about-stats .stat__label {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: var(--kgc-text-muted);
  font-weight: 600;
}

.about-story {
  padding: 70px 0;
}

.about-story__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: start;
}

.about-story__card {
  background: var(--kgc-white);
  border: 1px solid var(--kgc-border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
}

.about-story__card h3 {
  margin: 0 0 12px;
  font-family: "Cinzel", serif;
  font-size: 18px;
  color: var(--kgc-text-main);
}

.about-story__card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.about-story__card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  color: var(--kgc-text-main);
  font-size: 14px;
}

.about-story__card i {
  color: var(--kgc-gold);
}

.about-timeline {
  padding: 70px 0;
}

.timeline {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.timeline__item {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
}

.timeline__dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--kgc-gold);
  margin-top: 8px;
  box-shadow: 0 10px 24px rgba(201, 162, 77, 0.35);
}

.timeline__box {
  background: var(--kgc-white);
  border: 1px solid var(--kgc-border);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
}

.timeline__box h4 {
  margin: 0 0 6px;
  font-family: "Cinzel", serif;
  font-size: 16px;
  color: var(--kgc-text-main);
}

.timeline__box p {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--kgc-text-muted);
  line-height: 1.6;
}

.about-trust {
  padding: 70px 0;
}

.about-trust__grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.trust-card {
  background: var(--kgc-white);
  border: 1px solid var(--kgc-border);
  border-radius: 18px;
  padding: 18px 16px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.10);
}

.trust-card i {
  color: var(--kgc-gold);
  font-size: 22px;
}

.trust-card h3 {
  margin: 10px 0 6px;
  font-family: "Cinzel", serif;
  font-size: 16px;
  color: var(--kgc-text-main);
}

.trust-card p {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--kgc-text-muted);
  line-height: 1.6;
}

.sk-trust-strip {
  background: #fff;
  padding: 10px 0;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}

.sk-trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.sk-trust-strip__item {
  background: #f6f6f7;
  border: 1px solid #e9e9ea;
  padding: 16px;
  text-align: center;
  border-radius: 12px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-cta {
  padding: 40px 0;
  background: var(--kgc-light);
}

.about-cta__inner {
  background: var(--kgc-white);
  border: 1px solid var(--kgc-border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.about-cta__inner h2 {
  margin: 0 0 6px;
  font-family: "Cinzel", serif;
  font-size: 18px;
  color: var(--kgc-text-main);
}

.about-cta__inner p {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--kgc-text-muted);
  line-height: 1.6;
}

/* ===============================
   CURRENCY SELECTOR
   =============================== */

.currency-selector {
  position: relative;
}

.currency-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(184, 144, 72, 0.35);
  border-radius: 8px;
  padding: 6px 11px;
  color: #e8d5a3;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease;
  line-height: 1;
}

.currency-btn:hover,
.currency-btn.open {
  background: rgba(184, 144, 72, 0.18);
  border-color: #b89048;
}

.currency-flag {
  font-size: 1rem;
  line-height: 1;
}

.currency-code {
  letter-spacing: 0.05em;
}

.currency-chevron {
  font-size: 0.6rem;
  opacity: 0.65;
  transition: transform 0.22s ease;
  margin-left: 1px;
}

.currency-btn.open .currency-chevron {
  transform: rotate(180deg);
}

.currency-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  width: 255px;
  background: #160e04;
  border: 1px solid rgba(184, 144, 72, 0.28);
  border-radius: 12px;
  box-shadow: 0 14px 48px rgba(0, 0, 0, 0.6), 0 2px 8px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  z-index: 9999;
  animation: kgcCurrencyIn 0.16s ease;
}

.currency-dropdown.open {
  display: block;
}

@keyframes kgcCurrencyIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.currency-search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(184, 144, 72, 0.13);
}

.currency-search-wrap>i {
  color: #9a7c4e;
  font-size: 0.74rem;
  flex-shrink: 0;
}

.currency-search-wrap input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #e8d5a3;
  font-size: 0.83rem;
  font-family: 'Inter', sans-serif;
}

.currency-search-wrap input::placeholder {
  color: #5c4a2e;
}

.currency-list {
  list-style: none;
  margin: 0;
  padding: 5px 0;
  max-height: 280px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #b89048 #160e04;
}

.currency-list::-webkit-scrollbar {
  width: 5px;
}

.currency-list::-webkit-scrollbar-track {
  background: #160e04;
}

.currency-list::-webkit-scrollbar-thumb {
  background: #b89048;
  border-radius: 3px;
}

.currency-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  cursor: pointer;
  color: #d4b896;
  font-size: 0.83rem;
  transition: background 0.13s ease;
  user-select: none;
}

.currency-list li:hover {
  background: rgba(184, 144, 72, 0.10);
}

.currency-list li.active {
  background: rgba(184, 144, 72, 0.18);
  color: #f5dd88;
}

.c-flag {
  font-size: 1.15rem;
  line-height: 1;
  flex-shrink: 0;
}

.c-code {
  font-weight: 700;
  min-width: 38px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.c-name {
  color: #9a7c4e;
  font-size: 0.76rem;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.currency-list li.active .c-name {
  color: #c9a84c;
}

.c-rate {
  margin-left: auto;
  font-size: 0.70rem;
  color: #5c4a2e;
  white-space: nowrap;
  flex-shrink: 0;
  padding-left: 4px;
}

@keyframes kgcPriceFlash {
  0% {
    opacity: 0.3;
  }

  100% {
    opacity: 1;
  }
}

[data-usd] {
  animation: none;
}

[data-usd].fx-flash {
  animation: kgcPriceFlash 0.3s ease forwards;
}

/* ===============================
   MISC / UTILITIES
   =============================== */

.logout-text {
  color: var(--kgc-white);
}

.special-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.option-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
}

.option-tag i {
  color: #d4af37;
}

.option-tag input {
  display: none;
}

.option-tag input:checked+i {
  color: #b8962e;
}

.option-tag:has(input:checked) {
  border-color: #d4af37;
  background: #fffaf0;
}

.empty-cart-button-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.empty-cart-button-container .btn-gold {
  display: inline-block;
  width: auto;
}

/* ===============================
   RESPONSIVE — TABLET (600–1024px)
   =============================== */

@media (max-width: 1024px) {
  .sk-hero {
    padding: 22px 0;
  }

  .sk-hero__grid {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

  .sk-hero__text h1 {
    font-size: 30px;
  }

  .sk-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sk-collections__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sk-story__grid {
    grid-template-columns: 1fr;
  }

  .sk-trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sk-ig__card {
    flex-basis: calc((100% - 16px * 2) / 3);
  }

  .sk-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gem-hero__grid {
    grid-template-columns: 1fr;
  }

  .gem-filter__grid {
    grid-template-columns: 1fr;
  }

  .gem-grid-page {
    grid-template-columns: repeat(2, 1fr);
  }

  .gem-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-hero__grid {
    grid-template-columns: 1fr;
  }

  .shop-filter__grid {
    grid-template-columns: 1fr;
  }

  .shop-products {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-hero__grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-hero__grid {
    grid-template-columns: 1fr;
  }

  .about-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-story__grid {
    grid-template-columns: 1fr;
  }

  .about-trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sk-trust-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (min-width: 1200px) {
  .container {
    width: min(1400px, 96%);
    max-width: 1400px;
    padding-left: 28px;
    padding-right: 28px;
  }

  .sk-header__inner {
    padding: 10px 28px;
  }

  .sk-logo {
    height: 70px;
  }

  .sk-brand__name {
    font-size: 35px;
  }

  .sk-hero__grid {
    gap: 44px;
  }

  .sk-hero__media .hero-slider {
    max-width: 100%;
    width: 100%;
  }

  .sk-collections__grid {
    gap: 24px;
  }

  .sk-card--img {
    height: 240px;
  }
}

/* ===============================
   RESPONSIVE — MOBILE (≤900px)
   =============================== */

@media (max-width: 900px) {
  .sk-nav--desktop {
    display: none;
  }

  .sk-menu-btn {
    display: inline-block;
  }

  .sk-header__inner {
    padding: 7px 14px;
  }

  .sk-logo {
    height: 34px;
  }

  .sk-brand__name {
    font-size: 14px;
  }

  .sk-brand__tag {
    display: none;
  }

  .hero-slider::before {
    padding-top: 65%;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  .sk-ig__card {
    flex-basis: calc((100% - 16px) / 2);
  }
}

/* ===============================
   RESPONSIVE — MOBILE (≤768px)
   =============================== */

@media (max-width: 768px) {

  /* Header */
  .sk-header__inner {
    padding: 12px;
  }

  .sk-logo {
    height: 30px;
  }

  .sk-brand__name {
    font-size: 16px;
    letter-spacing: 0.5px;
  }

  .sk-brand__tag {
    display: flex;
    font-size: 12px;
  }

  .sk-auth-links {
    display: none;
  }

  .sk-user-profile {
    display: none;
  }

  .currency-selector {
    display: flex;
    width: 30%;
    margin-right: 5px;
  }

  .currency-btn {
    font-size: 11px;
    padding: 4px 6px;
    gap: 3px;
  }

  .currency-flag {
    font-size: 12px;
  }

  .currency-code {
    font-size: 11px;
  }

  .currency-chevron {
    font-size: 9px;
  }

  .currency-dropdown {
    width: 750%;
  }

  .sk-cart__count {
    top: -6px;
    right: -6px;
    font-size: 10px;
    padding: 2px 5px;
  }

  .sk-cart__icon {
    font-size: 18px;
  }

  .sk-user-profile {
    display: none;
  }

  .sk-drawer__user a {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: #2d3748;
  }

  .sk-drawer__user a:hover {
    background: #f0e6d2;
    color: #b8860b;
  }

  /* Hero */
  .sk-hero {
    margin: 0;
    padding: 0;
  }

  .sk-hero .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .sk-hero__grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .sk-hero__media {
    position: relative;
  }

  .sk-hero__media img {
    width: 100%;
    height: auto;
    display: block;
  }

  .sk-hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 2;
  }

  .sk-hero__text {
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    transform: translateY(-50%);
    z-index: 3;
    color: #fff;
    text-align: center;
  }

  #content-hero-headline {
    font-size: 80%;
  }

  #content-hero-subheadline {
    font-size: 80%;
  }

  .btn-gold {
    font-size: 80%;
    padding: 2%;
    margin-bottom: 8%;
  }

  /* Hero list */
  .sk-hero .sk-list {
    list-style: disc;
    list-style-position: inside;
    padding: 0;
    margin: 5px auto;
    display: inline-block;
    text-align: left;
  }

  .sk-hero__text {
    font-family: "Cinzel", serif;
    text-align: center;
  }

  .sk-list li {
    color: #ffffff;
  }

  /* Collections */
  .sk-collections__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .sk-card--img {
    padding: 0;
    margin: 0;
  }

  .sk-card--img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }

  /* Trust strip */
  .sk-trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Instagram */
  .sk-title {
    font-size: 22px;
  }

  .sk-ig__card {
    flex-basis: calc((100% - 16px) / 2);
  }

  /* Story */
  .sk-story__grid {
    grid-template-columns: 1fr;
  }

  /* About */
  .about-hero__cta {
    flex-wrap: wrap;
    justify-content: center;
  }

  .about-hero__cta a {
    flex: 1 1 45%;
    text-align: center;
  }

  .about-hero__media img {
    height: 300px;
  }

  .hero-slider--page {
    height: 280px;
  }

  /* Contact */
  .contact-hero__media img {
    height: 280px;
  }

  .contact-map iframe {
    height: 200px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Shop */
  .shop-hero__media img {
    height: 280px;
  }
}

/* ===============================
   RESPONSIVE — SMALL MOBILE (≤520px)
   =============================== */

@media (max-width: 520px) {
  .sk-features__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .sk-feature {
    font-size: 11px;
    padding: 10px 6px;
  }

  .sk-collections__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sk-card__info h3 {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--color-gold-soft);
    letter-spacing: 0.5px;
  }

  .sk-card__info span {
    font-size: 10px;
    font-weight: 600;
    color: #d4af37;
  }

  .sk-actions__grid {
    grid-template-columns: 1fr;
  }

  .sk-footer__grid {
    grid-template-columns: 1fr;
  }

  .sk-trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sk-trust__grid>.sk-trust {
    font-size: 15px;
    padding: 10px 6px;
  }

  .sk-ig__card {
    flex-basis: 100%;
  }

  .gem-grid-page {
    grid-template-columns: 1fr;
  }

  .gem-why__grid {
    grid-template-columns: 1fr;
  }

  .about-stats__grid {
    grid-template-columns: 1fr;
  }

  .about-trust__grid {
    grid-template-columns: 1fr;
  }

  .sk-trust-strip__grid {
    grid-template-columns: 1fr;
  }

  .about-hero__cta a {
    flex: 1 1 100%;
  }

  .shop-products {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .p-card {
    border-radius: 12px;
    overflow: hidden;
  }

  .p-media {
    height: 130px;
  }

  .p-tag {
    font-size: 10px;
    padding: 4px 7px;
  }

  .p-body {
    padding: 8px 8px 10px;
  }

  .p-meta {
    display: none;
  }

  .p-options {
    display: none !important;
  }

  .p-title {
    font-family: "Cinzel", serif;
    font-size: 11px;
    margin-bottom: 5px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .p-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-top: 6px;
  }

  .p-price {
    font-size: 13px;
    font-weight: 800;
  }

  .p-actions {
    display: flex;
    width: 100%;
    gap: 4px;
  }

  .p-actions .btn-outline.small,
  .p-actions .btn-gold.small {
    flex: 1;
    text-align: center;
    padding: 5px 4px;
    font-size: 10px;
  }

  .empty-cart-button-container {
    flex-direction: column;
  }
}

/* ===============================
   RESPONSIVE — XSMALL (≤480px)
   =============================== */

@media (max-width: 480px) {
  .hero-slider {
    border-radius: 0;
    box-shadow: none;
  }

  .sk-header__right {
    gap: 10px;
  }

  .sk-logo {
    height: 34px;
  }

  .sk-brand__name {
    font-size: 13px;
    letter-spacing: 0.3px;
  }

  .sk-brand__tag {
    font-size: 12px;
  }

  .currency-btn {
    font-size: 10px;
    padding: 3px 5px;
  }

  .currency-code {
    font-size: 10px;
  }

  .hero-slider::before {
    padding-top: 75%;
  }

  .sk-hero__text h1 {
    font-size: 26px;
  }
}

.reviews-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.reviews-section h2 {
  font-family: 'Cinzel', serif;
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: bold;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* ── HEADER SEARCH ─────────────────────────────────────────────── */
.sk-search {
  position: relative;
  display: flex;
  align-items: center;
}

.sk-search__input-wrap {
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 24px;
  padding: 6px 0px;
  gap: 0px;
  width: 0;
  overflow: hidden;
  opacity: 0;
  transition: width 0.3s ease, opacity 0.3s ease;
}

.sk-search.open .sk-search__input-wrap {
  width: 220px;
  opacity: 1;
}

.sk-search__input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  width: 100%;
  color: #333;
}

.sk-search__btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #ffffff;
  font-size: 16px;
  padding: 4px;
  flex-shrink: 0;
}

.sk-search__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 320px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid #e2e8f0;
  z-index: 9999;
  overflow: hidden;
  display: none;
}

.sk-search__dropdown.show {
  display: block;
}

.sk-search__dropdown-header {
  padding: 10px 16px;
  font-size: 12px;
  color: #999;
  border-bottom: 1px solid #f0f0f0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sk-search__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
  border-bottom: 1px solid #f9f9f9;
}

.sk-search__item:hover {
  background: #fff8e7;
}

.sk-search__item img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  flex-shrink: 0;
}

.sk-search__item-info {
  flex: 1;
  min-width: 0;
}

.sk-search__item-name {
  font-size: 14px;
  font-weight: 600;
  color: #0B0B0B;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sk-search__item-cat {
  font-size: 12px;
  color: #999;
  margin-top: 2px;
}

.sk-search__item-price {
  font-size: 14px;
  font-weight: 700;
  color: #C9A24D;
  flex-shrink: 0;
}

.sk-search__empty {
  padding: 24px 16px;
  text-align: center;
  color: #999;
  font-size: 14px;
}

.sk-search__loading {
  padding: 20px 16px;
  text-align: center;
  color: #C9A24D;
  font-size: 14px;
}

.sk-search__footer {
  padding: 10px 16px;
  text-align: center;
  border-top: 1px solid #f0f0f0;
  font-size: 13px;
}

.sk-search__footer a {
  color: #C9A24D;
  font-weight: 600;
  text-decoration: none;
}

.sk-search__footer a:hover {
  text-decoration: underline;
}