/********** Template CSS **********/

/* @font-face definitions */
@font-face {
    font-family: "URW Geometric";
    src: url("../fonts/URWGeometricThin.otf") format("opentype");
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: "URW Geometric";
    src: url("../fonts/URWGeometricExtraLight.otf") format("opentype");
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: "URW Geometric";
    src: url("../fonts/URWGeometricLight.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "URW Geometric";
    src: url("../fonts/URWGeometricRegular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "URW Geometric";
    src: url("../fonts/URWGeometricMedium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "URW Geometric";
    src: url("../fonts/URWGeometricSemiBold.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "URW Geometric";
    src: url("../fonts/URWGeometricBold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "URW Geometric";
    src: url("../fonts/URWGeometricExtraBold.otf") format("opentype");
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: "URW Geometric";
    src: url("../fonts/URWGeometricBlack.otf") format("opentype");
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: "URW Geometric";
    src: url("../fonts/URWGeometricHeavy.otf") format("opentype");
    font-weight: 950;
    font-style: normal;
}
@font-face {
  font-family: "inter";
  src: url("../fonts/Inter_18pt-Medium.ttf");
}
:root {
  --primaryText: #090637;
  --primary: #1b3c63;
  --secondary: #0a5d3b;
  --light: #f2f1e8;
  --dark: #000000;
  --green: rgb(0, 98, 40);
  --bg-default: #f1f6ff;
  --font-family: "URW Geometric", "Helvetica Neue", Arial, sans-serif;
}

body{
  font-family: "URW Geometric", "Helvetica Neue", Arial, sans-serif !important;
}
h1{ font-weight:700; }
em, i { font-style: italic; }

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6{
  font-family: "URW Geometric", "Helvetica Neue", Arial, sans-serif !important;
}

@media (min-width: 1400px) {
    .container {
        max-width: 85% !important;
    }
}


.nav {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 1000;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 30px;
  align-items: center;
  padding: 20px;
  height: 100px;
  background-color: var(--primary);
}

.nav_home_page{
  background-color: var(--primary);
  margin-top:39px ; 
  opacity: 0;
  transition:
        transform .8s cubic-bezier(.22,1,.36,1),
        opacity .8s ease,
        margin-top .5s ease,
        background-color .5s ease;
  transform: translate(0, -90px);    
}

.nav_animation_mini{
  animation:nav_fade 1s forwards;
}

.nav_animation{
  animation:nav_fade 1s 5s forwards;
}

@keyframes nav_fade {
  form{
    transform: translate(0 , -90px);
    opacity: 0;
  }
  to{
    transform: translate(0 , 0px);
    opacity: 1;
  }
}

.nav .logo img {
  width: 125px;
}
.nav .flex_between{
  display: flex;
  justify-content: space-between; 
  align-items: center;
  width: 95%;
}
.nav .links {
  display: flex;
  align-items: center;
  gap:60px;
}

.nav .links a {
  position: relative;
  font-weight: 500;
  color: var(--primaryText);
  text-decoration: none;
  color: white;
  z-index: 9999;
}

.nav .links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background-color: var(--primaryText);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav .links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav .links .search {
  position: relative;
}

.nav .links .search input {
  outline: none;
  border: 1px solid #dce3f2;
  background-color: #f9fafb;
  border-radius: 500px;
  padding: 16px 50px 16px 32px;
}

.nav .links .search .fa-search {
  position: absolute;
  top: 19px;
  font-size: 20px;
  right: 20px;
}

.nav .icon-menu {
  display: none;
}

.nav .icon-menu svg {
  display: flex;
  cursor: pointer;
  background-color: var(--primary);
  border-radius: 100%;
  width: 50px;
  height: 50px;
  padding: 10px;
  color: white;
  transition: all 0.3s;
  font-weight: 700;
}

.nav .icon-menu svg:hover {
  background-color: #0e0591;
  transform: scale(1.05);
}

.nav .icon-menu svg:active {
  transform: scale(0.99);
}
.cart {
  position: relative;
}

.cart i {
  color: white;
  font-size: 20px;
}

.cart .numbe {
  top: -21px;
  right: -11px;
  font-size: 11px;
  background: red;
  color: white;
  padding: 2px 6px !important;
  margin: 0;
  border-radius: 100%;
  position: absolute;
}
.nav .user {
  cursor: pointer;
  position: relative;
}

.nav .user .userOptionn {
  display: none;
  position: absolute;
  background: white;
  flex-direction: column;
  border: 1px solid var(--primary);
  padding: 9px 19px;
  border-radius: 10px;
  gap: 10px;
  left: -35px;
  top: 38px;
  z-index: 100;
}
.logo{
    position: relative ;
    margin-right: 120px;
}
.logo a .logo_logo{
    position: absolute;
    top: -42px;
    left: -1px;
    width: 120px !important;

    opacity: 1;
    transform: scale(1);
    transition: .5s ease;
}

.logo a .petflakes_logo{
    position: absolute;
    top: -84px;
    left: -43px;
    width: 230px !important;

    opacity: 0;
    visibility: hidden;

    transform: scaleX(0);
    transform-origin: center;

    transition:
        transform 1s ease,
        opacity 1s ease,
        visibility 0s .5s;
}
.logo.change-logo .logo_logo{
    opacity: 0;
    transform: scale(.2);
}

.logo.change-logo .petflakes_logo{
    opacity: 1;
    visibility: visible;

    transform: scaleX(1);

    transition:
        transform 1s ease,
        opacity 1s ease;
}

@media screen and (max-width:568px) {
  .logo a .logo_logo{
    left: -50px !important;
  }

  .logo a .petflakes_logo{
    left: -61px !important;
  }
}
.nav .links {
    gap: 70px;
}
.nav .links a{
    font-size: 17px;
}

.nav .user .userOptionn.show {
  display: flex;
}
.logo-over-1200{
  display: none;
}

@media screen and (max-width:1403px) {
  .nav .links{
    gap: 60px !important;
  }
}
@media screen and (max-width: 1200px) {
  .nav{
    overflow-y:visible;
    height:100px;
    justify-content: space-between;
  }
  .logo-over-1200{
    margin-left: 40px;
    display: block;
  }
  .nav .links {
    opacity: 0;
    visibility: hidden;
    position: static;
    flex-direction: column;
    top: 101px;
    gap: 14px !important;
    background-color:var(--primary);
    left: 0;
    width: 100%;
    padding: 0px;
    height: 0;
    transition: all 0.3s;
  }
  .nav .hidden_image{
    display: none;
  }
  .nav .flex_between{
        position:absolute;
        top:100px;
        left:0;
        width:100%;
        background:var(--primary);

        display:flex;
        flex-direction:column;
    }
  .cart {
    margin-top: 10px;
  }

  .nav .icon-menu {
    display: block;
  }
  .logo-under-1200{
    display: none;
  }
}

@media screen and (max-width:576px) {
    .nav .logo .logo_logo{
        left: -50px !important;
        width: 80px !important;
        top: -25px;
    }

    .nav_home_page{
      margin-top: 28px;
    }

    .nav .logo .petflakes_logo{
        top: -60px;
        margin-left: 5px;
        width: 170px !important;
    }
}

.form-control:focus {
  border-color: var(--bg-default);
  box-shadow: 0 0 0 0.25rem var(--bg-default);
}
.list-group-item {
  background-color: transparent !important;
}
.hidden {
  display: none !important;
}
.border-click:active,
.border-click:focus {
  border: 1px solid var(--primary) !important;
}
body {
  overflow-x: hidden;
}
.bg-default {
  background-color: var(--bg-default);
}
.bg-transparent {
  background-color: transparent !important;
}
.bg-green-2 {
  background-color: #28602f !important;
}
.bg-white {
  background-color: #fff !important;
}
.current-color {
  color: currentColor !important;
}
.border-bottom {
  border-bottom: 1px solid var(--light);
}
.cover {
  object-position: cover !important;
}

.box {
  background: rgba(0, 0, 0, 0.7);
  font-family: "URW Geometric", sans-serif;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.box img {
  width: 100%;
  height: auto;
  transition: all 0.8s ease 0s;
}
.box:hover img {
  opacity: 0.7;
  transform: scale(1.8);
  transform-origin: left center;
  filter: grayscale(100%);
}
.box .box-content {
  opacity: 0;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  transition: all 0.3s ease 0s;
}
.box:hover .box-content {
  opacity: 1;
}
.box .title {
  color: #fff;
  font-size: 15px;
  text-decoration: underline;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: auto;
}
.box .post {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 3px;
  text-transform: capitalize;
}
.box .icon {
  padding: 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  position: absolute;
  left: 20px;
  bottom: 6px;
  transition: all 0.3s ease 0.1s;
}
.box:hover .icon {
  opacity: 1;
}
.box .icon li {
  margin: 7px 0;
}
.box .icon li a {
  color: #fff;
  font-size: 16px;
  transition: all 0.3s;
}
.box .icon li a:hover {
  color: #fff;
}
@media only screen and (max-width: 990px) {
  .box {
    margin: 0 0 30px;
  }
}

.card {
  border-color: #efefef;
}

.form-control:disabled,
.form-control:read-only {
  background-color: #fff !important;
}

/* Accordion  */
.accordion .accordion-item {
  border-color: var(--dark);
  padding-bottom: 5px !important;
}
.accordion .accordion-item {
  border-color: #6e6e6e;
  padding-bottom: 5px !important;
}
.accordion .accordion-button::after {
  content: "\f067";
  font-family: "URW Geometric";
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
  transition: all 0.5s ease 0s;
  background-image: none !important;
}

.accordion .accordion-button:not(.collapsed)::after {
  content: "\f00d" !important;
}
.accordion .accordion-button {
  color: var(--dark) !important;
  font-size: 1.2rem !important;
  font-weight: 600 !important;
}
.accordion .accordion-button:focus {
  border-color: none;
  box-shadow: none;
}
.accordion .accordion-button:not(.collapsed) {
  background-color: transparent;
}
/* Search NavBar  */
.search-form {
  -webkit-appearance: none;
  display: block;
  width: 100%;
  margin: 0;
  padding: 6px 12px 6px 10px;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 400;
  background-color: #f8f8f8;
  border: none;
  border-radius: 0;
}
.search-form input {
  border: none;
  outline: none;
  padding: 0;
  background-color: transparent;
}
.search-form i {
  margin-right: 0.5rem;
  color: var(--primary);
}
.fw-medium {
  font-weight: 600 !important;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}
/*** Text ***/
.text-primary {
  color: var(--primary) !important;
}
.text-secondary {
  color: var(--secondary) !important;
}
.text-dark {
  color: var(--dark) !important;
}
.text-extra-small {
  font-size: 0.9rem !important;
}
.text-justify {
  text-align: justify !important;
}
.font-600 {
  font-weight: 600 !important;
}
.inherit {
  font-family: inherit;
}
.capitalise {
  text-transform: capitalize !important;
}
/*** Button ***/
.btn {
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.5s;
}
.btn.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  position: relative;
  transform: translateY(0);
  font-weight: 600;
}
.btn.btn-primary.back-to-top {
  position: fixed;
}

.btn.btn-primary:hover {
  background-color: var(--secondary);
  /* background: linear-gradient(to right,var(--primary) , var(--secondary)); */
  transform: translateY(-5px);
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.2);
}
/* .btn.btn-primary.back-to-top:hover{
    transform: none;
  } */

.btn.btn-primary,
.btn.btn-secondary {
  color: #ffffff;
}

@media (max-width: 991.98px) {
  .btn.btn-primary {
    font-size: 0.9rem !important;
    text-transform: capitalize !important;
  }
}
.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 2px;
}

/*** Navbar ***/
.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "URW Geometric";
  font-weight: 600;
  vertical-align: middle;
  margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
  margin-right: 35px;
  letter-spacing: 0.7px;
  padding: 25px 0;
  font-weight: 300 !important;
  font-family: var(--font-family);
  color: #ffffff;
  text-transform: capitalize;
  font-size: 17px !important;
  outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (max-width: 991.98px) {
  .top-bar {
    border-bottom: none !important;
  }
  .navbar-brand.hidden {
    display: block !important;
  }
  .navbar-toggler {
    margin-bottom: 10px;
    border: none;
    color: #000000;
  }
  .navbar-light .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar-light .navbar-nav {
    border-top: 1px solid #eeeeee;
  }

  .carousel-caption .container-fluid {
    padding: 10px 20px 10px 20px !important;
    text-align: left !important;
  }
  .carousel-caption h1 {
    font-size: 1.5rem !important;
    padding: 10px 0px !important;
  }
  .carousel-caption h5 {
    font-size: 1.1rem !important;
  }

  .carousel-caption-2 .container-fluid {
    padding: 15px !important;
    text-align: left !important;
  }
  .carousel-caption-2 h1 {
    font-size: 1.5rem !important;
    text-align: left !important;
  }
  .carousel-caption-2 h5 {
    font-size: 0.9rem !important;
    text-align: left !important;
    margin-bottom: 15px !important;
  }
}
.navbar-light {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 25px 20px -25px;
}
.navbar-light .navbar-brand,
.navbar-light a.btn {
  height: 75px;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--dark);
  font-weight: 500;
}

.navbar-light.sticky-top {
  top: -100px;
  transition: 0.5s;
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/*** Header ***/
.carousel-caption,
.carousel-caption-2 {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: rgba(0, 0, 0, .7); */
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 190px;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}

.page-header {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-header-inner {
  background: rgba(0, 0, 0, 0.7);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

/*** Features ***/
.features .feature-item img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 7px solid var(--primary);
  border-style: double;
  margin-bottom: 15px !important;
}
@media only screen and (max-width: 768px) {
  .features .feature-item img {
    width: 150px;
    height: 150px;
  }
}
/*** Products ***/
.owl-carousel .owl-item img {
  object-fit: contain !important;
}
@media only screen and (max-width: 768px) {
  .quality .left,
  .vision .left,
  .research .left {
    min-height: 220px !important;
    margin-left: 10px;
    order: 2;
  }
  .history .right,
  .mission .right,
  .research .right {
    min-height: 220px !important;
    margin-right: 12px;
    width: 97% !important;
  }
}
/*** Facts ***/
.fact {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../img/carousel-bg-1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/*** Service ***/
.service .nav .nav-link {
  background: var(--light);
  transition: 0.5s;
}

.service .nav .nav-link.active {
  background: var(--primary);
}

.service .nav .nav-link.active h4 {
  color: #ffffff !important;
}

/*** Education ***/
.education-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  bottom: 0;
  background-color: var(--bg-default);
}

/*** Booking ***/
.booking {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../img/carousel-bg-2.jpg) center center no-repeat;
  background-size: cover;
}

.bootstrap-datetimepicker-widget.bottom {
  top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
  border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
  font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
  padding: 10px;
  border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
  background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
  border-bottom-color: var(--primary);
}

/*** Team ***/
.team-item .team-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  transform: scale(0);
  transition: 0.5s;
}

.team-item:hover .team-overlay {
  transform: scale(1);
}

.team-item .team-overlay .btn {
  color: var(--primary);
  background: #ffffff;
}

.team-item .team-overlay .btn:hover {
  color: #ffffff;
  background: var(--secondary);
}

/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-text *,
.testimonial-carousel-1 .owl-item.center .testimonial-text *,
.testimonial-carousel-2 .owl-item.center .testimonial-text *,
.testimonial-carousel-4 .owl-item.center .testimonial-text *,
.testimonial-carousel-5 .owl-item.center .testimonial-text *,
.testimonial-carousel-6 .owl-item.center .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel-1 .owl-item .testimonial-text,
.testimonial-carousel-2 .owl-item .testimonial-text,
.testimonial-carousel-4 .owl-item .testimonial-text,
.testimonial-carousel-5 .owl-item .testimonial-text,
.testimonial-carousel-6 .owl-item .testimonial-text {
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-text *,
.testimonial-carousel-1 .owl-item.center .testimonial-text *,
.testimonial-carousel-2 .owl-item.center .testimonial-text *,
.testimonial-carousel-4 .owl-item.center .testimonial-text *,
.testimonial-carousel-5 .owl-item.center .testimonial-text *,
.testimonial-carousel-6 .owl-item.center .testimonial-text * {
  color: #ffffff !important;
}

.testimonial-carousel .owl-dots,
.testimonial-carousel-1 .owl-dots,
.testimonial-carousel-2 .owl-dots,
.testimonial-carousel-4 .owl-dots,
.testimonial-carousel-5 .owl-dots,
.testimonial-carousel-6 .owl-dots {
  margin-top: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.testimonial-carousel .owl-dot,
.testimonial-carousel-1 .owl-dot,
.testimonial-carousel-2 .owl-dot,
.testimonial-carousel-4 .owl-dot,
.testimonial-carousel-5 .owl-dot,
.testimonial-carousel-6 .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  border: 1px solid #cccccc;
  transition: 0.5s;
}

.testimonial-carousel .owl-dot.active,
.testimonial-carousel-1 .owl-dot.active,
.testimonial-carousel-2 .owl-dot.active,
.testimonial-carousel-4 .owl-dot.active,
.testimonial-carousel-5 .owl-dot.active,
.testimonial-carousel-6 .owl-dot.active {
  background: var(--primary);
  border-color: var(--primary);
}

/*** Footer ***/
.footer {
  position: relative;
  overflow: hidden;
  background-size: cover;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../../img/background-petflakes.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.12;
  z-index: 0;
}

.footer > .container,
.footer > .container-fluid {
  position: relative;
  z-index: 1;
}

.footer-card {
  background: var(--primary);
  color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  height: 100%;
}

.footer-card h4,
.footer-card p,
.footer-card a {
  color: #ffffff !important;
}

.footer-logo-img {
  width: 160px;
  height: 160px;
}

@media only screen and (max-width: 990px) {
  .footer-card {
    padding: 25px;
  }

  .footer-logo-img,
  .footer .logos img {
    width: 100px !important;
    height: 100px !important;
  }
}

@media only screen and (max-width: 575px) {
  .footer-card {
    padding: 20px;
  }

  .footer-card h4 {
    margin-bottom: 1rem !important;
  }

  .footer-logo-img,
  .footer .logos img {
    width: 70px !important;
    height: 70px !important;
  }
}

.footer .btn.btn-social {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid #ffffff;
  border-radius: 35px;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #ffffff;
  font-size: 15px;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "URW Geometric";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  color: var(--primary);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer .copyright a {
  color: var(--primary);
}

.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}
.footer .newsletter-input input {
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
}

.footer .newsletter-input button[type="submit"] {
  background: #fff;
  color: var(--primary);
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary);
  text-decoration: underline;
}
/* ************** Loading CSS *************** */
#loader-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  z-index: 1000;
}

#loader {
  border: 12px solid var(--main-color);
  border-top: 12px solid var(--main-red-color);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: 15% auto;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


.icon-whatsapp {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 40px;
      height: 40px;
      position: fixed;
      z-index: 9999;
      border-radius: 100%;
      bottom: 68px;
      right: 8px
  }

  .icon-whatsapp img {
      width: 100%;
  }

  /* Floating cart button next to WhatsApp FAB */
  .icon-cart-fab {
      position: fixed;
      z-index: 9999;
      bottom: 115px;
      right: 8px;
      /* WhatsApp is right:8px; keep ~50px gap */
      width: 40px;
      height: 40px;
      border-radius: 100%;
      background: #fff;
      border: 1px solid #DCE3F2;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  }

  .icon-cart-fab i {
      font-size: 18px;
      color: var(--primary, #1d4ed8);
      line-height: 1;
  }

  /* Red count badge */
  .cart-fab-badge {
      position: absolute;
      top: -6px;
      right: -6px;
      min-width: 18px;
      height: 18px;
      padding: 0 5px;
      border-radius: 9px;
      background: #e02424;
      color: #fff;
      font-size: 11px;
      line-height: 18px;
      text-align: center;
      display: none;
      /* shown via JS if count > 0 */
  }

