/*---------------------------------------------------------------

    Template Name: Santashop Landing Page
    Description: "Celebrate this Christmas with our exclusive sale! Get amazing discounts on your favorite products. Limited time offer, shop now!
    Author: Lucid Themeslab
    Author URL: https://www.templatemonster.com/store/lucid_themeslab/
    Version: 2.0.0
----------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* ==================
Basic Styles 
================== */

[data-santashoptheme="light"] {

    --body-color: #ffffff;
    --primary-color: #ff4545;
    --secondary-color: #719f08;
    --alt-color: #fffbfb;
    --heart_bg: #f3f3f3;
    --light-color: #fff7f7;
    --card-color: #fff;
    --white-color: #fff;
    --form-color-dark: #252f37;
    --form-color: #fdf3ee;
    --accent: #f6e8e8;
    --gold: #f3c969;
    --dark-bg:#252f37;

    /* text-colors */
    --primary-text: #ff4545;
    --old-text: #457B9D;
    --heading-text: #1D3557;
    --para-text: #524e4e;
    --white-text: #fff;
    --danger-text: #fa5050;

    /* font family */
    --primaryfont: "Dancing Script", cursive;
    --secondaryfont: "Montserrat", sans-serif;
}

[data-santashoptheme="dark"] {

    --body-color: #1b1c1f;
    --primary-color: #ff4545;
    --secondary-color: #719f08;
    --alt-color: #272a2e;
    --heart_bg: #212326;
    --light-color: #232427;
    --card-color: #31353b;
    --white-color: #fff;
    --form-color-dark: #adadad;
    --form-color: #424952;
    --gold: #f3c969;
    --dark-bg:#252f37;

    /* text-colors */
    --primary-text: #ff4545;
    --old-text: #fff;
    --heading-text: #ffffff;
    --para-text: #d8d8d8;
    --white-text: #fff;
    --danger-text: #fa5050;

    /* font family */
    --primaryfont: "Dancing Script", cursive;
    --secondaryfont: "Montserrat", sans-serif;
}

* {
    box-sizing: border-box;
    font-family: var(--secondaryfont) !important;
    word-break: break-word;
}

body {
    background-color: var(--body-color);
    font-family: var(--secondaryfont);
}

html {
    scroll-behavior: smooth;
}

a {
    color: inherit;
    text-decoration: none;
    box-shadow: none;
    outline: none;
}

a:hover {
    text-decoration: none;
}

.fs-0 {
    font-size: 0px;
}

/* Background-Color*/

.body-color {
    background-color: var(--body-color) !important;
}

.primary-color {
    background-color: var(--primary-color) !important;
}

.alt-color {
    background-color: var(--alt-color) !important;
}

.light-color {
    background-color: var(--light-color) !important;
}

.card-color {
    background-color: var(--card-color) !important;
}

.primary-hover-color {
    background-color: var(--primary-hover-color) !important;
}

.white-color {
    background-color: var(--white-color) !important;
}

.secondary-color {
    background-color: var(--secondary-color) !important;
}

.form-color-dark {
    background: var(--form-color-dark) !important;
}

.dark-gradient {
    background: var(--dark-gradient) !important;
}

/* Text-Color*/

.primary-font {
    font-family: var(--primaryfont) !important;
}

.primary-text {
    color: var(--primary-text);
}

.heading-text {
    color: var(--heading-text);
}

.para-text {
    color: var(--para-text);
}

.white-text {
    color: var(--white-text);
}

.danger-text {
    color: var(--danger-text);
}

.primary-btn {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 12px 15px;
    font-size: 0.9rem;
    border-radius: 5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    transition: all 0.3s ease;
}

.primary-btn:hover {
    background: var(--secondary-color);
    color: var(--white-color);
}

.btn-light-custom {
    display: inline-block;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    background: #fff;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-light-custom:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    box-shadow: 0 6px 20px rgba(241, 150, 14, 0.219);
    color: #fff;
}

.secondary-btn {
    background-color: var(--white-color) !important;
    color: var(--secondary-color) !important;
}

.secondary-btn:hover {
    background-color: var(--secondary-color) !important;
    color: #ffffff !important;
    transition: 0.5s ease-in-out;
}

/* ==================
Preloader Style
================== */
.preloader {
      position: fixed;
      inset: 0;
      background: url(../../assets/images/banner_img/footer-bg.webp);
      background-repeat: no-repeat;
      background-position: center;
      background-attachment: fixed;
      background-size: cover;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      z-index: 9999;
      color: #fff;
      overflow: hidden;
      transition: opacity 400ms ease, visibility 400ms ease;
    }

    .preloader-inner {
      display: flex;
      align-items: center;
      gap: 20px;
      transform: translateY(0);
    }

    .santa-wrap {
      width: 110px;
      height: 110px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
      display: grid;
      place-items: center;
      box-shadow: 0 10px 30px rgba(2,6,23,0.6), inset 0 -6px 20px rgba(255,255,255,0.02);
      animation: float 2.8s ease-in-out infinite;
    }

    /* santa image */
    .santa {
      width: 80%;
      height: 80%;
      object-fit: contain;
      transform-origin: 50% 60%;
      animation: shake 2s ease-in-out infinite;
      filter: drop-shadow(0 6px 10px rgba(0,0,0,0.45));
    }

    @keyframes float {
      0% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
      100% { transform: translateY(0); }
    }

    @keyframes shake {
      0% { transform: rotate(-4deg); }
      50% { transform: rotate(4deg); }
      100% { transform: rotate(-4deg); }
    }

    .pre-text {
      text-align: left;
    }
    .pre-text h2 {
      font-size: 20px;
      margin-bottom: 6px;
      letter-spacing: 0.2px;
    }
    .pre-text p {
      font-size: 13px;
      color: rgba(255,255,255,0.78);
      margin-bottom: 12px;
    }

.progress {
  width: 220px;
  height: 10px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.progress > i {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--gold) 60%, var(--secondary-color));
  border-radius: 8px;
  animation: progressLoad 5s linear forwards; /* 5s timer */
  box-shadow: 0 4px 15px rgba(255,120,120,0.25);
}

@keyframes progressLoad {
  0% { width: 0%; }
  100% { width: 100%; }
}

    .snow {
      position: absolute;
      inset: 0;
      pointer-events: none;
      mix-blend-mode: screen;
    }
    .snow span {
      position: absolute;
      top: -10%;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(255,255,255,0.9);
      opacity: 0.9;
      animation: fall linear infinite;
    }

    @keyframes fall {
      0% { transform: translateY(-10vh) translateX(0) scale(0.6); opacity: 0.9; }
      50% { opacity: 0.7; }
      100% { transform: translateY(110vh) translateX(30vw) scale(1); opacity: 0.1; }
    }

    .preloader.hidden {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    body.loaded .content { opacity: 1; transform: none; transition: opacity 300ms ease; }
    .content { opacity: 0; transform: translateY(6px); transition: opacity 300ms ease; }

    @media (max-width: 480px) {
      .preloader-inner { gap: 12px; }
      .santa-wrap { width: 86px; height: 86px; }
      .pre-text h2 { font-size: 18px; }
      .progress { width: 160px; }
    }

/* ==================
Navbar and Header Style
================== */
.navbar .navbar-nav .nav-link {
    color: var(--heading-text);
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.banner-text {
    width: 920px;
    /* max-width: 80%; */
    margin: auto;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

/* Dropdown item hover */
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}

/* Dropdown item click (while mouse pressed) */
.dropdown-menu .dropdown-item:active {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}

/* Dropdown item active class (Bootstrap adds .active when selected) */
.dropdown-menu .dropdown-item.active {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px
    }
}

@media (max-width: 564px) {

    .title-heading h2 {
        font-size: 22px !important;
        color: var(--heading-text);
    }

}

@media (min-width: 992px) {
    .navbar {
        height: 68px;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/*** Header ***/
@media (min-width: 992px) {
    .nav-main {
        position: relative;
        z-index: 2;
    }

    .header-carousel,
    .page-header {
        margin-top: -68px;
    }

    .menu-main {
        margin-top: -35px;
        z-index: 2;
        position: relative;
    }
}

/* ------------------------------------- */
.offcanvas-outer {
    position: relative;
    transition: position 0.5s ease-in-out;
    width: 100%;
}

.offcanvas-outer.fixed {
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--card-color) !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

@media (max-width: 991px) {
    .offcanvas-outer {
        overflow-y: auto;
    }
}

.nav-link:focus-visible {
    outline: 0;
    box-shadow: none;
}

/* ----------------------------------- */

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 15px solid var(--primary-color);
}

.carousel-control-prev,
.carousel-control-next {
    width: 80px;
}

@media(max-width: 575px) {

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: var(--primary-color);
        border: 15px solid var(--primary-color);
    }

    .carousel-control-prev,
    .carousel-control-next {
        position: absolute;
        top: 25px;
        height: 50px;
        width: 50px;
        right: 6px !important;
    }

    .carousel-control-prev {
        left: unset !important;
        right: 75px !important;
    }
}

@media (max-width: 767px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 550px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* ===== Carousel Banner Styling ===== */
#header-carousel {
    position: relative;
}

/* Carousel Items: Full Height Responsive */
#header-carousel .carousel-item {
    min-height: 750px;
    /* Desktop Default */
    position: relative;
}

#header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Caption Styling */
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    /* background: rgba(27, 25, 23, 0.5); */
    /* Overlay */
    padding: 20px;
    z-index: 1;
}

.banner-text h1 {
    font-size: clamp(1.8rem, 5vw, 4rem);
    /* Responsive font */
    line-height: 1.2;
}

.banner-text h2 {
    font-size: clamp(1.2rem, 3vw, 2rem);
}

.banner-text p {
    /* max-width: 650px; */
    margin-bottom: 1rem;
}

/* Carousel Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 15px solid var(--primary-color);
}

.carousel-control-prev,
.carousel-control-next {
    width: 80px;
}

/* ===== Mobile Responsiveness ===== */
@media (max-width: 991px) {
    #header-carousel .carousel-item {
        min-height: 450px;
    }

    .banner-text p {
        font-size: 14px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 40px;
        height: 40px;
        border: 10px solid var(--primary-color);
    }

    .carousel-control-prev,
    .carousel-control-next {
        top: 7px;
        height: 40px;
        width: 40px;
    }

    .carousel-control-prev {
        left: unset !important;
        right: 50px !important;
    }
}

/* ===== Extra Small Devices ===== */
@media (max-width: 575px) {
    #header-carousel .carousel-item {
        min-height: 380px;
    }

    .banner-text h1 {
        font-size: 1.6rem;
    }

    .banner-text h2 {
        font-size: 1.1rem;
    }
}

/* Add overlay on the entire image area */
#header-carousel .carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    /* Dark overlay */
    z-index: 1;
}

/* ==================
Navbar and Header Style
================== */

.title-heading h2 {
    font-size: 36px;
    color: var(--heading-text);
}

.title-heading p {
    display: inline-block;
    margin-top: 30px;
    width: 180px;
    height: 35px;
    text-transform: uppercase;
    line-height: 34px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    position: relative;
}

.try_left_dots {
    width: 10px;
    height: 10px;
    background: #ffffff;
    position: absolute;
    left: 13px;
    top: 13px;
    border-radius: 100%;
}

.try_left_dots:after {
    content: '';
    border: 1px solid #e3e3e3;
    width: 16px;
    position: absolute;
    left: -13px;
    top: 4px;
}

.try_right_dots {
    width: 10px;
    height: 10px;
    background: #ffffff;
    position: absolute;
    right: 13px;
    top: 13px;
    border-radius: 100%;
}

.try_right_dots:after {
    content: '';
    border: 1px solid #e3e3e3;
    width: 16px;
    position: absolute;
    right: -13px;
    top: 4px;
}

.title-heading {
    /* float: left; */
    width: 100%;
    position: relative;
    text-align: center;
}

/* ==================
LED Section Style
================== */

.social-btn {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    transition: 0.3s ease-in;
    background: var(--primary-color);
    border: none;
    text-decoration: none;
}

.social-btn:hover {
    background: var(--secondary-color) !important;
    color: #fff;
}

.main-card {
    border: 1px solid #e3e3e3;
    border-radius: 8px;
    transition: 0.5 ease-in;
    overflow: hidden;
}

.image-content h5 {
    font-size: 10px;
    color: var(--white-color);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    line-height: 12px;
    background-color: rgb(220, 53, 69);
    border-radius: 100%;
    position: absolute;
    top: 10px;
    left: 7px;
    padding-top: 9px;
}

.image-content a {
    color: rgb(213, 207, 200);
    position: absolute;
    right: 20px;
    top: 20px;
    line-height: 0;
    font-size: 20px;
    transition: all 0.5s;
}

.main-card:hover {
    border: 1px solid var(--primary-color);
    transition: 0.5s ease-in;
}

.image-content a:hover {
    color: var(--primary-color);
    transition: 0.5s ease-in;
}

.footer .footer_ul li a {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
    box-shadow: none;
    text-decoration: none;
}

.footer .footer_ul li a:hover {
    color: var(--primary-color);
}

.footer .footer_ul li a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

/* ==================
Contact Section Styles
================== */

.contact-iconbg {
    min-width: 50px;
    min-height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    outline: 2px dashed #ffffff;
    outline-offset: 6px;
}

.form-control:focus {
    border-color: var(--secondary-color) !important;
    box-shadow: none;
    color: var(--form-color-dark) !important;
}

.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--form-color-dark) !important;
    background-color: var(--form-color) !important;
}

.form-control::placeholder {
    color: var(--form-color-dark);
}

.error {
    color: var(--danger-text);
    padding-left: 15px;
    font-family: var(--secondaryfont) !important;
    padding-top: 4px;
}

#newsletter .error {
    color: var(--danger-text);
    padding-left: 22px;
    padding-top: 4px;
    font-family: var(--secondaryfont) !important;
}

/* ==================
Back to top Styles
================== */
#backtotop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    border: 2px dotted var(--white-color);
    border-radius: 50%;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    animation: move 1.2s infinite ease-in-out;
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.3s ease;
    transform: translateY(20px);
}

#backtotop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#backtotop .fa-arrow-up {
    font-size: 22px;
    color: var(--white-color);
    animation: upDown 1.2s ease-in-out infinite;
}

#backtotop:hover {
    cursor: pointer;
    background-color: var(--secondary-color) !important;
    border-color: var(--white-color);
}

@keyframes move {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes upDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

#newsletter .error:not(.form-control) {
    position: absolute;
    top: 100%;
}

.image-content a {
    position: absolute;
    right: 20px;
    top: 20px;
    line-height: 0;
    font-size: 20px;
    transition: 0.5s;
}

.wishlist-notset {
    color: rgb(213, 207, 200);
    position: absolute;
    right: 10px;
    top: 3px;
    font-size: 22px;
}

.image-content {
    color: rgba(195, 134, 47, 0.32);
    text-align: center;
    min-height: 220px;
    line-height: 220px;
    position: relative;
    border-bottom-left-radius: 10px;
}

.offer-card {
    background: var(--card-color);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    min-height: 140px;
    display: flex;
    align-items: center;
    border: 1px solid #ffdbdb;;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.offer-img img {
    max-width: 100px;
}

.shop-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 2px;
}

.shop-link:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Typography */
.cta-content h2 {
    line-height: 1.1;
    font-size: clamp(1.75rem, 1.2rem + 2.2vw, 3rem);
}

.cta-content h3 {
    font-size: clamp(1rem, .9rem + .8vw, 1.25rem);
}

.cta-content h4 {
    font-size: clamp(1rem, .9rem + .8vw, 1.25rem);
}

/* Button */
.cta-dark-gradient .btn-light {
    border-radius: 999px;
    transition: transform .18s ease, box-shadow .18s ease;
}

.cta-dark-gradient .btn-light:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(255, 255, 255, .12);
}

/* Image Styling */
.cta-media {
    position: relative;
    border-radius: var(--cta-radius);
    padding: clamp(.75rem, .5rem + 1vw, 1.25rem);
}

.cta-media img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain;
    aspect-ratio: 5 / 6;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
    .cta-dark-gradient .row {
        text-align: center;
    }

    .cta-content {
        margin-bottom: 1rem;
    }
}

@media (max-width: 575.98px) {
    .cta-media img {
        max-height: 420px;
        aspect-ratio: 3 / 4;
    }
}

.banner-cta-image img {
    max-height: 460px;
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .banner-cta-image img {
        max-height: 250px;
    }
}

@media (max-width: 576px) {
    .banner-cta-image img {
        max-height: 300px;
    }
}

/* Decorative Theme Toggle */
.theme-toggle-decor {
    position: relative;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(145deg, #ffcc33, #ff8800);
    /* sun look */
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    outline: none;
}

/* Hover Effect – glowing rays */
.theme-toggle-decor:hover {
    box-shadow: 0 0 15px 5px rgba(255, 193, 7, 0.6);
    transform: rotate(10deg) scale(1.1);
    transition: all 0.4s ease-in-out;
}

/* Active press effect */
.theme-toggle-decor:active {
    transform: scale(0.9);
}

/* When it's Moon (dark mode) */
.theme-toggle-decor.moon-mode {
    background: linear-gradient(145deg, #2c3e50, #1a252f);
    /* moon dark */
    box-shadow: 0 0 12px 4px rgba(0, 0, 0, 0.5) inset;
}

.category-card .icon-box {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-color);
    color: var(--primary-color);
    font-size: 20px;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
}

.category-card {
    border-bottom: 3px solid transparent;
    transition: border-color 0.3s ease;
}

.category-card:hover {
    border-bottom-color: var(--primary-color);
    transition: 0.3s ease-in;
    transform: translateY(-4px);
}

.category-card h6 {
    font-size: 13px;
    font-weight: 500;
}

@media (min-width: 768px) {
    .category-card .icon-box {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .category-card h6 {
        font-size: 14px;
    }
}

/* Theme Toggle Fixed Bottom Left */
.theme-toggle-decor {
    position: fixed;
    bottom: 50px;
    left: 20px;
    z-index: 3;
    border: none;
    border-radius: 50%;
    padding: 10px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* By default text visible, icon hidden */
.buy-now-btn .btn-icon {
    display: none;
}

/* Mobile view: show icon, hide text */
@media (max-width: 768px) {
    .buy-now-btn .btn-text {
        display: none;
    }

    .buy-now-btn .btn-icon {
        display: inline-block;
    }

    .product-card-img img {
        width: 180px;
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }
}

/* Mobile view: show icon, hide text */
@media (max-width: 500px) {
    .buy-now-btn .btn-text {
        display: none;
    }

    .buy-now-btn .btn-icon {
        display: inline-block;
    }

    .product-card-img img {
        width: 140px;
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }
}

/* Mobile Offcanvas Nav Background */
@media (max-width: 991.98px) {
    #offcanvasNavbar2 {
        background-color: var(--primary-color) !important;
    }

    #home {
        background-color: var(--primary-color) !important;
    }
}

.btn-close {
    background-image: unset;
    color: var(--white-color);
    opacity: 1;
}

.product-card {
    border: 1px solid #ffdbdb;
    border-radius: 20px;
    padding: 25px 15px 0px;
    text-align: center;
    background: var(--card-color);
    position: relative;
    transition: all 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Badge */
.badge-new {
    background: var(--primary-color);
    color: #fff;
    font-size: 13px;
    padding: 4px 12px;
    border-radius: 30px;
    position: absolute;
    top: 18px;
    left: 18px;
    font-weight: 500;
    z-index: 1;
}

/* Product image holder */
.img-holder {
    position: relative;
    overflow: hidden;
    text-align: center;
    background: var(--light-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    margin-bottom: 20px;
}

.img-holder img {
    max-height: 148px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-card:hover .img-holder img {
    transform: scale(1.1);
    /* Zoom effect */
}

/* Product text */
.product-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--heading-text);
    text-align: left;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-text);
}

.product-old-price {
    text-decoration: line-through;
    color: var(--old-text);
    font-size: 16px;
    font-weight: 500;
    margin-left: 6px;
    -webkit-text-decoration-line: line-through;
    text-decoration-line: line-through;
    -webkit-text-decoration-color: rgba(69, 123, 157, 0.35);
    text-decoration-color: rgba(69, 123, 157, 0.35);
}

/* Cart Button (hover show) */
.cart-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(-15px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover .cart-btn {
    opacity: 1;
    transform: translateY(0);
}

/* Wishlist Button */
.wishlist-btn {
    /* position: absolute; */
    bottom: 18px;
    right: 18px;
    background: var(--heart_bg);
    border: none;
    border-radius: 50%;
    max-width: 36px;
    max-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.wishlist-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.modal-body {
    background-color: var(--card-color);
}

/* Darker background overlay */
.modal-backdrop.show {
    opacity: 0.8;
    background-color: rgba(0, 0, 0, 0.85);
}

/* Modal Box */
.wishlist-modal .modal-content {
    border-radius: 10px;
    overflow: hidden;
    border: none;
}

/* Modal Header (red top bar with cross) */
.wishlist-modal .modal-header {
    background: var(--primary-color);
    color: #fff;
    justify-content: center;
    position: relative;
    border-bottom: none;
    padding: 0px;
}

.wishlist-modal .close-icon {
    border: none;
    background: none;
    font-size: 22px;
    color: #fff;
    cursor: pointer;
}

/* Success text */
.wishlist-modal .success-text {
    color: #4CAF50;
    font-weight: 500;
    margin-top: 10px;
}

/* Product image background */
.wishlist-modal .image-box {
    background: var(--light-color);
    border-radius: 10px;
    padding: 20px;
    margin: 15px 0;
}

.wishlist-modal .image-box img {
    max-width: 200px;
    border-radius: 5px;
}

/* Product title */
.wishlist-modal .product-name {
    font-weight: 600;
    text-transform: uppercase;
    color: var(--heading-text);
}

.section-title .title {
    font-size: 48px;
    margin-bottom: 15px;
    margin-top: -10px;
    text-transform: capitalize;
}

.section-title p {
    font-size: 18px;
    line-height: 28px;
    /* max-width: 450px; */
    margin: 0 auto;
}

.sale-section {
    background-color: var(--light-color);
    padding: 80px 0;
}

.sale-content h2 {
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 2px;
}

.sale-content p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.sale-btn {
    background: #323539;
    color: #fff;
    padding: 12px 35px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    transition: all 0.3s ease;
}

.sale-btn:hover {
    background: #343a40;
    color: #fff;
}

.buy-btn {
    background: var(--white-color);
    color: var(--primary-color);
    padding: 12px 35px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.buy-btn:hover {
    background: var(--secondary-color);
    color: var(--white-color);
}

.sale-img img {
    max-width: 100%;
}

.price-box {
    text-align: left;
}

@media (max-width: 991.98px) {
    .product-old-price {
        margin-left: 0px;
    }
}

@media (max-width: 767.98px) {
    .sale-section {
        padding: 20px 0;
    }

    .sale-content {
        text-align: left;
    }

    .sale-content h2 {
        font-size: 30px;
    }

    .sale-content p {
        font-size: 16px;
    }

    .sale-img img {
        max-width: 220px;
        height: auto;
    }

    .sale-btn,
    .buy-btn {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
}

.wishlist-toast {
    background: rgba(40, 167, 69, 0.9);
    /* success green with opacity */
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 10px 15px;
    color: #fff;
    font-weight: 500;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    animation: slideInRight 0.5s ease;
}

.wishlist-toast .icon-wrap {
    background: #fff;
    color: #28a745;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 14px;
}

@keyframes slideInRight {
    from {
        transform: translateX(120%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 450px) {
    .img-holder {
        height: 120px;
    }

    .img-holder img {
        max-height: 70px;

    }
}

.dropdown-menu .dropdown-item {
    padding: 6px 0px;
    margin-bottom: 5px;
    border-radius: 5px;
}

.dropdown-menu .dropdown-item:last-child {
    margin-bottom: 0;
}

/* snowfall ====================================*/

.snowfall {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /* background: linear-gradient(#010518 0%, #080d37 80%, #27318a 100%); */
}

.snowflake {
    --size: 1vw;
    width: var(--size);
    height: var(--size);
    background: url("data:image/svg+xml,%3Csvg fill='%23fff' height='200px' width='200px' version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 298 298' xml:space='preserve' stroke='%23fff'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cg%3E%3Cpath d='M289.5,140.5h-24.606l11.031-11.03c2.93-2.929,2.93-7.678,0.001-10.606c-2.929-2.929-7.678-2.93-10.606-0.001 L243.681,140.5h-36.369l16.182-17.392c2.821-3.032,2.65-7.777-0.383-10.6c-1.243-1.156-2.775-1.802-4.345-1.961 c-0.952-0.047-21.495-0.003-21.495-0.003L221.315,86.5H251.5c4.143,0,7.5-3.357,7.5-7.5s-3.357-7.5-7.5-7.5h-15.186l17.69-17.69 c2.929-2.93,2.929-7.678,0-10.608c-2.93-2.928-7.844-2.928-10.774,0L225.167,61.1V45.5c0-4.143-3.357-7.5-7.5-7.5 c-4.143,0-7.5,3.357-7.5,7.5v30.601l-24.837,25.004l-0.415-22.645c-0.001-0.036,0.035-0.07,0.034-0.106 c-0.035-1.824-0.704-3.641-2.07-5.059c-2.873-2.982-7.778-3.07-10.761-0.194l-15.951,15.226V53.107l21.47-21.304 c2.929-2.93,3.012-7.678,0.083-10.607c-2.93-2.928-7.803-2.928-10.732,0l-10.821,10.696V7.5c0-4.143-3.357-7.5-7.5-7.5 c-4.143,0-7.5,3.357-7.5,7.5v24.393l-10.53-10.696c-2.93-2.928-7.594-2.928-10.524,0c-2.929,2.93-3.054,7.678-0.125,10.607 l21.179,21.304v35.421l-16.176-15.475c-3.009-2.847-7.67-2.718-10.52,0.289c-1.075,1.136-1.683,2.52-1.914,3.955 c-0.142,0.583-0.203,1.188-0.201,1.811l-0.088,21.229l-25.1-24.944V45.5c0-4.143-3.357-7.5-7.5-7.5s-7.5,3.357-7.5,7.5v14.894 L55.142,43.202c-2.93-2.928-7.594-2.928-10.524,0c-2.929,2.93-2.887,7.678,0.042,10.608L62.392,71.5H46.5 c-4.143,0-7.5,3.357-7.5,7.5s3.357,7.5,7.5,7.5h30.892l24.744,24.744l-23.057,0.831c-4.021,0.146-7.524,3.435-7.563,7.418 c-0.004,0.112-0.349,0.225-0.349,0.337c0,0.003,0,0.007,0,0.011c0,0.008,0.345,0.017,0.345,0.024 c0.045,1.875,0.955,3.736,2.395,5.158L89.748,140.5H55.025l-21.638-21.638c-2.93-2.928-7.678-2.928-10.607,0 c-2.929,2.93-2.929,7.678,0,10.607l11.03,11.03H8.5c-4.143,0-7.5,3.357-7.5,7.5s3.357,7.5,7.5,7.5h25.02L22.78,166.239 c-2.929,2.93-2.929,7.678,0,10.607c1.465,1.464,3.385,2.196,5.304,2.196c1.919,0,3.839-0.732,5.304-2.196L54.734,155.5h35.027 l-15.253,16.394c-2.821,3.032-2.65,7.777,0.383,10.6c1.444,1.344,3.277,2.009,5.106,2.009c0.034,0,0.068-0.005,0.103-0.005 c0.022,0,0.044,0.003,0.065,0.003c0.018,0,0.037,0,0.055,0l22.005-0.125L77.101,209.5H46.5c-4.143,0-7.5,3.357-7.5,7.5 s3.357,7.5,7.5,7.5h15.601l-17.399,17.399c-2.929,2.93-2.929,7.678,0,10.607c1.465,1.464,3.385,2.196,5.304,2.196 c1.919,0,3.672-0.732,5.137-2.196l17.025-17.191V250.5c0,4.143,3.357,7.5,7.5,7.5s7.5-3.357,7.5-7.5v-30.185l25.445-25.278 l0.977,24.39c0.148,4.046,3.517,7.306,7.532,7.225c1.364-0.027,2.844-0.465,4.312-1.543c1.063-0.781,15.734-15.812,15.734-15.812 v35.385l-20.971,21.137c-2.93,2.929-2.846,7.678,0.082,10.607c1.465,1.465,3.425,2.197,5.345,2.197 c1.919,0,3.693-0.732,5.157-2.196l10.387-10.532V290.5c0,4.143,3.357,7.5,7.5,7.5c4.143,0,7.5-3.357,7.5-7.5v-25.31l11.404,11.237 c1.465,1.464,3.468,2.196,5.387,2.196c1.919,0,3.881-0.732,5.345-2.196c2.929-2.93,2.783-7.678-0.146-10.607l-21.99-21.845v-35.7 c0,0,13.729,12.896,15.896,14.976c2.167,2.08,3.942,3.25,6.525,3.25c0.015,0,0.03,0,0.046,0c4.142,0,7.48-3.604,7.455-7.746 l-0.306-23.696l24.384,24.551V250.5c0,4.143,3.357,7.5,7.5,7.5c4.143,0,7.5-3.357,7.5-7.5v-15.891l18.064,17.897 c1.465,1.464,3.467,2.196,5.387,2.196c1.919,0,3.88-0.732,5.345-2.196c2.929-2.93,2.95-7.678,0.021-10.607L236.605,224.5H251.5 c4.143,0,7.5-3.357,7.5-7.5s-3.357-7.5-7.5-7.5h-29.894l-25.742-25.742l23.059-0.831c0.082-0.003,0.162-0.016,0.243-0.021 c0.03-0.002,0.06-0.005,0.09-0.008c3.977-0.319,7.037-3.709,6.892-7.736c-0.087-2.424-1.32-4.531-3.155-5.837L209.138,155.5h34.835 l21.345,21.346c1.465,1.465,3.384,2.197,5.304,2.197c1.919,0,3.839-0.732,5.303-2.196c2.93-2.929,2.93-7.678,0.001-10.606 l-10.74-10.74H289.5c4.143,0,7.5-3.357,7.5-7.5S293.643,140.5,289.5,140.5z M200.795,125.483L186.823,140.5h-19.507l15.002-15.002 L200.795,125.483z M170.21,95.784l0.356,20.002l-14.399,14.315V109.16L170.21,95.784z M127.263,95.865l13.904,13.323v20.205 l-13.925-14.008L127.263,95.865z M96.862,126.444l19.762-0.712l14.768,14.768h-20.299L96.862,126.444z M97.246,169.477 L110.25,155.5h20.851l-13.841,13.841L97.246,169.477z M127.863,201.599l-0.854-21.042l14.158-14.241v21.604L127.863,201.599z M170.819,201.264l-14.652-13.478v-22.179l14.442,14.359L170.819,201.264z M200.991,168.564l-19.614,0.706l-13.77-13.77h20.292 L200.991,168.564z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: cover;
    background-size: cover;
    position: absolute;
    top: -5vh;
}

@keyframes snowfall {
    0% {
        transform: translate3d(var(--left-ini), 0, 0);
    }

    100% {
        transform: translate3d(var(--left-end), 110vh, 0);
    }
}

.snowflake:nth-child(1) {
    --size: 0.6vw;
    --left-ini: -9vw;
    --left-end: 3vw;
    left: 52vw;
    animation: snowfall 7s linear infinite;
    animation-delay: -7s;
}

.snowflake:nth-child(2) {
    --size: 1.2vw;
    --left-ini: -1vw;
    --left-end: -3vw;
    left: 36vw;
    animation: snowfall 6s linear infinite;
    animation-delay: -4s;
}

.snowflake:nth-child(3) {
    --size: 0.6vw;
    --left-ini: -3vw;
    --left-end: -3vw;
    left: 44vw;
    animation: snowfall 7s linear infinite;
    animation-delay: -6s;
}

.snowflake:nth-child(4) {
    --size: 1.2vw;
    --left-ini: -9vw;
    --left-end: -3vw;
    left: 15vw;
    animation: snowfall 8s linear infinite;
    animation-delay: -8s;
}

.snowflake:nth-child(5) {
    --size: 0.6vw;
    --left-ini: -6vw;
    --left-end: 1vw;
    left: 77vw;
    animation: snowfall 7s linear infinite;
    animation-delay: -9s;
}

.snowflake:nth-child(6) {
    --size: 0.6vw;
    --left-ini: -2vw;
    --left-end: 8vw;
    left: 78vw;
    animation: snowfall 6s linear infinite;
    animation-delay: -8s;
}

.snowflake:nth-child(7) {
    --size: 1.2vw;
    --left-ini: -8vw;
    --left-end: 5vw;
    left: 80vw;
    animation: snowfall 8s linear infinite;
    animation-delay: -10s;
}

.snowflake:nth-child(8) {
    --size: 0.6vw;
    --left-ini: -4vw;
    --left-end: -4vw;
    left: 64vw;
    animation: snowfall 14s linear infinite;
    animation-delay: -5s;
}

.snowflake:nth-child(9) {
    --size: 0.9vw;
    --left-ini: -9vw;
    --left-end: 3vw;
    left: 43vw;
    animation: snowfall 7s linear infinite;
    animation-delay: -8s;
}

.snowflake:nth-child(10) {
    --size: 1.2vw;
    --left-ini: -1vw;
    --left-end: 7vw;
    left: 76vw;
    animation: snowfall 8s linear infinite;
    animation-delay: -4s;
}

.snowflake:nth-child(11) {
    --size: 1.2vw;
    --left-ini: -2vw;
    --left-end: 7vw;
    left: 86vw;
    animation: snowfall 12s linear infinite;
    animation-delay: -4s;
}

.snowflake:nth-child(12) {
    --size: 0.3vw;
    --left-ini: -3vw;
    --left-end: -9vw;
    left: 22vw;
    animation: snowfall 14s linear infinite;
    animation-delay: -3s;
}

.snowflake:nth-child(13) {
    --size: 0.6vw;
    --left-ini: -5vw;
    --left-end: -3vw;
    left: 81vw;
    animation: snowfall 11s linear infinite;
    animation-delay: -9s;
}

.snowflake:nth-child(14) {
    --size: 0.3vw;
    --left-ini: -5vw;
    --left-end: 10vw;
    left: 97vw;
    animation: snowfall 10s linear infinite;
    animation-delay: -8s;
}

.snowflake:nth-child(15) {
    --size: 0.9vw;
    --left-ini: -8vw;
    --left-end: 3vw;
    left: 20vw;
    animation: snowfall 11s linear infinite;
    animation-delay: -10s;
}

.snowflake:nth-child(16) {
    --size: 0.3vw;
    --left-ini: -1vw;
    --left-end: -1vw;
    left: 100vw;
    animation: snowfall 7s linear infinite;
    animation-delay: -4s;
}

.snowflake:nth-child(17) {
    --size: 0.3vw;
    --left-ini: -3vw;
    --left-end: 3vw;
    left: 99vw;
    animation: snowfall 7s linear infinite;
    animation-delay: -3s;
}

.snowflake:nth-child(18) {
    --size: 1.2vw;
    --left-ini: -1vw;
    --left-end: 6vw;
    left: 57vw;
    animation: snowfall 15s linear infinite;
    animation-delay: -2s;
}

.snowflake:nth-child(19) {
    --size: 1.2vw;
    --left-ini: -8vw;
    --left-end: 7vw;
    left: 81vw;
    animation: snowfall 12s linear infinite;
    animation-delay: -6s;
}

.snowflake:nth-child(20) {
    --size: 0.6vw;
    --left-ini: -5vw;
    --left-end: 4vw;
    left: 70vw;
    animation: snowfall 11s linear infinite;
    animation-delay: -10s;
}

.snowflake:nth-child(21) {
    --size: 0.3vw;
    --left-ini: -5vw;
    --left-end: 9vw;
    left: 63vw;
    animation: snowfall 13s linear infinite;
    animation-delay: -8s;
}

.snowflake:nth-child(22) {
    --size: 0.3vw;
    --left-ini: -7vw;
    --left-end: 2vw;
    left: 28vw;
    animation: snowfall 10s linear infinite;
    animation-delay: -8s;
}

.snowflake:nth-child(23) {
    --size: 1.2vw;
    --left-ini: -6vw;
    --left-end: -3vw;
    left: 32vw;
    animation: snowfall 14s linear infinite;
    animation-delay: -6s;
}

.snowflake:nth-child(24) {
    --size: 1.5vw;
    --left-ini: -3vw;
    --left-end: 2vw;
    left: 68vw;
    animation: snowfall 13s linear infinite;
    animation-delay: -9s;
}

.snowflake:nth-child(25) {
    --size: 0.3vw;
    --left-ini: -2vw;
    --left-end: 10vw;
    left: 36vw;
    animation: snowfall 14s linear infinite;
    animation-delay: -5s;
}

.snowflake:nth-child(26) {
    --size: 1.5vw;
    --left-ini: 0vw;
    --left-end: 4vw;
    left: 95vw;
    animation: snowfall 9s linear infinite;
    animation-delay: -6s;
}

.snowflake:nth-child(27) {
    --size: 0.3vw;
    --left-ini: -4vw;
    --left-end: -9vw;
    left: 18vw;
    animation: snowfall 14s linear infinite;
    animation-delay: -8s;
}

.snowflake:nth-child(28) {
    --size: 0.3vw;
    --left-ini: 0vw;
    --left-end: 10vw;
    left: 83vw;
    animation: snowfall 7s linear infinite;
    animation-delay: -5s;
}

.snowflake:nth-child(29) {
    --size: 0.3vw;
    --left-ini: -8vw;
    --left-end: -2vw;
    left: 99vw;
    animation: snowfall 7s linear infinite;
    animation-delay: -10s;
}

.snowflake:nth-child(30) {
    --size: 1.5vw;
    --left-ini: 0vw;
    --left-end: -3vw;
    left: 97vw;
    animation: snowfall 11s linear infinite;
    animation-delay: -4s;
}

.snowflake:nth-child(31) {
    --size: 0.3vw;
    --left-ini: -5vw;
    --left-end: 2vw;
    left: 29vw;
    animation: snowfall 13s linear infinite;
    animation-delay: -1s;
}

.snowflake:nth-child(32) {
    --size: 0.9vw;
    --left-ini: -2vw;
    --left-end: -9vw;
    left: 44vw;
    animation: snowfall 11s linear infinite;
    animation-delay: -9s;
}

.snowflake:nth-child(33) {
    --size: 1.2vw;
    --left-ini: -7vw;
    --left-end: 7vw;
    left: 89vw;
    animation: snowfall 8s linear infinite;
    animation-delay: -1s;
}

.snowflake:nth-child(34) {
    --size: 0.3vw;
    --left-ini: -6vw;
    --left-end: -4vw;
    left: 72vw;
    animation: snowfall 8s linear infinite;
    animation-delay: -5s;
}

.snowflake:nth-child(35) {
    --size: 0.3vw;
    --left-ini: -7vw;
    --left-end: 0vw;
    left: 26vw;
    animation: snowfall 6s linear infinite;
    animation-delay: -8s;
}

.snowflake:nth-child(36) {
    --size: 0.6vw;
    --left-ini: -8vw;
    --left-end: -5vw;
    left: 73vw;
    animation: snowfall 7s linear infinite;
    animation-delay: -1s;
}

.snowflake:nth-child(37) {
    --size: 0.9vw;
    --left-ini: -1vw;
    --left-end: 7vw;
    left: 32vw;
    animation: snowfall 13s linear infinite;
    animation-delay: -7s;
}

.snowflake:nth-child(38) {
    --size: 1.5vw;
    --left-ini: -2vw;
    --left-end: -7vw;
    left: 2vw;
    animation: snowfall 9s linear infinite;
    animation-delay: -1s;
}

.snowflake:nth-child(39) {
    --size: 1.5vw;
    --left-ini: 0vw;
    --left-end: 8vw;
    left: 56vw;
    animation: snowfall 14s linear infinite;
    animation-delay: -10s;
}

.snowflake:nth-child(40) {
    --size: 1.2vw;
    --left-ini: -1vw;
    --left-end: 3vw;
    left: 45vw;
    animation: snowfall 15s linear infinite;
    animation-delay: -5s;
}

.snowflake:nth-child(41) {
    --size: 0.6vw;
    --left-ini: -1vw;
    --left-end: -6vw;
    left: 90vw;
    animation: snowfall 8s linear infinite;
    animation-delay: -6s;
}

.snowflake:nth-child(42) {
    --size: 0.6vw;
    --left-ini: -1vw;
    --left-end: -3vw;
    left: 100vw;
    animation: snowfall 6s linear infinite;
    animation-delay: -6s;
}

.snowflake:nth-child(43) {
    --size: 0.9vw;
    --left-ini: -7vw;
    --left-end: 10vw;
    left: 15vw;
    animation: snowfall 6s linear infinite;
    animation-delay: -8s;
}

.snowflake:nth-child(44) {
    --size: 0.3vw;
    --left-ini: -9vw;
    --left-end: 4vw;
    left: 100vw;
    animation: snowfall 15s linear infinite;
    animation-delay: -7s;
}

.snowflake:nth-child(45) {
    --size: 1.5vw;
    --left-ini: -2vw;
    --left-end: 1vw;
    left: 26vw;
    animation: snowfall 6s linear infinite;
    animation-delay: -6s;
}

.snowflake:nth-child(46) {
    --size: 0.6vw;
    --left-ini: -6vw;
    --left-end: 3vw;
    left: 2vw;
    animation: snowfall 12s linear infinite;
    animation-delay: -9s;
}

.snowflake:nth-child(47) {
    --size: 1.5vw;
    --left-ini: -6vw;
    --left-end: 8vw;
    left: 2vw;
    animation: snowfall 7s linear infinite;
    animation-delay: -9s;
}

.snowflake:nth-child(48) {
    --size: 0.3vw;
    --left-ini: -3vw;
    --left-end: 3vw;
    left: 45vw;
    animation: snowfall 8s linear infinite;
    animation-delay: -3s;
}

.snowflake:nth-child(49) {
    --size: 1.2vw;
    --left-ini: -8vw;
    --left-end: 3vw;
    left: 51vw;
    animation: snowfall 10s linear infinite;
    animation-delay: -4s;
}

.snowflake:nth-child(50) {
    --size: 0.9vw;
    --left-ini: -7vw;
    --left-end: -5vw;
    left: 80vw;
    animation: snowfall 6s linear infinite;
    animation-delay: -9s;
}

/* added small blur every 5 snowflakes*/
.snowflake:nth-child(5n) {
    filter: blur(1px);
}

.santa-image {
    animation: scaleUpDown 3s ease-in-out infinite;
}

@keyframes scaleUpDown {

    0%,
    100% {
        transform: scale(0.9);
        /* Starting and ending position */
    }

    50% {
        transform: scale(0.8);
        /* Move up */
    }
}

.bell-icon {

    animation: tan-tan 0.3s infinite ease-in-out;
}

@keyframes tan-tan {
    0% {
        transform: translateZ(-10px) rotate(-5deg);
    }

    25% {
        transform: translateZ(0) rotate(0deg);
    }

    50% {
        transform: translateZ(10px) rotate(5deg);
    }

    75% {
        transform: translateZ(0) rotate(0deg);
    }

    100% {
        transform: translateZ(-10px) rotate(-5deg);
    }
}

.cta-background {
    background: url(../../assets/images/banner_img/01-cta-background.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
}

.footer-background {
    background: url(../../assets/images/banner_img/footer-bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
}

.christmas-sale {
    background: url('../../assets/images/banner_img/01-cta-background.webp') center/cover no-repeat;
    overflow: hidden;
}

/* Snowflake container */
.snowflakes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.snowflakes span {
    position: absolute;
    top: -10%;
    color: #fff;
    font-size: 1.2rem;
    animation: snowfall 10s linear infinite;
    opacity: 0.8;
}

/* Keyframes for falling snow */
@keyframes snowfall {
    0% {
        transform: translateY(-10%) rotate(0deg);
    }

    100% {
        transform: translateY(110vh) rotate(360deg);
    }
}

/* Random positions & delays for variety */
.snowflakes span:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    font-size: 1rem;
}

.snowflakes span:nth-child(2) {
    left: 20%;
    animation-delay: 2s;
    font-size: 1.4rem;
}

.snowflakes span:nth-child(3) {
    left: 30%;
    animation-delay: 4s;
    font-size: 1.2rem;
}

.snowflakes span:nth-child(4) {
    left: 40%;
    animation-delay: 1s;
    font-size: 1.5rem;
}

.snowflakes span:nth-child(5) {
    left: 55%;
    animation-delay: 3s;
    font-size: 1.1rem;
}

.snowflakes span:nth-child(6) {
    left: 65%;
    animation-delay: 5s;
    font-size: 1.6rem;
}

.snowflakes span:nth-child(7) {
    left: 80%;
    animation-delay: 2.5s;
    font-size: 1.3rem;
}

.snowflakes span:nth-child(8) {
    left: 90%;
    animation-delay: 4.5s;
    font-size: 1.4rem;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--para-text);
}

.sale-card {
    background: rgba(255, 255, 255, 0.08);
    width: 100%;
    max-width: 1100px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(2, 6, 23, 0.7);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

/* decorative snow */
.sale-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.03) 0 2px, transparent 3px),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.02) 0 2px, transparent 3px);
    pointer-events: none;
    mix-blend-mode: screen;
}

.hero-left {
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.kicker {
    display: inline-block;
    background: linear-gradient(90deg, var(--gold));
    color: #1b1b1b;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.6px;
    box-shadow: 0 6px 18px rgba(211, 142, 34, 0.15);
    font-size: 0.9rem;
}

p.lead {
    color: #e5e7eb;
    margin-bottom: 0.5rem;
}

.price-pill {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: rgba(255, 255, 255, 0.18);
    padding: .45rem .7rem;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.btn-primary-cta {
    background: linear-gradient(90deg, var(--primary-color));
    border: none;
    /* padding: .75rem 1.25rem; */
    border-radius: 5px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(198, 40, 40, 0.25);
}

.secondary-link {
    color: #fff;
    opacity: 0.85;
    text-decoration: none;
    margin-left: 0.8rem;
}

/* right column image */
.hero-right {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 40%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    min-height: 360px;
}

.hero-image {
    max-width: 460px;
    width: 100%;
    transform: translateY(6px);
    filter: drop-shadow(0 22px 40px rgba(1, 8, 20, 0.7));
    transition: transform .6s cubic-bezier(.2, .9, .25, 1);
}

.hero-image:hover {
    transform: translateY(-6px) scale(1.02);
}

/* badge cluster */
.badges {
    display: flex;
    gap: .5rem;
    margin-top: .75rem;
    flex-wrap: wrap;
}

.badge-offer {
    background: linear-gradient(90deg, #fff8ed, #fff2d1);
    color: #4b2b00;
    font-weight: 700;
    padding: .4rem .6rem;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    font-size: .85rem;
}

/* countdown box */
.countdown {
    display: inline-grid;
    grid-auto-flow: column;
    gap: .5rem;
    align-items: center;
    margin-top: .6rem;
}

.countdown .unit {
    background: rgba(255, 255, 255, 0.18);
    padding: .55rem .6rem;
    text-align: center;
    border-radius: 5px;
    min-width: 56px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.small-note {
    font-size: .86rem;
    opacity: .85;
}

.hero-right {
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
}

.scooter-track {
    position: relative;
}

.hero-image {
    width: 100%;
    animation: smooth-drive 2s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes smooth-drive {
    0% {
        transform: translateX(-35px);
    }

    50% {
        transform: translateX(35px);
    }

    100% {
        transform: translateX(-35px);
    }
}

    .gift-section {
      background: var(--dark-bg);           
    }

    .gift-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 1rem;
      padding: 10px 10px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .gift-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    }

    .gift-icon {
      font-size: 40px;
      color: var(--gold);
    }

    .gift-card h5 {
      margin-bottom: 12px;
      font-weight: 600;
      color: var(--white-text);
    }

    .gift-card p {
      color: var(--white-text);
      font-size: 0.95rem;
    }

    .santa-section {
      background: var(--dark-bg);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    .santa-section h2 {
      color: var(--gold);
    }

    .santa-section p {
      font-size: 1.2rem;
      color: var(--white-text);
    }

    .timer-box {
      background: rgba(255, 255, 255, 0.1);
      border: 2px solid rgba(255, 255, 255, 0.2);
      border-radius: 1rem;
      padding: 30px 20px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .timer-box:hover {
      transform: translateY(-6px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    }

    .timer-value {
      font-size: 3rem;
      font-weight: 700;
      color: var(--gold);
      margin-bottom: 0.5rem;
    }

    .timer-label {
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--white-text);
    }

    .snowflake {
      position: absolute;
      color: #fff;
      user-select: none;
      pointer-events: none;
      font-size: 1em;
      animation: fall 10s linear infinite;
    }

    @keyframes fall {
      0% {transform: translateY(-10vh) rotate(0deg);}
      100% {transform: translateY(110vh) rotate(360deg);}
    }


.splide__arrow {
    background: var(--primary-color);
    opacity: 1;
}

.splide__arrow:hover{
    background: var(--secondary-color);
    opacity: 1;
    transition: 0.3s ease-in;
}

.splide__arrow svg {
    fill: var(--white-color);
}

.splide__pagination .splide__pagination__page {
  background-color: var(--primary-color);  
  opacity: 0.4;                         
  transition: opacity 0.3s ease;
}

.splide__pagination .splide__pagination__page.is-active {
  background-color: var(--primary-color);    
  opacity: 1;                           
}

/* Hide by default */
.splide__pagination {
  display: none;
}

/* Show only on small devices */
@media (max-width: 576px) {
  .splide__pagination {
    display: flex;                
    justify-content: center;
    margin-top: 1rem;
  }

  /* Dot colors */
  .splide__pagination__page {
    background-color: var(--primary-color);
    opacity: 0.4;
    transition: opacity 0.3s ease;
  }

  .splide__pagination__page.is-active {
    opacity: 1;
  }
  .splide__arrow--prev {
    left: 1em;
}

.splide__arrow--next {
    right: 1em;
}
}

@media (max-width: 576px) {
.splide__arrow--prev {
    left: 0.3em!important;
}

.splide__arrow--next {
    right: 0.3em!important;
}
}

.splide__arrow--prev {
    left: -1em;
}

.splide__arrow--next {
    right: -1em;
}

.splide__arrow {
  width: 3rem;            
  height: 3rem;              
  background-color: var(--primary-color);   
  border-radius: 50%;      
  box-shadow: 0 4px 8px rgba(0,0,0,0.25); 
  transition: all 0.3s ease;
}

.splide__arrow:hover,
.splide__arrow:focus {
  background-color: var(--secondary-color);
  color: #fff;             
  box-shadow: 0 6px 12px rgba(0,0,0,0.35);
}

@media (max-width: 991px) {
.heading-size{
    font-size: 29px!important;
}
.heading-size-2{
    font-size: 18px!important;
}
}

  .btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
      color: var(--white-text)!important;
      background-color: var(--secondary-color);
      border-color: var(--secondary-color);
      opacity: 1!important;

  }

  
a[aria-label="heart-icon"]:hover, a[aria-label="heart-icon"].active {
    color: var(--primary-color);
    transition: all 0.5s;
}
.wishlist-active {
    fill: #ff4d6d; /* heart turns red */
    transition: fill 0.3s;
}