/* ========================================
   KANCHWALA JEWELLERS — Luxury Theme
   Inspired by Shopify Strass Theme
   ======================================== */

:root {
  --color-burgundy: #5C0A2E;
  --color-burgundy-light: #8B1A3A;
  --color-gold: #C9A96E;
  --color-gold-light: #D4B87C;
  --color-gold-dark: #A88B4A;
  --color-ivory: #FAF6F0;
  --color-cream: #F5EDE0;
  --color-charcoal: #1A1A1A;
  --color-dark: #111111;
  --color-text: #333333;
  --color-text-light: #777777;
  --color-border: #E8E0D4;
  --color-white: #FFFFFF;

  --font-heading: 'Cairo', 'Noto Kufi Arabic', sans-serif;
  --font-accent: 'Noto Kufi Arabic', 'Cairo', sans-serif;
  --font-body: 'Cairo', -apple-system, sans-serif;

  --header-height: 72px;
  --container-width: 1280px;
  --section-spacing: 100px;

  --ease-luxury: cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  direction: rtl;
}

body {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
  text-align: right;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* ========================================
   SCROLLING ANNOUNCEMENT BAR
   ======================================== */
.announcement-bar {
  background: var(--color-charcoal);
  color: var(--color-gold);
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
}

.announcement-bar__track {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  animation: marquee 30s linear infinite;
  will-change: transform;
}

.announcement-bar__slide {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  flex-shrink: 0;
}

.announcement-bar__divider {
  font-size: 8px;
  opacity: 0.4;
  flex-shrink: 0;
}

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

.announcement-bar:hover .announcement-bar__track {
  animation-play-state: paused;
}

/* ========================================
   HEADER
   ======================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.3s var(--ease-luxury);
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.header__container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.header__menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.header__menu-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--color-charcoal);
  transition: 0.3s;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 44px;
  height: 44px;
  background: var(--color-burgundy);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  border-radius: 2px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--color-charcoal);
  line-height: 1.1;
}

.logo-tagline {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--color-gold-dark);
  font-weight: 500;
}

.header__nav {
  display: flex;
  gap: 32px;
}

.header__nav a {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.4s var(--ease-luxury);
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--color-burgundy);
}

.header__nav a:hover::after,
.header__nav a.active::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__icon {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-charcoal);
  padding: 6px;
  position: relative;
  transition: color 0.3s;
}

.header__icon:hover {
  color: var(--color-burgundy);
}

.cart-count {
  position: absolute;
  top: -2px;
  right: -4px;
  background: var(--color-burgundy);
  color: var(--color-white);
  font-size: 9px;
  font-weight: 600;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========================================
   MOBILE MENU
   ======================================== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  visibility: hidden;
}

.mobile-menu.active {
  visibility: visible;
}

.mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.4s;
}

.mobile-menu.active .mobile-menu__overlay {
  opacity: 1;
}

.mobile-menu__panel {
  position: absolute;
  right: 0;
  top: 0;
  width: 320px;
  height: 100%;
  background: var(--color-white);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-luxury);
  padding: 32px;
}

.mobile-menu.active .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu__close {
  position: absolute;
  top: 20px;
  left: 20px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--color-text);
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 60px;
}

.mobile-menu__nav a {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--color-charcoal);
  transition: color 0.3s;
}

.mobile-menu__nav a:hover {
  color: var(--color-burgundy);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-luxury);
  text-decoration: none;
}

.btn--primary {
  background: var(--color-burgundy);
  color: var(--color-white);
}

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

.btn--outline {
  background: transparent;
  color: var(--color-charcoal);
  border: 1px solid var(--color-charcoal);
}

.btn--outline:hover {
  background: var(--color-charcoal);
  color: var(--color-white);
}

.btn--sm {
  padding: 12px 28px;
  font-size: 10px;
}

.btn--full {
  width: 100%;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  height: 90vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1A1A1A 0%, #5C0A2E 40%, #3A1A2E 70%, #1A1A1A 100%);
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: url('images/pendant-4-white.jpeg') center/cover;
  opacity: 0.3;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.hero__label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 24px;
  font-weight: 500;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-family: var(--font-accent);
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__actions .btn--outline {
  color: var(--color-white);
  border-color: rgba(255,255,255,0.4);
}

.hero__actions .btn--outline:hover {
  background: var(--color-white);
  color: var(--color-charcoal);
  border-color: var(--color-white);
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero__scroll-indicator span {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ========================================
   TRUST BAR
   ======================================== */
.trust-bar {
  background: var(--color-ivory);
  padding: 32px 0;
  border-bottom: 1px solid var(--color-border);
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-item__icon {
  color: var(--color-gold);
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-charcoal);
}

.trust-item span {
  font-size: 11px;
  color: var(--color-text-light);
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
  padding: var(--section-spacing) 0;
}

.section__header {
  text-align: center;
  margin-bottom: 60px;
}

.section__label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 500;
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  color: var(--color-charcoal);
  margin-bottom: 12px;
}

.section__desc {
  font-family: var(--font-accent);
  font-size: 18px;
  color: var(--color-text-light);
  font-weight: 300;
}

/* ========================================
   COLLECTIONS GRID
   ======================================== */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.collection-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.collection-card--large {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.collection-card__image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 280px;
  overflow: hidden;
}

.collection-card--large .collection-card__image {
  min-height: 580px;
}

/* Collection Background Gradients */
.collection-bg--bridal {
  background: url('images/pendant-1-black.jpeg') center/cover !important;
}
.collection-bg--rings {
  background: url('images/ring-1.jpeg') center/cover !important;
}
.collection-bg--necklaces {
  background: url('images/pendant-3-white.jpeg') center/cover !important;
}
.collection-bg--bangles {
  background: url('images/bangle-1.jpeg') center/cover !important;
}
.collection-bg--earrings {
  background: url('images/pendant-6-white.jpeg') center/cover !important;
}

.collection-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%);
  z-index: 1;
}

.collection-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  color: var(--color-white);
  z-index: 2;
  text-align: right;
}

.collection-card__count {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 8px;
  display: block;
}

.collection-card__content h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 4px;
}

.collection-card--large .collection-card__content h3 {
  font-size: 32px;
}

.collection-card__content p {
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 12px;
}

.collection-card__link {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  transition: letter-spacing 0.3s;
}

.collection-card:hover .collection-card__link {
  letter-spacing: 4px;
}

/* ========================================
   PRODUCT CARD PLACEHOLDER IMAGES
   ======================================== */
.product-card__image--gold-1 {
  background: url('images/ring-1.jpeg') center/cover !important;
}
.product-card__image--gold-2 {
  background: url('images/pendant-1-black.jpeg') center/cover !important;
}
.product-card__image--gold-3 {
  background: url('images/pendant-3-white.jpeg') center/cover !important;
}
.product-card__image--gold-4 {
  background: url('images/ring-2.jpeg') center/cover !important;
}
.product-card__image--gold-5 {
  background: url('images/pendant-5-black.jpeg') center/cover !important;
}
.product-card__image--gold-6 {
  background: url('images/pendant-6-white.jpeg') center/cover !important;
}
.product-card__image--gold-7 {
  background: url('images/ring-3.jpeg') center/cover !important;
}
.product-card__image--gold-8 {
  background: url('images/pendant-2-black.jpeg') center/cover !important;
}

/* ========================================
   PRODUCTS GRID
   ======================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  display: block;
  transition: transform 0.4s var(--ease-luxury);
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card__image {
  position: relative;
  padding-bottom: 120%;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
}

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-burgundy);
  color: var(--color-white);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  font-weight: 600;
  z-index: 2;
}

.product-card__info {
  padding: 0 4px;
  text-align: right;
}

.product-card__info h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-charcoal);
  margin-bottom: 6px;
}

.product-card__meta {
  margin-bottom: 8px;
}

.product-card__weight {
  font-size: 11px;
  color: var(--color-text-light);
  letter-spacing: 0.5px;
}

.product-card__price {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-burgundy);
}

/* ========================================
   GOLD RATE SECTION
   ======================================== */
.gold-rate-section {
  padding: 60px 0;
  background: var(--color-ivory);
}

.gold-rate-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-charcoal);
  padding: 48px 56px;
  border-radius: 4px;
  color: var(--color-white);
}

.gold-rate-card__label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  margin-bottom: 8px;
}

.gold-rate-card__price {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 4px;
}

.gold-rate-card__price small {
  font-size: 16px;
  opacity: 0.6;
  font-weight: 300;
}

.gold-rate-card__update {
  font-size: 11px;
  opacity: 0.5;
}

.gold-rate-card__right {
  text-align: right;
}

.gold-rate-card__right p {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 16px;
  line-height: 1.6;
}

/* ========================================
   STORY SECTION
   ======================================== */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-image {
  height: 500px;
  border-radius: 4px;
  overflow: hidden;
}

.story-bg {
  background: url('images/pendant-7-black.jpeg') center/cover;
}

.story-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 20px;
}

.story-content .btn {
  margin-top: 12px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--color-charcoal);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer__logo {
  margin-bottom: 20px;
}

.footer__logo .logo-mark {
  background: var(--color-gold);
  color: var(--color-charcoal);
}

.footer__logo .logo-name {
  color: var(--color-white);
}

.footer__brand p {
  font-size: 13px;
  line-height: 1.7;
}

.footer__links h4 {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
}

.footer__links a,
.footer__links p {
  display: block;
  font-size: 13px;
  margin-bottom: 10px;
  transition: color 0.3s;
  line-height: 1.6;
  text-align: right;
}

.footer__links a:hover {
  color: var(--color-gold);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__bottom p {
  font-size: 12px;
  opacity: 0.5;
}

.footer__payments {
  display: flex;
  gap: 16px;
}

.footer__payments span {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.5;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 3px;
}

/* ========================================
   CART DRAWER
   ======================================== */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 300;
  visibility: hidden;
  pointer-events: none;
}

.cart-drawer.active {
  visibility: visible;
  pointer-events: auto;
}

.cart-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.4s;
}

.cart-drawer.active .cart-drawer__overlay {
  opacity: 1;
}

.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 440px;
  max-width: 92vw;
  height: 100%;
  background: var(--color-white);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-luxury);
  display: flex;
  flex-direction: column;
}

.cart-drawer.active .cart-drawer__panel {
  transform: translateX(0);
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}

.cart-drawer__header h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
}

.cart-drawer__close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--color-text);
  padding: 4px;
  line-height: 1;
}

.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 28px;
}

.cart-drawer__empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px;
  text-align: center;
}

.cart-drawer__empty p {
  font-family: var(--font-accent);
  font-size: 18px;
  color: var(--color-text-light);
}

/* Cart Item */
.cart-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}

.cart-item__image {
  width: 80px;
  height: 100px;
  border-radius: 3px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item__details {
  flex: 1;
}

.cart-item__name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
}

.cart-item__meta {
  font-size: 11px;
  color: var(--color-text-light);
  margin-bottom: 8px;
}

.cart-item__pricing {
  font-size: 11px;
  color: var(--color-text-light);
  line-height: 1.8;
  text-align: right;
}

.cart-item__pricing strong {
  color: var(--color-burgundy);
  font-size: 14px;
}

.cart-item__remove {
  background: none;
  border: none;
  font-size: 11px;
  color: var(--color-text-light);
  cursor: pointer;
  text-decoration: underline;
  margin-top: 8px;
  padding: 0;
  font-family: var(--font-body);
}

.cart-item__remove:hover {
  color: var(--color-burgundy);
}

/* Cart Footer */
.cart-drawer__footer {
  padding: 24px 28px;
  border-top: 1px solid var(--color-border);
  background: var(--color-ivory);
  overflow-y: auto;
  max-height: 75vh;
}

.cart-drawer__totals {
  margin-bottom: 24px;
}

.cart-drawer__total-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 8px;
}

.cart-drawer__total-row--grand {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-charcoal);
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
  margin-top: 8px;
}

/* Civil ID Section */
.civil-id-section {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  margin-bottom: 20px;
  overflow: hidden;
}

.civil-id-section__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 20px;
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.civil-id-section__toggle-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--color-burgundy);
}

.civil-id-section__toggle-arrow {
  transition: transform 0.3s var(--ease-luxury);
  color: var(--color-burgundy);
}

.civil-id-section.open .civil-id-section__toggle-arrow {
  transform: rotate(180deg);
}

.civil-id-section__body {
  display: none;
}

.civil-id-section.open .civil-id-section__body {
  display: block;
}

.civil-id-section__inner {
  padding: 0 20px 20px;
}

.civil-id-section__note {
  font-size: 11px;
  color: var(--color-text-light);
  margin-bottom: 16px;
  line-height: 1.5;
}

.civil-id-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--color-text);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.form-group input[type="text"],
.form-group input[type="tel"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-charcoal);
  transition: border-color 0.3s;
  background: var(--color-white);
}

.form-group input:focus {
  outline: none;
  border-color: var(--color-gold);
}

.form-group input.error {
  border-color: #c0392b;
}

/* Civil ID Image Upload */
.civil-id-upload {
  position: relative;
  border: 2px dashed var(--color-border);
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.3s;
  overflow: hidden;
}

.civil-id-upload:hover {
  border-color: var(--color-gold);
}

.civil-id-upload.error {
  border-color: #c0392b;
}

.civil-id-upload input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.civil-id-upload__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  gap: 8px;
  color: var(--color-text-light);
}

.civil-id-upload__placeholder span {
  font-size: 12px;
  font-weight: 500;
  text-transform: none;
}

.civil-id-upload__placeholder small {
  font-size: 10px;
  opacity: 0.6;
}

.civil-id-upload__preview {
  display: flex;
  gap: 8px;
  padding: 12px;
  flex-wrap: wrap;
}

.civil-id-upload__preview img {
  width: 80px;
  height: 56px;
  object-fit: cover;
  border-radius: 3px;
  border: 1px solid var(--color-border);
}

.civil-id-upload__preview .upload-change {
  display: flex;
  align-items: center;
  font-size: 10px;
  color: var(--color-gold-dark);
  text-decoration: underline;
  cursor: pointer;
}

/* Consent Checkbox */
.form-group--checkbox {
  margin-top: 4px;
}

.form-group--checkbox label.checkbox-label {
  text-transform: none;
  font-weight: 400;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 11px;
  line-height: 1.5;
  color: var(--color-text);
  text-align: right;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkbox-custom {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1.5px solid var(--color-border);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  margin-top: 1px;
}

.checkbox-label input:checked + .checkbox-custom {
  background: var(--color-burgundy);
  border-color: var(--color-burgundy);
}

.checkbox-label input:checked + .checkbox-custom::after {
  content: '';
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-bottom: 2px;
}

.checkbox-custom.error {
  border-color: #c0392b;
}

.checkbox-text {
  flex: 1;
}

.cart-drawer__secure {
  text-align: center;
  font-size: 11px;
  color: var(--color-text-light);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ========================================
   COLLECTION PAGE
   ======================================== */
.page-header {
  background: var(--color-charcoal);
  padding: 60px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header__bg {
  position: absolute;
  inset: 0;
}

.page-header__bg {
  opacity: 0.35;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header .breadcrumb {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.page-header .breadcrumb a {
  color: var(--color-gold);
  transition: opacity 0.3s;
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 8px;
}

.page-header p {
  font-family: var(--font-accent);
  font-size: 18px;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
}

.collection-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 40px;
}

.collection-toolbar__count {
  font-size: 12px;
  color: var(--color-text-light);
}

.collection-toolbar__sort {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--color-text-light);
}

.collection-toolbar__sort select {
  padding: 8px 12px;
  border: 1px solid var(--color-border);
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-text);
  background: var(--color-white);
  cursor: pointer;
}

/* ========================================
   PRODUCT PAGE
   ======================================== */
.product-page {
  padding: 0 0 80px;
  background: #fff;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.product-gallery__main {
  width: 100%;
  aspect-ratio: 3 / 4;
  min-height: 0;
  padding-bottom: 0;
  border-radius: 0;
  position: relative;
  margin-bottom: 12px;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--color-white);
  transition: background 0.5s var(--ease-luxury);
}

.product-gallery__main--hero {
  background-color: var(--color-white);
  background-image: url('images/ring-1.jpeg');
  background-size: cover;
  background-position: center;
}

.product-gallery__jewel-icon {
  display: none;
}

.product-gallery__thumbs {
  display: flex;
  gap: 10px;
  margin-top: 0;
  padding: 0 12px;
}

.product-gallery__thumb {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.3s;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: var(--color-white);
}

.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery__thumb.active,
.product-gallery__thumb:hover {
  border-color: var(--color-gold);
}

.product-info {
  padding-top: 10px;
}

.product-info__brand {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 500;
  margin-bottom: 8px;
}

.product-info__title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 500;
  color: var(--color-charcoal);
  margin-bottom: 8px;
  line-height: 1.2;
}

.product-info__sku {
  font-size: 11px;
  color: var(--color-text-light);
  margin-bottom: 16px;
}
}

.product-info__price-main {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--color-burgundy);
  font-weight: 600;
  margin-bottom: 20px;
}

.product-price-summary {
  background: var(--color-ivory);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 18px 24px;
  margin-bottom: 28px;
}

.product-price-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  font-size: 13px;
}

.product-price-summary__row + .product-price-summary__row {
  border-top: 1px solid var(--color-border);
}

.product-price-summary__row strong {
  color: var(--color-charcoal);
  font-weight: 700;
}

/* Collapsible Pricing Breakdown */
.pricing-breakdown {
  background: var(--color-ivory);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  margin-bottom: 28px;
  overflow: hidden;
}

.pricing-breakdown__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s;
}

.pricing-breakdown__toggle:hover {
  background: rgba(201,169,110,0.08);
}

.pricing-breakdown__toggle-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  font-weight: 600;
}

.pricing-breakdown__toggle-arrow {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-dark);
  transition: transform 0.3s var(--ease-luxury);
}

.pricing-breakdown.open .pricing-breakdown__toggle-arrow {
  transform: rotate(180deg);
}

.pricing-breakdown__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-luxury);
}

.pricing-breakdown.open .pricing-breakdown__body {
  max-height: 500px;
}

.pricing-breakdown__inner {
  padding: 0 24px 24px;
}

.pricing-breakdown__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 13px;
}

.pricing-breakdown__row:not(:last-child) {
  border-bottom: 1px solid var(--color-border);
}

.pricing-breakdown__label {
  color: var(--color-text);
}

.pricing-breakdown__label small {
  display: block;
  font-size: 11px;
  color: var(--color-text-light);
  font-weight: 400;
  margin-top: 2px;
}

.pricing-breakdown__value {
  font-weight: 600;
  color: var(--color-charcoal);
  text-align: right;
}

.pricing-breakdown__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  margin-top: 8px;
  border-top: 2px solid var(--color-gold);
}

.pricing-breakdown__total-label {
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--color-charcoal);
}

.pricing-breakdown__total-value {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--color-burgundy);
  font-weight: 600;
}

.pricing-breakdown__rate-note {
  font-size: 10px;
  color: var(--color-text-light);
  margin-top: 12px;
  text-align: center;
  font-style: italic;
}

/* Product Options */
.product-options {
  margin-bottom: 24px;
}

.product-option {
  margin-bottom: 20px;
}

.product-option__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 10px;
}

.size-selector {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.size-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  font-size: 13px;
  font-family: var(--font-body);
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.3s;
}

.size-btn:hover {
  border-color: var(--color-gold);
}

.size-btn.active {
  border-color: var(--color-burgundy);
  background: var(--color-burgundy);
  color: var(--color-white);
}

/* Add to Cart */
.product-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: 3px;
}

.quantity-selector button {
  width: 44px;
  height: 52px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--color-text);
  transition: background 0.3s;
  font-family: var(--font-body);
}

.quantity-selector button:hover {
  background: var(--color-ivory);
}

.quantity-selector input {
  width: 44px;
  height: 52px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-charcoal);
}

.quantity-selector input:focus {
  outline: none;
}

.btn--add-to-cart {
  flex: 1;
  background: var(--color-burgundy);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.4s var(--ease-luxury);
  font-family: var(--font-body);
  padding: 16px 32px;
}

.btn--add-to-cart:hover {
  background: var(--color-charcoal);
}

/* Product Description */
.product-description {
  padding-top: 28px;
  border-top: 1px solid var(--color-border);
}

.product-description__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--color-charcoal);
}

.product-description p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 16px;
  text-align: right;
}

.product-features {
  list-style: none;
  margin-top: 20px;
}

.product-features li {
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
}

.product-features li strong {
  color: var(--color-charcoal);
}

/* ========================================
   HORIZONTAL CAROUSEL — You May Also Like
   ======================================== */
.carousel-section {
  overflow: hidden;
}

.carousel-wrapper {
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 4px 0 20px;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-track .product-card {
  min-width: 260px;
  max-width: 280px;
  flex-shrink: 0;
  scroll-snap-align: start;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  color: var(--color-charcoal);
}

.carousel-btn:hover {
  background: var(--color-charcoal);
  color: var(--color-white);
  border-color: var(--color-charcoal);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }

  .header__nav {
    display: none;
  }

  .header__menu-toggle {
    display: flex;
  }

  .collections-grid {
    grid-template-columns: 1fr 1fr;
  }

  .collection-card--large {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .collection-card--large .collection-card__image {
    min-height: 360px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-gallery {
    position: static;
  }

  .gold-rate-card {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .gold-rate-card__right {
    text-align: center;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-image {
    height: 350px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-spacing: 60px;
    --header-height: 60px;
  }

  .header__container {
    padding: 0 16px;
  }

  .trust-bar__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .collections-grid {
    grid-template-columns: 1fr;
  }

  .collection-card--large {
    grid-column: auto;
  }

  .collection-card--large .collection-card__image {
    min-height: 300px;
  }

  .collection-card__image {
    min-height: 240px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .hero {
    height: 80vh;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .carousel-track .product-card {
    min-width: 200px;
    max-width: 220px;
  }
}

@media (max-width: 480px) {
  .header__container {
    padding: 0 12px;
  }

  .logo-name {
    font-size: 14px;
    letter-spacing: 2px;
  }

  .logo-tagline {
    font-size: 8px;
    letter-spacing: 3px;
  }

  .logo-mark {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .trust-bar__grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .product-card__info h3 {
    font-size: 13px;
  }

  .product-card__price {
    font-size: 13px;
  }

  .pricing-breakdown__inner {
    padding: 0 16px 16px;
  }

  .cart-drawer__panel {
    width: 100%;
    max-width: 100vw;
  }

  .cart-drawer__items,
  .cart-drawer__footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .carousel-track .product-card {
    min-width: 160px;
    max-width: 180px;
  }
}

/* ========================================
   WARM BEIGE + GOLDEN REDESIGN
   ======================================== */
:root {
  --color-burgundy: #8b6a2f;
  --color-burgundy-light: #af8843;
  --color-gold: #c7a35f;
  --color-gold-light: #e1c891;
  --color-gold-dark: #9a7233;
  --color-ivory: #fcf5ea;
  --color-cream: #f4e6cf;
  --color-charcoal: #3c2f21;
  --color-dark: #261d14;
  --color-text: #4b3c2b;
  --color-text-light: #8d7657;
  --color-border: #e3d0b1;
  --color-white: #fffdf8;
}

html {
  direction: ltr;
}

html[dir="rtl"] {
  direction: rtl;
}

html[dir="ltr"] {
  direction: ltr;
}

body {
  background:
    radial-gradient(circle at top left, rgba(226, 196, 140, 0.18), transparent 35%),
    linear-gradient(180deg, #fffdf8 0%, #fcf5ea 100%);
  text-align: start;
}

html[dir="rtl"] body {
  text-align: right;
}

html[dir="ltr"] body {
  text-align: left;
}

body:has(.product-page) {
  background: #fff;
}

.announcement-bar {
  background: linear-gradient(90deg, #4a3927 0%, #2d2418 100%);
  color: #f2dfb7;
  border-bottom: 1px solid rgba(255, 224, 173, 0.18);
}

.header {
  background: rgba(255, 250, 242, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(199, 163, 95, 0.24);
  box-shadow: 0 14px 38px rgba(85, 62, 28, 0.08);
}

.header__container {
  gap: 20px;
}

.header__nav {
  gap: 14px;
  padding: 6px;
  background: rgba(255, 248, 236, 0.9);
  border: 1px solid rgba(199, 163, 95, 0.2);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.header__nav a {
  font-size: 13px;
  letter-spacing: 0.2px;
  text-transform: none;
  padding: 10px 16px;
  border-radius: 999px;
}

.header__nav a::after {
  display: none;
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--color-dark);
  background: linear-gradient(135deg, rgba(225, 200, 145, 0.62), rgba(255, 250, 242, 0.95));
  box-shadow: 0 8px 18px rgba(139, 106, 47, 0.12);
}

.header__actions {
  gap: 10px;
}

.logo-mark {
  background: linear-gradient(145deg, #b78f46 0%, #8d692f 100%);
  color: #fff9ee;
  box-shadow: 0 10px 22px rgba(139, 106, 47, 0.18);
}

.logo-name {
  color: var(--color-dark);
}

.logo-tagline {
  color: var(--color-gold-dark);
}

.header__icon {
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  background: transparent;
  border: none;
  border-radius: 0;
}

.header__icon:hover {
  color: var(--color-gold-dark);
}

.cart-count {
  background: linear-gradient(135deg, #a57a34, #7a5926);
  top: -3px;
}

html[dir="ltr"] .cart-count {
  right: auto;
  left: -4px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(199, 163, 95, 0.34);
  border-radius: 999px;
  background: linear-gradient(135deg, #f8ebd1 0%, #fffaf0 100%);
  color: var(--color-dark);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(175, 136, 67, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.lang-switch:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #e9ce98 0%, #fff7ea 100%);
  box-shadow: 0 14px 28px rgba(175, 136, 67, 0.22);
}

.lang-switch--mobile {
  width: 100%;
}

.mobile-menu__panel {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.98), rgba(249, 239, 218, 0.98)),
    var(--color-white);
  border-inline-start: 1px solid rgba(199, 163, 95, 0.24);
  box-shadow: 0 24px 50px rgba(60, 47, 33, 0.18);
}

.mobile-menu__utility {
  margin-top: 44px;
  margin-bottom: 26px;
}

.mobile-menu__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  width: calc(100% - 48px);
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(199, 163, 95, 0.2);
}

.mobile-menu__close {
  color: var(--color-dark);
}

.mobile-menu__nav a {
  padding: 14px 18px;
  border-radius: 20px;
  background: rgba(255, 248, 236, 0.75);
  border: 1px solid rgba(199, 163, 95, 0.16);
  font-size: 18px;
}

.mobile-menu__nav a:hover,
.mobile-menu__nav a.active {
  color: var(--color-dark);
  background: rgba(225, 200, 145, 0.32);
}

html[dir="ltr"] .mobile-menu__panel {
  left: 0;
  right: auto;
  transform: translateX(-100%);
  border-inline-start: none;
  border-inline-end: 1px solid rgba(199, 163, 95, 0.24);
}

html[dir="ltr"] .mobile-menu.active .mobile-menu__panel {
  transform: translateX(0);
}

html[dir="ltr"] .mobile-menu__close {
  right: 20px;
  left: auto;
}

.btn--primary,
.btn--add-to-cart {
  background: linear-gradient(135deg, #ab8340 0%, #8b6a2f 100%);
  color: #fffaf2;
  box-shadow: 0 16px 34px rgba(139, 106, 47, 0.2);
}

.btn--primary:hover,
.btn--add-to-cart:hover {
  background: linear-gradient(135deg, #9c7435 0%, #6f5325 100%);
}

.btn--outline {
  color: var(--color-dark);
  border: 1px solid rgba(154, 114, 51, 0.38);
  background: rgba(255, 250, 242, 0.72);
}

.btn--outline:hover {
  background: rgba(225, 200, 145, 0.26);
  color: var(--color-dark);
  border-color: rgba(154, 114, 51, 0.56);
}

.hero__bg {
  background:
    linear-gradient(135deg, rgba(40, 30, 20, 0.84), rgba(139, 106, 47, 0.64)),
    radial-gradient(circle at top right, rgba(234, 208, 153, 0.42), transparent 38%);
}

.hero__gradient {
  opacity: 0.22;
}

.trust-bar,
.gold-rate-section,
.section--soft {
  background: var(--color-white);
}

.collection-card,
.product-card--soft,
.gold-rate-card,
.pricing-breakdown,
.cart-drawer__panel,
.civil-id-section,
.collection-toolbar {
  border-radius: 24px;
}

.product-description,
.breadcrumb-shell {
  border-radius: 0;
}

.product-card--soft {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.product-card__image {
  border-radius: 4px;
  margin-bottom: 16px;
}

.product-card__badge {
  background: #6f2038;
  color: var(--color-white);
  padding: 6px 12px;
  border-radius: 3px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-card__info h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-charcoal);
  margin-bottom: 6px;
}

.product-card__info,
.footer__links a,
.footer__links p,
.product-description p,
.product-features li,
.pricing-breakdown__value,
.collection-card__content,
.gold-rate-card__right {
  text-align: start;
}

.product-card__meta {
  margin-bottom: 8px;
}

.product-card__weight {
  display: inline-block;
  font-size: 11px;
  font-weight: 400;
  color: var(--color-text-light);
  letter-spacing: 0.5px;
}

.product-card__price {
  font-size: 15px;
  font-weight: 600;
  color: #6f2038;
}

.product-info__price-main {
  color: #936c2f;
}

.page-header,
.page-header--soft {
  background:
    linear-gradient(135deg, rgba(56, 43, 26, 0.84), rgba(132, 98, 44, 0.52)),
    linear-gradient(180deg, rgba(255, 249, 239, 0.78), rgba(250, 239, 214, 0.78));
  border-bottom: 1px solid rgba(225, 200, 145, 0.26);
}

.page-header__bg {
  opacity: 0.2;
}

.page-header .breadcrumb,
.breadcrumb {
  color: rgba(255, 251, 242, 0.8);
}

.page-header p {
  color: rgba(255, 248, 236, 0.86);
}

.breadcrumb-shell {
  background: var(--color-white);
  border-bottom: none;
  margin-bottom: 0;
}

.breadcrumb-shell .breadcrumb {
  padding: 12px 0;
  color: var(--color-text-light);
}

.breadcrumb-shell .breadcrumb a {
  color: var(--color-gold-dark);
}

.collection-toolbar {
  padding: 22px 24px;
  background: rgba(255, 250, 242, 0.84);
  border: 1px solid rgba(199, 163, 95, 0.16);
}

.collection-toolbar__sort select {
  min-width: 180px;
  background: #fff9ef;
}

.gold-rate-card {
  background:
    linear-gradient(135deg, rgba(74, 57, 39, 0.98), rgba(108, 80, 43, 0.96)),
    var(--color-charcoal);
  box-shadow: 0 24px 54px rgba(60, 47, 33, 0.18);
}

.product-gallery__main,
.product-gallery__thumb {
  border-radius: 8px;
}

.product-gallery__main {
  width: 100%;
  border-radius: 0;
  box-shadow: none;
  background-size: cover;
  background-position: center;
}

.pricing-breakdown,
.product-description {
  background: none;
  border: none;
  box-shadow: none;
}

.pricing-breakdown__toggle {
  padding: 20px 24px;
}

.pricing-breakdown__toggle-left,
.product-option__label,
.form-group label,
.civil-id-section__toggle-left {
  text-transform: none;
  letter-spacing: 0.2px;
}

.product-description {
  padding: 28px 20px;
}

.product-page .carousel-track .product-card__image {
  padding-bottom: 138%;
  border-radius: 4px;
}

.size-btn {
  border-radius: 14px;
  background: rgba(255, 250, 242, 0.9);
}

.size-btn.active {
  background: linear-gradient(135deg, #a87d37 0%, #835f29 100%);
  border-color: #8b6a2f;
}

.quantity-selector,
.quantity-selector input,
.quantity-selector button {
  background: rgba(255, 250, 242, 0.88);
}

.quantity-selector button:hover {
  background: rgba(225, 200, 145, 0.26);
}

.carousel-btn {
  background: rgba(255, 250, 242, 0.9);
  border-color: rgba(199, 163, 95, 0.24);
}

.carousel-btn:hover {
  background: linear-gradient(135deg, #ab8340 0%, #8b6a2f 100%);
  border-color: #8b6a2f;
}

.footer,
.footer--soft {
  background:
    linear-gradient(180deg, #3f301f 0%, #2d2217 100%);
  color: rgba(255, 246, 231, 0.78);
}

.footer__payments span {
  border-color: rgba(255, 235, 194, 0.18);
  background: rgba(255, 251, 243, 0.04);
}

.cart-drawer__panel {
  background: linear-gradient(180deg, #fffdf8 0%, #fcf4e7 100%);
  box-shadow: -24px 0 54px rgba(60, 47, 33, 0.18);
}

html[dir="ltr"] .cart-drawer__panel {
  right: auto;
  left: 0;
  transform: translateX(-100%);
  box-shadow: 24px 0 54px rgba(60, 47, 33, 0.18);
}

html[dir="ltr"] .cart-drawer.active .cart-drawer__panel {
  transform: translateX(0);
}

.cart-drawer__footer {
  background: rgba(252, 245, 234, 0.9);
}

.civil-id-section {
  border: 1px solid rgba(199, 163, 95, 0.2);
}

.civil-id-upload,
.form-group input[type="text"],
.form-group input[type="tel"],
.collection-toolbar__sort select {
  border-radius: 14px;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.collection-toolbar__sort select {
  background: rgba(255, 253, 248, 0.96);
}

.checkbox-custom {
  border-radius: 6px;
}

html[dir="ltr"] .header__logo,
html[dir="ltr"] .footer__logo,
html[dir="ltr"] .trust-item,
html[dir="ltr"] .pricing-breakdown__toggle-left,
html[dir="ltr"] .civil-id-section__toggle-left {
  flex-direction: row;
}

html[dir="rtl"] .header__logo,
html[dir="rtl"] .footer__logo,
html[dir="rtl"] .trust-item,
html[dir="rtl"] .pricing-breakdown__toggle-left,
html[dir="rtl"] .civil-id-section__toggle-left {
  flex-direction: row;
}

html[dir="ltr"] .footer__bottom {
  text-align: left;
}

html[dir="ltr"] .product-features li,
html[dir="ltr"] .pricing-breakdown__row,
html[dir="ltr"] .cart-drawer__total-row {
  flex-direction: row;
}

html[dir="rtl"] .product-features li,
html[dir="rtl"] .pricing-breakdown__row,
html[dir="rtl"] .cart-drawer__total-row {
  flex-direction: row;
}

@media (max-width: 1024px) {
  .header__container {
    gap: 12px;
  }

  .lang-switch {
    min-width: 102px;
  }
}

@media (max-width: 768px) {
  .product-page .container {
    padding-left: 0;
    padding-right: 0;
  }

  .product-page {
    padding-top: 0;
  }

  .header__container {
    gap: 8px;
    justify-content: space-between;
  }

  .header__logo {
    flex: 1;
    min-width: 0;
    justify-content: center;
  }

  .header__logo .logo-text {
    align-items: flex-start;
  }

  .header__actions > .lang-switch {
    display: none;
  }

  .header__actions {
    flex-shrink: 0;
    min-width: auto;
    justify-content: flex-end;
    gap: 6px;
  }

  .header__icon {
    padding: 4px;
  }

  .header__icon svg {
    width: 18px;
    height: 18px;
  }

  .header__cart-btn {
    width: 38px;
    height: 38px;
  }

  .lang-switch {
    min-width: 92px;
    height: 38px;
    padding: 0 14px;
    font-size: 11px;
  }

  .collection-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .collection-toolbar__sort {
    justify-content: space-between;
  }

  .product-card--soft {
    padding: 0;
  }

  .product-description {
    padding: 22px 18px;
  }

  .product-gallery {
    width: 100%;
    position: static;
  }

  .product-gallery__main {
    aspect-ratio: 3 / 4;
    background-size: cover;
    background-position: center;
    box-shadow: none;
  }

  .product-gallery__thumbs {
    justify-content: center;
    gap: 10px;
    padding: 0 16px;
    margin-top: 0;
  }

  .product-gallery__thumb {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    background-color: var(--color-white);
    background-size: cover;
    background-position: center;
  }

  .product-info {
    margin-top: 0;
    padding: 24px 20px 0;
    background: var(--color-white);
    border-radius: 0;
    box-shadow: none;
  }

  .product-info__brand,
  .product-info__title,
  .product-info__sku,
  .product-info__price-main {
    text-align: start;
  }

  .product-info__brand {
    margin-bottom: 10px;
  }

  .product-info__title {
    font-size: 34px;
    line-height: 1.15;
  }

  .product-info__sku {
    line-height: 1.7;
  }

  .product-info__price-main {
    margin-bottom: 24px;
  }

  .pricing-breakdown,
  .product-description {
    border-radius: 0;
  }

  .product-actions {
    align-items: stretch;
  }

  .mobile-menu__panel {
    width: min(86vw, 340px);
    padding: 26px 22px 32px;
  }

  .mobile-menu__brand {
    width: 100%;
    margin-top: 6px;
  }

  .mobile-menu__utility {
    margin-top: 18px;
    margin-bottom: 20px;
  }

  .mobile-menu__nav {
    margin-top: 0;
    gap: 14px;
  }

  .mobile-menu__nav a {
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .product-page .container {
    padding-left: 0;
    padding-right: 0;
  }

  .product-page {
    padding-top: 0;
  }

  .header {
    overflow-x: clip;
  }

  .header__container {
    padding-inline: 12px;
  }

  .header__logo {
    gap: 8px;
  }

  .header__logo .logo-name {
    font-size: 13px;
    letter-spacing: 0;
  }

  .header__logo .logo-tagline {
    font-size: 8px;
    letter-spacing: 0.6px;
  }

  .header__menu-toggle {
    padding: 6px;
  }

  .header__icon {
    padding: 3px;
  }

  .header__icon svg {
    width: 16px;
    height: 16px;
  }

  .header__actions {
    gap: 4px;
  }

  .lang-switch {
    min-width: 84px;
  }

  .mobile-menu__panel {
    width: min(86vw, 300px);
  }

  .mobile-menu__brand {
    gap: 10px;
  }

  .product-card__info h3 {
    font-size: 13px;
  }

  .product-card__weight {
    font-size: 11px;
  }

  .product-card__price {
    font-size: 13px;
  }

  .product-gallery__main {
    aspect-ratio: 3 / 4;
  }

  .product-gallery__thumbs {
    gap: 8px;
    padding: 0 12px;
  }

  .product-gallery__thumb {
    width: 56px;
    height: 56px;
  }

  .product-info {
    margin-top: 0;
    padding: 22px 16px 0;
    border-radius: 0;
  }

  .product-info__title {
    font-size: 28px;
  }

  .product-info__price-main {
    font-size: 28px;
  }
}
