:root {
  --primary: #780d1b;
  --golden: #fcc158;
  /* --light-primary: rgb(238, 174, 175); */
    --light-primary: rgba(120, 13, 27, 0.25);
  --primary-shadow: 0 6px 12px rgba(163, 0, 3, .20),
    0 12px 25px rgba(163, 0, 3, .10);
  --secondary: #fff3e0;
  --light: #fff2f2;
  --grey: #777;
}

* {
  font-family: "Amarna", sans-serif;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none !important;
}





/* =========================================== */
/* =========================================== */

/* marque top bar  */
.nav-top-section {
  background: var(--golden);

  overflow: hidden;
}

.nav-top {
  border-top: 1px solid var(--golden);
  border-bottom: 1px solid var(--golden);
  padding: 5px 0;

}

.marquee {
  display: inline-flex;
  gap: 80px;
  /* <-- yaha distance control */
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  padding-left: 100%;

}

.marquee span {
  font-weight: 600;
  font-size: 14px;
  color: #000;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* ==================================================== */
/* ==================================================== */

/* navbar css  */
.navbar {
  position: sticky;
  top: 0;
  z-index: 9999;
  transition: all 0.3s ease;
  background-color: var(--primary);
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

/* Hover dropdown show */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

/* Smooth fade animation */
.fade-menu {
  animation: fadeIn 0.25s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Menu spacing */
.nav-link {
  padding: 10px 18px !important;
  color: var(--golden) !important;
  font-size: 14px;
}

/* Active hover effect */
.nav-link:hover {
  color: var(--light) !important;
}

/* Default dropdown item */
.dropdown-menu .dropdown-item {
  transition: all 0.3s ease;
  padding: 10px;
}

/* Hover effect */
.dropdown-menu .dropdown-item:hover {
  background-color: var(--primary);
  color: #ffffff;
}

/* Active / focus */
.dropdown-menu .dropdown-item:focus,
.dropdown-menu .dropdown-item.active {
  background-color: var(--primary);
  color: #fff;
}

.navbar-toggler {
  /* border: var(--golden) !important; */
  /* border: 4px solid var(--golden) !important; */
    color: var(--golden) !important;

}

.navbar-toggler .navbar-toggler-icon{
  color: var(--golden) !important;
  background-color: var(--golden);

}

/* =============================================== */
/* =============================================== */

/* main-heading css  */

.main-heading {
  font-size: 38px;
  font-weight: 600;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
}

/* subline */
.creative-subline {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 10px;
}

/* REMOVE OLD LINE */
.creative-subline::after {
  display: none;
}

/* IMAGE DIVIDER */
.heading-divider {
  /* margin-top: 10px; */
}

.heading-divider img {
  max-width: 250px;
  width: 100%;
  height: auto;
  opacity: 0.9;
}

/* HOVER EFFECT (optional) */
.heading-divider img:hover {
  transform: scale(1.05);
  transition: 0.3s;
}

/* mobile */
@media(max-width:768px) {
  .main-heading {
    font-size: 30px;
  }

  .heading-divider img {
    max-width: 130px;
  }
}

/* ====================================== */
/* ====================================== */

/* Footer CSS */
.rivaaz-footer {
  position: relative;
  background: var(--primary);
  padding: 100px 20px 80px;
  text-align: center;
  overflow: hidden;
}

.footer-content {
  position: relative;
  z-index: 5;
  max-width: 700px;
  margin: auto;
}

.footer-content h2 {
  font-size: 38px;
  font-weight: 600;
}

.footer-content h2 span {
  color: var(--golden);
}

.footer-content p {
  margin: 25px 0;
  color: var(--golden);
}

.footer-btn {
  background: #ffdede;
  padding: 12px 40px;
  border-radius: 4px;
  color: #00857c;
  text-decoration: none;
  display: inline-block;
}

.footer-btn:hover {
  background: #00857c;
  color: white;
}

.copyright {
  margin-top: 10px;
  color: var(--golden);
  font-size: 14px;
}

.flower {
  position: absolute;
  bottom: 0;
  width: 420px;
  z-index: 1;
}

.flower.left {
  left: 0;
}

.flower.right {
  right: 0;
}

.footer-links {
  /* margin-top: 30px; */
  font-size: 13px;
}

.footer-links a {
  color: var(--golden);
  text-decoration: none;
  margin: 0 6px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-links span {
  color: #ccc;
}

@media(max-width:768px) {

  .flower {
    width: 220px;
    opacity: .4;
  }

  .rivaaz-footer {
    padding: 60px 15px 40px;
  }

  .footer-content h2 {
    font-size: 26px;
  }

  .footer-content p {
    font-size: 14px;
  }

}

/* ====================================================== */
/* ====================================================== */

/* button css */

.jewel-btn {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 40px;
  text-decoration: none;
  overflow: hidden;

  /* Gold Gradient */
  background: linear-gradient(45deg, #d4af37, #f9e79f, #d4af37);
  color: #000;
  font-weight: 600;
  letter-spacing: 1px;

  transition: 0.4s ease;
  box-shadow: 0 5px 20px rgba(212,175,55,0.4);
}

/* Hover Lift */
.jewel-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 30px rgba(212,175,55,0.6);
}

/* Shine Sweep Effect */
.jewel-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: rgba(255,255,255,0.5);
  transform: skewX(-20deg);
  transition: 0.6s;
}

.jewel-btn:hover::before {
  left: 130%;
}

/* Sparkle Dot ✨ */
.sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  top: 20%;
  left: 30%;
  animation: sparkleMove 2s infinite;
}

@keyframes sparkleMove {
  0% { opacity: 0; transform: scale(0.5) translateY(0); }
  50% { opacity: 1; transform: scale(1.2) translateY(-8px); }
  100% { opacity: 0; transform: scale(0.5) translateY(-15px); }
}

/* Text */
.btn-text {
  position: relative;
  z-index: 2;
}


/* ================================================ */
/* ================================================ */

/* back to top css  */
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  border: none;
  font-size: 22px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.back-to-top:hover {
  background: #12766b;
  transform: translateY(-4px);
}

/* ================================================ */
/* ============================================= */

/* faq css  */

/* REMOVE BOOTSTRAP DEFAULTS */
.custom-faq .accordion-item {
  border: 1px solid #ddd;
  /* margin-bottom: 18px; */
}

.custom-faq .accordion-button {
  background: #fff !important;
  box-shadow: none !important;
  font-weight: 600;
  font-size: 16px;
  padding: 35px 24px;
  color: #000;
}

/* REMOVE BLUE ON CLICK */
.custom-faq .accordion-button:focus {
  box-shadow: none;
  border-color: #ddd;
}

/* REMOVE DEFAULT ICON */
.custom-faq .accordion-button::after {
  display: none;
}

/* CUSTOM ICON */
.custom-faq .accordion-button .icon {
  margin-left: auto;
  font-size: 22px;
  font-weight: 400;
  color: #000;
  position: relative;
}

/* ARROW (DEFAULT) */
.custom-faq .accordion-button.collapsed .icon::before {
  content: "▾";
}

/* MINUS WHEN OPEN */
.custom-faq .accordion-button:not(.collapsed) .icon::before {
  content: "–";
  font-size: 26px;
}

/* BODY */
.custom-faq .accordion-body {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  padding: 0 24px 22px;
  background: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
  .custom-faq .accordion-button {
    font-size: 15px;
    padding: 18px;
  }
}

/* ============================================ */
/* ============================================ */

/* breadcrumb css  */

.breadcrumb-section {
            background: #d1cbbe;
            padding: 40px 0;
            text-align: center;
        }

        /* title */
        .breadcrumb-title {
            color: var(--primary);
            font-size: 32px;
            font-family: 'Playfair Display', serif;
            margin-bottom: 10px;
        }

        /* breadcrumb */
        .breadcrumb-custom {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .breadcrumb-custom li {
            display: inline-block;
            color: var(--primary);
            font-size: 14px;
            position: relative;
        }

        /* links */
        .breadcrumb-custom li a {
            color: #000;
            text-decoration: none;
        }

        /* separator */
        .breadcrumb-custom li+li::before {
            content: "›";
            margin: 0 10px;
            color: var(--primary);
        }

/* ======================
                               SNOW PARTICLES
                            ====================== */

.snow-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(2px 2px at 20px 30px, #3b1818, transparent),
    radial-gradient(2px 2px at 40px 70px, #fb6363, transparent),
    radial-gradient(2px 2px at 90px 40px, #cc0606, transparent),
    radial-gradient(2px 2px at 130px 80px, #fb6363, transparent),
    radial-gradient(2px 2px at 160px 20px, #95c11d, transparent);
  background-size: 200px 200px;
  animation: snowFall 8s linear infinite;
  opacity: .6;
  z-index: 1;
}

@keyframes snowFall {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 0 400px;
  }
}

/* ================================================= */
/* ================================================= */


/* products cards css  */

.product-grid {
  display: flex;
  align-items: stretch;
  height: 100% !important;
}

.product-card {
  border: 1.5px solid #de5e5e;
  border-radius: 28px;
  padding: 16px;
  background: #fff;
  position: relative;
  box-shadow: var(--primary-shadow);
}

.product-card a {
  text-decoration: none;
  color: #000;
}

.product-img {
  background: #f2f2f2;
  border-radius: 10px;
  padding: 12px 25px;
  position: relative;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  object-position: center;
  transition: .35s;
}

.product-card:hover img {
  transform: scale(1.05);
}

/* badge */

.product-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  padding: 1px 10px;
  border-radius: 20px;
  font-size: 10px;
  color: #fff;
  z-index: 10;
}

.hot {
  background: #ff6b90;
}

.new {
  background: #88b3a4;
}

.best {
  background: #ffa45c;
}

.sale {
  background: #9ec9ea;
}

/* hover icons */

.pp-hover {
  display: flex;
  gap: 12px;
  transition: .25s;
}

.pp-hover-btn {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: var(--light-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  border: none;
  text-decoration: none;
  cursor: pointer;
}

.pp-hover-btn i {
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pp-hover-btn:hover {
  background: var(--primary);
  color: white;
}

.product-card:hover .pp-hover {
  opacity: 1;
}

/* body */
.product-body {
  padding: 18px 6px 6px;
  position: relative;
}

.product-body small {
  color: #8b8b8b;
}

.product-body h6 {
  font-weight: 700;
  font-size: 15px;
  margin: 6px 0;
}

.pp-price strong {
  color: var(--primary);
  font-size: 15px;
}

.pp-price del {
  color: #aaa;
  font-size: 13px;
  margin-left: 6px;
}

/* sizes */

.pp-size {
  border-radius: 6px;
  font-size: 10px;
  cursor: pointer;
}

.pp-size.active {
  color: #000;
  border-color: var(--primary);
}

/* arrows */

.pp-prev,
.pp-next {
  position: absolute;
  top: 45%;
  width: 35px;
  height: 35px;
  background: #a30003;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99
}

.pp-prev {
  left: 15px;
}

.pp-next {
  right: 15px;
}

/* responsive */

@media(max-width:768px) {
  section .container {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}

.productSwiper {
  height: auto !important;
  width: 100%;
  overflow: hidden;
}

.swiper-wrapper {
  align-items: flex-start !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.swiper-slide {
  height: auto !important;
  display: flex;
}

.productSwiper .swiper-slide {
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.product-card {
  height: auto !important;
  width: 100%;
  max-width: 100%;
}

.slider-section .slider-container {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
