/* ========================================
   DZ Halawati - Dark Luxury Gold Theme
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Amiri:wght@400;700&family=Cairo:wght@300;400;500;600;700;800&display=swap');

:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-dark: #8B6914;
  --gold-shine: #F5E6B2;
  --black: #0A0A0A;
  --black-soft: #111111;
  --black-card: #161616;
  --black-border: #242424;
  --white: #FFFFFF;
  --white-soft: #F5F0E8;
  --gray: #888888;
  --gray-light: #CCCCCC;
  --red: #E53E3E;
  --font-main: 'Cairo', 'Amiri', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--black);
  color: var(--white-soft);
  direction: rtl;
  text-align: right;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--black-soft);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* ========== GOLD DIVIDER ========== */
.gold-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 16px auto;
}

/* ========== BUTTONS ========== */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--black);
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold-shine));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid var(--gold);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-outline:hover {
  background: rgba(201, 168, 76, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.2);
}

/* ========== NAVBAR ========== */
header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.97);
  border-bottom: 1px solid var(--black-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.navbar {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar-logo img {
  width: 55px;
  height: 55px;
  object-fit: contain;
}

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

.navbar-logo .brand-ar {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.2;
}

.navbar-logo .brand-en {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-nav a {
  padding: 8px 16px;
  color: var(--gray-light);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  right: 50%;
  transform: translateX(50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--gold);
}

.navbar-nav a:hover::after,
.navbar-nav a.active::after {
  width: 60%;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 4px;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cart-btn:hover {
  background: rgba(201, 168, 76, 0.2);
  border-color: var(--gold);
}

.cart-count {
  position: absolute;
  top: -8px;
  left: -8px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  right: 0;
  left: 0;
  background: var(--black-soft);
  border-bottom: 1px solid var(--black-border);
  padding: 20px 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 12px 16px;
  color: var(--gray-light);
  font-size: 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--black-border);
}

.mobile-nav a:hover {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 60% at 30% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(201, 168, 76, 0.08) 1px, transparent 0);
  background-size: 40px 40px;
  opacity: 0.4;
}

.hero-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  animation: fadeInRight 1s ease;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 100px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 8px;
}

.hero-title .gold-text {
  color: var(--gold);
  display: block;
}

.hero-subtitle {
  font-family: 'Amiri', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--gold);
  font-style: italic;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 36px;
  max-width: 480px;
}

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

.hero-features {
  display: flex;
  gap: 24px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray);
}

.hero-feature i {
  color: var(--gold);
  font-size: 1rem;
}

.hero-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInLeft 1s ease;
}

.hero-image-ring {
  position: relative;
  width: 460px;
  height: 460px;
  flex-shrink: 0;
}

.hero-image-ring::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: conic-gradient(var(--gold), var(--gold-dark), var(--gold-light), var(--gold-dark), var(--gold));
  animation: rotateSlow 12s linear infinite;
}

.hero-image-ring::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: var(--black);
}

.hero-image-ring img {
  position: absolute;
  inset: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  border-radius: 50%;
  object-fit: cover;
  z-index: 1;
}

.hero-stats {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 12px;
  padding: 16px 20px;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

.hero-stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-text {
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 4px;
}

/* ========== SECTION TITLES ========== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 100px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.section-desc {
  font-size: 1rem;
  color: var(--gray);
  max-width: 550px;
  margin: 0 auto;
}

/* ========== PRODUCTS GRID ========== */
.products-section {
  padding: 100px 0;
  background: var(--black-soft);
}

.products-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

/* ========== PRODUCT CARD ========== */
.product-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}

.product-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(201, 168, 76, 0.15);
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--black-soft);
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 100px;
  z-index: 1;
}

.product-badge.new {
  background: #22c55e;
  color: var(--white);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.product-overlay-btn {
  padding: 10px 24px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  font-family: var(--font-main);
  transition: all 0.3s ease;
  transform: translateY(10px);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.product-card:hover .product-overlay-btn {
  transform: translateY(0);
}

.product-info {
  padding: 20px;
}

.product-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold);
}

.product-price span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray);
}

.add-to-cart-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  font-size: 0.85rem;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--font-main);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.add-to-cart-btn:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.35);
}

/* ========== FEATURES BANNER ========== */
.features-banner {
  background: linear-gradient(135deg, var(--black-card), rgba(30, 25, 10, 0.9));
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  padding: 48px 0;
}

.features-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.feature-item {
  text-align: center;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  color: var(--gold);
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background: rgba(201, 168, 76, 0.2);
  transform: scale(1.1);
}

.feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.feature-text {
  font-size: 0.82rem;
  color: var(--gray);
}

/* ========== ABOUT STRIP ========== */
.about-strip {
  padding: 100px 0;
  background: var(--black);
}

.about-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
  height: 420px;
}

.about-img-main {
  width: 75%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--black-border);
}

.about-img-accent {
  position: absolute;
  bottom: -30px;
  left: -20px;
  width: 48%;
  height: 55%;
  object-fit: cover;
  border-radius: 8px;
  border: 3px solid var(--black);
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}

.about-gold-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gold);
  color: var(--black);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.3;
  z-index: 1;
}

.about-content .section-header {
  text-align: right;
  margin-bottom: 28px;
}

.about-content .section-header .gold-divider {
  margin: 16px 0;
}

.about-text {
  color: var(--gray);
  font-size: 0.97rem;
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0;
}

.about-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--white-soft);
}

.about-highlight i {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
  padding: 100px 0;
  background: var(--black-soft);
}

.testimonials-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 8px;
  padding: 32px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars i {
  color: var(--gold);
  font-size: 1rem;
}

.testimonial-text {
  color: var(--gray-light);
  font-size: 0.95rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: rgba(201, 168, 76, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
}

.testimonial-city {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ========== CTA BANNER ========== */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(15, 12, 5, 0.98), rgba(25, 20, 8, 0.95));
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
}

.cta-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-title .gold-text {
  color: var(--gold);
}

.cta-text {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 36px;
}

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

/* ========== FOOTER ========== */
footer {
  background: var(--black-soft);
  border-top: 1px solid var(--black-border);
  padding-top: 72px;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.footer-logo img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.footer-logo .brand-ar {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold);
}

.footer-logo .brand-en {
  font-size: 0.75rem;
  color: var(--gray);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--black-border);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--gray);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold);
  padding-right: 6px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gray);
}

.footer-contact-item i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--black-border);
  padding: 20px 24px;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--gray);
}

.footer-copy a {
  color: var(--gold);
}

.footer-badges {
  display: flex;
  gap: 8px;
}

.footer-badge {
  padding: 4px 12px;
  border: 1px solid var(--black-border);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--gray);
}

/* ========== PAGE HEADER ========== */
.page-header {
  padding: 140px 0 60px;
  background: var(--black-soft);
  border-bottom: 1px solid var(--black-border);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
}

.page-header-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.page-header p {
  font-size: 1rem;
  color: var(--gray);
  max-width: 500px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--gray);
}

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

/* ========== SHOP PAGE ========== */
.shop-section {
  padding: 60px 0 100px;
  background: var(--black);
}

.shop-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

.shop-filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 8px 20px;
  border: 1px solid var(--black-border);
  border-radius: 100px;
  background: transparent;
  color: var(--gray);
  font-size: 0.88rem;
  font-family: var(--font-main);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-tab.active,
.filter-tab:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.shop-count {
  font-size: 0.88rem;
  color: var(--gray);
}

.shop-count span {
  color: var(--gold);
  font-weight: 700;
}

/* ========== PRODUCT DETAIL ========== */
.product-detail {
  padding: 60px 0 100px;
  background: var(--black);
}

.product-detail-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.product-gallery {
  position: sticky;
  top: 100px;
}

.product-gallery-main {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--black-border);
  margin-bottom: 16px;
  background: var(--black-card);
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-gallery-main img:hover {
  transform: scale(1.04);
}

.product-detail-info {
  padding-top: 8px;
}

.product-detail-name {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.product-detail-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 20px;
}

.product-detail-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray);
}

.product-detail-desc {
  font-size: 0.97rem;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 32px;
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  padding: 24px 0;
}

.qty-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.qty-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white-soft);
}

.qty-stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--black-border);
  border-radius: 6px;
  overflow: hidden;
}

.qty-stepper button {
  width: 40px;
  height: 40px;
  background: var(--black-card);
  border: none;
  color: var(--gold);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-main);
}

.qty-stepper button:hover {
  background: rgba(201, 168, 76, 0.15);
}

.qty-stepper input {
  width: 60px;
  height: 40px;
  background: var(--black-soft);
  border: none;
  border-right: 1px solid var(--black-border);
  border-left: 1px solid var(--black-border);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  font-family: var(--font-main);
  outline: none;
  -moz-appearance: textfield;
}

.qty-stepper input::-webkit-outer-spin-button,
.qty-stepper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.qty-stepper input:focus {
  border-color: var(--gold);
  box-shadow: inset 0 0 0 1px var(--gold);
}

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

.product-features-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 32px;
}

.product-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-light);
}

.product-feature-item i {
  color: var(--gold);
  font-size: 0.9rem;
}

/* ========== CART PAGE ========== */
.cart-section {
  padding: 60px 0 100px;
  background: var(--black);
}

.cart-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}

.cart-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 24px;
}

.cart-empty-icon {
  font-size: 4rem;
  color: var(--gold-dark);
  margin-bottom: 24px;
  opacity: 0.5;
}

.cart-empty h2 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 12px;
}

.cart-empty p {
  color: var(--gray);
  margin-bottom: 28px;
}

.cart-items-wrap {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 8px;
  overflow: hidden;
}

.cart-header-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 0.8fr 40px;
  gap: 16px;
  padding: 16px 24px;
  background: rgba(201, 168, 76, 0.05);
  border-bottom: 1px solid var(--black-border);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cart-item {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 0.8fr 40px;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--black-border);
  align-items: center;
  transition: background 0.2s ease;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item:hover {
  background: rgba(201, 168, 76, 0.03);
}

.cart-item-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-item-img {
  width: 72px;
  height: 72px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid var(--black-border);
  flex-shrink: 0;
}

.cart-item-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 4px;
}

.cart-item-sub {
  font-size: 0.8rem;
  color: var(--gray);
}

.cart-item-price {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white-soft);
}

/* Cart Quantity Stepper */
.cart-qty-stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--black-border);
  border-radius: 6px;
  overflow: hidden;
  width: fit-content;
}

.cart-qty-stepper button {
  width: 34px;
  height: 36px;
  background: var(--black-soft);
  border: none;
  color: var(--gold);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s ease;
  font-family: var(--font-main);
}

.cart-qty-stepper button:hover {
  background: rgba(201, 168, 76, 0.15);
}

/* *** KEY CHANGE: Remove max attribute → unlimited quantity *** */
.cart-qty-stepper input[type="number"] {
  width: 52px;
  height: 36px;
  background: var(--black-card);
  border: none;
  border-right: 1px solid var(--black-border);
  border-left: 1px solid var(--black-border);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  font-family: var(--font-main);
  outline: none;
  -moz-appearance: textfield;
}

.cart-qty-stepper input[type="number"]::-webkit-outer-spin-button,
.cart-qty-stepper input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-qty-stepper input[type="number"]:focus {
  box-shadow: inset 0 0 0 1px var(--gold);
}

.cart-item-total {
  font-weight: 800;
  font-size: 1rem;
  color: var(--gold);
}

.cart-remove-btn {
  width: 32px;
  height: 32px;
  background: transparent;
  border: 1px solid rgba(229, 62, 62, 0.3);
  border-radius: 6px;
  color: var(--red);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-remove-btn:hover {
  background: rgba(229, 62, 62, 0.1);
  border-color: var(--red);
}

/* Cart Summary */
.cart-summary {
  position: sticky;
  top: 100px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 8px;
  overflow: hidden;
}

.cart-summary-header {
  padding: 20px 24px;
  background: rgba(201, 168, 76, 0.05);
  border-bottom: 1px solid var(--black-border);
}

.cart-summary-header h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold);
}

.cart-summary-body {
  padding: 24px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--gray-light);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.summary-row:last-of-type {
  border-bottom: none;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0 20px;
  margin-top: 8px;
  border-top: 1px solid var(--black-border);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
}

.summary-total-price {
  color: var(--gold);
  font-size: 1.4rem;
}

.discount-form {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.discount-input {
  flex: 1;
  padding: 10px 14px;
  background: var(--black-soft);
  border: 1px solid var(--black-border);
  border-radius: 4px;
  color: var(--white);
  font-size: 0.88rem;
  font-family: var(--font-main);
  outline: none;
  transition: border-color 0.3s ease;
}

.discount-input:focus {
  border-color: var(--gold);
}

.discount-input::placeholder {
  color: var(--gray);
}

.discount-apply-btn {
  padding: 10px 16px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-main);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.discount-apply-btn:hover {
  background: rgba(201, 168, 76, 0.1);
}

.discount-msg {
  font-size: 0.82rem;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 4px;
  display: none;
}

.discount-msg.success {
  display: block;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.discount-msg.error {
  display: block;
  background: rgba(229, 62, 62, 0.1);
  border: 1px solid rgba(229, 62, 62, 0.3);
  color: var(--red);
}

.checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--black);
  font-size: 1.05rem;
  font-weight: 800;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--font-main);
  transition: all 0.3s ease;
  text-decoration: none;
}

.checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
}

.whatsapp-order-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25d366;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--font-main);
  transition: all 0.3s ease;
  margin-top: 12px;
  text-decoration: none;
}

.whatsapp-order-btn:hover {
  background: rgba(37, 211, 102, 0.2);
}

/* ========== CONTACT PAGE ========== */
.contact-section {
  padding: 60px 0 100px;
  background: var(--black);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.contact-info .gold-divider {
  margin: 0 0 20px;
}

.contact-info p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 32px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-card-label {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 4px;
}

.contact-card-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

.contact-form-wrap {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 8px;
  padding: 40px;
}

.contact-form-wrap h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white-soft);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background: var(--black-soft);
  border: 1px solid var(--black-border);
  border-radius: 4px;
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font-main);
  outline: none;
  transition: border-color 0.3s ease;
  direction: rtl;
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-control::placeholder {
  color: var(--gray);
}

textarea.form-control {
  min-height: 130px;
  resize: vertical;
}

/* ========== NOTIFICATIONS ========== */
.toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: var(--black-card);
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--white);
  z-index: 9999;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 320px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}

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

.toast i {
  color: var(--gold);
  font-size: 1.1rem;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

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

.animate-in {
  animation: fadeInUp 0.6s ease both;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .hero-container {
    gap: 48px;
  }

  .hero-image-ring {
    width: 380px;
    height: 380px;
  }

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

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

@media (max-width: 900px) {
  .navbar-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .hero-image-wrap {
    order: -1;
  }

  .hero-image-ring {
    width: 300px;
    height: 300px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-features {
    justify-content: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-content .section-header {
    text-align: center;
  }

  .about-content .section-header .gold-divider {
    margin: 16px auto;
  }

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

  .contact-container {
    grid-template-columns: 1fr;
  }

  .cart-container {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    position: static;
  }

  .cart-header-row,
  .cart-item {
    grid-template-columns: 2fr 1fr 1fr 40px;
  }

  .cart-header-row .col-total,
  .cart-item .cart-item-total {
    display: none;
  }
}

@media (max-width: 680px) {
  .hero-image-ring {
    width: 240px;
    height: 240px;
  }

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

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cart-header-row {
    display: none;
  }

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

  .contact-form-wrap {
    padding: 24px;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    position: static;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

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

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