/**
 * WEBSITE: https://ahmedmaher-portfolio.vercel.app/
 * TWITTER: https://twitter.com/AhmedMa77068093
 * FACEBOOK: https://web.facebook.com/profile.php?id=100012154268952
 * GITHUB: https://github.com/Ahmed-Maher77
 */

/*--
    Common Css
--*/
html {
  overflow-x: hidden;
  font-size: 16px;
}
@media (max-width: 575px) {
  html {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 15px;
  }
}

body {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  color: #3b4045;
  font-family: "Josefin Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 999999;
  animation: preloaderFadeOut 3s ease-out forwards;
}

@keyframes preloaderFadeOut {
  0% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.lazy {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.lazy.loaded {
  opacity: 1;
}

h1,
.h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}
@media (max-width: 575px) {
  h1,
  .h1 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
  }
}

h2,
.h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
@media (max-width: 575px) {
  h2,
  .h2 {
    font-size: clamp(1.25rem, 3.5vw, 2rem);
  }
}

h3,
.h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
@media (max-width: 575px) {
  h3,
  .h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  }
}

h4,
.h4 {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  line-height: 1.4;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
@media (max-width: 575px) {
  h4,
  .h4 {
    font-size: clamp(1rem, 2vw, 1.25rem);
  }
}

p {
  font-size: clamp(0.9rem, 2vw, 1.125rem);
  line-height: 1.6;
  margin-bottom: 1rem;
}
@media (max-width: 575px) {
  p {
    font-size: clamp(0.85rem, 1.8vw, 1rem);
  }
}

.font-size-60 {
  font-size: clamp(2rem, 8vw, 3.75rem);
  line-height: 1.2;
}
@media (max-width: 575px) {
  .font-size-60 {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }
}
@media (max-width: 767px) {
  .font-size-60 {
    font-size: clamp(1.75rem, 7vw, 3rem);
  }
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

a {
  transition: all 0.2s ease-in-out 0s;
}

.mt-100 {
  margin-top: 100px;
}

.bg-1 {
  background-image: url(../images/optimized/call-to-action-ultra.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg-orange {
  background: #f9a743;
}

.bg-opacity {
  position: relative;
}
.bg-opacity:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

a:focus,
.btn:focus,
.btn:active:focus {
  box-shadow: none;
  outline: 0 none;
}

a,
a:active,
a:focus,
a:active {
  text-decoration: none;
}

.section {
  padding: clamp(3rem, 8vw, 6.25rem) 0;
}
@media (max-width: 575px) {
  .section {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }
}

.mb-10 {
  margin-bottom: 0.625rem;
}

.mb-40 {
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}
@media (max-width: 575px) {
  .mb-40 {
    margin-bottom: clamp(1rem, 3vw, 2rem);
  }
}

.slick-slide {
  outline: 0;
}

/*--
    custom heading
--*/
.text-center {
  text-align: center;
}

.heading {
  text-align: center;
  color: #777777;
  padding-bottom: clamp(3rem, 8vw, 4.375rem);
}
.heading h2 {
  color: #3c3c3c;
  padding-bottom: 0.9375rem;
  text-transform: capitalize;
  font-weight: 700;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  line-height: 1.2;
}
@media (max-width: 575px) {
  .heading h2 {
    font-size: clamp(1.25rem, 4vw, 2rem);
  }
}
.heading p {
  font-size: clamp(0.9rem, 2vw, 1.0625rem);
  line-height: 1.4;
  font-weight: 300;
}
@media (max-width: 575px) {
  .heading p {
    font-size: clamp(0.85rem, 1.8vw, 1rem);
  }
}

.subheading {
  color: #3c3c3c;
  padding-bottom: 0.9375rem;
  text-transform: capitalize;
  font-weight: 500;
  font-size: clamp(1.25rem, 4vw, 2rem);
  line-height: 1.4;
}
@media (max-width: 575px) {
  .subheading {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
  }
}

.btn {
  border-radius: 0;
  text-decoration: none !important;
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  padding: clamp(0.75rem, 2vw, 0.9375rem) clamp(1.5rem, 4vw, 2.5rem);
}
@media (max-width: 575px) {
  .btn {
    font-size: clamp(0.8rem, 1.8vw, 1rem);
    padding: clamp(0.625rem, 1.8vw, 0.875rem) clamp(1.25rem, 3vw, 2rem);
  }
}

.btn-main {
  color: #fff;
  border-radius: 30px;
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  padding: clamp(0.75rem, 2vw, 0.9375rem) clamp(1.5rem, 4vw, 2.5rem);
  display: inline-block;
  background-color: #f9a743;
  box-shadow: 0 15px 40px rgba(249, 167, 68, 0.5);
  background-image: linear-gradient(bottom, rgba(255, 239, 206, 0) 0%, rgba(255, 239, 206, 0.25) 100%);
}
.btn-main:hover, .btn-main:focus {
  background-color: #f9a743;
  color: #fff;
}

.btn-main-sm {
  padding: 12px 35px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
}

/* navigation */
.navbar-brand {
  color: #444;
  font-size: 25px;
  margin: 0;
  line-height: 1;
}

.nav-link {
  font-size: 16px;
  font-weight: bold;
  padding: 10px 20px !important;
}

.navbar-light .navbar-nav .nav-link {
  color: #444;
}

.lang-list {
  border: 0;
  margin: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

.navigation .dropdown-menu {
  padding: 0px;
  border: 0;
  border-radius: 0px;
  background-color: #f5f5f5;
}
@media (max-width: 991px) {
  .navigation .dropdown-menu {
    text-align: center;
    float: left !important;
    width: 100%;
    margin: 0;
  }
}
.navigation .dropdown-menu li:first-child {
  margin-top: 5px;
}
.navigation .dropdown-menu li:last-child {
  margin-bottom: 5px;
}
.navigation .dropdown-toggle::after {
  display: none;
}
.navigation .dropdown-toggle > i {
  font-size: 14px;
}
.navigation .dropleft .dropdown-menu,
.navigation .dropright .dropdown-menu {
  margin: 0;
}
.navigation .dropleft .dropdown-toggle::before,
.navigation .dropright .dropdown-toggle::after {
  font-weight: bold;
  font-family: "themefisher-font";
  border: 0;
  font-size: 10px;
  vertical-align: 1px;
  display: inline-block;
}
.navigation .dropleft .dropdown-toggle::before {
  margin-right: 5px;
  content: "\f124";
}
.navigation .dropright .dropdown-toggle::after {
  margin-left: 5px;
  content: "\f125";
}
.navigation .dropdown-item {
  color: #444;
  padding: 0.6rem 1rem 0.35rem;
  font-weight: 600;
  font-size: 15px;
}
.navigation .dropdown-submenu.active > .dropdown-toggle,
.navigation .dropdown-submenu:hover > .dropdown-item,
.navigation .dropdown-item.active,
.navigation .dropdown-item:hover {
  background: #f9a743;
  color: white;
}
@media (min-width: 992px) {
  .navigation .dropdown-menu {
    transition: all 0.2s ease-in, visibility 0s linear 0.2s, transform 0.2s linear;
    display: block;
    visibility: hidden;
    opacity: 0;
    min-width: 200px;
    margin-top: 8px;
  }
  .navigation .dropdown-menu li:first-child {
    margin-top: 10px;
  }
  .navigation .dropdown-menu li:last-child {
    margin-bottom: 10px;
  }
  .navigation .dropleft .dropdown-menu,
  .navigation .dropright .dropdown-menu {
    margin-top: -9px;
  }
  .navigation .dropdown:hover > .dropdown-menu {
    visibility: visible;
    transition: all 0.45s ease 0s;
    opacity: 1;
  }
}

.navbar-collapse.show {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: calc(100vh - 80px);
  display: block !important;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e9ecef;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  .navbar-collapse.show {
    display: block !important;
  }
  .navbar-nav {
    padding: 1rem 0;
  }
  .navbar-nav .nav-item {
    border-bottom: 1px solid #f8f9fa;
  }
  .navbar-nav .nav-item:last-child {
    border-bottom: none;
  }
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
    color: #333 !important;
    font-weight: 500;
  }
  .navbar-nav .nav-link:hover {
    background-color: #f8f9fa;
  }
  .dropdown-menu {
    border: none;
    box-shadow: none;
    background: #f8f9fa;
    margin: 0;
    padding: 0;
  }
  .dropdown-item {
    padding: 0.5rem 2rem;
    border-bottom: 1px solid #e9ecef;
  }
  .dropdown-item:last-child {
    border-bottom: none;
  }
}
body.menu-open {
  overflow: hidden;
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 1001;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:focus {
  outline: 0;
}

/* cart */
.cart {
  background: transparent;
  border: 0;
  position: relative;
}
.cart i {
  font-size: 20px;
}
@media (max-width: 991px) {
  .cart {
    position: absolute;
    top: 23px;
    right: 90px;
  }
}
.cart .badge {
  position: absolute;
  top: -5px;
  border-radius: 50%;
  right: -10px;
}
.cart:focus {
  outline: 0;
}

.badge-primary {
  background-color: #f9a743;
}

/*--
    Feature-list start
    --*/
.feature-list .btn-main {
  margin-top: 15px;
}

/*--
Gallery start
--*/
.gallery {
  padding-bottom: clamp(4rem, 10vw, 7rem);
  background: #fafafa;
  margin-top: clamp(2rem, 5vw, 3rem);
  position: relative;
}
.gallery .owl-item {
  overflow: hidden;
  position: relative;
}
.gallery .block {
  padding: clamp(1rem, 2.5vw, 1.25rem);
  position: relative;
  margin: 0 clamp(0.5rem, 1.5vw, 1rem);
}
.gallery .block:hover .gallery-overlay {
  transform: scale(1);
  opacity: 1;
  border-radius: 0;
}
.gallery .gallery-overlay {
  position: absolute;
  bottom: clamp(0.75rem, 2vw, 0.9375rem);
  left: clamp(0.75rem, 2vw, 0.9375rem);
  right: clamp(0.75rem, 2vw, 0.9375rem);
  top: clamp(0.75rem, 2vw, 0.9375rem);
  background: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  color: inherit;
  transform: scale(0.7);
  transition: 0.3s ease-in-out;
  z-index: 2;
  opacity: 0;
  border-radius: 50%;
}
.gallery .gallery-overlay .gallery-popup {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #f9a743;
  padding: clamp(0.25rem, 1vw, 0.3125rem) clamp(0.5rem, 1.5vw, 0.625rem);
  border-radius: 40px;
  width: clamp(2.5rem, 6vw, 3.125rem);
  height: clamp(2.5rem, 6vw, 3.125rem);
}
.gallery .gallery-overlay .gallery-popup i {
  color: #fff;
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  line-height: clamp(2rem, 5vw, 2.5rem);
  display: inline-block;
}
.gallery .container {
  max-width: 1400px;
  position: relative;
  padding: 0 clamp(1rem, 3vw, 2rem);
}
.gallery .heading {
  margin-bottom: clamp(2rem, 5vw, 3rem);
}
.gallery .heading h2 {
  color: #333;
  font-weight: 600;
}

.product-slider {
  display: flex !important;
  flex-wrap: nowrap;
  overflow-x: auto;
  margin: 0 -10px;
  position: relative;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.product-slider .block {
  flex: 0 0 auto;
  width: clamp(150px, 20vw, 220px);
  min-width: 150px;
  max-width: 220px;
  margin: 0 10px;
  padding: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.product-slider .block:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.product-slider .block img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  max-height: 180px;
}
.product-slider .slick-track {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch;
}
.product-slider .slick-slide {
  display: flex !important;
  justify-content: center;
  align-items: stretch;
  height: auto;
  padding: 0 5px;
}
.product-slider .slick-slide > div {
  width: 100%;
  height: 100%;
}
.product-slider .slick-prev,
.product-slider .slick-next {
  position: absolute;
  top: auto;
  bottom: -50px;
  transform: none;
  width: clamp(2.5rem, 5vw, 3rem);
  height: clamp(2.5rem, 5vw, 3rem);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.product-slider .slick-prev:hover,
.product-slider .slick-next:hover {
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transform: scale(1.1);
}
.product-slider .slick-prev:before,
.product-slider .slick-next:before {
  font-family: "themefisher-font";
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #f9a743;
  opacity: 1;
}
.product-slider .slick-prev {
  left: 50%;
  transform: translateX(-60px);
}
.product-slider .slick-prev:before {
  content: "\f101";
}
.product-slider .slick-next {
  right: 50%;
  transform: translateX(60px);
}
.product-slider .slick-next:before {
  content: "\f100";
}
.product-slider .slick-dots {
  bottom: -30px;
}
.product-slider .slick-dots li {
  margin: 0 4px;
}
.product-slider .slick-dots li button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  border: none;
}
.product-slider .slick-dots li button:before {
  display: none;
}
.product-slider .slick-dots li.slick-active button {
  background: #f9a743;
}
.product-slider::-webkit-scrollbar {
  display: none;
}
@media (max-width: 575px) {
  .product-slider .slick-prev {
    left: 50%;
    transform: translateX(-50px);
  }
  .product-slider .slick-next {
    right: 50%;
    transform: translateX(50px);
  }
}

.product-slider {
  position: relative;
  margin-bottom: 60px;
}
.product-slider .slick-prev,
.product-slider .slick-next {
  position: absolute;
  top: 100%;
  transform: translateY(20px);
  width: clamp(2.5rem, 5vw, 3rem);
  height: clamp(2.5rem, 5vw, 3rem);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.product-slider .slick-prev:hover,
.product-slider .slick-next:hover {
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(20px) scale(1.1);
}
.product-slider .slick-prev:before,
.product-slider .slick-next:before {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #f9a743;
  opacity: 1;
}
.product-slider .slick-prev {
  left: 50%;
  transform: translateX(-60px) translateY(20px);
}
.product-slider .slick-prev:hover {
  transform: translateX(-60px) translateY(20px) scale(1.1);
}
.product-slider .slick-next {
  right: 50%;
  transform: translateX(60px) translateY(20px);
}
.product-slider .slick-next:hover {
  transform: translateX(60px) translateY(20px) scale(1.1);
}

.slider-navigation {
  display: none;
}

/*--
    service start
--*/
.testimonials .testimonial-block {
  padding: 0 10px;
}
.testimonials .testimonial-block i {
  font-size: 40px;
  display: inline-block;
  margin-bottom: 20px;
  color: #f9a743;
}
.testimonials .testimonial-block p {
  font-family: "Droid Serif", serif;
  font-size: 14px;
  color: #777;
}
.testimonials .testimonial-block .author-details {
  margin-top: 30px;
}
.testimonials .testimonial-block .author-details img {
  border-radius: 50%;
  width: 50px;
}
.testimonials .testimonial-block .author-details h4 {
  font-weight: 700;
  font-size: 20px;
  margin-top: 10px;
}

/*--
call-to-action start
--*/
.call-to-action {
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}

.input-group {
  margin-top: 30px;
  position: relative;
}
.input-group .btn-submit {
  padding: 10.5px 40px !important;
  position: absolute;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  top: 0;
  right: 0;
  height: 100%;
}
.input-group input {
  height: 50px;
  border-radius: 40px;
  border: none;
  padding-left: 15px;
  box-shadow: none;
  display: table-cell;
}

.footer-menu a {
  font-size: 14;
  font-weight: 700;
  color: #444;
  padding: 10px;
}

footer {
  text-align: center;
  background: #f4f4f4;
  padding: 50px 0px;
}
footer .footer-logo {
  color: #555;
  display: block;
}
footer p.copyright-text {
  font-weight: 300;
  font-size: 12px;
  color: #888;
  letter-spacing: 3px;
  margin-top: 15px;
}
footer p.copyright-text a {
  color: #282828;
}
footer p.copyright-text a:hover {
  text-decoration: none;
}

p.price {
  font-size: 30px;
  font-family: "Droid Serif", serif;
}

s.price {
  color: red;
  font-size: 25px;
  font-family: "Droid Serif", serif;
}

.product-info {
  text-align: center;
}
.product-info .price {
  font-size: 100%;
}

.contact-list li,
.contact-list a {
  color: #282828;
  font-size: 18px;
}

.form-control {
  border: 1px solid #dadada;
  border-radius: 35px;
  height: 50px;
  padding-left: 20px;
  padding-right: 20px;
}
.form-control:focus {
  border-color: #f9a743;
  box-shadow: none;
}
.form-control::-moz-placeholder {
  font-size: 80%;
}
.form-control::placeholder {
  font-size: 80%;
}

textarea.form-control {
  height: 150px;
  padding-top: 15px;
}

.sticky-image {
  position: sticky;
  top: 100px;
  z-index: 1;
}

/* product sinngle page */
.product-image-slider {
  position: sticky;
  top: 80px;
}
.product-image-slider .slick-list {
  margin-bottom: 10px;
  border-radius: 5px;
}
.product-image-slider .slick-dots {
  margin-top: 10px;
  padding-left: 0;
  display: flex;
}
.product-image-slider .slick-dots li {
  list-style-type: none;
  margin: 10px;
  border-radius: 5px;
  padding: 10px;
  cursor: pointer;
}
.product-image-slider .slick-dots li:first-child {
  margin-left: 0;
}
.product-image-slider .slick-dots li:last-child {
  margin-right: 0;
}
.product-image-slider .slick-dots li img {
  max-height: 80px;
  height: auto;
  max-width: 100%;
}

/* content style */
.content * {
  margin-bottom: 20px;
}
.content a {
  text-decoration: underline;
}
.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
  margin-bottom: 10px;
}
.content ol,
.content ul {
  padding-left: 10px;
}
.content table {
  text-align: left;
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  border: 1px solid #dee2e6;
}
.content table th,
.content table td {
  padding: 0.75rem;
  vertical-align: top;
  border: 1px solid #dee2e6;
}
.content table thead {
  background: rgb(212.9, 212.9, 212.9);
}
.content table tbody {
  background: #dadada;
}
.content table tbody td {
  text-align: left !important;
}
.content blockquote {
  border-left: 1px solid #f9a743;
  padding: 20px;
}
.content blockquote p {
  margin-bottom: 0;
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
}
.content pre {
  padding: 10px 20px;
  background: #dadada;
}

.link-title {
  color: inherit;
  text-decoration: none !important;
}
.link-title:hover {
  color: #f9a743;
}

.navbar-nav .nav-item:last-of-type {
  display: flex;
  justify-content: center;
  align-items: center;
}
.navbar-nav .nav-item:last-of-type a {
  margin-left: 0 !important;
}

.btn-remove-from-cart {
  background-color: #dc3545 !important;
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: 30px !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  box-shadow: none !important;
}
.btn-remove-from-cart:hover, .btn-remove-from-cart:focus {
  background-color: #c82333 !important;
  color: #fff !important;
}

.btn-decrease,
.btn-increase {
  font-size: 2rem;
  padding: 0;
}

.cart-list .row .col-2:nth-of-type(4) {
  display: flex !important;
  align-items: center !important;
  gap: 5px !important;
}
.cart-list .row .col-2:nth-of-type(4) span {
  font-size: 1.2rem !important;
  font-weight: 500 !important;
}

.navigation .navbar-brand img {
  max-width: clamp(80px, 15vw, 100px);
}
.navigation .navbar-nav .nav-link {
  font-size: clamp(0.85rem, 2vw, 1rem);
  padding: clamp(0.5rem, 1.5vw, 0.75rem) clamp(0.75rem, 2vw, 1rem);
}
@media (max-width: 575px) {
  .navigation .navbar-nav .nav-link {
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    padding: clamp(0.4rem, 1.2vw, 0.6rem) clamp(0.6rem, 1.5vw, 0.8rem);
  }
}
.navigation .navbar-nav .dropdown-menu .dropdown-item {
  font-size: clamp(0.8rem, 1.8vw, 0.9rem);
  padding: clamp(0.4rem, 1.2vw, 0.5rem) clamp(0.75rem, 2vw, 1rem);
}

.price {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 600;
}
@media (max-width: 575px) {
  .price {
    font-size: clamp(0.9rem, 2.2vw, 1.1rem);
  }
}

.tf-ion-ios-alarm-outline,
.tf-ion-ios-bell-outline,
.tf-ion-ios-cart-outline,
.tf-ion-ios-heart-outline,
.tf-ion-ios-bolt-outline,
.tf-ion-ios-wifi-outline {
  font-size: clamp(1.5rem, 4vw, 2rem);
}
@media (max-width: 575px) {
  .tf-ion-ios-alarm-outline,
  .tf-ion-ios-bell-outline,
  .tf-ion-ios-cart-outline,
  .tf-ion-ios-heart-outline,
  .tf-ion-ios-bolt-outline,
  .tf-ion-ios-wifi-outline {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
  }
}

.gallery .block .gallery-overlay .gallery-popup i {
  font-size: clamp(1.5rem, 4vw, 2rem);
}

.form-control {
  font-size: clamp(0.85rem, 2vw, 1rem);
  padding: clamp(0.5rem, 1.5vw, 0.75rem) clamp(0.75rem, 2vw, 1rem);
}

.table {
  font-size: clamp(0.8rem, 1.8vw, 0.9rem);
}
.table th,
.table td {
  padding: clamp(0.5rem, 1.5vw, 0.75rem);
}

.alert {
  font-size: clamp(0.85rem, 2vw, 1rem);
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1rem, 2.5vw, 1.25rem);
}

.badge {
  font-size: clamp(0.7rem, 1.5vw, 0.8rem);
  padding: clamp(0.25rem, 1vw, 0.375rem) clamp(0.5rem, 1.5vw, 0.75rem);
}

.breadcrumb {
  font-size: clamp(0.8rem, 1.8vw, 0.9rem);
}
.breadcrumb .breadcrumb-item {
  padding: clamp(0.25rem, 1vw, 0.375rem) 0;
}

.pagination .page-link {
  font-size: clamp(0.8rem, 1.8vw, 0.9rem);
  padding: clamp(0.375rem, 1.2vw, 0.5rem) clamp(0.75rem, 2vw, 1rem);
}

.modal .modal-title {
  font-size: clamp(1.1rem, 3vw, 1.25rem);
}
.modal .modal-body {
  font-size: clamp(0.85rem, 2vw, 1rem);
}

.tooltip {
  font-size: clamp(0.75rem, 1.5vw, 0.8rem);
}

.popover {
  font-size: clamp(0.8rem, 1.8vw, 0.9rem);
}
.popover .popover-header {
  font-size: clamp(0.9rem, 2vw, 1rem);
}
/*# sourceMappingURL=style.css.map */
