.about-us {
    padding: 80px 20px;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.about-hero h1 {
    color: #100f0fe3;
    font-weight: bolder;
    font-weight: 900;
    font-size: 42px;
    margin-bottom: 10px;
    font-family: 'Poppins';
}

.subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: auto;
}

.about-image {
    margin: 50px 0;
}

.about-image img {
    width: 100%;
    max-height: 1000px;
    object-fit: cover;
    border-radius: 20px;
}

/* Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.stat {
    padding: 30px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-6px);
}

.stat .icon {
    font-size: 34px;
    margin-bottom: 10px;
}

.stat h2 {
    font-size: 36px;
    color: #140d02;
}

.stat.featured {
    font-weight: bolder;
    transform: scale(1.05);
    background: linear-gradient(135deg, #10100f, #100f0f);
    color: #fff;
}

.stat.featured h2 {
    color: #fff;
}

.rating {
    display: block;
    margin-top: 5px;
    font-size: 18px;
}

/* About text */
.about-text {
    max-width: 800px;
    margin: auto;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* Mobile */
@media (max-width: 768px) {
    .about-stats {
        grid-template-columns: 1fr;
    }

    .about-hero h1 {
        font-size: 32px;
    }
}

.creator-social {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 20px;
}

.creator-social a {
    text-decoration: none;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: linear-gradient(135deg, #222, #111);
    color: #fff;
    font-size: 18px;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}

/* Hover lift + glow */
.creator-social a:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

/* Brand colors on hover */
.creator-social a:hover .fa-instagram {
    color: #E4405F;
}

.creator-social a:hover .fa-facebook-f {
    color: #1877F2;
}

/* Soft pulse animation */
.creator-social a::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    opacity: 0;
    background: rgba(255, 255, 255, 0.325);
    transition: opacity 0.3s ease;
}

.creator-social a:hover::after {
    opacity: 1;
}

/* Mobile optimization */
@media (max-width: 600px) {
    .creator-social a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
.top-slider {
  width: 100%;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 0px px;
  font-size: 14px;
  overflow: hidden;
}

/* Buttons */
.slider-control {
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  padding: 0 10px;
  transition: opacity 0.3s ease;
}

.slider-control:hover {
  opacity: 0.7;
}

/* Viewport */
.slider-viewport {
  overflow: hidden;
  flex: 1;
}

/* Track */
.slider-track {
  display: flex;
  gap: 100px;
  white-space: nowrap;
  animation: autoSlide 20s linear infinite;
}

/* Text items */
.slider-track span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.9;
}

/* Auto slide animation */
@keyframes autoSlide {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

/* Pause on hover */
.top-slider:hover .slider-track {
  animation-play-state: paused;
}

/* Mobile */
@media (max-width: 768px) {
  .top-slider {
    font-size: 12px;
  }
  
}
.product-image {
    position: relative;
    overflow: hidden;
}
/* HOVER ZOOM */
.product-card:hover .product-image img {
  transform: scale(1.1);
}

/* Button initial (hidden) */
.quick-view-btn {
    position: absolute;
    left: 50%;
    bottom: 10px;

    transform: translate(-50%, 60px); /* clearly neeche */
    
    background: rgba(0,0,0,0.75);
    color: #fff;
    border: none;
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 20px;
    cursor: pointer;

    opacity: 0;
    pointer-events: none;

    transition:
        transform 0.9s ease-out,   /* SLOW motion */
        opacity 0.4s ease;
}

/* Hover */
.product-card:hover .quick-view-btn {
    transform: translate(-50%, 0); /* upar */
    opacity: 1;
    pointer-events: auto;
}



.hero-slider1 {
  position: relative;
  width: 100%;
  height: 460px;
  overflow: hidden;
  border-radius: 4px;
}

/* Slides container */
.slides1 {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Each slide */
.slide1 {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: all 1s ease;
}

.slide1.active1 {
  opacity: 1;
  transform: translateX(0);
  z-index: 2;
}

/* Image */
.slide1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Light black overlay (full image) */
.overlay1 {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* Caption container */
.caption1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  z-index: 3;

  /* 🔥 Black background for text */
  background: rgba(0, 0, 0, 0.105);
  padding: 25px 40px;
  border-radius: 10px;

  /* Optional nice effect */
  backdrop-filter: blur(3px);
}

/* Heading */
.caption1 h1 {
  font-size: 48px;
  margin-bottom: 10px;
  font-weight: 700;
}

/* Paragraph */
.caption1 p {
  font-size: 18px;
  opacity: 0.95;
}


/* Dots */
.dots1 {
  position: absolute;
  bottom: 18px;
  width: 100%;
  text-align: center;
  z-index: 5;
}

.dot1 {
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: 0.3s;
}
.products-header h1{
    color: rgb(255, 255, 255);
}

.dot1.active1 {
  background: #e4e3e3;
  transform: scale(1.3);
}

.show-more-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;

  margin: 50px 0;
  width: 100%;
}

/* Button */
.show-more-btn {
  position: relative;
  overflow: hidden;

  padding: 14px 34px;
  font-size: 16px;
  font-weight: 600;

  border: 2px solid rgba(0, 0, 0, 0.433);
  border-radius: 4px;

  background: #ffffff;
  color: #000000d7;

  cursor: pointer;
  transition: color 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;

  min-width: 160px;
  z-index: 1;
}

/* Swipe layer */
.show-more-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: -100%;
  width: 100%;
  height: 100%;
  background: #141414;
  transition: top 0.6s ease;
  z-index: -1;
}

/* Hover */
.show-more-btn:hover::before {
  top: 0;
}

.show-more-btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}

@media (max-width: 480px) {
  .show-more-wrapper {
    margin: 35px 0;
  }

  .show-more-btn {
    max-width: 280px;

    font-size: 15px;
    padding: 12px 0;
  }
}

@media (max-width: 360px) {
  .show-more-btn {
    font-size: 14px;
    padding: 11px 0;
  }
}
.show-more-btn:active {
  transform: scale(0.97);
}

/* Out of stock me quick view na aaye */
.product-card.out-of-stock .quick-view-btn {
  display: none;
}
/* === PRODUCT CARD === */
.product-card {
  background: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.product-card.out-of-stock {
  opacity: 0.6;
}

/* === IMAGE === */
.product-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f6f6f6;
}

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

/* === BADGES === */


.product-badge.out-of-stock {
  background: #333;
}

/* === INFO WRAPPER === */
.product-info {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* === TITLE === */
.product-info h3 {
  letter-spacing: 0.8px;
  font-size: 18px;
  font-weight: 900;
  color: #222;
  margin-top: -15px;
  line-height: 3.1;
}

/* === PRICE WRAPPER === */
.product-price {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

/* Discount price first */
.new-price {
  letter-spacing: 1.5px;
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.old-price {
  text-decoration: line-through;
  font-size: 14px;
  color: #999;
}

/* === ACTIONS === */
.product-actions {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  opacity: 0;
  transform: translateY(120%);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

/* Button base */
.product-actions button {
  position: relative;
  overflow: hidden;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.3);
  padding: 12px 0;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: #000;
  color: #fff;
  transition: color 0.4s ease;
  z-index: 1;
}

/* Swipe layer */
.product-actions button::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: bottom 0.5s ease;
  z-index: -1;
}

/* Hover effect */
.product-actions button:hover::before {
  bottom: 0;
}

.product-actions button:hover {
  color: #000;
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateY(0);
}




/* Disabled */
.product-actions button:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}
.product-image {
  position: relative;
}
.quick-now-btn {
  position: absolute;
  left: 50%;
  bottom: 28px;

  transform: translateX(-50%) translateY(18px); /* neeche se start */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border: none;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;

  transition:
    opacity 0.3s ease,
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 🔥 hover par smooth swipe up */
.product-card:hover .quick-now-btn {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* ✨ halka hover polish */
.quick-now-btn:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: translateX(-50%) translateY(-2px);
}


/* mobile friendly */
@media (max-width: 768px) {
  .quick-now-btn {
    font-size: 11px;
    opacity: 1;
    visibility: visible;
  }
}

.product-card.out-of-stock .quick-now-btn {
  display: none;
}

@media (max-width: 480px) {

  .product-card {
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  }

  .product-card:hover {
    transform: none;
  }

  .product-image {
    aspect-ratio: 1 / 1;
  }

  /* Quick Now button */
  .quick-now-btn {
    bottom: 16px;
    padding: 5px 9px;
    font-size: 11px;
    border-radius: 16px;
    opacity: 1;
    visibility: visible;
  }

  /* Product info */
  .product-info {
    padding: 10px;
    gap: 2px;
  }

  .product-info h3 {
    font-size: 10px;
    margin-top: -8px;
    letter-spacing: 1px;
  }

  /* Rating */
  .product-rating {
    font-size: 5px;
    margin-left: 75%;
    margin-top: -15%;
  }

  .review-count {
    font-size: 11px;
  }

  /* Price */
  .old-price {
    font-size: 10px;
  }

  .new-price {
    font-size: 10px;
  }

  /* Actions buttons */
  .product-actions {
    flex-direction: column;
    gap: 6px;
  }

  .product-actions button {
    padding: 5px 0;
    font-size: 8px;
    border-radius: 4px;
    
  }
  .show-more-btn {
    font-size: 12px;
    padding: 10px 0;
  }

}
@media (max-width: 768px) {

  .product-card {
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  }
  .product-actions button{
  font-size: 10px;
  padding: 6px 0;
  }

.product-info h3{
  line-height: 2.8;
  font-size: 13px;
}
.new-price{
  font-size: 13px;
  letter-spacing: 1px;
}

}

@media (max-width: 370px) {

  .product-card {
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  }
  .product-actions button{
    font-size: 9px;
    padding: 7px 0px;
  }
  .product-info h3{
    font-size: 9px;
  }
      .quick-now-btn {
        font-size: 6.5px;
      }
  .new-price{
    font-size: 0.9rem;
  }    
  .old-price{
    font-size: 9px;
  }
.show-more-btn {
  font-size: 10px;
  padding: 8px 0;
}
}

.product-image img {
  transition:
    opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.auth-container {
  max-width: 380px;
  margin: auto;
  background: #fff;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Tabs */
.auth-tabs {
  display: flex;
  margin-bottom: 20px;
}

.auth-tab {
  flex: 1;
  padding: 10px;
  border: none;
  background: #f1f1f1;
  font-weight: 600;
  cursor: pointer;
  border-radius: 8px 8px 0 0;
}

.auth-tab.active {
  background: #000;
  color: #fff;
}

/* Forms */
.auth-form {
  display: none;
  flex-direction: column;
  gap: 12px;
}

.auth-form.active {
  display: flex;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

/* Buttons */
.auth-btn,
.google-btn,
.facebook-btn,
.admin-btn {
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.auth-btn {
  background: #000;
  color: #fff;
}

.google-btn {
  background: #d23030;
  border: 1px solid #ddd;
}

.facebook-btn {
  background: #1877f2;
  color: #fff;
}

.admin-btn {
  background: #000;
  color: #fff;
  margin-top: 10px;
}

.admin-label {
  font-weight: 600;
  margin-bottom: 6px;
}

/* Mobile responsive */
@media (max-width: 480px) {
  .auth-container {
    margin: 16px;
    padding: 18px;
  }
}
.admin-warning {
  font-size: 13px;
  line-height: 1.4;
  color: #b00020;
  background: #ffffff;
  border-left: 4px solid #b00020;
  padding: 10px;
  border-radius: 6px;
}

.owner-section {
  text-align: center;
  margin: 60px 15px;
}
.owner-heading {
  color: #111111e3;
  text-align: center;
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: -40px; /* 🔥 card ke close lane ke liye */
  font-weight: bold;
}
.owner-subtext {
  font-size: 14px;
  color: #777;
  margin-bottom: 30px;
}

.shop-owner-profile {
  position: relative;
  max-width: 520px;
  margin: 80px auto;
  padding: 30px 20px;
  border-radius: 22px;
  background: linear-gradient(145deg, #fff8f8, #ffffff);

  display: flex;
  flex-direction: column; /* 🔥 IMPORTANT */
  align-items: center; /* 🔥 center everything */
  text-align: center; /* 🔥 text center */

  gap: 15px;

  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  transition: 0.4s;
}

/* hover */
.shop-owner-profile:hover {
  transform: translateY(-8px) scale(1.02);
}


/* ===== AVATAR ===== */
.owner-avatar {
  position: relative;
  transform: translateZ(40px);
}
.owner-avatar img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #000;
}

.shop-owner-profile:hover .owner-avatar img {
  transform: scale(1.1);
}

/* GLOW RING */
.owner-avatar::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;

  background: linear-gradient(135deg, #ae7b28d1, #e2a026);
  filter: blur(12px);
  opacity: 0.6;
  z-index: -1;
}

/* ===== INFO ===== */
.owner-info {
  transform: translateZ(30px);
}

.owner-info h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}

.owner-title {
  font-size: 13px;
  color: #555;
  margin: 4px 0 10px;
}

.owner-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: #444;
  max-width: 360px;
}

/* ===== BADGES (NEW ADD 🔥) ===== */
.owner-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.owner-badges span {
  background: #f5f5f5;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
}

.owner-social {
  margin-top: 12px;
  display: flex;
  justify-content: center; /* 🔥 center icons */
  gap: 12px;
}

.owner-social a {
  text-decoration: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #f1f1f1;
  color: #333;
  font-size: 17px;

  transition: all 0.3s ease;
}

/* HOVER */
.owner-social a:hover {
  transform: translateY(-5px);
  color: #fff;
}

/* COLORS */
.owner-social a:nth-child(1):hover { background: #1877F2; }
.owner-social a:nth-child(2):hover {
  background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#bc1888);
}
.owner-social a:nth-child(3):hover { background: #000; }

/* ===== MOBILE ===== */
@media (max-width: 600px) {
  .shop-owner-profile {
    flex-direction: column;
    text-align: center;
    padding: 22px;
  }

  .owner-info {
    text-align: center;
  }

  .owner-desc {
    max-width: 100%;
  }

  .owner-social {
    justify-content: center;
  }

  .owner-badges {
    justify-content: center;
  }
}
/* PAGE FADE IN */
.profile-header,
.profile-section {
  animation: fadeSlideUp .7s ease both;
}

.profile-section:nth-child(2) { animation-delay: .1s; }
.profile-section:nth-child(3) { animation-delay: .2s; }

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

/* ================= HEADER ================= */
.profile-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 26px;
  border-radius: 20px;
  background: linear-gradient(135deg,#fff,#f4f4f4);
  box-shadow: 0 15px 35px rgba(0,0,0,.1);
}

/* IMAGE */
.profile-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #000;
  transition: transform .5s ease, box-shadow .5s ease;
}

.profile-image:hover {
  transform: scale(1.08) rotate(2deg);
  box-shadow: 0 12px 30px rgba(0,0,0,.3);
}

/* INFO */
.profile-info h1 {
  margin: 0;
  font-size: 22px;
}

.profile-info p {
  font-size: 14px;
  color: #555;
  margin: 6px 0 14px;
}

/* ================= BUTTONS ================= */
.edit-profile-btn,
.logout-btn {
  padding: 10px 18px;
  border-radius: 4px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s ease;
}

.edit-profile-btn {
  background: #f6f6f6;
  color: #000000;
  border: 1px solid #8582828e;
}

.logout-btn {
  background: #e53935;
  color: #fff;
}

.edit-profile-btn:hover,
.logout-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
}

/* ================= SECTIONS ================= */
.profile-sections {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: 22px;
}

.profile-section {
  padding: 22px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
  transition: transform .35s ease, box-shadow .35s ease;
}

.profile-section:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(0,0,0,.15);
}
/* ================= SETTINGS ================= */
.settings-content {
  margin-top: 16px;
  display: grid;
  gap: 14px;
  overflow: hidden;
  animation: expand .5s ease;
}

/* animation same */
@keyframes expand {
  from { opacity: 0; transform: scaleY(.9); }
  to { opacity: 1; transform: scaleY(1); }
}

.setting-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

/* buttons & selects */
.setting-item button,
.setting-item select {
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  cursor: pointer;
  transition: all .25s ease;
  min-width: 120px;
}

/* hover (desktop only) */
@media (hover: hover) {
  .setting-item button:hover,
  .setting-item select:hover {
    background: #000;
    color: #fff;
  }
}

/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {

  .settings-content {
    gap: 18px;
  }

  .setting-item {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }

  .setting-item button,
  .setting-item select {
    width: 100%;
    min-width: unset;
  }
}

/* ================= SMALL PHONES ================= */
@media (max-width: 480px) {

  .setting-item button,
  .setting-item select {
    padding: 10px 14px;
    font-size: 15px;
  }
}


/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .profile-header {
    flex-direction: column;
    text-align: center;
  }

  .edit-profile-btn,
  .logout-btn {
    width: 100%;
    margin-bottom: 8px;
  }
}

/* ================= EXTRA SMALL PHONES ================= */
@media (max-width: 360px) {
  .profile-image {
    width: 90px;
    height: 90px;
  }

  .profile-info h1 {
    font-size: 18px;
  }
}


/* ===== ROOT ===== */
#servicesPage {
  background: #f9f9fb;
  color: #222;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.services-container {
  max-width: 1200px;
  margin: auto;
}

/* ===== HEADINGS ===== */
#servicesPage h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 1px;
  color: #111;
}

#servicesPage h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 20px;
  text-align: center;
  color: #111;
}

#servicesPage h3 {
  font-size: 1.2rem;
  margin: 15px 0 10px;
  color: #222;
}

#servicesPage h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #333;
}

/* ===== PARAGRAPHS ===== */
#servicesPage p {
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  line-height: 1.7;
  color: #555;
}

.services-intro {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 90px;
}

.service-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 18px;
  text-align: center;
  transition: 0.4s ease;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.service-card i {
  font-size: 2.2rem;
  color: #c8a24d;
  margin-bottom: 15px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

/* ===== PERFUME STORY ===== */
.perfume-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 100px;
}

.story-text p {
  margin-bottom: 15px;
}

.story-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.story-images img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  transition: 0.4s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.story-images img:hover {
  transform: scale(1.05);
}

/* ===== SHOWCASE ===== */
.service-showcase {
  margin-bottom: 100px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.showcase-item {
  background: #ffffff;
  padding: 25px;
  border-radius: 20px;
  text-align: center;
  transition: 0.4s ease;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.showcase-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 15px;
}

.showcase-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

/* ===== TRUST SECTION ===== */
.trust-section {
  margin-bottom: 100px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.trust-box {
  background: #ffffff;
  padding: 25px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.trust-box img {
  width: 55px;
  margin-bottom: 12px;
}

/* ===== Info Container ===== */
.info-container {
  margin: 0 auto;
  background: #ffffff;

  border-radius: 20px;
  padding: 32px 28px;

  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.08),
    0 6px 14px rgba(0, 0, 0, 0.05);

  animation: fadeIn 0.5s ease;
}

/* ===== Main Heading ===== */
.info-container h1 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.5px;

  margin-bottom: 18px;
  color: #000;
}

/* ===== Sub Headings ===== */
.info-container h3 {
  font-size: 1.15rem;
  font-weight: 700;

  margin-top: 28px;
  margin-bottom: 10px;

  color: #111;
}

/* ===== Paragraphs ===== */
.info-container p {
  font-size: 1rem;
  line-height: 1.8;
  color: #4a4a4a;

  margin-bottom: 14px;
}

/* ===== Lists ===== */
.info-container ul {
  padding-left: 22px;
  margin-top: 14px;
}

.info-container li {
  font-size: 0.98rem;
  color: #444;
  line-height: 1.7;

  margin-bottom: 10px;
  position: relative;
}

/* Subtle bullet enhancement */
.info-container li::marker {
  color: #000;
}

/* ===== FAQ Items ===== */
.faq-item {
  background: linear-gradient(180deg, #ffffff, #f7f7f7);
  border-radius: 16px;

  padding: 18px 20px;
  margin-top: 16px;

  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
}

.faq-item h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #000;
}

.faq-item p {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}

/* Hover / Focus effect */
@media (hover: hover) {
  .faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
  }
}

/* ===== Animations ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Mobile Optimization ===== */
@media (max-width: 768px) {
  .info-container {
    padding: 26px 20px;
    border-radius: 18px;
  }

  .info-container h1 {
    font-size: 1.7rem;
  }

  .info-container h3 {
    font-size: 1.05rem;
  }

  .info-container p,
  .info-container li {
    font-size: 0.95rem;
  }
}


.service-card,
.showcase-item,
.trust-box {
  transform-style: preserve-3d;
}

.service-card:hover,
.showcase-item:hover,
.trust-box:hover {
  transform: perspective(1000px) rotateX(6deg) rotateY(-6deg) translateY(-8px);
}


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

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .perfume-story {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 500px) {
  .story-images {
    grid-template-columns: 1fr;
  }

  .showcase-item img {
    height: 180px;
  }
}

.fav-btn {
  color: rgba(21, 20, 20, 0.769);
  position: absolute;
top: 88%;
right: 12px;
transform: translateY(-50%);

  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);

  font-size: 18px;
  line-height: 36px;
  text-align: center;

  cursor: pointer;
  z-index: 3;

  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.15),
    inset 0 0 0 1px rgba(255,255,255,0.4);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

/* Hover – subtle lift */
.fav-btn:hover {
  transform: translateY(-2px) scale(1.08);
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.22);
}

/* Active / liked */
.fav-btn.active {
  background: linear-gradient(135deg, #ff4d6d, #ff1f4f);
  color: #fff;

  box-shadow:
    0 6px 14px rgba(255, 59, 111, 0.55),
    inset 0 0 0 1px rgba(255,255,255,0.25);

  animation: favPop 0.35s ease;
}

/* Tap feedback */
.fav-btn:active {
  transform: scale(0.9);
}

/* ❤️ Pop animation */
@keyframes favPop {
  0%   { transform: scale(0.8); }
  60%  { transform: scale(1.25); }
  100% { transform: scale(1); }
}
/* double tap function */
.heart-burst {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 14px;
  color: #ff3b6f;
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: heartBurst 0.8s ease forwards;
}

@keyframes heartBurst {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -120%) scale(1.4);
    opacity: 0;
  }
}

/* ============================= */
/* 📱 SMALL MOBILE OPTIMIZATION */
/* ============================= */
@media (max-width: 480px) {

  /* ===== HEADINGS ===== */
  #servicesPage h1 {
    font-size: 1.8rem;
    letter-spacing: 0.5px;
  }

  #servicesPage h2 {
    font-size: 1.35rem;
  }

  #servicesPage h3 {
    font-size: 1.05rem;
  }

  #servicesPage h4 {
    font-size: 0.95rem;
  }

  #servicesPage p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* ===== SERVICES INTRO ===== */
  .services-intro {
    padding: 0 12px;
    margin-bottom: 40px;
  }

  /* ===== GRID SPACING ===== */
  .services-grid,
  .showcase-grid,
  .trust-grid {
    gap: 18px;
  }

  /* ===== SERVICE CARDS ===== */
  .service-card {
    padding: 22px 18px;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  }

  .service-card i {
    font-size: 1.9rem;
    margin-bottom: 10px;
  }

  /* Remove 3D tilt on mobile */
  .service-card:hover {
    transform: none;
  }

  /* ===== PERFUME STORY ===== */
  .perfume-story {
    gap: 25px;
    margin-bottom: 70px;
  }

  .story-images {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .story-images img {
    border-radius: 14px;
  }

  /* ===== SHOWCASE ===== */
  .showcase-item {
    padding: 20px;
    border-radius: 16px;
  }

  .showcase-item img {
    height: 160px;
    border-radius: 14px;
  }

  .showcase-item:hover {
    transform: none;
  }

  /* ===== TRUST ===== */
  .trust-box {
    padding: 20px;
    border-radius: 16px;
  }

  .trust-box img {
    width: 45px;
  }

  /* ===== FAQ ===== */
  .faq {
    padding: 0 10px;
  }

  .faq-item {
    padding: 18px;
    border-radius: 14px;
  }

  /* Disable heavy 3D on mobile */
  .faq-item:hover {
    transform: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  }

  /* ===== FAVORITE BUTTON ===== */
  .fav-btn {
    width: 28px;
    height: 30px;
    font-size: 15px;

  }

  /* Touch feedback instead of hover */
  .fav-btn:hover {
    transform: none;
  }

  .fav-btn:active {
    transform: scale(0.9);
  }

  /* ===== HEART BURST ===== */
  .heart-burst {
    font-size: 12px;
  }
}

/* ===============================
   ADMIN PRODUCT LIST
================================ */
#adminProducts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.admin-product {
  display: flex;
  gap: 12px;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 12px;
  background: #fff;
}

/* IMAGE */
.admin-product-img {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
}

.admin-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* CONTENT */
.admin-product-content {
  flex: 1;
  font-size: 14px;
}

.admin-product-content strong {
  font-size: 15px;
}

/* ACTIONS */
.admin-product-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.admin-product-actions .btn {
  padding: 6px 10px;
  font-size: 13px;
  border-radius: 8px;
}

/* ===============================
   SMALL MOBILES (≤ 480px)
================================ */
@media (max-width: 480px) {
  .admin-product {
    flex-direction: column;
  }

  .admin-product-img {
    width: 100%;
    height: 180px;
  }

  .admin-product-actions {
    flex-direction: row;
    justify-content: space-between;
  }

  .admin-product-actions .btn {
    flex: 1;
  }
}

/* ===============================
   VERY SMALL MOBILES (≤ 360px)
================================ */
@media (max-width: 360px) {
  .admin-product-img {
    height: 150px;
  }

  .admin-product-content {
    font-size: 13px;
  }
}

/* ===============================
   TABLETS (≥ 768px)
================================ */
@media (min-width: 768px) {
  .admin-product {
    align-items: center;
  }

  .admin-product-actions .btn {
    min-width: 80px;
  }
}


.nav-item {
  position: relative;
  list-style: none;
}

.dropdown-toggle {
  cursor: pointer;
  text-decoration: none;
}
/* ===== Dropdown Base ===== */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 200px;
  padding: 8px 0;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  z-index: 1000;

  /* Animation */
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.25s ease;
}

/* ===== Dropdown Items ===== */
.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-menu li a:hover {
  background: #f3f3f3;
  color: #000;
}

/* ===== Desktop Hover ===== */
.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* =================================================
   📱 TABLET & SMALL LAPTOPS (≤ 1030px)
================================================= */
@media (max-width: 1030px) {
  .dropdown-menu {
    min-width: 180px;
    padding: 6px 0;
  }

  .dropdown-menu li a {
    padding: 8px 14px;
    font-size: 13px;
  }
}

/* =================================================
   📱 MOBILE (≤ 780px)
================================================= */
@media (max-width: 780px) {
  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    background: #fafafa;
    margin-top: 5px;
    padding: 0;
  }

  .dropdown-menu li a {
    padding: 12px 16px;
    font-size: 14px;
    border-bottom: 1px solid #eaeaea;
  }

  .dropdown-menu li:last-child a {
    border-bottom: none;
  }

  /* Show dropdown when active */
  .dropdown.active .dropdown-menu {
    display: block;
  }
}

.short-description {
  margin: 12px 0;
  font-size: 14px;
  line-height: 2.1;
  color: #2a2929;
    white-space: pre-line;   /* 🔥 IMPORTANT */

}

.description-section {
  margin-top: 18px;
  border-top: 1px solid #e6e6e6;
  padding-top: 10px;
}

.desc-toggle {
  width: 100%;
  background: none;
  border: none;
  padding: 10px 0;
  cursor: pointer;

  display: flex;
  justify-content: space-between;
  align-items: center;

  font-size: 15px;
  font-weight: 600;
  color: #222;
}

.desc-toggle:hover {
  color: #000;
}

/* Arrow */
#descArrow {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.long-desc {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  padding-right: 5px;
}

.long-desc.open {
  max-height: 900px; /* enough for long text */
}

.long-desc b,
.long-desc strong {
  font-weight: 700;
  color: #111;
}

.long-desc p {
  margin: 8px 0;
}

.long-desc ul {
  margin: 8px 0 8px 18px;
}

.long-desc li {
  margin-bottom: 6px;
}

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

.editor-toolbar {
  margin-bottom: 6px;
}

.editor-toolbar button {
  padding: 4px 8px;
  margin-right: 5px;
  border: 1px solid #ccc;
  background: #f8f8f8;
  cursor: pointer;
  font-size: 13px;
}

.editor-toolbar button:hover {
  background: #eee;
}

.rich-editor {
  min-height: 110px;
  border: 1px solid #ccc;
  padding: 8px;
  border-radius: 4px;
  background: #fff;
  font-size: 14px;
  line-height: 1.6;
}

.rich-editor:focus {
  outline: none;
  border-color: #888;
}
.long-desc.open + #descArrow {
  transform: rotate(180deg);
}

.image-shuffler {
  max-width: 900px;
  margin: 110px auto 10px auto; 
  /* top 110px | bottom sirf 10px */
  user-select: none;
}

.shop-description {
  max-width: 600px;
  margin: 5px auto 0;   /* 25px ki jagah 10px ya 0 kar dein */
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  text-align: center;
}

.img-wrapper {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  border-radius: 4px;
  cursor: ew-resize;
}

/* Images */
.img-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* AFTER image hidden by clip */
.img-after {
  clip-path: inset(0 50% 0 0);
}

/* Vertical divider */
.divider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: white;
  z-index: 10;
  transform: translateX(-50%);
  box-shadow: 0 0 8px rgba(0,0,0,0.6);
}

/* reviews section */

/* =======================
   REVIEWS SECTION
======================= */

.reviews-section {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #eee;
  width: 100%;
}

.reviews-section h2 {
  color: #111;
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 20px;
}

/* Add Review Button */
.add-review-btn {
    display: block;
  margin: 20px auto; 
  background: #ffffff;
  color: #000000;
  padding: 10px 18px;
  border: 1px solid #ccc;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.add-review-btn:hover {
  background: #14141485;
  color: rgba(255, 255, 255, 0.716);
}

/* =======================
   REVIEW CARD
======================= */

.review-card {
  display: flex;
  gap: 14px;
  padding: 15px;
  margin-bottom: 12px;
  border-radius: 4px;
  background: #fafafa;
  border: 1px solid #eee;
  transition: 0.25s;

  flex-wrap: wrap;           /* 👈 mobile pe neeche aa jaye */
}

.review-card:hover {
  background: #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}


.verified-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #28a745;
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: bold;
}
/* =======================
   PROFILE CIRCLE
======================= */

.review-avatar {
  width: 45px;
  height: 45px;
  min-width: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
}

/* random-ish colors using nth-child */
.review-card:nth-child(5n+1) .review-avatar { background: #252020; }
.review-card:nth-child(5n+2) .review-avatar { background: #823c07; }
.review-card:nth-child(5n+3) .review-avatar { background: #9ba5a3; }
.review-card:nth-child(5n+4) .review-avatar { background: #31191c; }
.review-card:nth-child(5n+5) .review-avatar { background: #022845; }



.review-content {
  flex: 1;
  min-width: 0;              /* 👈 VERY IMPORTANT */
}


.review-name {
  font-weight: 600;
  margin-bottom: 4px;
}

.review-stars {
  color: #000000;
  font-size: 18px;
  margin-bottom: 6px;
}
.review-text {
  font-size: 14px;
  color: #444;
  line-height: 1.5;

  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  white-space: normal;
}


/* =======================
   MODAL STYLING
======================= */

#reviewModal input,
#reviewModal select,
#reviewModal textarea {
  width: 100%;
  padding: 8px;
  margin: 6px 0;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 14px;
}

#reviewModal textarea {
  resize: vertical;
  min-height: 80px;
}

#reviewModal button {
  padding: 8px 14px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

#saveReviewBtn {
  background: #111;
  color: #fff;
}

#cancelReviewBtn {
  background: #eee;
}

/* =======================
   RESPONSIVE
======================= */

@media (max-width: 600px) {
  .review-card {
    padding: 12px;
  }

  .review-text {
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  .review-card {
    flex-direction: column;
  }

  .review-avatar {
    margin-bottom: 6px;
  }
}

.admin-alert {
  background: #ffe6e6;
  border: 1px solid #ff4d4d;
  color: #b30000;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  margin: 15px 0;
  line-height: 1.6;
  box-shadow: 0 6px 15px rgba(255, 77, 77, 0.15);
}

.admin-btn {
  width: 100%;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #ff4d4d, #b30000);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  transition: .3s;
}

.admin-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(255, 0, 0, 0.35);
}

.admin1 {
  width: 100%;
  padding: 14px;
  margin-bottom: 16px;
  border-radius: 30px;
  border: none;
  cursor: pointer;

  background: linear-gradient(135deg, #ff3b3b, #9b0000);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;

  box-shadow: 0 10px 25px rgba(255, 0, 0, 0.35);
  transition: all 0.3s ease;
}

/* Hover effect */
.admin1:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 16px 35px rgba(255, 0, 0, 0.55);
}

/* Active / click */
.admin1:active {
  transform: scale(0.98);
}

/* Optional: shake animation on hover (danger feel) */
.admin1:hover {
  animation: dangerShake 0.3s ease-in-out;
}

@keyframes dangerShake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-2px); }
  50% { transform: translateX(2px); }
  75% { transform: translateX(-1px); }
  100% { transform: translateX(0); }
}

.modal-card select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 14px;
  background: #fff;
  outline: none;
  transition: 0.25s;
}

.modal-card select:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79,70,229,0.18);
}

/* ===============================
   PRICE DISPLAY
================================ */
#so_price {
  font-size: 20px;
  font-weight: 700;
  color: #16a34a;
  text-align: center;
}

/* ===============================
   QUANTITY CONTROL
================================ */
.qty-box {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-box button {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: none;
  background: #e5e7eb;
  font-size: 18px;
  cursor: pointer;
}

.qty-box button:hover {
  background: #d1d5db;
}



/* Image overlay frame */
.image-overlay-frame {
  position: relative;
  width: 100%;
  max-width: 1100px;

  margin: 140px auto 60px; /* 🔥 TOP space for separation */

  border-radius: px;
  overflow: hidden;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}


/* Image */
.image-overlay-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.overlay-text {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.15),
    transparent
  );

  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* 🔥 bottom text */
  padding: 32px;

  color: #fff;
}


.overlay-text h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 8px;
}

.overlay-text p {
  font-size: 1rem;
  opacity: 0.9;
  max-width: 520px;
}


/* 📱 MOBILE FIX */
@media (max-width: 768px) {
  .image-overlay-frame {
    width: 100%;       /* ✅ full width on phone */
    margin: 24px 0;   /* ✅ clean spacing */
    border-radius: 14px;
  }

  .overlay-text h2 {
    font-size: 1.3rem;
  }

  .overlay-text p {
    font-size: 0.9rem;
    max-width: 100%;
  }
}

.cta-banner {
  margin: 70px auto;
  padding: 60px 20px;
  max-width: 1100px;
  border-radius: 6px;
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
  color: #fff;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  letter-spacing: 1px;
}

.cta-banner p {
  margin-top: 12px;
  font-size: clamp(1rem, 3vw, 1.15rem);
  opacity: 0.85;
}

.cta-banner button {
  margin-top: 22px;
  padding: 14px 34px;
  border-radius: 40px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.35s ease;
}

.cta-banner button:hover {
  background: #fff;
  color: #000;
}
.best-sellers {
  padding: 70px 20px;
  background: #fff;
  text-align: center;
}

.best-sellers h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: 10px;
}

.best-grid {
  max-width: 1200px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px;
}

.mini-product {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid #e5e5e5;
  transition: all 0.35s ease;
}

.mini-product img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.35s ease;
}

.mini-product h4 {
  margin-top: 16px;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.mini-product span {
  display: block;
  margin-top: 6px;
  color: #000;
  font-weight: 600;
}

.mini-product:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 40px rgba(0,0,0,0.15);
}

.mini-product:hover img {
  filter: grayscale(0%);
}
@media (max-width: 600px) {
  .cta-banner {
    padding: 45px 18px;
    border-radius: 6px;
  }

  .best-grid {
    gap: 20px;
  }

  .mini-product img {
    height: 130px;
  }
}
.nav-arrow {
  margin-left: 6px;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .nav-arrow {
  transform: rotate(180deg);
}

/* ===============================
   NAVBAR RESPONSIVE (1030px - 780px)
================================ */
@media (max-width: 1030px) and (min-width: 767px) {

  /* Navbar container spacing */
  .nav-container {
    padding: 0 20px;
  }

  /* Menu items gap kam */
  .nav-menu {
    gap: 6px;
  }

  /* Nav items */
  .nav-item {
    margin: 0;
  }

  /* Links font size chhota */
  .nav-link {
    font-size: 8px;
    padding: 6px 8px;
  }

  /* Dropdown arrow chhota */
  .nav-arrow {
    font-size: 10px;
    margin-left: 4px;
  }

  /* Dropdown menu compact */
  .dropdown-menu {
    min-width: 160px;
  }

  .dropdown-menu li a {
    font-size: 12px;
    padding: 6px 10px;
  }

  /* Right side icons compact */
  .nav-right button {
    padding: 6px;
  }

  .nav-right i {
    font-size: 14px;
  }

  /* Search input smaller */
  .search-input {
    font-size: 12px;
    padding: 5px 8px;
  }





  /* Cart badge size */
  .cart-count,
  .cart-count1 {
    font-size: 10px;
    padding: 1px 4px;
  }
}

/* ================= LIST VIEW (SAFE & RESPONSIVE) ================= */

#allProducts.list-view {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* CARD */
#allProducts.list-view .product-card {
  justify-items: end;
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 16px;
  padding: 14px;
  border-radius: 14px;
  align-items: center;
  background: #fff;
}

/* IMAGE */
#allProducts.list-view .product-card img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
}

/* INFO */
#allProducts.list-view .product-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

#allProducts.list-view .product-card .price {
  font-size: 15px;
  font-weight: 600;
}

/* ACTIONS */
#allProducts.list-view .product-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#allProducts.list-view .product-actions button {
  padding: 8px 12px;
  font-size: 13px;
}

/* ================= MOBILE (STILL HORIZONTAL) ================= */
@media (max-width: 768px) {
  #allProducts.list-view .product-card {
    
    grid-template-columns: 100px 1fr;
  }

  #allProducts.list-view .product-card img {
    width: 100px;
    height: 100px;
  }

  /* buttons niche aa jaen */
  #allProducts.list-view .product-actions {
    flex-direction: row;
    margin-top: 8px;
  }
}
/*  order popup*/
.order-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.order-popup.hidden {
  display: none;
}

.popup-card {
  background: #fff;
  padding: 30px 40px;
  border-radius: 16px;
  text-align: center;
  animation: popScale 0.4s ease-out;
  position: relative;
}

.popup-card h2 {
  color: #2ecc71;
  margin-bottom: 10px;
}

.popup-card p {
  font-size: 15px;
  line-height: 1.5;
}

/* popup scale */
@keyframes popScale {
  from { transform: scale(0.6); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* 🎈 Balloon animation */
.celebration {
  font-size: 40px;
  animation: floatUp 1s ease-in-out infinite alternate;
}

@keyframes floatUp {
  from { transform: translateY(0); }
  to { transform: translateY(-10px); }
}
@keyframes confettiFall {
  from {
    transform: translateY(0) rotate(0);
    opacity: 1;
  }
  to {
    transform: translateY(-150px) rotate(360deg);
    opacity: 0;
  }
}

/*  Bottom Navbar  */
/* ===== Bottom Navigation Container ===== */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;

  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);

  display: flex;
  justify-content: space-around;
  align-items: center;

  padding: 10px 0;

  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);

  z-index: 1000;
  animation: slideUp 0.4s ease;
}

/* ===== Buttons ===== */
.bottom-nav-btn {
  flex: 1;
  background: transparent;
  border: none;
  cursor: pointer;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;

  color: #000;
  font-size: 12px;
  font-weight: 500;

  padding: 1px 0;
  transition: all 0.3s ease;
}

/* Icons */
.bottom-nav-btn i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

/* Text */
.bottom-nav-btn span {
  font-size: 11px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

/* ===== Hover / Tap ===== */
.bottom-nav-btn:hover i {
  transform: translateY(-2px);
}

.bottom-nav-btn:hover span {
  opacity: 1;
}

/* ===== Active Button ===== */
.bottom-nav-btn.active {
  color: #000;
}

.bottom-nav-btn.active i {
  transform: scale(1.15);
}

.bottom-nav-btn.active span {
  opacity: 1;
}

/* Active Indicator Line */
.bottom-nav-btn.active::after {
  content: "";
  width: 24px;
  height: 3px;
  background: #000;
  border-radius: 3px;
  margin-top: 4px;
  animation: indicator 0.3s ease;
}

/* ===== Animations ===== */
@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes indicator {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 24px;
    opacity: 1;
  }
}
/* Hide on desktop */
@media (min-width: 769px) {
  .bottom-nav {
    display: none;
  }
}


/* ===== Admin Form Styling ===== */

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

/* Headings */
.profile-edit-form h6 {
  display: block;
  margin: 0 0 6px 2px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  letter-spacing: 0.5px;
}

/* Form Group */
.form-group {
  display: flex;
  flex-direction: column;
}

/* Inputs */
.profile-edit-form input,
.profile-edit-form select,
.profile-edit-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: 0.2s ease;
}

/* Focus Effect */
.profile-edit-form input:focus,
.profile-edit-form select:focus,
.profile-edit-form textarea:focus {
  border-color: #000;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.05);
}

/* ML Row Styling */
.ml-row {
  display: flex;
  gap: 8px;
}

.ml-row input {
  flex: 1;
}

/* URL Fields */
#urlFields {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Image Preview */
#np_preview img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #ddd;
}
#np_sizes,
#np_colors {
  height: 80px;
}


/* ===== Sticky Bottom Cart Bar ===== */

.sticky-cart-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 -3px 10px rgba(0,0,0,0.1);
  padding: 12px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
}

.sticky-price {
  font-size: 16px;
  font-weight: 700;
  color: #000;
}

.sticky-add-btn,
.sticky-buy-btn {
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.sticky-add-btn {
  background: #ffffff;
  color: #000000;
  margin-right: 8px;
  border: 1px solid #ccc;
}

.sticky-add-btn:hover {
  background: #100f0fdc;
  color: white;
}

.sticky-buy-btn {
  background: #e63946;
  color: #fff;
}

.sticky-buy-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.sticky-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Product Info Block */
.sticky-product-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

/* Product Name */
.sticky-name {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  max-width: 180px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Stock Badge Style */
.sticky-stock {
  font-size: 12px;
  font-weight: 600;
  margin-top: 4px;
  padding: 3px 8px;
  border-radius: 20px;
  background: #e6f4ea;
  color: #1b8f3c;
  display: inline-block;
}

/* Price */
.sticky-price {
  display: none;
  font-size: 17px;
  font-weight: 800;
  color: #000;
  letter-spacing: 0.3px;
}

/* ===============================
   TABLET RESPONSIVE FIX (768px)
=================================*/
@media (max-width: 768px) {
  .sticky-cart-bar {
   bottom: 8%;
  }
  .sticky-price{
    font-size: 13px;
  }
  .sticky-stock{
    padding: 3px 28px;
  }

  
}
@media (max-width: 992px) {

  #productDetail {
    display: block;
    padding: 20px;
  }

  .product-images,
  .product-details {
    width: 100%;
  }

  .product-images {
    margin-bottom: 25px;
    text-align: center; /* image center hogi */
  }

  .main-image {
    width: 85%;          /* thori choti */
    max-width: 500px;    /* zyada badi nahi hogi */
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: 12px;
  }

  .thumbnail-images {
    display: flex;
    justify-content: center;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
    padding-top: 5px;
  }

  .thumbnail {
    min-width: 65px;
    height: 65px;
    object-fit: cover;
  }



  .product-details h1 {
    font-size: 20px;
  }

  .price {
    font-size: 20px;
  }

  .quantity-selector {
    flex-wrap: wrap;
    gap: 10px;
  }

  .reviews-section {
    margin-top: 40px;
  }


}

.admin-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 15px;
}

.admin-modal-content {
  background: #fff;
  width: 100%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 10px;
  padding: 20px;
}

.admin-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.admin-modal-header h3 {
  margin: 0;
}

.admin-modal-header button {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
}
.policy-box {
  margin-top: 15px;
  border: 1px solid #00000034;
  border-radius: 3px;
  overflow: hidden;
  font-size: 14px;
}

.policy-row {
  display: flex;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #0000001d;
}

.policy-row:last-child {
  border-bottom: none;
}

.policy-icon {
  font-size: 16px;
  margin-right: 10px;
  color: #000;
}

.policy-text {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.policy-text strong {
  font-weight: 700;
  color: #000;
}

.policy-text span {
  color: #000;
}

.policy-image-box {
  margin-top: 15px;
  text-align: center;
}

.policy-image {
  max-width: 390px;  
  width: 100%;
  height: auto;
  object-fit: contain;
}
.product-accordion {
  margin-top: 20px;
  border-top: 1px solid #00000069;
}

.accordion-item {
  border-bottom: 1px solid #00000077;
}

.accordion-btn {
  width: 100%;
  background: #fff;
  border: none;
  padding: 14px 10px;
  text-align: left;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.accordion-btn span {
  font-size: 18px;
}

.accordion-content {
  display: none;
  padding: 10px;
  font-size: 13px;
  background: #fff;
}


/* product row */
.all-products-home {
  padding: 60px 5%;
  background: #111;
  color: #fff;
}

.all-products-home h2 {
  text-align: center;
  margin-bottom: 30px;
}

.slider-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

.home-products-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  width: 100%;
}

.home-products-row::-webkit-scrollbar {
  display: none;
}

.slide-btn {
  background: #222;
  border: none;
  color: #fff;
  font-size: 22px;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
}
.review-summary-box {
  display: flex;
  gap: 30px;
  margin-bottom: 25px;
  padding: 20px;
  border-radius: 12px;
  background: #fafafa;
  animation: fadeIn .5s ease;
}

.avg-rating {
  text-align: center;
  min-width: 120px;
}

.avg-rating h2 {
  font-size: 42px;
  margin: 0;
}

.avg-rating .stars {
  color: gold;
  font-size: 18px;
  margin: 5px 0;
}

.rating-bars {
  flex: 1;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 14px;
}

.bar {
  flex: 1;
  height: 8px;
  background: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}

.fill {
  height: 100%;
  background: linear-gradient(90deg,#ffcc00,#ff8800);
  width: 0;
  border-radius: 10px;
  animation: fillBar 1.2s ease forwards;
}

@keyframes fillBar {
  from { width: 0; }
}

@keyframes fadeIn {
  from { opacity:0; transform: translateY(10px);}
  to { opacity:1; transform: translateY(0);}
}
/* ===============================
   REVIEW SUMMARY – PREMIUM STYLE
=================================*/

.review-summary-wrapper {
  display: flex;
  gap: 50px;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 16px;
  background: linear-gradient(145deg, #ffffff, #f9f9f9);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  align-items: center;
  flex-wrap: wrap;
}

/* LEFT SIDE */
.summary-left {
  min-width: 220px;
}

.big-stars {
  font-size: 24px;
  color: #d4af37; /* luxury gold */
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.avg-text {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
}

.total-reviews {
  font-size: 14px;
  color: #777;
}

/* RIGHT SIDE */
.summary-right {
  flex: 1;
  min-width: 250px;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.star-label {
  width: 55px;
  font-size: 14px;
  font-weight: 500;
}

.bar {
  flex: 1;
  height: 10px;
  background: #e8e8e8;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
}

.fill {
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(90deg, #d4af37, #f7d046);
  width: 0;
  animation: fillBar 1s ease forwards;
}

.count {
  width: 25px;
  font-size: 14px;
  text-align: right;
  color: #555;
}

/* Animation */
@keyframes fillBar {
  from { width: 0; }
}

/* Hover effect */
.rating-row:hover .fill {
  filter: brightness(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .review-summary-wrapper {
    flex-direction: column;
    gap: 25px;
    padding: 20px;
  }

  .summary-left {
    text-align: center;
  }

  .big-stars {
    font-size: 22px;
  }
}

/*  Contact us  */
.contact-container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

/* Top Section */
.contact-top {
  text-align: center;
  margin-bottom: 30px;
}

.contact-top h1 {
  font-weight: 900;
  color: rgba(0, 0, 0, 0.912);
  font-size: 34px;
  margin-bottom: 10px;
}

.contact-top p {
  color: #666;
  max-width: 600px;
  margin: auto;
}

/* Large Map */
.contact-map-large {
  margin: 30px 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Bottom Section */
.contact-bottom {
  display: flex;
  gap: 50px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Left Side */
.contact-details {
  flex: 1;
  min-width: 280px;
}

.contact-details h2 {
  margin-bottom: 20px;
  color: #000000e6;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  color: #444;
}

.contact-item i {
  color: #d4af37;
}

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

.social-links a {
  text-decoration: none;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  color: #fff;
  transition: all 0.3s ease;
}

/* Facebook Default Color */
.social-links a:nth-child(1) {
  background: #1877F2;
}

/* Instagram Default Gradient */
.social-links a:nth-child(2) {
  background: linear-gradient(45deg, 
    #f09433, 
    #e6683c, 
    #dc2743, 
    #cc2366, 
    #bc1888
  );
}

/* Hover Effect */
.social-links a:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Right Side */
.contact-form-section {
  flex: 1;
  min-width: 300px;
}

.contact-form-section h3 {
  color: #0b0a0ae1;
  margin-bottom: 8px;
}

.contact-form-section p {
  margin-bottom: 20px;
  color: #666;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 4px;
  border: 1px solid #ddd;
  transition: .3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #d4af37;
  box-shadow: 0 0 0 3px rgba(212,175,55,0.2);
  outline: none;
}

.contact-btn {
  background: #111;
  color: #fff;
  padding: 12px;
  border-radius: 4px;
  border: none;
  width: 100%;
  cursor: pointer;
  transition: .3s;
}

.contact-btn:hover {
  background: #d4af37;
  color: #111;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-bottom {
    flex-direction: column;
  }
}


.review-wrapper {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}

/* LEFT PANEL */
.rating-panel {
  flex: 0 0 300px;
}

.rating-score h2 {
  font-size: 50px;
  margin: 0;
}

.rating-stars {
  color: gold;
  font-size: 22px;
}

.rating-stats {
  margin-top: 20px;
}

.rating-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.rating-bar {
  flex: 1;
  height: 8px;
  background: #eee;
  border-radius: 20px;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background: linear-gradient(90deg,#ff9800,#ffc107);
  width: 0;
  border-radius: 20px;
}

/* RIGHT SIDE */
.review-list {
  flex: 1;
  max-width: 600px;
}

.customer-review {
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  text-align: center;
  transition: 0.3s ease;
}

.customer-review:hover {
  transform: translateY(-5px);
}

.customer-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
}

.customer-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.customer-stars {
  color: gold;
}

.ayat-arabic {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  direction: rtl;
  color: #d9a108; /* Golden touch */
  letter-spacing: 1px;
}

.ayat-translation {
  font-size: 14px;
  text-align: center;
  margin-bottom: 25px;
  color: #555;
  font-style: italic;
  opacity: 0.9;
}

.coming-soon-message {
  background: #f8f9fa;
  color: #333;
  padding: 12px;
  border-left: 4px solid #007bff;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 15px;
}


#cancelEditProfile {
    width: 100%;
    padding: 10px;
    background: #f1f1f1;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

#cancelEditProfile:hover {
    background: #ddd;
}

#photoPreview {
    display: block;
    margin: 10px auto;
    border: 2px solid #eee;
}
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}



.save-btn:hover {
    background: #0056b3;
}
.modal-card input {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.login-note {
  font-size: 13px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
}
/* ================= GLOBAL STYLING ================= */

.brand-story-section,
.brand-difference,
.about-cta {
  padding: 100px 10%;
  text-align: center;
}

.brand-story-section {
  background: linear-gradient(to right, #f8f8f8, #ffffff);
}

/* ================= BRAND STORY ================= */

.brand-story-container {
  max-width: 1000px;
  margin: auto;
}

.story-left h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #111;
  letter-spacing: 1px;
}

.story-left p {
  font-size: 17px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 18px;
}

.story-right {
  margin-top: 40px;
}

.story-right img {
  width: 100%;
  max-width: 750px;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
  transition: 0.4s ease;
}

.story-right img:hover {
  transform: scale(1.03);
}

/* ================= LUXURY EXPERIENCE ================= */

.luxury-experience {
  position: relative;
  padding: 120px 10%;
  background: url('https://images.unsplash.com/photo-1541643600914-78b084683601') center/cover no-repeat;
  color: #fff;
  text-align: center;
}

.luxury-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}

.luxury-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
}

.luxury-content h2 {
  font-size: 40px;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.luxury-content p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #ddd;
}

.luxury-highlights {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.highlight-box {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  padding: 35px 25px;
  border-radius: 20px;
  width: 240px;
  transition: 0.4s ease;
  border: 1px solid rgba(255,255,255,0.2);
}

.highlight-box:hover {
  transform: translateY(-10px);
  background: rgba(255,215,0,0.15);
}

.highlight-box h3 {
  font-size: 26px;
  color: gold;
  margin-bottom: 10px;
}

/* ================= BRAND DIFFERENCE ================= */

.brand-difference h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #111;
}

.difference-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 50px;
}

.difference-card {
  background: linear-gradient(135deg, #111, #222);
  color: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  width: 260px;
  transition: 0.4s ease;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.difference-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.difference-card i {
  font-size: 30px;
  margin-bottom: 15px;
  color: gold;
}

.difference-card h3 {
  margin-bottom: 15px;
  font-size: 20px;
}

/* ================= CTA ================= */

.about-cta {
  background: linear-gradient(135deg, #111, #000);
  color: #fff;
}

.about-cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-cta p {
  font-size: 18px;
  color: #ccc;
}

.about-cta-btn {
  margin-top: 30px;
  padding: 14px 40px;
  background: gold;
  border: none;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.4s ease;
}

.about-cta-btn:hover {
  background: #fff;
  color: #000;
  transform: scale(1.05);
}

/* ================= RESPONSIVE ================= */

@media(max-width: 768px) {
  .story-left h2,
  .luxury-content h2,
  .brand-difference h2,
  .about-cta h2 {
    font-size: 28px;
  }

  .highlight-box,
  .difference-card {
    width: 100%;
  }

}
/* ================= ULTRA SMALL DEVICES (320px) ================= */

@media (max-width: 360px) {

  .brand-story-section,
  .brand-difference,
  .about-cta,
  .luxury-experience {
    padding: 60px 6%;
  }

  h1, h2 {
    font-size: 22px !important;
    line-height: 1.4;
  }

  h3 {
    font-size: 18px;
  }

  p {
    font-size: 14px;
    line-height: 1.7;
  }

  .story-right img {
    max-width: 100%;
    border-radius: 14px;
  }

  .luxury-highlights,
  .difference-grid {
    flex-direction: column;
    gap: 20px;
  }

  .highlight-box,
  .difference-card {
    width: 100%;
    padding: 25px 20px;
  }

  .about-cta-btn {
    width: 100%;
    padding: 14px;
    font-size: 15px;
  }
}

/* ================= SMALL PHONES ================= */

@media (max-width: 480px) {

  .luxury-content h2,
  .story-left h2,
  .brand-difference h2,
  .about-cta h2 {
    font-size: 24px;
  }

  .luxury-content p,
  .story-left p,
  .about-cta p {
    font-size: 15px;
  }

  .highlight-box h3 {
    font-size: 20px;
  }
}

/* ================= TABLETS ================= */

@media (max-width: 768px) {

  .luxury-highlights,
  .difference-grid {
    justify-content: center;
  }

  .story-right {
    margin-top: 30px;
  }
}

/* ================= TOUCH FRIENDLY ================= */

@media (hover: none) {

  .difference-card:hover,
  .highlight-box:hover {
    transform: none;
  }

  .about-cta-btn:hover {
    transform: none;
  }
}

/* ================= SAFE TEXT SCALING ================= */

html {
  -webkit-text-size-adjust: 100%;
}
.social-dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  font-weight: 500;
  transition: 0.3s ease;
}

.social-dropdown li a i {
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.social-dropdown li a:hover {
  background: #f3f3f3;
  padding-left: 20px;
}

/* Brand colors on hover */
.social-dropdown li:nth-child(1) a:hover i {
  color: #E1306C; /* Instagram */
}

.social-dropdown li:nth-child(2) a:hover i {
  color: #1877F2; /* Facebook */
}

.social-dropdown li:nth-child(3) a:hover i {
  color: #900404; /* TikTok */
}

.related-description {
  max-width: 700px;
  margin: 10px auto 25px auto;
  text-align: center;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.star-rating {
  font-size: 26px;
  cursor: pointer;
  margin: 10px 0;
  text-align: center;
}

.star-rating span {
  color: #ccc;
  transition: 0.2s;
}

.star-rating span.active {
  color: #ffc107;
}

.ml-options{
display:flex;
gap:10px;
flex-wrap:wrap;
margin-top:8px;
}

.ml-btn{
padding:8px 14px;
border:1px solid #ddd;
background:#fff;
cursor:pointer;
border-radius:6px;
font-size:14px;
transition:0.2s;
}

.ml-btn:hover{
border-color:#000;
}

.ml-btn.active{
background:#000;
color:#fff;
border-color:#000;
}
/* Wrapper */
.ml-selector {
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Label */
.ml-selector label {
  font-size: 14px;
  font-weight: 600;
  color: #222;
}

/* Select box */
#pd_ml {
  padding: 5px 8px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;

  transition: all 0.25s ease;
}

/* Hover */
#pd_ml:hover {
  border-color: #999;
}

/* Focus */
#pd_ml:focus {
  outline: none;
  border-color: #000;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.1);
}
.trending-section {
  margin: 90px 0;
  padding: 0 15px;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
}

/* HEADING */
.trending-section h2 {
  font-weight: 900;
  color: #000000e2;
  font-size: 35px;
  margin-bottom: 5px;
}

/* SUB TEXT */
.trending-section .trending-desc {
  font-size: 14px;
  color: #696969;
  margin-bottom: 20px;
  max-width: 500px;
}

.trending-slider {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;

  justify-content: center;
  width: 100%;
  max-width: 1000px;
}

.trending-slider::-webkit-scrollbar {
  display: none;
}

.trending-card {
  min-width: 160px;
  max-width: 160px;
  flex: 0 0 auto;

  background: #fff;
  border-radius: 14px;
  padding: 10px;

  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  cursor: pointer;
  text-align: center;

  transition: 0.3s;
  scroll-snap-align: center;
}

.trending-card:hover {
  transform: translateY(-6px);
}

.trending-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 10px;
}

.trending-card h4 {
  font-size: 14px;
  margin: 8px 0 4px;
  font-weight: 600;
}

.trending-card .price {
  font-weight: bold;
  font-size: 14px;
  color: #000;
}

@media (max-width: 768px) {

  .trending-section h2 {
    font-size: 28px;
  }

  .trending-slider {
    justify-content: flex-start;
  }

  .trending-card {
    min-width: 140px;
    max-width: 140px;
  }

  .trending-card img {
    height: 115px;
  }

}

@media (max-width: 480px) {

  .trending-section {
    margin: 60px 0;
  }

  .trending-section h2 {
    font-size: 24px;
  }

  .trending-desc {
    font-size: 13px;
  }

  .trending-card {
    min-width: 130px;
    max-width: 130px;
    padding: 8px;
  }

  .trending-card img {
    height: 100px;
  }

  .trending-card h4 {
    font-size: 12px;
  }

  .trending-card .price {
    font-size: 12px;
  }

}

/* ========================= */
/* 🔥 SMALL MOBILE (360px) */
/* ========================= */
@media (max-width: 360px) {

  .trending-section h2 {
    font-size: 20px;
  }

  .trending-card {
    min-width: 110px;
    max-width: 110px;
    padding: 6px;
  }

  .trending-card img {
    height: 85px;
  }

  .trending-card h4 {
    font-size: 11px;
  }

  .trending-card .price {
    font-size: 11px;
  }
.trending-card p {
  font-size: 8px;
}
}
/* PRICE */
.trending-card p {
  font-weight: bold;
  font-size: 14px;
  color: #00000065;
}

.products-title-box {
  text-align: center;
  margin: 20px auto;
  max-width: 600px;
}

.products-title {
  color: #252424ec;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 8px;
}

.products-desc {
  font-size: 14px;
  color: #00000099;
  line-height: 1.6;
}
.order-success-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.order-success-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    max-height: 90vh;
    overflow-y: auto;
}

.order-success-card h2 {
    text-align: center;
    margin-bottom: 15px;
}
.order-success-card h6{
    text-align: center;
    margin-bottom: 15px;
}
.order-details h3 {
    margin-top: 10px;
    font-size: 16px;
}

.order-details p {
    font-size: 14px;
    color: #333;
}

.order-success-card button {
    width: 100%;
    margin-top: 15px;
    padding: 10px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
}
.order-items {
    border-top: 1px solid #eee;
    margin-top: 10px;
    padding-top: 10px;
}

.item-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin: 4px 0;
}

.popup-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.popup-actions button {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    border: none;
    background: black;
    color: white;
    cursor: pointer;
}