/* ===== Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Tajawal", sans-serif;
  background: #fcfaf7;
  color: #2c2c2c;
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
}
::-webkit-scrollbar {
  width: 7px;
}
::-webkit-scrollbar-track {
  background: #f1ece4;
}
::-webkit-scrollbar-thumb {
  background: #b8935a;
  border-radius: 4px;
}

a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
}

/* ===== Splash ===== */
#splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0a1b2d;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.7s ease,
    visibility 0.7s ease;
}
#splash.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.splash-content {
  text-align: center;
}
.splash-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 50%;
  border: 3px solid #d6b37c;
  padding: 5px;
  margin-bottom: 20px;
  animation: splashFloat 2s ease-in-out infinite;
}
.splash-title {
  font-family: "Playfair Display", serif;
  color: #edd8b3;
  font-size: 2rem;
  margin-bottom: 25px;
}
.splash-loader span {
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #d6b37c, #b8935a);
  border-radius: 3px;
  margin: 0 auto 20px;
  animation: loaderSlide 1s ease-in-out infinite;
}
.splash-sub {
  color: rgba(237, 216, 179, 0.6);
  font-size: 0.9rem;
}
@keyframes splashFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes loaderSlide {
  0% {
    width: 30px;
    opacity: 0.4;
  }
  50% {
    width: 60px;
    opacity: 1;
  }
  100% {
    width: 30px;
    opacity: 0.4;
  }
}

/* ===== Navbar – Luxury Light ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  transition: all 0.4s;
  border-bottom: 1px solid rgba(214, 179, 124, 0.15);
}
nav.scrolled {
  box-shadow: 0 6px 35px rgba(0, 0, 0, 0.06);
  border-bottom-color: rgba(214, 179, 124, 0.35);
}
.logo-box {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-img {
  height: 46px;
  width: 46px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid rgba(214, 179, 124, 0.25);
  padding: 2px;
  transition: all 0.4s;
}
.logo-box:hover .logo-img {
  border-color: #d6b37c;
}
.logo-text {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, #8a7a5a 0%, #d4af37 50%, #8a7a5a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1.5px;
}
.nav-links {
  display: flex;
  align-items: center;
  background: rgba(214, 179, 124, 0.04);
  border: 1.5px solid rgba(214, 179, 124, 0.35);
  border-radius: 50px;
  padding: 4px 10px;
  gap: 4px;
}
.nav-sep {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: radial-gradient(circle at 35% 35%, #f5e6c8, #d4af37 40%, #b8860b);
  border-radius: 50%;
  opacity: 0.7;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.3);
}
.nav-links a {
  color: #1a1a1a;
  font-weight: 500;
  font-size: 0.82rem;
  padding: 8px 18px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.35s;
  border-radius: 30px;
}
.nav-links a:hover {
  color: #b8935a;
  background: rgba(214, 179, 124, 0.07);
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 30px;
  right: 30px;
  height: 0;
  background: linear-gradient(
    90deg,
    transparent,
    #d6b37c,
    #f5e6c8,
    #d6b37c,
    transparent
  );
  border-radius: 3px;
  transition: all 0.35s;
  opacity: 0;
}
.nav-links a:hover::after {
  height: 3px;
  opacity: 1;
  box-shadow:
    0 0 20px rgba(214, 179, 124, 0.45),
    0 0 40px rgba(214, 179, 124, 0.15);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  width: 26px;
  height: 2.5px;
  background: linear-gradient(90deg, #b8935a, #4a4a4a);
  border-radius: 3px;
  transition: 0.3s;
}

/* ===== Hero Particles ===== */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}
.hero-particles span {
  position: absolute;
  border-radius: 50%;
  animation: particleFloat linear infinite;
}
.hero-particles span:nth-child(1),
.hero-particles span:nth-child(3),
.hero-particles span:nth-child(5),
.hero-particles span:nth-child(7),
.hero-particles span:nth-child(9) {
  width: 4px;
  height: 4px;
  background: rgba(214, 179, 124, 0.5);
  box-shadow: 0 0 6px rgba(214, 179, 124, 0.3);
}
.hero-particles span:nth-child(2),
.hero-particles span:nth-child(4),
.hero-particles span:nth-child(6),
.hero-particles span:nth-child(8),
.hero-particles span:nth-child(10) {
  width: 2px;
  height: 2px;
  background: rgba(245, 230, 200, 0.6);
  box-shadow: 0 0 4px rgba(245, 230, 200, 0.3);
}
.hero-particles span:nth-child(1) {
  top: 10%;
  left: 15%;
  animation-duration: 8s;
  animation-delay: 0s;
}
.hero-particles span:nth-child(2) {
  top: 25%;
  left: 75%;
  animation-duration: 10s;
  animation-delay: 1s;
}
.hero-particles span:nth-child(3) {
  top: 45%;
  left: 30%;
  animation-duration: 9s;
  animation-delay: 2s;
}
.hero-particles span:nth-child(4) {
  top: 65%;
  left: 85%;
  animation-duration: 11s;
  animation-delay: 0.5s;
}
.hero-particles span:nth-child(5) {
  top: 80%;
  left: 20%;
  animation-duration: 8s;
  animation-delay: 3s;
}
.hero-particles span:nth-child(6) {
  top: 15%;
  left: 50%;
  animation-duration: 12s;
  animation-delay: 1.5s;
}
.hero-particles span:nth-child(7) {
  top: 55%;
  left: 60%;
  animation-duration: 9s;
  animation-delay: 2.5s;
}
.hero-particles span:nth-child(8) {
  top: 35%;
  left: 10%;
  animation-duration: 10s;
  animation-delay: 0.8s;
}
.hero-particles span:nth-child(9) {
  top: 70%;
  left: 45%;
  animation-duration: 13s;
  animation-delay: 1.2s;
}
.hero-particles span:nth-child(10) {
  top: 90%;
  left: 70%;
  animation-duration: 7s;
  animation-delay: 3.5s;
}
@keyframes particleFloat {
  0% {
    transform: translateY(0) scale(1) rotate(0deg);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  80% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(-180px) scale(0.5) rotate(90deg);
    opacity: 0;
  }
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 3rem 60px;
  background: linear-gradient(135deg, #0a1b2d 0%, #162d4a 50%, #0f1f33 100%);
}
.hero-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
}
.hero-text {
  flex: 1.1;
}

.hero-greeting-wrap {
  overflow: hidden;
  opacity: 0;
  animation: greetingSlide 1s ease 0.3s forwards;
}
@keyframes greetingSlide {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-greeting {
  color: #d6b37c;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 15px;
  display: inline-block;
  position: relative;
}
.hero-greeting::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d6b37c, transparent);
  animation: greetingLine 1.5s ease 0.8s infinite;
}
@keyframes greetingLine {
  0% {
    transform: scaleX(0);
    opacity: 0;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
  100% {
    transform: scaleX(0);
    opacity: 0;
  }
}

.hero-title-wrap {
  overflow: hidden;
  opacity: 0;
  animation: titleSlide 1s ease 0.5s forwards;
}
@keyframes titleSlide {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  color: #d6b37c;
  line-height: 1.15;
  margin-bottom: 25px;
  display: inline-block;
  position: relative;
}
.hero-title span {
  color: #d4af37;
}
.hero-title::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d6b37c, transparent);
  animation: titleLine 1.5s ease 1s infinite;
}
@keyframes titleLine {
  0% {
    transform: scaleX(0);
    opacity: 0;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
  100% {
    transform: scaleX(0);
    opacity: 0;
  }
}
@keyframes lineIn {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}

.hero-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 30px;
  max-width: 480px;
  opacity: 0;
  animation: descSlide 0.8s ease 1s forwards;
  position: relative;
}
@keyframes descSlide {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.hero-desc::before {
  content: '"';
  font-size: 2rem;
  color: rgba(214, 179, 124, 0.3);
  position: absolute;
  top: -10px;
  right: -20px;
  font-family: "Playfair Display", serif;
}

.hero-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  opacity: 0;
  animation: btnsUp 0.6s ease 1.4s forwards;
}

@keyframes btnsUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #d4af37, #b8935a, #a07d4a);
  background-size: 200% 100%;
  color: #0a1b2d;
  font-weight: 700;
  border-radius: 14px;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 30px rgba(184, 147, 90, 0.3);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transition: left 0.6s;
}
.btn-primary:hover::before {
  left: 100%;
}
.btn-primary:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 20px 50px rgba(184, 147, 90, 0.35);
  background-position: 100% 0;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border: 2px solid rgba(237, 216, 179, 0.2);
  color: #edd8b3;
  font-weight: 600;
  border-radius: 14px;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent;
}
.btn-outline:hover {
  border-color: #d6b37c;
  background: rgba(214, 179, 124, 0.08);
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(214, 179, 124, 0.15);
}
.hero-social {
  display: flex;
  gap: 12px;
  opacity: 0;
  animation: btnsUp 0.6s ease 1.7s forwards;
}
.hero-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(237, 216, 179, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #edd8b3;
  transition: all 0.3s;
}
.hero-social a:hover {
  background: #d6b37c;
  color: #0a1b2d;
  border-color: #d6b37c;
  transform: translateY(-3px) rotate(360deg);
}

.hero-image {
  flex: 0.9;
  display: flex;
  justify-content: center;
  animation: fadeInRight 1.2s ease 0.6s both;
}
.hero-image-inner {
  position: relative;
}
.hero-image-inner img {
  max-width: 100%;
  width: 480px;
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(214, 179, 124, 0.1);
  animation: heroImgFloat 4s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
.hero-image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110%;
  height: 110%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(214, 179, 124, 0.15),
    transparent 60%
  );
  border-radius: 50%;
  animation: glowPulse 3s ease-in-out infinite;
  z-index: 1;
}
@keyframes glowPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
}
@keyframes heroImgFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== Sections Shared ===== */
section {
  position: relative;
}
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-badge {
  display: inline-block;
  padding: 7px 22px;
  background: rgba(184, 147, 90, 0.08);
  color: #b8935a;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 15px;
  transition: all 0.35s;
  letter-spacing: 1px;
  border: 1px solid rgba(184, 147, 90, 0.1);
}
.section-badge:hover {
  transform: scale(1.05);
  background: rgba(184, 147, 90, 0.15);
  border-color: rgba(184, 147, 90, 0.2);
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  color: #0a1b2d;
  margin-bottom: 18px;
}
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #d6b37c, #b8935a, #d4af37);
  margin: 0 auto 20px;
  border-radius: 3px;
  position: relative;
}
.section-divider::before,
.section-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 1px;
  background: rgba(184, 147, 90, 0.2);
}
.section-divider::before {
  right: -28px;
}
.section-divider::after {
  left: -28px;
}
.section-divider {
  animation: dividerPulse 4s ease-in-out infinite;
}
@keyframes dividerPulse {
  0%,
  100% {
    width: 60px;
    opacity: 0.8;
  }
  50% {
    width: 80px;
    opacity: 1;
  }
}
.section-sub {
  color: #999;
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Section transitions */
.products,
.about,
.contact {
  transition: background 0.5s;
}

/* ===== Products ===== */
.products {
  padding: 100px 3rem;
  background: linear-gradient(180deg, #fcfaf7, #fff);
  scroll-margin-top: 85px;
}

/* Categories */
.categories {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.categories button {
  padding: 10px 26px;
  border: 1px solid rgba(214, 179, 124, 0.1);
  border-radius: 30px;
  background: #fff;
  cursor: pointer;
  font-family: "Tajawal", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #555;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}
.categories button.active,
.categories button:hover {
  background: #0a1b2d;
  color: #edd8b3;
  box-shadow: 0 10px 30px rgba(10, 27, 45, 0.15);
  transform: translateY(-3px);
  border-color: #0a1b2d;
}

/* Loader */
.loader-container {
  text-align: center;
  padding: 60px 0;
  display: none;
}
.loader-container.active {
  display: block;
}
.loader-ring {
  width: 45px;
  height: 45px;
  border: 3px solid #e0d5c5;
  border-top-color: #b8935a;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin: 0 auto 15px;
}
.loader-container p {
  color: #aaa;
  font-size: 0.85rem;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Grid */
.products-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

/* Card */
.product-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 4px 25px rgba(0, 0, 0, 0.04),
    0 1px 3px rgba(0, 0, 0, 0.02);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(214, 179, 124, 0.06);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.1),
    0 8px 20px rgba(0, 0, 0, 0.06);
  border-color: rgba(214, 179, 124, 0.15);
}
.product-card-img-wrap {
  height: 250px;
  background: linear-gradient(135deg, #faf8f5 0%, #f5f0e8 100%);
  overflow: hidden;
  position: relative;
  border-bottom: 2px solid rgba(214, 179, 124, 0.08);
}
.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 30px;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover .product-card-img {
  transform: scale(1.08) translateY(-4px);
}

.product-card-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.8s;
  pointer-events: none;
}
.product-card:hover .product-card-shimmer {
  left: 200%;
}
.product-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, #d4af37, #b8935a);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 20px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(184, 147, 90, 0.3);
  letter-spacing: 0.5px;
}
.product-card-body {
  padding: 24px 26px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0a1b2d;
  margin-bottom: 6px;
  line-height: 1.4;
}
.product-card-category {
  font-size: 0.75rem;
  color: #b8935a;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.product-card-price {
  font-size: 1.4rem;
  font-weight: 900;
  color: #0a1b2d;
  margin-bottom: 18px;
}
.product-card-price .currency {
  font-size: 0.85rem;
  font-weight: 600;
  color: #b8935a;
}
.product-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: linear-gradient(135deg, #d6b37c, #b8935a);
  color: #fff;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: "Tajawal", sans-serif;
  transition: all 0.35s;
  width: 100%;
  justify-content: center;
  margin-top: auto;
}
.product-card-btn:hover {
  box-shadow: 0 8px 25px rgba(184, 147, 90, 0.3);
  transform: translateY(-2px);
  background: linear-gradient(135deg, #d4af37, #a07d4a);
}

/* ===== Modal ===== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.show {
  display: flex;
}
.modal-body {
  background: #fff;
  border-radius: 28px;
  max-width: 920px;
  width: 100%;
  position: relative;
  padding: 40px;
  animation: modalIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(214, 179, 124, 0.08);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}
@keyframes modalIn {
  from {
    transform: scale(0.9) translateY(20px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}
.modal-close {
  position: absolute;
  top: 15px;
  left: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #bbb;
  cursor: pointer;
  transition: color 0.3s;
  z-index: 5;
  line-height: 1;
}
.modal-close:hover {
  color: #0a1b2d;
}
.modal-inner {
  display: flex;
  gap: 35px;
}
.modal-img-box {
  flex: 1;
}
.modal-img-box img {
  width: 100%;
  height: 460px;
  object-fit: contain;
  border-radius: 16px;
  background: #faf8f5;
  padding: 25px;
}
.modal-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.modal-badge {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(184, 147, 90, 0.1);
  color: #b8935a;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  width: fit-content;
}
.modal-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: #0a1b2d;
  line-height: 1.3;
}
.modal-info p {
  color: #777;
  font-size: 0.9rem;
  line-height: 1.8;
}
.modal-features {
  display: flex;
  gap: 8px;
  color: #666 !important;
  align-items: flex-start;
}
.modal-features i {
  color: #b8935a;
  margin-top: 5px;
}
.modal-price-box {
  background: #fcfaf7;
  padding: 15px 20px;
  border-radius: 14px;
  border: 1px solid rgba(184, 147, 90, 0.1);
  margin: 5px 0;
}
.modal-price-box span:first-child {
  font-size: 2rem;
  font-weight: 900;
  color: #0a1b2d;
}
.modal-currency {
  font-size: 0.9rem;
  font-weight: 600;
  color: #999;
  margin-right: 5px;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.35s;
  width: fit-content;
  border: none;
  cursor: pointer;
}
.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.3);
}
.modal-gallery {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(184, 147, 90, 0.08);
}
.modal-gallery-label {
  width: 100%;
  font-size: 0.7rem;
  color: #bbb;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.modal-gallery-inner {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  width: 100%;
}
.modal-gallery img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  opacity: 0.4;
  border: 2px solid transparent;
  transition: all 0.3s;
}
.modal-gallery img:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}
.modal-gallery img.active {
  opacity: 1;
  border-color: #b8935a;
  box-shadow: 0 4px 12px rgba(184, 147, 90, 0.2);
  transform: translateY(-2px);
}

/* ===== About ===== */
.about {
  padding: 100px 3rem;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.about-bg {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(184, 147, 90, 0.05),
    transparent 60%
  );
  border-radius: 50%;
  pointer-events: none;
}
.about-content {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* About Top: Image + Intro */
.about-top {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 60px;
}
.about-image-box {
  position: relative;
  flex: 0 0 300px;
}
.about-image {
  width: 320px;
  height: 370px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.06);
  border: 3px solid rgba(184, 147, 90, 0.15);
  transition: all 0.5s;
}
.about-image:hover {
  border-color: rgba(184, 147, 90, 0.3);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1);
  transform: scale(1.01);
}
.about-image-badge {
  position: absolute;
  bottom: -15px;
  right: -15px;
  background: linear-gradient(135deg, #d4af37, #b8935a, #a07d4a);
  color: #fff;
  padding: 14px 22px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(184, 147, 90, 0.35);
  transition: all 0.4s;
}
.about-image-box:hover .about-image-badge {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 15px 40px rgba(184, 147, 90, 0.4);
}
.about-image-badge span {
  display: block;
  font-size: 0.7rem;
  opacity: 0.9;
}
.about-image-badge strong {
  font-size: 1.05rem;
  font-weight: 900;
}
.about-intro {
  flex: 1;
}
.about-intro h3 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #0a1b2d;
  margin-bottom: 15px;
  position: relative;
}
.about-intro h3::after {
  content: "";
  position: absolute;
  bottom: -6px;
  right: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #d6b37c, transparent);
}
.about-intro p {
  font-size: 1.05rem;
  color: #666;
  line-height: 2.1;
  margin-bottom: 25px;
  margin-top: 20px;
}
.about-intro p strong {
  color: #b8935a;
}

/* Feature Cards */
.about-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 65px;
}
.feature-card {
  text-align: center;
  padding: 35px 22px;
  border-radius: 24px;
  background: #fcfaf7;
  border: 1px solid rgba(184, 147, 90, 0.06);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d6b37c, transparent);
  transition: width 0.4s;
}
.feature-card:hover {
  border-color: rgba(184, 147, 90, 0.15);
  box-shadow: 0 20px 50px rgba(184, 147, 90, 0.08);
  transform: translateY(-8px);
}
.feature-card:hover::before {
  width: 80%;
  opacity: 1;
}
.feature-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #d6b37c, #b8935a);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  transition: all 0.5s;
}
.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-6deg);
  box-shadow: 0 10px 30px rgba(184, 147, 90, 0.2);
}
.feature-card h4 {
  font-size: 1rem;
  color: #0a1b2d;
  margin-bottom: 8px;
  font-weight: 700;
}
.feature-card p {
  font-size: 0.82rem;
  color: #bbb;
  line-height: 1.7;
}

/* Steps */
.about-steps {
  margin-bottom: 60px;
}
.about-steps-title {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: #0a1b2d;
  margin-bottom: 45px;
}
.steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.step {
  text-align: center;
  padding: 38px 25px 32px;
  border-radius: 22px;
  border: 1px solid rgba(214, 179, 124, 0.06);
  width: 230px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: #fff;
}
.step:hover {
  border-color: rgba(184, 147, 90, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  transform: translateY(-10px);
}
.step-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, #fcfaf7, #f5efe6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #b8935a;
  transition: all 0.4s;
  border: 2px solid rgba(184, 147, 90, 0.1);
}
.step:hover .step-icon {
  background: linear-gradient(135deg, #d6b37c, #b8935a);
  color: #fff;
  border-color: transparent;
  transform: scale(1.1) rotateY(180deg);
}
.step-num {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(184, 147, 90, 0.1);
  margin-bottom: 5px;
  transition: all 0.4s;
  line-height: 1;
}
.step:hover .step-num {
  color: rgba(184, 147, 90, 0.25);
  transform: scale(1.1);
}
.step h4 {
  font-size: 1rem;
  color: #0a1b2d;
  margin-bottom: 8px;
  font-weight: 700;
}
.step p {
  font-size: 0.8rem;
  color: #999;
  line-height: 1.7;
}
.step-connector {
  font-size: 1.3rem;
  color: #d6b37c;
  padding: 0 15px;
  animation: connectorBounce 1.5s ease-in-out infinite;
}
@keyframes connectorBounce {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-5px);
  }
}

/* Stats */
.about-stats {
  display: flex;
  justify-content: center;
  gap: 70px;
  flex-wrap: wrap;
  padding: 40px;
  border-radius: 24px;
  background: linear-gradient(135deg, #0a1b2d 0%, #162d4a 50%, #0f1f33 100%);
  border: 1px solid rgba(214, 179, 124, 0.08);
  position: relative;
  overflow: hidden;
}
.about-stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(214, 179, 124, 0.3),
    transparent
  );
}
.stat {
  text-align: center;
}
.stat-num {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #d6b37c;
  margin-bottom: 5px;
  transition: transform 0.3s;
}
.stat:hover .stat-num {
  transform: scale(1.2);
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(237, 216, 179, 0.5);
  font-weight: 500;
}

/* ===== Testimonials ===== */
.testimonials {
  padding: 100px 3rem;
  background: linear-gradient(180deg, #fff, #fcfaf7);
}
.testimonials-grid {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding: 10px 0 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.testimonials-grid::-webkit-scrollbar {
  height: 5px;
}
.testimonials-grid::-webkit-scrollbar-track {
  background: #f1ece4;
  border-radius: 10px;
}
.testimonials-grid::-webkit-scrollbar-thumb {
  background: #b8935a;
  border-radius: 10px;
}
.testimonial-card {
  flex: 0 0 auto;
  width: 220px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(214, 179, 124, 0.06);
  transition: all 0.4s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  scroll-snap-align: start;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  border-color: rgba(214, 179, 124, 0.15);
}
.testimonial-img-wrap {
  width: 100%;
  line-height: 0;
}
.testimonial-img-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* ===== Contact ===== */
.contact {
  padding: 100px 3rem;
  background: linear-gradient(180deg, #fff, #fcfaf7);
  position: relative;
  overflow: hidden;
}
.contact-shape {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(184, 147, 90, 0.06),
    transparent 65%
  );
  border-radius: 50%;
  pointer-events: none;
  animation: contactShape 7s ease-in-out infinite alternate;
}
@keyframes contactShape {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(30px, -30px) scale(1.1);
  }
}
.contact-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  position: relative;
  z-index: 1;
}

/* Form Wrapper */
.contact-form-wrap {
  flex: 1.2;
  background: #fff;
  padding: 35px;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(184, 147, 90, 0.08);
}
.contact-form-header {
  text-align: center;
  margin-bottom: 25px;
}
.contact-form-header i {
  font-size: 1.8rem;
  color: #b8935a;
  margin-bottom: 10px;
  animation: contactIcon 2s ease-in-out infinite;
}
@keyframes contactIcon {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
.contact-form-header h4 {
  font-size: 1.2rem;
  color: #0a1b2d;
  font-weight: 700;
}
.contact-form-header p {
  font-size: 0.85rem;
  color: #bbb;
  margin-top: 5px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.input-group {
  position: relative;
}
.input-group input,
.input-group textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1.5px solid #ede8e0;
  border-radius: 14px;
  font-family: "Tajawal", sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s;
  background: #fff;
}
.input-group input::placeholder,
.input-group textarea::placeholder {
  color: #c5b5a0;
}
#contactPhone {
  text-align: right;
}
.input-group textarea {
  resize: vertical;
  min-height: 110px;
}
.input-group input:focus,
.input-group textarea:focus {
  border-color: #c9a96e;
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.06);
}

.contact-form button {
  padding: 16px;
  border: none;
  border-radius: 14px;
  background: #25d366;
  color: #fff;
  font-family: "Tajawal", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s;
}
.contact-form button:hover {
  background: #1ebe5c;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.25);
  transform: translateY(-3px);
}

/* Info Wrapper */
.contact-info-wrap {
  flex: 0.8;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-info-header {
  margin-bottom: 20px;
  text-align: center;
}
.contact-info-header i {
  font-size: 1.8rem;
  color: #b8935a;
  margin-bottom: 10px;
}
.contact-info-header h4 {
  font-size: 1.2rem;
  color: #0a1b2d;
  font-weight: 700;
}
.contact-info-header p {
  font-size: 0.85rem;
  color: #bbb;
  margin-top: 5px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(214, 179, 124, 0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  color: #444;
  animation: contactItemIn 0.5s both;
  animation-delay: calc(var(--i) * 0.1s);
}
@keyframes contactItemIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.contact-item:hover {
  border-color: rgba(184, 147, 90, 0.2);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
  transform: translateX(-6px);
}
.contact-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  transition: all 0.4s;
  flex-shrink: 0;
}
.contact-icon-box.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}
.contact-icon-box.facebook {
  background: linear-gradient(135deg, #1877f2, #0d5ab9);
}
.contact-icon-box.instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}
.contact-icon-box.tiktok {
  background: linear-gradient(135deg, #25f4ee, #fe2c55, #010101);
}
.contact-icon-box.tiktok svg {
  width: 18px;
  height: 20px;
}
.contact-item:hover .contact-icon-box {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.contact-label {
  display: block;
  font-size: 0.7rem;
  color: #bbb;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}
.contact-value {
  display: block;
  font-size: 0.9rem;
  color: #333;
  font-weight: 600;
}

/* ===== Floating WhatsApp ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
  z-index: 900;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.whatsapp-float {
  animation: whatsappPulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 14px 45px rgba(37, 211, 102, 0.4);
  animation: none;
}
@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
  }
  50% {
    box-shadow: 0 8px 50px rgba(37, 211, 102, 0.5);
  }
}

/* ===== Back to Top ===== */
.back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: #0a1b2d;
  color: #edd8b3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(214, 179, 124, 0.1);
}
.back-top.show {
  opacity: 1;
  visibility: visible;
}
.back-top:hover {
  background: linear-gradient(135deg, #d6b37c, #b8935a);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(184, 147, 90, 0.25);
}

/* ===== Testimonial Lightbox ===== */
.testimonial-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  cursor: zoom-out;
}
.testimonial-lightbox.show {
  display: flex;
  animation: lightboxIn 0.3s ease;
}
@keyframes lightboxIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.testimonial-lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  cursor: default;
}
.testimonial-lightbox-close {
  position: absolute;
  top: 20px;
  left: 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s;
  line-height: 1;
}
.testimonial-lightbox-close:hover {
  opacity: 1;
}

/* ===== Footer ===== */
footer {
  background: linear-gradient(180deg, #0a1b2d 0%, #050f1a 100%);
  padding: 55px 3rem 35px;
  text-align: center;
  border-top: 1px solid rgba(214, 179, 124, 0.1);
  position: relative;
}
footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d6b37c, transparent);
}
.footer-content {
  max-width: 600px;
  margin: 0 auto;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
}
.footer-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid rgba(214, 179, 124, 0.2);
  padding: 2px;
  transition: all 0.5s;
}
.footer-brand span {
  font-family: "Playfair Display", serif;
  color: #edd8b3;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.footer-brand:hover img {
  transform: scale(1.05) rotate(5deg);
  border-color: rgba(214, 179, 124, 0.5);
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin: 18px 0 15px;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(237, 216, 179, 0.4);
  font-size: 0.8rem;
  transition: color 0.3s;
  letter-spacing: 0.5px;
}
.footer-links a:hover {
  color: #d6b37c;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(214, 179, 124, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(237, 216, 179, 0.4);
  transition: all 0.3s;
  font-size: 0.9rem;
}
.footer-social a:hover {
  background: #d6b37c;
  color: #0a1b2d;
  border-color: #d6b37c;
  transform: translateY(-3px);
}
footer p {
  color: rgba(237, 216, 179, 0.25);
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}
.footer-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.footer-badge svg {
  flex-shrink: 0;
}
.footer-badge span {
  color: #c9a24a;
  font-size: 0.85rem;
}
.footer-badge strong {
  color: #c9a24a;
  font-weight: 800;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) and (min-width: 577px) {
  .products-grid {
    gap: 20px;
    padding: 0 16px;
  }
  .about-features {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 992px) {
  nav {
    padding: 0 2rem;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 25px;
    gap: 1.2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    z-index: 999;
    text-align: center;
    border-top: 1px solid rgba(214, 179, 124, 0.2);
    border-radius: 0;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-sep {
    display: none;
  }
  .nav-links a {
    color: #4a4a4a;
    font-size: 1rem;
    letter-spacing: 2px;
    padding: 10px 20px;
  }
  .hamburger {
    display: flex;
  }
  .hero {
    padding: 90px 2rem 50px;
  }
  .hero-container {
    flex-direction: column-reverse;
    text-align: center;
    gap: 2.5rem;
  }
  .hero-title {
    font-size: 3rem;
  }
  .hero-desc {
    margin: 0 auto 30px;
  }
  .hero-btns,
  .hero-social {
    justify-content: center;
  }
  .hero-image img {
    max-width: 380px;
  }
  .products,
  .about,
  .contact {
    padding: 80px 2rem;
  }
  .contact {
    padding: 60px 1.2rem 80px;
  }
  .contact .section-header {
    padding: 0;
  }
  .about-features {
    grid-template-columns: repeat(2, 1fr);
  }
  .step-connector {
    display: none;
  }
  .modal-inner {
    flex-direction: column;
  }
  .modal-img-box img {
    height: 340px;
  }
  .modal-info h3 {
    font-size: 1.4rem;
  }
  .modal-body {
    padding: 25px;
  }
  .contact-container {
    flex-direction: column;
    gap: 16px;
  }
  .contact-form-wrap {
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
    background: none;
  }
  .contact-form-header,
  .contact-form-title,
  .contact-form-sub,
  .contact-form-wrap::before,
  .input-border {
    display: none;
  }
  .contact-form {
    background: #fff;
    border-radius: 16px;
    padding: 20px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.02);
  }
  .input-group input,
  .input-group textarea {
    width: 100%;
    padding: 14px 14px;
    font-size: 0.82rem;
    border: 1.5px solid #ede8e0;
    border-radius: 12px;
    background: #fff;
    outline: none;
    transition: border-color 0.3s;
    font-family: "Tajawal", sans-serif;
  }
  .input-group input::placeholder,
  .input-group textarea::placeholder {
    color: #ccbfae;
    font-size: 0.82rem;
  }
  .input-group textarea {
    min-height: 68px;
    resize: none;
  }
  .input-group input:focus,
  .input-group textarea:focus {
    border-color: #c9a96e;
  }
  .contact-form button {
    padding: 12px;
    font-size: 0.8rem;
    border-radius: 12px;
    background: #25d366;
    color: #fff;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: "Tajawal", sans-serif;
  }
  .contact-form button:active {
    opacity: 0.85;
  }
  .contact-info-wrap {
    align-items: stretch;
    width: 100%;
    padding: 0 16px;
  }
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #ede8e0;
  }
  .contact-icon-box {
    width: 32px;
    height: 32px;
    font-size: 0.78rem;
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
  }
  .contact-item > div:last-child {
    text-align: right;
  }
  .contact-label {
    display: block;
    font-size: 0.55rem;
    color: #ccbfae;
    font-weight: 400;
    margin-bottom: 1px;
  }
  .contact-value {
    display: block;
    font-size: 0.78rem;
    color: #2c2c2c;
    font-weight: 500;
  }
  .about-stats {
    gap: 40px;
  }
  .testimonial-card {
    width: 180px;
  }
  .testimonial-img-wrap img {
    height: 260px;
  }
}

@media (max-width: 576px) {
  .categories {
    gap: 6px;
    margin-bottom: 30px;
  }
  .categories button {
    padding: 6px 14px;
    font-size: 0.68rem;
  }
  nav {
    padding: 0 1rem;
    height: 60px;
  }
  .logo-text {
    display: none;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-desc {
    font-size: 0.95rem;
  }
  .hero-image img {
    max-width: 280px;
  }
  .hero-greeting {
    animation: none;
    width: auto;
    border: none;
  }
  .section-title {
    font-size: 2rem;
  }
  .products,
  .about,
  .contact {
    padding: 60px 1.2rem;
  }
  .contact {
    padding: 40px 0 60px;
  }
  .contact .section-header {
    padding: 0 1.2rem;
  }
  .contact-info-wrap {
    padding: 0 16px;
  }
  .contact-form {
    padding: 18px 16px 16px;
    gap: 10px;
  }
  .input-group input,
  .input-group textarea {
    padding: 13px 14px;
    font-size: 0.78rem;
  }
  .input-group textarea {
    min-height: 60px;
  }

  .contact-form button {
    padding: 11px;
    font-size: 0.76rem;
    background: #25d366;
  }
  .contact-item {
    padding: 12px 14px;
    gap: 12px;
  }
  .contact-icon-box {
    width: 28px;
    height: 28px;
    font-size: 0.72rem;
  }
  .contact-value {
    font-size: 0.76rem;
  }
  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0 8px;
  }
  .product-card {
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  }
  .product-card-img-wrap {
    height: 160px;
  }
  .product-card-img {
    padding: 10px;
  }
  .product-card-body {
    padding: 10px 12px 12px;
    gap: 2px;
    min-height: 110px;
  }
  .product-card-body h3 {
    font-size: 0.78rem;
    margin-bottom: 2px;
    line-height: 1.3;
  }
  .product-card-category {
    font-size: 0.6rem;
    margin-bottom: 4px;
  }
  .product-card-price {
    font-size: 0.85rem;
    margin-bottom: 8px;
  }
  .product-card-price .currency {
    font-size: 0.6rem;
  }
  .product-card-btn {
    padding: 10px 16px;
    font-size: 0.64rem;
    gap: 4px;
    border-radius: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
  }
  .product-card-badge {
    font-size: 0.45rem;
    padding: 2px 8px;
    top: 6px;
    right: 6px;
  }
  .modal {
    padding: 12px;
    align-items: center;
  }
  .modal-body {
    padding: 0;
    max-height: 94vh;
    overflow-y: auto;
    border-radius: 18px;
    background: #fff;
  }
  .modal-inner {
    gap: 0;
    flex-direction: column;
  }
  .modal-img-box {
    flex: none;
    width: 100%;
    background: linear-gradient(135deg, #f8f4ec, #efe7d8);
    padding: 24px 24px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(214, 179, 124, 0.08);
  }
  .modal-img-box img {
    height: 280px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 0;
    padding: 0;
  }
  .modal-info {
    padding: 16px 20px 20px;
    gap: 10px;
  }
  .modal-info h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0a1b2d;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 2px;
  }
  .modal-info h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #b8935a);
    border-radius: 3px;
  }
  .modal-info p {
    font-size: 0.82rem;
    line-height: 1.7;
    color: #888;
  }
  .modal-badge {
    font-size: 0.6rem;
    padding: 4px 14px;
    border-radius: 20px;
    align-self: flex-start;
    background: rgba(212, 175, 55, 0.1);
    color: #b8935a;
    font-weight: 700;
  }
  .modal-features {
    font-size: 0.8rem;
    gap: 6px;
    background: #faf8f5;
    padding: 10px 14px;
    border-radius: 12px;
  }
  .modal-features i {
    margin-top: 4px;
    font-size: 0.7rem;
    color: #d4af37;
  }
  .modal-price-box {
    padding: 12px 0 8px;
    margin: 0;
    border-radius: 0;
    background: none;
    border: none;
    flex: none;
    display: flex;
    align-items: baseline;
    gap: 8px;
    border-top: 1px solid rgba(214, 179, 124, 0.08);
  }
  .modal-price-box span:first-child {
    font-size: 1.7rem;
    color: #b8860b;
    font-weight: 900;
  }
  .modal-currency {
    font-size: 0.85rem;
    color: #b8935a;
    font-weight: 600;
  }
  .btn-whatsapp {
    width: 100%;
    padding: 14px;
    font-size: 0.9rem;
    border-radius: 14px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
  }
  .modal-gallery {
    gap: 8px;
    margin-top: 4px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
  }
  .modal-gallery img {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    border: 2px solid #f0ebe3;
    transition: border-color 0.3s;
  }
  .modal-gallery-label {
    font-size: 0.6rem;
    color: #b8935a;
    font-weight: 700;
    letter-spacing: 0.5px;
  }
  .modal-close {
    font-size: 1.3rem;
    top: 12px;
    left: 12px;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
  }
  .about-top {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    margin-bottom: 40px;
  }
  .about-image-box {
    flex: none;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  .about-image {
    width: 100%;
    height: 260px;
    border-radius: 24px;
    border-width: 3px;
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  }
  .about-image-badge {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 22px;
    border-radius: 30px;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
  }
  .about-image-badge span {
    font-size: 0.6rem;
  }
  .about-image-badge strong {
    font-size: 0.85rem;
  }
  .about-intro h3 {
    font-size: 1.5rem;
    font-weight: 800;
  }
  .about-intro h3::after {
    right: 50%;
    transform: translateX(50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #b8935a);
  }
  .about-intro p {
    font-size: 0.88rem;
    line-height: 1.9;
    text-align: center;
    color: #888;
  }
  .about-intro .btn-primary {
    align-self: center !important;
    font-size: 0.85rem;
    padding: 12px 28px;
    border-radius: 30px;
  }
  .about-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 45px;
  }
  .feature-card {
    padding: 24px 16px 20px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    border-color: rgba(212, 175, 55, 0.06);
  }
  .feature-icon {
    width: 48px;
    height: 48px;
    font-size: 1.05rem;
    margin-bottom: 12px;
    border-radius: 14px;
    background: linear-gradient(135deg, #d4af37, #b8935a);
  }
  .feature-card h4 {
    font-size: 0.9rem;
    margin-bottom: 4px;
  }
  .feature-card p {
    font-size: 0.72rem;
    color: #bbb;
  }
  .about-steps {
    margin-bottom: 45px;
  }
  .about-steps-title {
    font-size: 1.4rem;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
  }
  .steps {
    flex-direction: column;
    gap: 0;
    align-items: center;
    position: relative;
  }
  .steps::before {
    content: "";
    position: absolute;
    top: 25px;
    bottom: 25px;
    right: 50%;
    width: 2px;
    background: linear-gradient(180deg, #d4af37, transparent);
    opacity: 0.2;
  }
  .step {
    width: 100%;
    max-width: 280px;
    padding: 22px 18px 20px;
    border-radius: 20px;
    border: none;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    position: relative;
    margin-bottom: 20px;
  }
  .step:last-child {
    margin-bottom: 0;
  }
  .step-icon {
    width: 52px;
    height: 52px;
    font-size: 1.15rem;
    margin-bottom: 10px;
    border-radius: 16px;
    background: linear-gradient(135deg, #fcfaf7, #f0e8d8);
    color: #b8935a;
    border: 1.5px solid rgba(212, 175, 55, 0.1);
  }
  .step-num {
    font-size: 2.2rem;
    color: rgba(212, 175, 55, 0.08);
    margin-bottom: 0;
    position: absolute;
    top: 8px;
    left: 14px;
    font-weight: 900;
  }
  .step h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
  }
  .step p {
    font-size: 0.75rem;
    line-height: 1.7;
    color: #aaa;
  }
  .step-connector {
    display: none;
  }
  .about-stats {
    flex-direction: row;
    gap: 8px;
    padding: 28px 20px;
    border-radius: 22px;
    flex-wrap: nowrap;
    justify-content: space-around;
    background: linear-gradient(135deg, #0a1b2d, #1a2f4a);
  }
  .stat-num {
    font-size: 1.4rem;
    color: #d4af37;
  }
  .stat-label {
    font-size: 0.65rem;
    color: rgba(237, 216, 179, 0.45);
  }
  .testimonials {
    padding: 60px 0;
    position: relative;
  }
  .testimonials::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: calc(100% - 50px);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.85), transparent);
    pointer-events: none;
    z-index: 2;
  }
  .section-header {
    padding: 0 1.2rem;
  }
  .testimonials-grid {
    gap: 12px;
    padding: 5px 1.2rem 20px;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
  }
  .testimonials-grid:active {
    cursor: grabbing;
  }
  .testimonials-grid::-webkit-scrollbar {
    height: 6px;
  }
  .testimonials-grid::-webkit-scrollbar-thumb {
    background: #d4af37;
    border-radius: 10px;
    border: 2px solid #fcfaf7;
  }
  .testimonials-grid::-webkit-scrollbar-track {
    background: #f1ece4;
    border-radius: 10px;
    margin: 0 1.2rem;
  }
  .testimonial-card {
    width: 170px;
    border-radius: 14px;
    flex-shrink: 0;
  }
  .testimonial-img-wrap img {
    height: 240px;
  }
  .swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.8rem;
    color: #b8935a;
    font-weight: 600;
    margin-bottom: 8px;
    opacity: 0.75;
    direction: ltr;
    letter-spacing: 0.5px;
  }
  .swipe-hint i {
    font-size: 0.9rem;
    animation: swipeArrow 1.4s ease-in-out infinite;
  }
  .swipe-hint i:first-child {
    animation-delay: 0s;
  }
  .swipe-hint i:last-child {
    animation-delay: 0.5s;
  }
  @keyframes swipeArrow {
    0%,
    100% {
      transform: translateX(0);
      opacity: 0.5;
    }
    50% {
      transform: translateX(5px);
      opacity: 1;
    }
  }
  .whatsapp-float {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
    bottom: 18px;
    left: 18px;
  }
  .back-top {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    bottom: 18px;
    right: 18px;
  }
  footer {
    padding: 35px 1.2rem;
  }
}
@media (max-width: 395px) {
  .categories {
    gap: 4px;
    margin-bottom: 22px;
  }
  .categories button {
    padding: 4px 10px;
    font-size: 0.6rem;
  }
  .modal {
    padding: 14px 18px;
  }
  .modal-img-box {
    padding: 16px 16px 10px;
  }
  .modal-img-box img {
    height: 200px;
  }
  .modal-info {
    padding: 12px 14px 16px;
    gap: 8px;
  }
  .modal-info h3 {
    font-size: 1rem;
  }
  .modal-info p {
    font-size: 0.75rem;
  }
  .modal-price-box span:first-child {
    font-size: 1.4rem;
  }
  .btn-whatsapp {
    padding: 12px;
    font-size: 0.82rem;
  }
  .modal-gallery img {
    width: 42px;
    height: 42px;
  }
  .modal-features {
    font-size: 0.72rem;
    padding: 8px 12px;
  }
  .modal-info h3 {
    font-size: 0.9rem;
  }
  .modal-info p {
    font-size: 0.72rem;
  }
  .modal-price-box span:first-child {
    font-size: 1.1rem;
  }
  .btn-whatsapp {
    font-size: 0.75rem;
    padding: 10px;
  }
  .modal-gallery img {
    width: 38px;
    height: 38px;
  }
  .product-card-img-wrap {
    height: 140px;
  }
  .product-card-img {
    padding: 8px;
  }
  .product-card-body {
    padding: 8px 10px 10px;
    min-height: 100px;
  }
  .product-card-body h3 {
    font-size: 0.72rem;
  }
  .product-card-category {
    font-size: 0.55rem;
    margin-bottom: 2px;
  }
  .product-card-price {
    font-size: 0.78rem;
    margin-bottom: 6px;
  }
  .product-card-btn {
    padding: 9px 12px;
    font-size: 0.6rem;
    gap: 2px;
    border-radius: 18px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    white-space: nowrap;
  }
  .products-grid {
    gap: 4px;
  }
  .about-image-box {
    max-width: 220px;
  }
  .about-image {
    height: 200px;
  }
  .about-image-badge {
    padding: 6px 16px;
    font-size: 0.75rem;
  }
  .about-intro h3 {
    font-size: 1.2rem;
  }
  .about-intro p {
    font-size: 0.78rem;
  }
  .about-features {
    gap: 10px;
  }
  .feature-card {
    padding: 18px 12px 16px;
  }
  .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
  .step {
    max-width: 240px;
    padding: 18px 14px 16px;
  }
  .step-icon {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
  .step-num {
    font-size: 1.8rem;
  }
  .step h4 {
    font-size: 0.85rem;
  }
  .contact-info-wrap {
    padding: 0 12px;
  }
  .contact-form {
    padding: 14px 12px 14px;
    gap: 8px;
  }
  .input-group input,
  .input-group textarea {
    padding: 16px 10px 3px;
    font-size: 0.74rem;
  }
  .input-group textarea {
    min-height: 50px;
    padding-top: 18px;
  }
  .contact-form button {
    padding: 10px;
    font-size: 0.72rem;
  }
  .contact-item {
    padding: 10px 12px;
    gap: 10px;
  }
  .contact-icon-box {
    width: 24px;
    height: 24px;
    font-size: 0.65rem;
  }
  .contact-value {
    font-size: 0.72rem;
  }
  .contact-label {
    font-size: 0.5rem;
  }
  .about-stats {
    padding: 20px 12px;
    border-radius: 18px;
  }
  .stat-num {
    font-size: 1.1rem;
  }
  .testimonial-card {
    width: 140px;
    border-radius: 12px;
  }
  .testimonial-img-wrap img {
    height: 190px;
  }
  .testimonials-grid::-webkit-scrollbar {
    height: 4px;
  }
  .swipe-hint {
    font-size: 1rem;
    gap: 12px;
  }
}
