/* Sticky Navbar Fix (Add padding to top of body to avoid content overlap) */
body {
  scroll-behavior: smooth;
  padding-top: 80px;
}

/* Navbar Styling */
.navbar {
  background: linear-gradient(90deg, #0d0d0d, #1a1a1a);
  transition: background-color 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
  background: rgba(17, 17, 17, 0.95);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  letter-spacing: 1px;
}

.nav-link {
  font-weight: 500;
  text-transform: capitalize;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #f0c14b !important;
}

.badge {
  border-radius: 50rem;
}

/* Adjust spacing for mobile */
@media (max-width: 991px) {
  .navbar {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .navbar-nav .nav-link {
    padding: 0.5rem 0;
  }
}


/* HERO SECTION */
.hero-section {
  height: 90vh;
  overflow: hidden;
}

.hero-slide {
  position: relative;
  height: 90vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 1rem;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  animation: fadeInUp 1s ease-in-out;
}

.hero-content h1 {
  font-size: 3rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
}

.hero-content .btn {
  border-radius: 50px;
  font-weight: 500;
  padding: 0.7rem 1.8rem;
}

/* ANIMATION */
@keyframes fadeInUp {
  0% { transform: translateY(30px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* RESPONSIVE STYLES */
@media (max-width: 992px) {
  .hero-section { height: 75vh; }
  .hero-slide { height: 75vh; justify-content: center; text-align: center; }
  .hero-content h1 { font-size: 2.3rem; }
  .hero-content p { font-size: 1rem; }
}

@media (max-width: 768px) {
  .hero-section { height: 70vh; }
  .hero-slide { height: 70vh; padding: 0 1.5rem; }
  .hero-content h1 { font-size: 1.9rem; }
  .hero-content p { font-size: 0.95rem; }
  .hero-content .btn { font-size: 0.9rem; padding: 0.6rem 1.4rem; }
}

@media (max-width: 576px) {
  .hero-section { height: 60vh; }
  .hero-slide { height: 60vh; background-position: top; }
  .hero-content h1 { font-size: 1.6rem; }
  .hero-content p { font-size: 0.9rem; }
  .hero-content .btn { padding: 0.5rem 1.2rem; font-size: 0.85rem; }
}



/* =========================
   ABOUT SECTION STYLES
========================= */
.about-section {
  background: #f9f9f9;
  overflow: hidden;
}

.about-section .about-img {
  max-width: 90%;
  border: 4px solid #fff;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-section .about-img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.about-section .about-content h2 {
  font-size: 2rem;
  letter-spacing: 0.5px;
}

.about-section .about-content p {
  font-size: 1rem;
  line-height: 1.7;
}

.about-section .btn {
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.about-section .btn:hover {
  background-color: #ffca2c;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .about-section .about-content {
    text-align: center;
  }

  .about-section .about-img {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .about-section .about-content h2 {
    font-size: 1.6rem;
  }

  .about-section .about-content p {
    font-size: 0.95rem;
  }
}



/* CATEGORY RIBBON */
.category-ribbon {
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.category-item {
  transition: all 0.3s ease;
}

.category-item:hover {
  transform: translateY(-5px);
}

.category-icon {
  width: 70px;
  height: 70px;
  border: 2px solid #f0f0f0;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.category-icon img {
  width: 60%;
  height: auto;
}

.category-item p {
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .category-icon {
    width: 60px;
    height: 60px;
  }

  .category-item p {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .category-icon {
    width: 55px;
    height: 55px;
  }
  .category-item p {
    font-size: 0.75rem;
  }
}


/* GOLD SECTION */
.gold-section h2 {
  font-size: 2rem;
  letter-spacing: 1px;
}

.product-card {
  border-radius: 10px;
  transition: all 0.3s ease;
  background: #fff;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.product-img img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.05);
}

.product-card .btn {
  border-radius: 50px;
  transition: background 0.3s ease;
}

.product-card .btn:hover {
  background: #000;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .gold-section h2 {
    font-size: 1.6rem;
  }

  .product-card .card-body h6 {
    font-size: 0.95rem;
  }

  .product-card .card-body p {
    font-size: 0.9rem;
  }
}


/* SILVER SECTION */
.silver-section {
  background: #fff;
}

.silver-section h2 {
  font-size: 2rem;
  letter-spacing: 1px;
}

.silver-section .product-card {
  border-radius: 10px;
  transition: all 0.3s ease;
  background: #fdfdfd;
}

.silver-section .product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.silver-section .product-img img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transition: transform 0.4s ease;
}

.silver-section .product-card:hover .product-img img {
  transform: scale(1.05);
}

.silver-section .btn {
  border-radius: 50px;
  transition: background 0.3s ease;
}

.silver-section .btn:hover {
  background: #000;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .silver-section h2 {
    font-size: 1.6rem;
  }

  .silver-section .product-card .card-body h6 {
    font-size: 0.95rem;
  }

  .silver-section .product-card .card-body p {
    font-size: 0.9rem;
  }
}

#diamond-collection .card img {
  object-fit: cover;
  height: 240px;
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}

#diamond-collection .card:hover {
  transform: translateY(-5px);
  transition: 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

@media (max-width: 576px) {
  #diamond-collection .card img {
    height: 200px;
  }
}

#earrings-collection .card img {
  object-fit: cover;
  height: 240px;
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}

#earrings-collection .card:hover {
  transform: translateY(-6px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 576px) {
  #earrings-collection .card img {
    height: 200px;
  }
}

#rings-collection .card img {
  object-fit: cover;
  height: 240px;
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}

#rings-collection .card:hover {
  transform: translateY(-6px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

@media (max-width: 576px) {
  #rings-collection .card img {
    height: 200px;
  }
}


#new-arrivals .card img {
  object-fit: cover;
  height: 240px;
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}

#new-arrivals .card:hover {
  transform: translateY(-6px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

@media (max-width: 576px) {
  #new-arrivals .card img {
    height: 200px;
  }
}

#site-footer {
  font-size: 0.95rem;
}

#site-footer .footer-link {
  color: #bfbfbf;
  text-decoration: none;
  display: block;
  margin-bottom: 0.4rem;
  transition: color 0.3s ease;
}

#site-footer .footer-link:hover {
  color: #f1c40f;
}

#site-footer hr {
  opacity: 0.15;
}

@media (max-width: 768px) {
  #site-footer {
    text-align: center;
  }

  #site-footer .col-md-4,
  #site-footer .col-md-2 {
    margin-bottom: 1rem;
  }
}


/* =========================
   ABOUT PAGE STYLES
========================= */
.about-banner {
  background: url('assets/images/new4.jpg') center/cover no-repeat;
  height: 60vh;
  position: relative;
}
.about-banner .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.story-section img {
  border-radius: 12px;
  transition: transform 0.4s ease-in-out;
}
.story-section img:hover {
  transform: scale(1.03);
}

.mission-vision-section {
  background: linear-gradient(120deg, #1a1a1a, #343434);
}

.owner-img {
  width: 250px;
  height: 250px;
  object-fit: cover;
}

.stats-section h2 {
  font-size: 2.5rem;
}
.stats-section p {
  font-size: 1rem;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .about-banner {
    height: 40vh;
  }
  .stats-section h2 {
    font-size: 1.8rem;
  }
  .story-section, .owner-section {
    text-align: center;
  }
}


.product-card img {
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.wishlist-icon i {
  color: #fff;
  font-size: 1.2rem;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 6px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.wishlist-icon i:hover {
  color: #ff4d4d;
  background-color: rgba(255, 255, 255, 0.9);
}

.product-details img {
  border-radius: 10px;
  max-height: 450px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .product-card img {
    height: 200px;
  }
}


.cart-page table th, 
.cart-page table td {
  vertical-align: middle;
}

.cart-page img {
  border-radius: 8px;
}

.cart-page .btn-outline-danger {
  transition: all 0.3s ease;
}

.cart-page .btn-outline-danger:hover {
  background-color: #dc3545;
  color: #fff;
}

@media (max-width: 768px) {
  .cart-page table {
    font-size: 0.9rem;
  }
  .cart-page img {
    width: 60px;
    height: 60px;
  }
}

