:root {
  --white: #ffffff;
  --black: #101010;
  --black-soft: #171717;
  --gold: #c7a64a;
  --gold-soft: #e7d39a;
  --pink: #f6e9ef;
  --text-soft: #5f5f5f;
  --shadow: 0 14px 40px rgba(18, 18, 18, 0.12);
  --shadow-lux: 0 20px 45px rgba(10, 10, 10, 0.2);
  --lux-gradient: linear-gradient(120deg, #f8e4af, #c79e3d 45%, #f5e1a5);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Cairo", sans-serif;
  color: var(--black);
  background:
    radial-gradient(circle at 85% 10%, #fff4d5 0%, transparent 28%),
    radial-gradient(circle at 0% 55%, #fdeef5 0%, transparent 35%),
    linear-gradient(180deg, #fff 0%, #fff 35%, #fcf8fa 100%);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

.container {
  width: min(1150px, 92%);
  margin-inline: auto;
}

.section {
  padding: 86px 0;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 2vw, 2.1rem);
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
}

.section-heading h2::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 65%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-heading i {
  margin-left: 8px;
  color: #b99239;
}

.section-heading p {
  margin: 0;
  color: var(--text-soft);
}

.left {
  text-align: right;
}


.topbar {
  background: linear-gradient(90deg, #0d0d0d, #262626);
  color: #f3e4bd;
  border-bottom: 1px solid #3b3322;
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.9rem;
}

.topbar p {
  margin: 0;
}

.topbar a {
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 42px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(225, 225, 225, 0.7);
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 14px 28px rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.95);
}

.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #1f1f1f;
  background: radial-gradient(circle at 20% 20%, #fff4cb, #d4b15a);
  box-shadow: inset 0 0 0 1px #ecd796;
  position: relative;
  overflow: hidden;
}

.logo-mark::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -120%;
  width: 90%;
  height: 260%;
  transform: rotate(30deg);
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  animation: logoShine 4.5s ease-in-out infinite;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-weight: 700;
  color: #222;
  position: relative;
}

.nav-ic {
  display: none;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  border: 1px solid #eadab2;
  background: #fff;
  min-width: 42px;
  height: 42px;
  border-radius: 12px;
  font-size: 1rem;
  color: #5f4a1e;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 12px;
}

.menu-toggle span {
  display: none;
  font-size: 0.84rem;
  font-weight: 800;
}

.nav-overlay {
  display: none;
}

.mobile-nav-head {
  display: none;
}

.menu-close {
  border: 0;
  background: #fff4d3;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: #6f551d;
  cursor: pointer;
}

.hero {
  min-height: 85vh;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  background: url("assets/images/hero.png") center/cover no-repeat fixed;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(255, 224, 149, 0.24), transparent 34%);
  animation: pulseGlow 4.2s ease-in-out infinite;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 18%, rgba(230, 197, 108, 0.25), transparent 30%),
    linear-gradient(120deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.35));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero h1 {
  margin: 0 0 8px;
  font-size: clamp(2.1rem, 4.2vw, 3.35rem);
  line-height: 1.25;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.55);
}

.hero p {
  margin: 0 0 22px;
  font-size: 1.06rem;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(5px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-stats {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-stats div {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 10px 12px;
  backdrop-filter: blur(6px);
}

.hero-stats strong {
  display: block;
  font-size: 1.2rem;
  color: #ffe6a4;
}

.hero-stats span {
  font-size: 0.88rem;
}

.btn {
  border: 0;
  border-radius: 12px;
  padding: 12px 22px;
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--lux-gradient);
  color: #151515;
  box-shadow: 0 12px 28px rgba(191, 152, 64, 0.38);
  background-size: 180% 180%;
  animation: goldFlow 6s ease infinite;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-outline {
  background: transparent;
  color: #252525;
  border: 1px solid #e6d7af;
}

.btn-outline:hover {
  background: #fffaf0;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  background: #25d366;
  color: #fff;
}

.grid {
  display: grid;
  gap: 20px;
}

.cards-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: linear-gradient(180deg, #ffffff, #fffdf9);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-lux);
  border: 1px solid #eee4cf;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(232, 200, 116, 0.2), transparent 34%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover::before {
  opacity: 1;
}

.card i {
  font-size: 1.3rem;
  color: #bc9740;
}

.card h3 {
  margin: 14px 0 8px;
  font-size: 1.08rem;
}

.card p {
  margin: 0;
  color: var(--text-soft);
}

.products {
  background:
    radial-gradient(circle at 100% 15%, #fff2c9 0, transparent 26%),
    linear-gradient(180deg, #fff, #fff7fb);
}

.luxury-lines {
  background: linear-gradient(180deg, #fffdf7, #fff8ed);
}

.lines-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.line-card {
  background: linear-gradient(145deg, #151515, #2a2218);
  border: 1px solid #554224;
  border-radius: 18px;
  color: #f5e7c3;
  padding: 22px;
  box-shadow: var(--shadow-lux);
}

.line-card h3 {
  margin-top: 0;
  color: #ffe2a2;
  font-size: 1.05rem;
}

.line-card ul {
  margin: 0;
  padding-right: 18px;
}

.line-card li {
  margin-bottom: 7px;
}

.catalogs {
  background: linear-gradient(180deg, #fff8ef, #fff);
}

.catalog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.catalog-card {
  background: linear-gradient(180deg, #fff, #fffaf1);
  border: 1px solid #ebd8a7;
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow-lux);
}

.catalog-card h3 {
  margin-top: 0;
}

.catalog-card p {
  color: #6c6559;
  margin-bottom: 16px;
}

.metrics-strip {
  padding: 28px 0 44px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.metrics-grid article {
  background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
  color: #f5e5bc;
  border-radius: 16px;
  padding: 16px 14px;
  text-align: center;
  border: 1px solid #3f3320;
}

.metrics-grid i {
  font-size: 1.2rem;
  color: #d8b461;
}

.metrics-grid strong {
  display: block;
  margin-top: 6px;
  font-size: 1.35rem;
  color: #fff;
}

.metrics-grid span {
  font-size: 0.9rem;
}

.cards-products {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  background: linear-gradient(180deg, #fff, #fffdf8);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lux);
  border: 1px solid #efe2c6;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px) scale(1.015);
  box-shadow: 0 22px 52px rgba(27, 22, 14, 0.22);
}

.product-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ddbd68, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover::after {
  opacity: 1;
}

.product-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.product-content {
  padding: 18px;
}

.product-content h3 {
  margin: 0 0 8px;
}

.product-content p {
  margin: 0 0 15px;
  color: var(--text-soft);
}

.about-wrap,
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
}

.about-image img {
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.about-content p {
  margin-top: 0;
  color: #353535;
}

.pill-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill-list span {
  display: inline-block;
  background: #fff6dd;
  color: #7a5f1e;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
}

.testimonials {
  background: linear-gradient(180deg, #fff, #fcf8fa);
}

.partners {
  background: linear-gradient(180deg, #fffdf7, #fff);
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.partner-chip {
  background: #fff;
  border: 1px solid #ecdcae;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(15, 15, 15, 0.08);
}

.faq {
  background: linear-gradient(180deg, #fff, #fff9ef);
}

.luxury-accordion .accordion-item {
  border: 1px solid #e9d8ac;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 10px;
  box-shadow: 0 8px 18px rgba(18, 18, 18, 0.08);
}

.luxury-accordion .accordion-button {
  font-weight: 700;
}

.luxury-accordion .accordion-button:not(.collapsed) {
  color: #3f2f0b;
  background: #fff4d4;
}

.luxury-accordion .accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(200, 161, 76, 0.25);
}

.testimonial {
  margin: 0;
  background: #fff;
  border: 1px solid #f1ecec;
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow-lux);
}

.testimonial p {
  margin-top: 0;
  color: #363636;
}

.testimonial cite {
  color: #9d7f35;
  font-style: normal;
  font-weight: 700;
}

.contact-info {
  background: linear-gradient(180deg, #fff, #fffdfa);
  border: 1px solid #f2ecec;
  padding: 26px;
  border-radius: 18px;
  box-shadow: var(--shadow-lux);
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 1.2rem;
  font-weight: 800;
}

.contact-form {
  background: linear-gradient(180deg, #fff, #fffdfa);
  border: 1px solid #f2ecec;
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow-lux);
}

.contact-luxury {
  background: linear-gradient(145deg, #fff, #fffaf0);
  border: 1px solid #ecdcae;
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow-lux);
}

.contact-luxury h3 {
  margin: 0 0 16px;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.lux-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #efdfb4;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.lux-item:hover {
  transform: translateY(-4px);
  border-color: #d9bc69;
  box-shadow: 0 10px 25px rgba(38, 31, 18, 0.15);
}

.lux-item i {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(130deg, #ffe8a6, #d3ac4f);
  color: #2d240f;
  font-size: 1.25rem;
  line-height: 1;
}

.lux-item strong {
  display: block;
  color: #1d1d1d;
}

.lux-item span {
  display: block;
  color: #6d6a64;
  font-size: 0.9rem;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #e9dfdf;
  border-radius: 12px;
  padding: 12px;
  font-family: inherit;
  margin-bottom: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #f0d58d;
  border-color: #e5c46d;
}

.site-footer {
  background:
    radial-gradient(circle at 80% 10%, rgba(211, 173, 80, 0.22), transparent 30%),
    var(--black-soft);
  color: #ebebeb;
  padding-top: 48px;
}

.cta-luxury {
  padding-top: 0;
}

.cta-box {
  background: linear-gradient(140deg, #151515, #2b2418 55%, #171717);
  color: #fff;
  border: 1px solid #4c3b1b;
  border-radius: 22px;
  padding: 34px 20px;
  text-align: center;
  box-shadow: var(--shadow-lux);
}

.cta-box h2 {
  margin: 0 0 8px;
}

.cta-box p {
  margin: 0 0 16px;
  color: #e2d4b7;
}

.cta-box .btn-outline {
  color: #fff8e8;
  border: 1px solid rgba(231, 211, 167, 0.9);
  background: rgba(255, 255, 255, 0.04);
}

.cta-box .btn-outline:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold-soft);
}

.cta-box .btn-outline:focus-visible {
  color: #fff;
  outline: 2px solid var(--gold-soft);
  outline-offset: 2px;
}

.floating-whatsapp {
  position: fixed;
  left: 22px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #2de174, #1faa55);
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 12px 25px rgba(35, 172, 92, 0.45);
  z-index: 130;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 22px;
  padding-bottom: 28px;
}

.site-footer h3,
.site-footer h4 {
  color: #fff;
  margin-top: 0;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 8px;
}

.copyright {
  text-align: center;
  padding: 14px 0;
  border-top: 1px solid #2a2a2a;
  font-size: 0.93rem;
  color: #c7c7c7;
}

.footer-credits {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.credits-text {
  color: #bcbcbc;
}

.credits-link {
  color: #e9c86e;
  font-weight: 700;
  transition: color 0.2s ease;
}

.credits-link:hover {
  color: #ffe29a;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .cards-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .cards-3 {
    grid-template-columns: 1fr;
  }

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

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

  .lines-wrap,
  .catalog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .topbar-inner {
    min-height: 38px;
    font-size: 0.8rem;
  }

  .site-header {
    top: 38px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(340px, 88vw);
    height: 100vh;
    background: linear-gradient(180deg, #fff, #fff9ee);
    border-left: 1px solid #f1e2b9;
    box-shadow: -10px 0 30px rgba(10, 10, 10, 0.15);
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    transform: translateX(110%);
    transition: transform 0.35s ease;
    z-index: 110;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #f3ecdb;
  }

  .nav-ic {
    display: inline-block;
    color: #9f7c31;
    font-size: 0.95rem;
  }

  .mobile-nav-head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    color: #7f6426;
    font-weight: 800;
    border-bottom: 1px solid #f1e2bb;
    padding-bottom: 10px;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(17, 17, 17, 0.48);
    backdrop-filter: blur(3px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 105;
    display: block;
  }

  .nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }

  .menu-toggle span {
    display: inline;
  }

  .about-wrap,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

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

  .section {
    padding: 70px 0;
  }

  .hero {
    min-height: 72vh;
    background-attachment: scroll;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }
}

@keyframes goldFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

@keyframes logoShine {
  0% { transform: translate(-180%, -10%) rotate(30deg); }
  60%, 100% { transform: translate(240%, 10%) rotate(30deg); }
}

@media (max-width: 560px) {
  .cards-products,
  .cards-4 {
    grid-template-columns: 1fr;
  }

  .hero p {
    font-size: 0.98rem;
  }

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

/* —— Language switcher (ركن الجمال — ذهبي / فاخر) —— */
.rk-lang-nav-item {
  list-style: none;
  margin-inline-start: auto;
  display: flex;
  align-items: center;
}

.lang-switcher {
  width: 100%;
}

@media (min-width: 768px) {
  .site-header .navbar {
    overflow: visible;
  }

  .lang-switcher {
    width: auto;
  }
}

.lang-switcher__mobile-panel {
  position: relative;
  padding: 1rem 0.85rem 0.9rem;
  border-radius: 14px;
  background: linear-gradient(165deg, #fff 0%, #fff9ee 50%, #fff5e6 100%);
  border: 1px solid rgba(199, 166, 74, 0.45);
  box-shadow: 0 10px 32px rgba(16, 16, 16, 0.08);
}

.lang-switcher__mobile-panel__corners {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
}

.lang-switcher__mobile-panel__corners span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-color: rgba(199, 166, 74, 0.55);
  border-style: solid;
  border-width: 0;
}

.lang-switcher__mobile-panel__corners span:nth-child(1) {
  top: 5px;
  inset-inline-start: 5px;
  border-top-width: 1px;
  border-inline-start-width: 1px;
}

.lang-switcher__mobile-panel__corners span:nth-child(2) {
  top: 5px;
  inset-inline-end: 5px;
  border-top-width: 1px;
  border-inline-end-width: 1px;
}

.lang-switcher__mobile-panel__corners span:nth-child(3) {
  bottom: 5px;
  inset-inline-start: 5px;
  border-bottom-width: 1px;
  border-inline-start-width: 1px;
}

.lang-switcher__mobile-panel__corners span:nth-child(4) {
  bottom: 5px;
  inset-inline-end: 5px;
  border-bottom-width: 1px;
  border-inline-end-width: 1px;
}

.lang-switcher__mobile-head {
  text-align: center;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.lang-switcher__mobile-head::after {
  content: "";
  display: block;
  width: 2.25rem;
  height: 2px;
  margin: 0.5rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.lang-switcher__mobile-kicker {
  margin: 0;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8a6f2a;
}

html[lang="ar"] .lang-switcher__mobile-kicker,
html[lang="ar"] .lang-switcher__trigger-eyebrow {
  letter-spacing: 0.04em;
  text-transform: none;
  font-size: 0.95rem;
  font-weight: 700;
}

.lang-switcher__mobile-title {
  margin: 0.3rem 0 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: 0.02em;
}

.lang-switcher__tiles {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
  z-index: 1;
}

.lang-switcher__mobile .lang-switcher__tile.lang-switcher__btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.55rem 0.65rem;
  margin: 0;
  border: 1px solid rgba(199, 166, 74, 0.28);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.85);
  color: #222;
  text-align: start;
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.lang-switcher__mobile .lang-switcher__tile.lang-switcher__btn:hover {
  border-color: rgba(199, 166, 74, 0.55);
  box-shadow: 0 6px 18px rgba(199, 166, 74, 0.12);
  transform: translateY(-1px);
}

.lang-switcher__mobile .lang-switcher__tile.lang-switcher__btn--active {
  border-color: rgba(199, 166, 74, 0.75);
  background: linear-gradient(105deg, rgba(255, 244, 210, 0.5) 0%, #fff 45%);
  box-shadow: 0 0 0 1px rgba(199, 166, 74, 0.15);
}

.lang-switcher__tile-seal {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #fff9e0, #e8d5a0);
  border: 1px solid rgba(199, 166, 74, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.lang-switcher__tile-seal__inner {
  font-size: 1.05rem;
  font-weight: 800;
  color: #3d3010;
}

.lang-switcher__tile-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.lang-switcher__tile-name {
  font-size: 0.98rem;
  font-weight: 700;
  color: #1a1a1a;
}

.lang-switcher__tile-name:lang(ar),
.lang-switcher__tile-seal__inner:lang(ar),
.lang-switcher__option-name:lang(ar) {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
}

.lang-switcher__tile-code {
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9a7b30;
}

.lang-switcher__tile-indicator {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.95rem;
  color: var(--gold);
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.lang-switcher__btn--active .lang-switcher__tile-indicator {
  opacity: 1;
  transform: scale(1);
  background: rgba(199, 166, 74, 0.12);
}

.lang-switcher__dropdown {
  position: relative;
}

.lang-switcher__trigger {
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem !important;
  border-radius: 999px !important;
  border: 1px solid rgba(199, 166, 74, 0.45) !important;
  background: linear-gradient(180deg, #fff, #fff9ec) !important;
  color: #2a2418 !important;
  font-family: "Cairo", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  box-shadow: 0 4px 14px rgba(199, 166, 74, 0.15);
}

.lang-switcher__trigger::after {
  display: none !important;
}

.lang-switcher__trigger:hover {
  border-color: var(--gold) !important;
  box-shadow: 0 6px 20px rgba(199, 166, 74, 0.22);
}

.lang-switcher__trigger-gem {
  font-size: 0.55rem;
  color: var(--gold);
}

.lang-switcher__trigger-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
  gap: 0;
}

.lang-switcher__trigger-eyebrow {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a6f2a;
}

.lang-switcher__current {
  font-size: 0.82rem;
  font-weight: 800;
  color: #1a1a1a;
}

.lang-switcher__trigger-caret {
  font-size: 0.65rem;
  opacity: 0.75;
  transition: transform 0.3s ease;
}

.lang-switcher__trigger.show .lang-switcher__trigger-caret,
.lang-switcher__trigger[aria-expanded="true"] .lang-switcher__trigger-caret {
  transform: rotate(-180deg);
}

.lang-switcher__menu {
  --bs-dropdown-min-width: 11.5rem;
  margin-top: 0.45rem !important;
  padding: 0.45rem !important;
  border: 1px solid rgba(199, 166, 74, 0.35) !important;
  border-radius: 12px !important;
  box-shadow: 0 16px 40px rgba(16, 16, 16, 0.12) !important;
  background: #fffef9 !important;
}

.lang-switcher__menu .lang-switcher__option {
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.65rem !important;
  border-radius: 8px !important;
  font-family: "Cairo", sans-serif;
  font-weight: 600;
  border: none;
  background: transparent !important;
}

.lang-switcher__menu .lang-switcher__option:hover {
  background: rgba(199, 166, 74, 0.1) !important;
}

.lang-switcher__option-code {
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #9a7b30;
  min-width: 1.5rem;
}

.lang-switcher__option-name {
  flex: 1;
  text-align: start;
}

.lang-switcher__option-check {
  opacity: 0;
  color: var(--gold);
  font-size: 1rem;
}

.lang-switcher__option--active .lang-switcher__option-check {
  opacity: 1;
}

@media (max-width: 767.98px) {
  .rk-lang-nav-item {
    margin-inline-start: 0;
    width: 100%;
    padding-top: 4px;
  }
}

/* LTR */
html[dir="ltr"] .section-heading h2::after {
  right: auto;
  left: 0;
  background: linear-gradient(90deg, transparent, var(--gold));
}

html[dir="ltr"] .section-heading i {
  margin-left: 0;
  margin-right: 8px;
}

html[dir="ltr"] .nav-links a::after {
  right: auto;
  left: 0;
}

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

/* Product detail modal — luxury frame */
.product-modal-lux .modal-dialog {
  max-width: min(1040px, 96vw);
}

.product-modal-lux .modal-content {
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(165deg, #fffef9 0%, #fff 38%, #faf6f0 100%);
  box-shadow: var(--shadow-lux), 0 0 0 1px rgba(199, 166, 74, 0.22);
}

.product-modal-lux__inner {
  padding: clamp(1.1rem, 3vw, 2rem);
}

.product-modal-lux__corners {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.product-modal-lux__corners span {
  position: absolute;
  width: 36px;
  height: 36px;
  border-color: rgba(199, 166, 74, 0.55);
  border-style: solid;
  border-width: 0;
}

.product-modal-lux__corners span:nth-child(1) {
  top: 12px;
  inset-inline-start: 12px;
  border-top-width: 2px;
  border-inline-start-width: 2px;
  border-radius: 4px 0 0 0;
}

.product-modal-lux__corners span:nth-child(2) {
  top: 12px;
  inset-inline-end: 12px;
  border-top-width: 2px;
  border-inline-end-width: 2px;
  border-radius: 0 4px 0 0;
}

.product-modal-lux__corners span:nth-child(3) {
  bottom: 12px;
  inset-inline-start: 12px;
  border-bottom-width: 2px;
  border-inline-start-width: 2px;
  border-radius: 0 0 0 4px;
}

.product-modal-lux__corners span:nth-child(4) {
  bottom: 12px;
  inset-inline-end: 12px;
  border-bottom-width: 2px;
  border-inline-end-width: 2px;
  border-radius: 0 0 4px 0;
}

.product-modal-lux__close {
  position: absolute;
  z-index: 4;
  top: 0.85rem;
  inset-inline-end: 0.85rem;
  padding: 0.65rem;
  background: rgba(255, 254, 249, 0.92);
  border-radius: 50%;
  box-shadow: 0 4px 18px rgba(18, 18, 18, 0.08);
  opacity: 0.85;
}

.product-modal-lux__close:hover {
  opacity: 1;
}

.product-modal-lux__grid {
  position: relative;
  z-index: 2;
}

.product-modal-lux__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.5rem 1rem;
}

@media (min-width: 992px) {
  .product-modal-lux__visual {
    padding: 0.25rem 1rem 1.25rem 0.25rem;
  }
}

.product-modal-lux__img-wrap {
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(145deg, #fff 0%, #f7f0e4 55%, #efe4d4 100%);
  box-shadow:
    inset 0 0 0 1px rgba(199, 166, 74, 0.35),
    0 24px 50px rgba(16, 16, 16, 0.14);
  padding: clamp(0.65rem, 2vw, 1.1rem);
}

.product-modal-lux__img-wrap img {
  width: 100%;
  height: auto;
  max-height: min(420px, 52vh);
  border-radius: 12px;
  object-fit: contain;
  aspect-ratio: 4 / 5;
}

.product-modal-lux__img-wrap--dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  max-width: min(500px, 100%);
  padding: 0.5rem 0.55rem 0.6rem;
}

.product-modal-lux__img-wrap--dual img {
  aspect-ratio: 1;
  max-height: min(268px, 36vh);
  margin: 0;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  background: #fff;
  padding: 0.35rem;
  box-shadow:
    inset 0 0 0 1px rgba(199, 166, 74, 0.2),
    0 10px 26px rgba(16, 16, 16, 0.1);
}

.product-modal-lux__img-wrap--dual #productModalImgB {
  object-fit: contain;
}

@media (max-width: 575.98px) {
  .product-modal-lux__img-wrap--dual {
    grid-template-columns: 1fr;
    max-width: 320px;
  }

  .product-modal-lux__img-wrap--dual img {
    max-height: min(220px, 32vh);
  }
}

.product-modal-lux__specs .product-modal-lux__wherteimar {
  margin-bottom: 1.1rem;
}

.product-modal-lux__brand-mark {
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: #121212;
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(199, 166, 74, 0.42);
  text-align: center;
}

.product-modal-lux__brand-mark span {
  display: block;
  margin-top: 0.35rem;
  font-family: "Cairo", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8a7028;
}

.product-modal-lux__wherteimar > p:not(.product-modal-lux__brand-mark) {
  margin: 0 0 0.85rem;
  font-size: 0.93rem;
  line-height: 1.82;
  color: var(--text-soft);
}

.product-modal-lux__wherteimar > p:last-of-type {
  margin-bottom: 0;
}

.product-modal-lux__wherteimar strong {
  color: var(--black-soft);
}

.product-modal-lux__wherteimar em {
  font-style: normal;
  font-weight: 600;
  color: #7a5f20;
}

.product-modal-lux__copy {
  padding: 0.5rem 0.75rem 1rem;
  text-align: start;
}

@media (min-width: 992px) {
  .product-modal-lux__copy {
    padding: 0.35rem 1.75rem 1.25rem 1rem;
  }
}

.product-modal-lux__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9a7b30;
}

html[lang="ar"] .product-modal-lux__eyebrow {
  letter-spacing: 0.04em;
  text-transform: none;
}

.product-modal-lux__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--black-soft);
}

.product-modal-lux__lead {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.75;
}

.product-modal-lux__specs-head {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--black-soft);
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(199, 166, 74, 0.35);
}

.product-modal-lux__specs .product-modal-lux__sub {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.7;
}

.product-modal-lux__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-modal-lux__list li {
  position: relative;
  padding-inline-start: 1.35rem;
  margin-bottom: 0.55rem;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--black-soft);
}

.product-modal-lux__list li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  inset-inline-start: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lux-gradient);
  box-shadow: 0 0 0 2px rgba(199, 166, 74, 0.25);
}

.product-modal-lux__actions {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(18, 18, 18, 0.06);
}

.product-modal-lux__wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-weight: 700;
  border-radius: 999px;
  border: none;
  background: linear-gradient(120deg, #25d366, #1ebe5b);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
}

.product-modal-lux__wa:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.product-modal-lux__wa i {
  font-size: 1.15rem;
}
