:root {
  /* --primary: #2c1e12; */
  --light-primary: #5f4834;
  --secondary: #fec107;
  --light-secondary: #7b5a3c;
  --bg-primary: linear-gradient(135deg, #f9f9f9 0%, #eeeeee 100%);
  ;
  --bg-secondary: linear-gradient(135deg, #fff4e8 0%, #f2e5d5 100%);
  --primary-shadow: 0 6px 12px rgba(163, 0, 3, .20),
    0 12px 25px rgba(163, 0, 3, .10);
  --light: #fff2f2;
  --transparent-grey: rgba(105, 104, 103, 0.1);
  --grey: #9e9e9e;
}


:root {
  --primary-dark: #2E2E2E;
  --light-grey: #E5E5E5;
  --beige: #BFA37A;
  --white: #FFFFFF;
  --text-dark: #1A1A1A;
  --accent: #bd3c16;
  --accent-hover: #9f2f10;
}

* {
  font-family: "Montserrat", sans-serif;
}


html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none !important;
}

/* =========================================== */
/* =========================================== */


/* ==================================================== */
/* ==================================================== */

/* navbar css  */

/* NAVBAR BASE */
.custom-navbar {
  padding: 15px 0;
  transition: all 0.3s ease;
  background: transparent;
}

/* SCROLL EFFECT */
.custom-navbar.scrolled {
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
}

/* NAV LINKS */
.nav-link {
  color: var(--primary-dark);
  margin: 0 12px;
  position: relative;
  font-weight: 500;
}

/* UNDERLINE ANIMATION */
.nav-link::after {
  content: "";
  /* position: absolute; */
  width: 0;
  height: 2px;
  /* background: var(--accent); */
  /* left: 0; */
  /* bottom: -5px; */
  transition: 0.3s;
}

/* .nav-link:hover::after {
  width: 100%;
} */

/* .nav-link:hover {
  color: var(--accent);
} */


/* OFFCANVAS */
.custom-offcanvas {
  background: var(--white);
  color: var(--accent);
}

.custom-offcanvas .nav-link {
  color: #000;
  margin: 10px 0;
  font-size: 18px;
}

.offcanvas-header .btn-close {
  background-color: var(--secondary) !important;
}

.custom-offcanvas .nav-link:hover {
  color: var(--secondary);
}

/* TOGGLER */
.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* DROPDOWN MENU */
.custom-dropdown {
  border: none;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* DROPDOWN ITEMS */
.dropdown-item {
  padding: 10px 15px;
  border-radius: 8px;
  color: var(--primary-dark);
  transition: 0.3s;
  font-weight: 500;
}

/* HOVER EFFECT */
.dropdown-item:hover {
  background-color: var(--grey);
  color: var(--white);
}

/* MOBILE DROPDOWN */
.custom-offcanvas .collapse .nav-link {
  font-size: 16px;
  padding-left: 10px;
  color: #000;
}

.custom-offcanvas .collapse .nav-link:hover {
  color: var(--secondary);
}

.nav-link[aria-expanded="true"] span {
  transform: rotate(45deg);
  transition: 0.3s;
}

/* DESKTOP DROPDOWN HOVER FIX */
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/* =============================================== */
/* =============================================== */

/* main-heading css  */
.main-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(105, 104, 103, 0.1);
  backdrop-filter: blur(4px);
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--primary);
  margin-bottom: 1.5rem;
  border: 0.5px solid var(--grey);
  width: fit-content;
}

.main-badge i {
  font-size: 0.9rem;
  color: #000;
}

.main-heading h1, .main-heading h2 {
  color: var(--primary) !important;
  letter-spacing: -0.02em !important;
}

.main-heading h1 span, .main-heading h2 span {
  display: inline-block !important;
  font-size: 70px !important;
  color: var(--secondary) !important;
  font-family: 'Allura', cursive !important;
}

.description-text {
  color: var(--light-primary);
  line-height: 1.6;
  /* margin-bottom: 2rem; */
  font-size: 1rem;
}

/* mobile */

@media(max-width:768px) {

  .main-heading {
    font-size: 30px;
  }

}

/* ====================================== */
/* ====================================== */

/* Footer CSS */

/* ====================================================== */
/* ====================================================== */

/* button css */
/* From Uiverse.io by doniaskima */
.main-btn,
.main-btn *,
.main-btn :after,
.main-btn :before,
.main-btn:after,
.main-btn:before {
  border: 0 solid;
  box-sizing: border-box;
}

.main-btn {
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: button;
  background-color: #000;
  background-image: none;
  color: #fff;
  cursor: pointer;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif,
    Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-size: 100%;
  font-weight: 900;
  line-height: 1.5;
  margin: 0;
  -webkit-mask-image: -webkit-radial-gradient(#000, #fff);
  padding: 0;
}

.main-btn:disabled {
  cursor: default;
}

.main-btn:-moz-focusring {
  outline: auto;
}

.main-btn svg {
  display: block;
  vertical-align: middle;
}

.main-btn [hidden] {
  display: none;
}

.main-btn {
  border-width: 1px;
  padding: 1rem 2rem;
  position: relative;
  text-transform: uppercase;
}

.main-btn:before {
  --progress: 100%;
  background: #fff;
  -webkit-clip-path: polygon(100% 0,
      var(--progress) var(--progress),
      0 100%,
      100% 100%);
  clip-path: polygon(100% 0,
      var(--progress) var(--progress),
      0 100%,
      100% 100%);
  content: "";
  inset: 0;
  position: absolute;
  transition: -webkit-clip-path 0.2s ease;
  transition: clip-path 0.2s ease;
  transition: clip-path 0.2s ease, -webkit-clip-path 0.2s ease;
}

.main-btn:hover:before {
  --progress: 0%;
}

.main-btn .text-container {
  display: block;
  overflow: hidden;
  position: relative;
}

.main-btn .text {
  display: block;
  font-weight: 900;
  mix-blend-mode: difference;
  position: relative;
}

.main-btn:hover .text {
  -webkit-animation: move-up-alternate 0.3s ease forwards;
  animation: move-up-alternate 0.3s ease forwards;
}

@-webkit-keyframes move-up-alternate {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(80%);
  }

  51% {
    transform: translateY(-80%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes move-up-alternate {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(80%);
  }

  51% {
    transform: translateY(-80%);
  }

  to {
    transform: translateY(0);
  }
}

@media (max-width: 480px) {

  .main-btn,
  .btn-outline {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--grey);
  color: #000;
  padding: 0.9rem 2rem;
  border-radius: 48px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  background: var(--transparent-grey);
  border-color: var(--grey);
  transform: translateY(-2px);
}

/* ================================================ */
/* ================================================ */

/* 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-pro {
  position: relative;
  padding: 120px 0 80px;
  color: #fff;
}

/* TEXT BOX STYLE */
.breadcrumb-content {
  display: inline-block;
  padding: 17px 40px;
  border-radius: 10px;
  background: linear-gradient(120deg,
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.3));
}

/* TITLE */
.page-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* BREADCRUMB */
.breadcrumb-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

/* LINKS */
.breadcrumb-nav a {
  color: #ddd;
  text-decoration: none;
  transition: 0.3s;
}

.breadcrumb-nav a:hover {
  color: var(--secondary);
}

/* ACTIVE */
.breadcrumb-nav .active {
  color: #fff;
  font-weight: 500;
}

/* ================================================= */
/* ================================================= */


/* 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;
}