/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Playfair Display", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #f9f7f4;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #3d5359;
  /* Color for headings, subheadings and title throughout the website */
  --surface-color: #8fb3c0;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #2c2c2c;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;
  /* The default color of the main navmenu links */
  --nav-hover-color: #c9a961;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #3d5359;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #5a7f8a;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #ffffff;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #c9a961;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #ffffff;
  --default-color: #f9f7f4;
  --heading-color: #3d5359;
  --accent-color: #c9a961;
  --surface-color: #8fb3c0;
  --contrast-color: #2c2c2c;
}

.dark-background {
  --background-color: #3d5359;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #c9a961;
  --surface-color: #8fb3c0;
  --contrast-color: #2c2c2c;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
}

.main-box {
  margin-top: 7pc !important;
}

/* Discount Badge */
.discount-badge {
  position: absolute;
  bottom: 80px;
  right: 50px;
  background: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #4A3533;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6);
  z-index: 5 !important;
  border: 5px solid #ffffff;
  animation: pulse-shimmer 3s infinite ease-in-out;
  pointer-events: none;
}

@keyframes pulse-shimmer {
  0% {
    transform: scale(1) rotate(0deg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  }

  50% {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 15px 35px rgba(188, 149, 63, 0.5);
  }

  100% {
    transform: scale(1) rotate(0deg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  }
}

.discount-badge .save-tag {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
}

.discount-badge .number {
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.discount-badge .off-tag {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
}

/* Countdown Styles */
/* Integrated Hero Countdown */
.hero-countdown {
  width: 100%;
  margin-top: 10px;
}

.hero-countdown .countdown-item .time {
  font-size: 2.2rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.4);
  padding: 25px 15px;
  border-radius: 8px;
  min-width: 70px;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #292929;
  backdrop-filter: blur(5px);
}

.hero-countdown .countdown-item .label {
  display: block;
  font-size: 11px;
  color: #292929;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 8px;
  opacity: 0.8;
}

.countdown-container h3 {
  color: var(--default-color);
}

.countdown-item {
  text-align: center;
}



/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  padding: 60px 0;
  scroll-margin-top: 77px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 60px;
  }
}

/* @media (min-width: 1600px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 70% !important;
  }
} */

.section-title {
  margin-bottom: 0 !important;
}


/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.why-us h2 {
  color: var(--nav-color);
  margin: 0 0 5px 0;
  font-size: 36px;
  font-weight: 700;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 900;
  color: #292929;
  max-width: 500px;
}

.hero p {
  margin: 10px 0 0 0;
  font-size: 20px;
  max-width: 500px;
}

@media (min-width: 1400px) {
  .hero h2 {
    max-width: 850px !important;
  }

  .hero p {
    max-width: 850px !important;
  }
}

@media (max-width: 768px) {

  .hero {
    min-height: 40vh;
    padding: 40px 0;
  }

  .hero h2 {
    font-size: 25px;
  }

  .discount-badge {
    bottom: 10px !important;
    right: 25px !important;
    width: 60px !important;
    height: 60px !important;
  }

  .discount-badge .save-tag {
    font-size: 6px !important;
  }

  .discount-badge .number {
    font-size: 15px !important;
  }

  .discount-badge .off-tag {
    font-size: 8px !important;
  }

  .hero p {
    font-size: 14px;
  }

  .sale {
    padding: 40px 0 !important;
  }

  .sale .content h3 {
    font-size: 25px !important;
    margin-bottom: 0 !important;
  }

  .why-us {
    padding: 40px 0 !important;
  }

  .why-us h2 {
    font-size: 25px;
    margin: 0 0 0 10px !important;
  }

  .why-us p {
    font-size: 14px !important;
  }

  .call-to-action {
    padding: 40px 0 !important;
  }
}

/*--------------------------------------------------------------
# Sale Section
--------------------------------------------------------------*/
.sale {
  background-size: cover;
  position: relative;
  padding: 80px 0;
}

.sale .content h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
}

.sale p {
  font-size: 18px;
  line-height: 1.8;
  margin-top: 20px;
}

.sale .content .fst-italic {
  color: #3a3a3a;
}

.sale .content ul {
  list-style: none;
  padding: 0;
}

.sale .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.sale .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

.sale .content p:last-child {
  margin-bottom: 0;
}

.sale .about-img {
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transition: 0.4s;
  background: #fff;
  padding: 10px;
}

.sale .about-img:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us p {
  color: var(--nav-color);
  margin: 0 0 10px 0;
}

.why-us .card-item {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 30px 30px;
  transition: all ease-in-out 0.3s;
  height: 100%;
  position: relative;
}

.why-us .card-item span {
  color: var(--nav-color);
  display: block;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.why-us .card-item h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
}

.why-us .card-item h4 a {
  color: var(--heading-color);
}

.why-us .card-item p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  padding: 0;
}

.why-us .card-item:hover {
  background: var(--default-color);
}

.why-us .card-item:hover span,
.why-us .card-item:hover h4 a,
.why-us .card-item:hover p {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  border-bottom: 1px solid var(--surface-color);
}

.call-to-action .cta-box {
  position: relative;
  padding: 60px 30px;
  border-radius: 20px;
  overflow: hidden;
}

.call-to-action .cta-box .background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.call-to-action .cta-box .background-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(143, 179, 192, 0.45);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
}

.call-to-action .cta-box .background-overlay .background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.6s ease-in-out;
}

.call-to-action .cta-box:hover .background-image {
  transform: scale(1.1);
}

.call-to-action .cta-box .content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.call-to-action .cta-box .content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.call-to-action .cta-box .content p {
  font-size: 15px;
  margin-bottom: 2rem;
  opacity: 0.9;
  color: var(--heading-color);
}

.call-to-action .cta-box .content .cta-buttons .btn-cta {
  padding: 13px 3pc;
  color: #3d5359;
  border: 1px solid #3d5359;
  font-weight: 500;
  font-size: 19px;
}

.call-to-action .cta-box .content .cta-buttons .btn-cta i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.call-to-action .cta-box .content .cta-buttons .btn-cta:hover {
  color: #ffffff !important;
  background-color: #3d5359;
}

.call-to-action .cta-box .content .cta-buttons .btn-cta:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .call-to-action .cta-box {
    padding: 30px 20px;
  }

  .call-to-action .cta-box .content h2 {
    font-size: 25px;
  }

  .call-to-action .cta-box .content p {
    font-size: 14px;
  }

  .call-to-action .cta-box .content .btn-cta {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

.reviewsec-block span {
  color: #898989 !important;
}