/* =========================
   ZOHRA LUXURY - STYLE
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fffaf4;
  color: #2b1f1a;
  line-height: 1.6;
}

/* ===== Container ===== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section-space {
  padding: 80px 0;
}

.soft-bg {
  background: #fdf7f0;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: #2e1f18;
}

p {
  color: #6b5b52;
}

.section-label {
  display: inline-block;
  color: #b07b47;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
}

.section-heading {
  text-align: center;
  margin-bottom: 45px;
}

.section-heading h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.section-heading p {
  max-width: 650px;
  margin: auto;
  font-size: 16px;
}

/* ===== Navbar ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 250, 244, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #f0e5d8;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  border-radius: 50%;
}

.logo-text h2 {
  font-size: 28px;
  line-height: 1;
}

.logo-text p {
  font-size: 13px;
  color: #7b6a5e;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: #2b1f1a;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #b07b47;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 15px;
}

.btn-primary {
  background: linear-gradient(135deg, #c99563, #a86f3f);
  color: white;
  box-shadow: 0 10px 20px rgba(176, 123, 71, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border: 1.5px solid #c99563;
  color: #8d5d35;
}

.btn-secondary:hover {
  background: #c99563;
  color: white;
}

/* ===== Hero Section ===== */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(255, 250, 244, 0.45), rgba(255, 250, 244, 0.45)),
    url("images/hero-main.jpg") center/cover no-repeat;
}

.hero-content {
  max-width: 700px;
  padding: 80px 0;
}

.hero-content h1 {
  font-size: 58px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  max-width: 620px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* ===== Story Section ===== */
.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.story-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.story-content h2 {
  font-size: 40px;
  margin-bottom: 15px;
}

.story-content p {
  margin-bottom: 16px;
  font-size: 16px;
}

/* ===== Collection Cards ===== */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.collection-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

.collection-card:hover {
  transform: translateY(-6px);
}

.collection-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.collection-content {
  padding: 24px;
}

.collection-content h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.collection-content p {
  margin-bottom: 18px;
}

/* ===== Unboxing Section ===== */
.unboxing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  align-items: center;
}

.unboxing-video video,
.unboxing-video img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.unboxing-content h2 {
  font-size: 38px;
  margin-bottom: 15px;
}

.unboxing-content p {
  margin-bottom: 16px;
}

/* ===== Contact ===== */
.contact-box {
  background: white;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.contact-box h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.contact-box p {
  margin-bottom: 12px;
  font-size: 16px;
}

/* ===== Footer ===== */
.footer {
  background: #2b1f1a;
  color: #f4e8dc;
  padding: 28px 0;
  text-align: center;
}

.footer p {
  color: #e8d9cc;
}

/* ===== Shop Hero ===== */
.shop-hero {
  padding: 100px 0 70px;
  text-align: center;
  background:
    linear-gradient(rgba(255, 250, 244, 0.80), rgba(255, 250, 244, 0.80)),
    url("images/story-collection.jpg") center/cover no-repeat;
}

.shop-hero h1 {
  font-size: 52px;
  margin-bottom: 10px;
}

.shop-hero p {
  max-width: 700px;
  margin: auto;
  font-size: 17px;
}

/* ===== Products Grid ===== */
/* =========================================
   ZOHRA SHOP PRODUCT CARD - CLEAN FINAL FIX
========================================= */

.shop-category {
  width: 100%;
  padding: 60px 0;
}

.shop-category .container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 30px;
  width: 100%;
}

.product-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-image-wrap {
  width: 100%;
  height: 320px;
  background: #f7f4ef;
  overflow: hidden;
  position: relative;
}

.product-image-wrap {
  width: 100%;
  height: auto;   /* 🔥 FIX: height hata diya */
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.product-image-wrap img {
  width: 100%;
  height: auto;   /* 🔥 FIX: full image */
  object-fit: contain;
  display: block;
}

.product-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #1f2937;
  color: #fff;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  z-index: 2;
}

.product-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-content h3 {
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 10px;
  color: #111;
}

.product-price {
  font-size: 20px;
  font-weight: 700;
  color: #b8860b;
  margin-bottom: 10px;
}

.product-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 16px;
}

.product-buttons {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.product-buttons .btn {
  flex: 1;
  text-align: center;
  padding: 12px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-outline {
  background: #c89b74;
  color: white;
}

.btn-cart {
  background: #0f172a;
  color: white;
}

/* Tablet */
@media (max-width: 1100px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Small mobile */
@media (max-width: 500px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== Product Detail Page ===== */
.product-detail-page {
  padding: 90px 0;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: center;
}

.product-detail-image img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.product-detail-content h1 {
  font-size: 46px;
  margin-bottom: 12px;
}

.detail-price {
  font-size: 34px;
  color: #8d5d35;
  font-weight: 700;
  margin-bottom: 18px;
  font-family: 'Playfair Display', serif;
}

.detail-description {
  font-size: 17px;
  margin-bottom: 28px;
  color: #5d4b40;
}

.product-detail-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.not-found {
  text-align: center;
  padding: 100px 20px;
}

.not-found h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

/* ===== Animation ===== */
.fade-up {
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .story-grid,
  .unboxing-grid,
  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .shop-hero h1 {
    font-size: 40px;
  }

  .section-heading h2,
  .story-content h2,
  .unboxing-content h2,
  .contact-box h2,
  .product-detail-content h1 {
    font-size: 32px;
  }

  .nav-wrapper {
    flex-direction: column;
    gap: 15px;
  }

  .nav-links {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p,
  .shop-hero p {
    font-size: 15px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .hero-buttons,
  .product-buttons,
  .product-detail-buttons {
    flex-direction: column;
  }

  .logo-text h2 {
    font-size: 24px;
  }
}

/* =========================
   PRODUCT DETAIL PAGE
========================= */
.product-detail-page {
  padding: 80px 0;
  background: linear-gradient(to bottom, #fffdf9, #f8f4ee);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.product-detail-image {
  background: #fff;
  border-radius: 24px;
  padding: 25px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease;
}

.product-detail-image:hover {
  transform: translateY(-6px);
}

.product-detail-image img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.product-detail-content .section-label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #a67843;
}

.product-detail-content h1 {
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #2d1f16;
}

.detail-price {
  font-size: 40px;
  font-weight: 700;
  color: #b07a45;
  margin-bottom: 18px;
}

.detail-description {
  font-size: 18px;
  line-height: 1.8;
  color: #5f5148;
  margin-bottom: 24px;
}

.detail-extra-box {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #eadfce;
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.detail-extra-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #2d1f16;
}

.detail-extra-box p {
  font-size: 16px;
  line-height: 1.8;
  color: #5f5148;
}

.product-detail-buttons {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.not-found {
  text-align: center;
  padding: 100px 20px;
}

.not-found h2 {
  font-size: 38px;
  margin-bottom: 20px;
  color: #2d1f16;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .product-detail-content h1 {
    font-size: 38px;
  }

  .detail-price {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .product-detail-page {
    padding: 50px 0;
  }

  .product-detail-image {
    padding: 16px;
  }

  .product-detail-content h1 {
    font-size: 30px;
  }

  .detail-price {
    font-size: 28px;
  }

  .detail-description,
  .detail-extra-box p {
    font-size: 15px;
  }
}

/* =========================
   CART PAGE
========================= */
.cart-page {
  padding: 80px 0;
  background: linear-gradient(to bottom, #fffdf9, #f8f4ee);
  min-height: 100vh;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.cart-item {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 24px;
  align-items: center;
  background: #fff;
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

.cart-item-image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.cart-item-content h3 {
  font-size: 24px;
  margin-bottom: 8px;
  color: #2d1f16;
}

.cart-item-content p {
  font-size: 18px;
  color: #a67843;
  margin-bottom: 16px;
}

.cart-qty-controls {
  display: flex;
  align-items: center;
  gap: 14px;
}

.qty-btn {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: #d6a76d;
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s ease;
}

.qty-btn:hover {
  background: #b8814b;
}

.cart-item-actions {
  text-align: right;
}

.cart-item-total {
  font-size: 24px;
  font-weight: 700;
  color: #2d1f16;
  margin-bottom: 14px;
}

.remove-btn {
  background: transparent;
  border: 1px solid #d6a76d;
  color: #a67843;
  padding: 10px 18px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s ease;
}

.remove-btn:hover {
  background: #d6a76d;
  color: #fff;
}

.cart-summary {
  margin-top: 50px;
  text-align: right;
  background: #fff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

.cart-summary h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #2d1f16;
}

.empty-cart {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
}

.empty-cart h3 {
  font-size: 34px;
  margin-bottom: 12px;
  color: #2d1f16;
}

.empty-cart p {
  font-size: 18px;
  color: #5f5148;
  margin-bottom: 24px;
}

.cart-link {
  font-weight: 600;
  color: #a67843 !important;
}

@media (max-width: 768px) {
  .cart-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cart-item-actions {
    text-align: center;
  }

  .cart-summary {
    text-align: center;
  }

  .cart-item-image img {
    max-width: 240px;
    margin: auto;
    display: block;
  }
}

.checkout-form {
  margin-top: 30px;
  padding: 25px;
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fffaf7;
}

.checkout-form h3 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #333;
}

.checkout-form input,
.checkout-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
}

.checkout-form textarea {
  min-height: 100px;
  resize: vertical;
}

.checkout-form button {
  width: 100%;
  margin-top: 10px;
}

.success-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.success-box {
  background: white;
  padding: 35px 30px;
  border-radius: 18px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  animation: popupFade 0.35s ease;
}

.success-box h2 {
  font-size: 30px;
  margin-bottom: 12px;
  color: #b68d55;
}

.success-box p {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
}

.success-box button {
  background: #c9a46c;
  color: white;
  border: none;
  padding: 12px 22px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  transition: 0.3s;
}

.success-box button:hover {
  background: #b68d55;
}

@keyframes popupFade {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.checkout-form select {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  background: white;
}
.upi-box {
  margin-top: 15px;
  padding: 18px;
  border: 1px dashed #c9a46c;
  border-radius: 12px;
  background: #fff9f2;
  text-align: center;
}

.upi-box h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #b68d55;
}

.upi-box p {
  margin-bottom: 8px;
  color: #444;
  font-size: 15px;
}

.upi-qr {
  width: 180px;
  max-width: 100%;
  margin-top: 12px;
  border-radius: 12px;
  border: 1px solid #eee;
}
/* ===== PRODUCT CARD PREMIUM DESIGN ===== */

/* =========================
   PREMIUM SHOP PRODUCT GRID
========================= */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 30px;
}

.product-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.14);
}

/* IMAGE BOX */
.product-image-wrap {
  width: 100%;
  height: 420px;   /* 👈 perfume posters ke liye */
  overflow: hidden;
  background: #f8f8f8;
  position: relative;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* 👈 sabse important */
  background: #fff;
  padding: 10px;
  transition: transform 0.35s ease;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.03);
}
/* =========================
   SHOP ONLY FIX
========================= */

.shop-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 30px;
}

.shop-products-grid .product-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.shop-products-grid .product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.shop-products-grid .product-image-wrap {
  height: 320px;
  background: #f9f6f1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-products-grid .product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-products-grid .product-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.shop-products-grid .product-buttons {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

/* CATEGORY LABEL */
.product-label {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 30px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* CONTENT */
.product-content {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}

.product-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111;
}

.product-price {
  font-size: 18px;
  font-weight: 700;
  color: #b8860b;
  margin-bottom: 10px;
}

.product-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
  min-height: 44px;
}

/* BUTTONS */
.product-buttons {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.shop-products-grid.product-buttons .btn {
  flex: 1;
  text-align: center;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* View details */
.shop-products-grid.btn-outline {
  background: transparent;
  border: 1.5px solid #c59d5f;
  color: #c59d5f;
}

.btn-outline:hover {
  background: #c59d5f;
  color: white;
}

/* Add to cart */
.shop-products-grid.btn-cart {
  background: #111;
  color: white;
}

.btn-cart:hover {
  background: #c59d5f;
  color: white;
}
/* =========================
   FINAL SHOP PRODUCT FIX
========================= */

.shop-products-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
  gap: 28px !important;
  margin-top: 30px !important;
}

.shop-products-grid .product-card {
  background: #fff !important;
  border-radius: 22px !important;
  overflow: hidden !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
  transition: all 0.35s ease !important;
  display: flex !important;
  flex-direction: column !important;
  height: auto !important;
  width: 100% !important;
  max-width: 100% !important;
}

.shop-products-grid .product-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12) !important;
}

.shop-products-grid .product-image-wrap {
  width: 100% !important;
  height: 320px !important;
  overflow: hidden !important;
  background: #f9f6f1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
}

.shop-products-grid .product-image-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.shop-products-grid .product-content {
  padding: 18px 18px 22px !important;
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1 !important;
  text-align: left !important;
}

.shop-products-grid .product-content h3 {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #111 !important;
  margin-bottom: 8px !important;
  line-height: 1.3 !important;
  min-height: 52px !important;
}

.shop-products-grid .product-price {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #b8860b !important;
  margin-bottom: 10px !important;
}

.shop-products-grid .product-content p {
  font-size: 14px !important;
  color: #666 !important;
  line-height: 1.6 !important;
  margin-bottom: 18px !important;
  flex-grow: 1 !important;
}

.shop-products-grid .product-buttons {
  display: flex !important;
  gap: 10px !important;
  margin-top: auto !important;
}

.shop-products-grid .product-buttons .btn {
  flex: 1 !important;
  text-align: center !important;
  padding: 12px 14px !important;
  border-radius: 999px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  border: none !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

.shop-products-grid .btn-outline {
  background: #c89b74 !important;
  color: white !important;
}

.shop-products-grid .btn-outline:hover {
  background: #b7865e !important;
  color: white !important;
}

.shop-products-grid .btn-cart {
  background: #111 !important;
  color: white !important;
}

.shop-products-grid .btn-cart:hover {
  background: #c89b74 !important;
  color: white !important;
}
/* =========================
   SHOP PAGE FULL WIDTH FIX
========================= */

.shop-category .container {
  width: 100% !important;
  max-width: 1400px !important;
  margin: 0 auto !important;
  padding: 0 30px !important;
}

.shop-products-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 28px !important;
  margin-top: 30px !important;
  width: 100% !important;
}

.shop-products-grid .product-card {
  background: #fff !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  min-width: 0 !important;
}

.shop-products-grid .product-image-wrap {
  width: 100% !important;
  height: 300px !important;
  overflow: hidden !important;
  background: #f8f6f2 !important;
}

.shop-products-grid .product-image-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.shop-products-grid .product-content {
  padding: 18px !important;
}

.shop-products-grid .product-content h3 {
  font-size: 24px !important;
  margin-bottom: 8px !important;
  color: #111 !important;
}

.shop-products-grid .product-price {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #b8860b !important;
  margin-bottom: 10px !important;
}

.shop-products-grid .product-content p {
  font-size: 14px !important;
  color: #666 !important;
  line-height: 1.6 !important;
  margin-bottom: 16px !important;
}

.shop-products-grid .product-buttons {
  display: flex !important;
  gap: 10px !important;
  margin-top: 15px !important;
}

.shop-products-grid .product-buttons .btn {
  flex: 1 !important;
  text-align: center !important;
  padding: 12px 14px !important;
  border-radius: 999px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  border: none !important;
  cursor: pointer !important;
  text-decoration: none !important;
}

.shop-products-grid .btn-outline {
  background: #c89b74 !important;
  color: white !important;
}

.shop-products-grid .btn-cart {
  background: #0f172a !important;
  color: white !important;
}

/* Tablet */
@media (max-width: 1100px) {
  .shop-products-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .shop-products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Small mobile */
@media (max-width: 500px) {
  .shop-products-grid {
    grid-template-columns: 1fr !important;
  }
}
/* =========================
   SHOP PAGE FINAL LAYOUT FIX
========================= */

/* Full width shop sections */
.shop-category {
  width: 100% !important;
}

.shop-category .container {
  width: 100% !important;
  max-width: 1400px !important;
  margin: 0 auto !important;
  padding: 0 40px !important;
  display: block !important;
}

/* All product grids */
.products-grid,
.shop-products-grid,
#attar-products,
#perfume-products,
#jewellery-products {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(260px, 1fr)) !important;
  gap: 28px !important;
  margin-top: 30px !important;
  justify-content: stretch !important;
  align-items: stretch !important;
}

/* Product cards */
.product-card {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  background: #fff !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
  display: flex !important;
  flex-direction: column !important;
  transition: 0.3s ease !important;
}

.product-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12) !important;
}

/* Image */
.product-image-wrap {
  width: 100% !important;
  height: 300px !important;
  overflow: hidden !important;
  background: #f7f4ef !important;
  position: relative !important;
}

.product-image-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* Label */
.product-label {
  position: absolute !important;
  top: 12px !important;
  left: 12px !important;
  background: #1f2937 !important;
  color: #fff !important;
  padding: 6px 12px !important;
  font-size: 12px !important;
  border-radius: 999px !important;
  font-weight: 600 !important;
}

/* Content */
.product-content {
  padding: 18px !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
}

.product-content h3 {
  font-size: 28px !important;
  line-height: 1.3 !important;
  margin-bottom: 10px !important;
  color: #111 !important;
}

.product-price {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #b8860b !important;
  margin-bottom: 10px !important;
}

.product-content p {
  font-size: 14px !important;
  color: #666 !important;
  line-height: 1.6 !important;
  margin-bottom: 18px !important;
}

/* Buttons */
.product-buttons {
  display: flex !important;
  gap: 10px !important;
  margin-top: auto !important;
}

.product-buttons .btn {
  flex: 1 !important;
  text-align: center !important;
  padding: 12px 14px !important;
  border-radius: 999px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  border: none !important;
  cursor: pointer !important;
  text-decoration: none !important;
}

.btn-outline {
  background: #c89b74 !important;
  color: #fff !important;
}

.btn-cart {
  background: #0f172a !important;
  color: #fff !important;
}

/* Responsive */
@media (max-width: 1200px) {
  .products-grid,
  .shop-products-grid,
  #attar-products,
  #perfume-products,
  #jewellery-products {
    grid-template-columns: repeat(3, minmax(240px, 1fr)) !important;
  }
}

@media (max-width: 900px) {
  .products-grid,
  .shop-products-grid,
  #attar-products,
  #perfume-products,
  #jewellery-products {
    grid-template-columns: repeat(2, minmax(220px, 1fr)) !important;
  }
}

@media (max-width: 600px) {
  .products-grid,
  .shop-products-grid,
  #attar-products,
  #perfume-products,
  #jewellery-products {
    grid-template-columns: 1fr !important;
  }

  .shop-category .container {
    padding: 0 20px !important;
  }
}
/* =========================
   FORCE CENTER + PREMIUM GRID
========================= */

body {
  display: block !important;
}

/* Center whole shop */
.shop-category {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Container center */
.shop-category .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* GRID FIX */
.products-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 30px;
  width: 100%;
  justify-content: center;
}

/* CARD FIX */
.product-card {
  width: 100% !important;
  max-width: 350px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-6px);
}

/* IMAGE FIX */
.product-image-wrap {
  width: 100%;
  height: 260px;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */
.product-content {
  padding: 15px;
  text-align: center;
}

.product-content h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.product-price {
  font-size: 18px;
  color: #b8860b;
  font-weight: bold;
}

/* BUTTONS */
.product-buttons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.product-buttons .btn {
  flex: 1;
  padding: 10px;
  border-radius: 25px;
  font-size: 13px;
  border: none;
  cursor: pointer;
}

.btn-outline {
  background: #c89b74;
  color: white;
}

.btn-cart {
  background: #0f172a;
  color: white;
}
/* =========================================
   ZOHRA SHOP - FINAL CLEAN PREMIUM LAYOUT
========================================= */

.shop-category {
  padding: 60px 0;
}

.shop-category .container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

/* GRID */
.products-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 30px;
}

/* CARD */
.product-card {
  width: 100%;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* IMAGE */
.product-image-wrap {
  width: 100%;
  height: 290px;
  background: #f8f6f2;
  overflow: hidden;
  position: relative;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CATEGORY LABEL */
.product-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #0f172a;
  color: #fff;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  z-index: 5;
}

/* CONTENT */
.product-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-content h3 {
  font-size: 22px;
  line-height: 1.35;
  margin: 0 0 10px;
  color: #111827;
}

.product-price {
  font-size: 20px;
  font-weight: 700;
  color: #b8860b;
  margin-bottom: 10px;
}

.product-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 18px;
}

/* BUTTONS */
.product-buttons {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.product-buttons .btn {
  flex: 1;
  text-align: center;
  padding: 12px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-outline {
  background: #c89b74;
  color: #fff;
}

.btn-cart {
  background: #0f172a;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(3, minmax(240px, 1fr));
  }
}

@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}
.product-card:hover img {
  transform: scale(1.05);
  transition: 0.4s;
}

.btn-outline {
  background: linear-gradient(135deg, #c89b74, #b8860b);
}

.btn-cart {
  background: linear-gradient(135deg, #0f172a, #1e293b);
}

.product-content h3 {
  font-weight: 600;
  letter-spacing: 0.3px;
}

.products-grid {
  gap: 32px;
}
.product-image-wrap {
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-wrap img {
  width: 115%;
  height: 115%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.filter-buttons {
  text-align: center;
  margin: 30px 0;
}

.filter-buttons button {
  padding: 10px 18px;
  margin: 5px;
  border: none;
  border-radius: 25px;
  background: #eee;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

.filter-buttons button:hover {
  background: #c89b74;
  color: white;
}

.filter-buttons .active {
  background: #c89b74;
  color: white;
}
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  font-size: 26px;
  padding: 14px;
  border-radius: 50%;
  text-decoration: none;
  z-index: 9999;
}
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 9999;
}

.whatsapp-btn img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.whatsapp-btn:hover img {
    transform: scale(1.1);
}
.whatsapp-btn img {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
.insta-link {
    text-decoration: none;
    color: #E1306C;
    font-weight: 600;
    transition: 0.3s;
}

.insta-link:hover {
    color: #000;
}
.email-link {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: 0.3s;
}

.email-link:hover {
    color: #c59d5f; /* gold premium color */
}
html {
    scroll-behavior: smooth;
}
/* Loader full screen */
#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #fff;
    top: 0;
    left: 0;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Spinner */
.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #eee;
    border-top: 5px solid #c59d5f; /* gold color */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
#loader {
    transition: opacity 0.5s ease;
}
@media (max-width: 768px) {
    nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
        gap: 8px;
    }
}
@media (max-width: 768px) {
    .product-card {
        margin: 10px;
    }
}
.whatsapp-btn {
    bottom: 15px;
    right: 15px;
}
@media (max-width: 768px) {
    .products-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2 products */
        gap: 12px;
    }

    .product-card {
        padding: 10px;
    }

    .product-card img {
        width: 100%;
        height: auto;
    }

    .product-card h3 {
        font-size: 14px;
    }

    .product-card p {
        font-size: 12px;
    }

    .product-card button {
        font-size: 12px;
        padding: 6px;
    }
}
.product-card img {
    aspect-ratio: 1/1;
    object-fit: cover;
}
@media (max-width: 768px) {
    #attar-products,
    #perfume-products,
    #jewellery-products {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }
}
.product-card img {
    width: 100% !important;
    height: 140px !important;
    object-fit: cover !important;
    padding: 0 !important;
    margin: 0 !important;
    background: none !important;
    border-radius: 10px !important;
}
.product-card {
    padding: 8px !important;
}

.product-card img {
    display: block;
}
.product-card img {
    transform: scale(1.2);
}
.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}
.product-card {
  padding: 10px;
  border-radius: 12px;
  text-align: center;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.product-card h3 {
  font-size: 16px;
  margin: 10px 0;
}

.product-card p {
  font-size: 13px;
  color: #777;
}
.product-card h3 {
  margin: 6px 0;
}