@charset "UTF-8";

/* Fonts */ 
:root {
  --default-font: "Roboto Condensed", system-ui, -apple-system, sans-serif;
  --heading-font: "Roboto Condensed", sans-serif;
  --nav-font: "Roboto Condensed", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #201414; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #320a0a; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #d3001a; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

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

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

.light-background {
  --background-color:  color-mix(in srgb, var(--accent-color), transparent 92%);
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #000704;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #28323a;
  --contrast-color: #ffffff;
}

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0);
  --heading-color: #ffffff;
  --surface-color: rgba(255, 255, 255, 0.085);
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 998;
  background-color: var(--background-color);
}

.header .btn-search i {
  color: var(--heading-color);
  font-size: 17px;
}

.header .btn-search i::before {
  font-weight: 700 !important;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 16px;
  letter-spacing: 1.5px;
  padding: 8px 25px;
  margin: 0;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1199px) {
  .header .btn-getstarted {
    margin: 20px 20px 10px 20px;
    font-size: 16px;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}

@media (max-width: 575px) {}

.header .branding {
  min-height: 60px;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 50px;
  margin: 12px 0;
}

@media (max-width: 575px) {
  .header .logo img {
    max-height: 45px;
  }
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgb(255, 255, 255);
  --heading-color: #3c3c3c;
  --nav-color: #3c3c3c;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 28px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 14px;
    padding: 0 2px;
    font-family: var(--nav-font);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.1px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: color-mix(in srgb, var(--nav-color) 90%, white 15%);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 0px;
    padding: 25px 25px 0 25px;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    text-transform: uppercase;
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: var(--default-color);
    position: absolute;
    font-size: 32px;
    top: 20px;
    right: 10px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/* Megamenu 2 - Desktop */
@media (min-width: 1200px) {
  .navmenu .megamenu-2 {
    position: static;
  }

  .navmenu .megamenu-2 .mobile-megamenu {
    display: none;
  }

  .navmenu .megamenu-2 .megamenu-overlay {
    background: rgba(0, 0, 0, 0.4); 
    backdrop-filter: blur(4px);
    visibility: hidden;
    opacity: 0;
    z-index: 999;
    padding: 0;
    display: flex;
    overflow: hidden;
    position: absolute;
    top: 130%;
    left: 50%;
    transform: translateX(-50%);
    height: 100vw;
    width: 100vw;
    /* transition: opacity 0.3s ease, top 0.3s ease; */
  }

  .navmenu .megamenu-2:hover > .megamenu-overlay {
    opacity: 1;
    visibility: visible;
  }

  .navmenu .megamenu-2 .desktop-megamenu {
    background-color: var(--nav-dropdown-background-color);
    visibility: hidden;
    opacity: 0;
    z-index: 999;
    padding: 0;
    display: flex;
    overflow: hidden;
    position: absolute;
    top: 130%;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
    width: 100vw;
    /* transition: opacity 0.3s ease, top 0.3s ease; */
  }

  .navmenu .megamenu-2:hover>.desktop-megamenu {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .megamenu-2 .content {
    flex: 1;
    padding: 35px 10px 0 10px;
    overflow-y: auto;
  }

  .navmenu .megamenu-2 .content .content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
    align-items: start;
  }

  .navmenu .megamenu-2 .content .content-grid .product-section h4 {
    color: var(--default-color);
    font-size: 14px;
    font-weight: 700;
  }

  .navmenu .megamenu-2 .content .content-grid .product-section .product-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .navmenu .megamenu-2 .content .content-grid .product-section .product-list .product-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 4px 0;
    border-radius: 8px;
    transition: all 0.3s;
    
  }

  .navmenu .megamenu-2 .content .content-grid .product-section .product-list .product-link small {
    color: color-mix(in srgb, var(--nav-dropdown-color), transparent 40%);
    font-size: 13px;
    line-height: 1.3;
    display: block;
  }

  .navmenu .megamenu-2 .content .content-grid .product-section .product-list .product-link small:hover {
    color: var(--accent-color);
  }

  .navmenu .megamenu-2 .content .content-grid-2 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
    margin-bottom: 15px;
    align-items: start;
  }

  .navmenu .megamenu-2 .content .content-grid-2 .product-section {
    min-width: 0;
  }

  .navmenu .megamenu-2 .content .content-grid-2 .product-section h4 {
    color: var(--default-color);
    font-size: 14px;
    font-weight: 700;
  }

  .navmenu .megamenu-2 .content .content-grid-2 .product-section .product-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .navmenu .megamenu-2 .content .content-grid-2 .product-section .product-list .product-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 4px 0;
    border-radius: 8px;
    color: var(--nav-dropdown-color);
  }

  .navmenu .megamenu-2 .content .content-grid-2 .product-section .product-list .product-link div {
    flex: 1;
    min-width: 0;
    overflow: hidden;
  }

  .navmenu .megamenu-2 .content .content-grid-2 .product-section .product-list .product-link div span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 2px;
    line-height: 1.3;
  }

  .navmenu .megamenu-2 .content .content-grid-2 .product-section .product-list .product-link div small {
    color: color-mix(in srgb, var(--nav-dropdown-color), transparent 40%);
    font-size: 12px;
    line-height: 1.3;
    display: block;
    white-space: normal;
    overflow-wrap: break-word;
    min-height: calc(1.3em * 2);
  }

  .navmenu .megamenu-2 .content .content-grid-2 .product-section .product-list .product-link:hover span,
  .navmenu .megamenu-2 .content .content-grid-2 .product-section .product-list .product-link:hover small {
    color: var(--accent-color);
  }

}

/* Megamenu 2 - Mobile */
@media (max-width: 1199px) {
  .navmenu .megamenu-2 {
    /* Hide Desktop Megamenu in Mobile */
  }

  .navmenu .megamenu-2 .desktop-megamenu {
    display: none;
  }

  .navmenu .megamenu-2 .mobile-megamenu {
    position: static;
    display: none;
    z-index: 99;
    padding: 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
    border-radius: 6px;
    overflow: hidden;
  }

  .navmenu .megamenu-2 .mobile-megamenu li {
    position: relative;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .navmenu .megamenu-2 .mobile-megamenu li:last-child {
    border-bottom: none;
  }

  .navmenu .megamenu-2 .mobile-megamenu li a {
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--nav-dropdown-color);
    font-size: 15px;
    transition: 0.3s;
    font-weight: 500;
  }

  .navmenu .megamenu-2 .mobile-megamenu li a:hover {
    color: var(--nav-dropdown-hover-color);
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  }

  .navmenu .megamenu-2 .mobile-megamenu li ul {
    padding: 0;
    background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  }

  .navmenu .megamenu-2 .mobile-megamenu li ul li a {
    padding-left: 35px;
    font-size: 14px;
    font-weight: 400;
  }

  .navmenu .megamenu-2 .mobile-megamenu.dropdown-active {
    display: block;
  }
}

.navmenu .megamenu-search {
  position: static;
  
}

.navmenu .megamenu-search.active .megamenu-overlay {
  opacity: 1;
  visibility: visible;
}

.navmenu .megamenu-search .megamenu-overlay {
  background: rgba(0, 0, 0, 0.4); 
  backdrop-filter: blur(4px);
  visibility: hidden;
  opacity: 0;
  z-index: 999;
  padding: 0;
  display: flex;
  overflow: hidden;
  position: absolute;
  top: 130%;
  left: 50%;
  transform: translateX(-50%);
  height: 100vw;
  width: 100vw;
  /* transition: opacity 0.3s ease, top 0.3s ease; */
}

.navmenu .megamenu-search.active .desktop-megamenu {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navmenu .megamenu-search .desktop-megamenu {
  background-color: var(--nav-dropdown-background-color);
  visibility: hidden;
  opacity: 0;
  z-index: 999;
  padding: 0;
  display: flex;
  overflow: hidden;
  position: absolute;
  top: 130%;
  left: 50%;
  transform: translateX(-50%);
  height: auto;
  width: 100vw;
}

.navmenu .megamenu-search .search-box input {
  width: 100%;
  padding: 12px 20px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 25px;
  font-size: 14px;
  background-color: var(--surface-color);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.navmenu .megamenu-search .search-box input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.navmenu .megamenu-search .search-box input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.navmenu .megamenu-search .search-result a {
  justify-content: start !important;
}

.navmenu .megamenu-search .search-result img {
  width: 80px;
  height: auto;
}

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

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

/* 📲 TABLET (menor a 992px) */
@media (max-width: 991.98px) {
  .page-title {
    padding: 90px 0 0 0;
  }
}

/* 📱 MÓVIL (menor a 576px) */
@media (max-width: 575.98px) {
  .page-title {
    padding: 70px 0 0 0;
  }
}

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

@media (max-width: 1199px) {
  section, .section {
    scroll-margin-top: 60px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  /* padding-bottom: 20px; */
  position: relative;
}

/* .section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
} */

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
 Loading Ajax
--------------------------------------------------------------*/
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); 
  z-index: 9999; 
  display: none; 
}

.loading {
  position: absolute;
  top: 45%;
  left: 0;
  right: 0;
  font-size: 0.7rem;
}

/*--------------------------------------------------------------
# Hero Carousel Section 
--------------------------------------------------------------*/
.hero-carousel {
  padding: 0;
}

.hero-carousel .carousel {
  width: 100%;
  min-height: calc(100vh - 100px);
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
}

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

.hero-carousel .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-carousel .carousel-item:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 100%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  display: none;
}

.hero-carousel:hover .carousel-control-prev,
.hero-carousel:hover .carousel-control-next {
  display: block;
  width: 10%;
  transition: 0.3s;
  opacity: 0.5;
  top: 48%;
}

.hero-carousel .carousel-control-prev:focus,
.hero-carousel .carousel-control-next:focus {
  opacity: 0.5;
}

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
  opacity: 0.9;
}

.hero-carousel .carousel-control-next-icon,
.hero-carousel .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

.hero-carousel .carousel-indicators {
  list-style: none;
}

.hero-carousel .carousel-indicators li {
  cursor: pointer;
}

@media (max-width: 576px) {
  .hero-carousel .carousel-control-prev,
  .hero-carousel .carousel-control-next {
    display: none;
  }

  .hero-carousel:hover .carousel-control-prev,
  .hero-carousel:hover .carousel-control-next {
    display: none;
  }

  .hero-carousel .carousel-indicators {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .hero-carousel .carousel {
    min-height: 17vh;
  }
}

@media (max-width: 1024px) {
  .hero-carousel .carousel {
    min-height: 30vh;
  }
}

@media (min-width: 1025px) {
  .hero-carousel .carousel-control-prev,
  .hero-carousel .carousel-control-next {
    width: 5%;
  }
}

/*--------------------------------------------------------------
# Search Section
--------------------------------------------------------------*/
.search .search-box {
  position: relative;
  flex: 1;
  max-width: 400px;
}

.search .search-box i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.search .search-box input {
  width: 100%;
  padding: 12px 20px 12px 45px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 25px;
  font-size: 14px;
  background-color: var(--surface-color);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.search .search-box input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.search .search-box input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}


.search .search-cta .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 500;
}

.search .search-cta .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  border-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

/* Integración estética de noUiSlider con Bootstrap 5 */
.search .noUi-target {
  background: #e9ecef;
  border: none;
  border-radius: 50rem; /* Bordes completamente redondeados estilo píldora */
  box-shadow: none;
}

.search .noUi-horizontal {
  height: 6px;
}

.search .noUi-connect {
  background: var(--accent-color);
}

.search .noUi-handle {
  height: 18px !important;
  width: 18px !important;
  top: -6px !important;
  right: -9px !important;
  border-radius: 50%;
  background: var(--accent-color);
  border: 2px solid #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.1s ease, background-color 0.1s ease;
}

.search.noUi-handle:active {
  transform: scale(1.25);
  background: var(--accent-color); 
}

.search .noUi-handle::before, .noUi-handle::after {
  display: none; /* Eliminar líneas internas del tirador */
}

/*--------------------------------------------------------------
# Brands Section
--------------------------------------------------------------*/
.brands {
  overflow-x: hidden;
  /* Responsive adjustments */
}

.brands .brands-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.brands .brands-slider:not(:last-child) {
  margin-bottom: 10px;
}

.brands .brands-track {
  display: flex;
  width: fit-content;
  animation-duration: 30s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.brands .brands-track.track-1 {
  animation-name: scroll-left;
}

.brands .brands-track.track-2 {
  animation-name: scroll-right;
}

.brands .brands-track:hover {
  animation-play-state: paused;
}

.brands .brands-slide {
  flex: 0 0 auto;
  width: 200px;
  height: 150px;
  margin: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.brands .brands-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--default-color), transparent 96%), transparent);
  transition: 0.5s;
}

.brands .brands-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.brands .brands-slide:hover::before {
  left: 100%;
}

.brands .brands-slide:hover img {
  filter: none;
  opacity: 1;
}

.brands .brands-slide img {
  max-width: 80%;
  max-height: 80%;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-2080px);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-2080px);
  }

  100% {
    transform: translateX(0);
  }
}

@media (max-width: 991px) {
  .brands .brands-slide {
    width: 180px;
    height: 120px;
    margin: 0 20px;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-1760px);
    }
  }

  @keyframes scroll-right {
    0% {
      transform: translateX(-1760px);
    }

    100% {
      transform: translateX(0);
    }
  }
}

@media (max-width: 767px) {
  .brands .brands-slide {
    width: 150px;
    height: 75px;
    margin: 0 15px;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-1440px);
    }
  }

  @keyframes scroll-right {
    0% {
      transform: translateX(-1440px);
    }

    100% {
      transform: translateX(0);
    }
  }
}

/*--------------------------------------------------------------
# Featured Category Section
--------------------------------------------------------------*/
.featured-category {
  background-image: linear-gradient(rgb(0, 0, 0) 5%, rgba(49, 49, 49, 0.5) 90%), url(https://carsaperupoc.vtexassets.com/arquivos/carsamotos_background.jpg);
  background-size: cover;
  background-position: 50% center;
}

.featured-category .swiper-wrapper {
  height: auto !important;
}

.featured-category .category-slider {
  position: relative;
  padding: 0 0 60px;
}

.featured-category .category-slider .swiper-pagination {
  bottom: 0;
}

.featured-category .category-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  opacity: 1;
  margin: 0 5px;
  transition: 0.3s;
}

.featured-category .category-slider .swiper-pagination .swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 5px;
  background-color: var(--accent-color);
}

.featured-category .category-slider .swiper-button-prev,
.featured-category .category-slider .swiper-button-next {
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-radius: 50%;
  color: var(--contrast-color);
  transition: 0.3s;
}

.featured-category .category-slider .swiper-button-prev:after,
.featured-category .category-slider .swiper-button-next:after {
  font-size: 16px;
}

.featured-category .category-slider .swiper-button-prev:hover,
.featured-category .category-slider .swiper-button-next:hover {
  background-color: var(--accent-color);
}

.featured-category .category-grid .category-card {
  background-color: transparent;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.featured-category .category-grid .category-card:hover {
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.08);
}

.featured-category .category-grid .category-image {
  position: relative;
  overflow: hidden;
}

.featured-category .category-grid .category-image img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

/*--------------------------------------------------------------
# Related Section
--------------------------------------------------------------*/
.related .row {
  align-items: center;
}

.related .related-intro .related-intro-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.related .related-intro .related-intro-content h2 {
  font-size: 30px;
  font-weight: 700;
  position: relative;
}

.related .related-intro .related-intro-content p {
  margin-bottom: 30px;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.related .related-intro .related-navigation {
  display: flex;
  gap: 10px;
}

.related .related-intro .related-navigation button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.related .related-intro .related-navigation button:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

/* Swiper Slider */
.related .swiper-wrapper {
  height: auto !important;
}

.related .catalog-slider .swiper-pagination {
  bottom: 0;
}

.related .catalog-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  opacity: 1;
  margin: 0 5px;
  transition: 0.3s;
}

.related .catalog-slider .swiper-pagination .swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 5px;
  background-color: var(--accent-color);
}

.related .catalog-grid .catalog-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.related .catalog-grid .catalog-card:hover {
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.08);
}

.related .catalog-grid .catalog-image {
  position: relative;
  overflow: hidden;
  background-color: #E3E6EA;
}

.related .catalog-grid .catalog-image img {
  width: 100%;
  height: 210px;
  object-fit: fill;
}

.related .catalog-grid .catalog-image .catalog-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  color: var(--contrast-color);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.related .catalog-grid .catalog-image .catalog-badge.badge-new {
  background-color: #28a745;
}

.related .catalog-grid .catalog-image .catalog-discount {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.related .catalog-grid .catalog-content {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: #f7f7f7;
}

.related .catalog-grid .catalog-content .catalog-stats {
  margin-bottom: 0px;
}

.related .catalog-grid .catalog-content .catalog-stats h4 {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-transform: uppercase;
  line-height: 1.4;
}

.related .catalog-grid .catalog-content .catalog-stats .color {
  display: flex;
  align-items: center;
  gap: 3px;
}

.related .catalog-grid .catalog-content .catalog-stats .color i {
  font-size: 12px;
}

.related .catalog-grid .catalog-content .catalog-stats .color i::before {
  border: 2px solid #D5D8DE;
  border-radius: 50%;
}

.related .catalog-grid .catalog-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--heading-color);
  text-transform: uppercase;
  line-height: 1.8;
}

.related .catalog-grid .catalog-content .price-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0px;
  padding-top: 5px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.related .catalog-grid .catalog-content .price-info .price-sale {
  font-size: 17px;
  font-weight: 500;
  color: var(--accent-color);
}

.related .catalog-grid .catalog-content .price-info .price-list {
  font-size: 17px;
  font-weight: 500;
  color: var(--heading-color);
  text-decoration: line-through;
}

.related .catalog-grid .catalog-content .btn-catalog {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: auto;
}

.related .catalog-grid .catalog-content .btn-catalog:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

/* Móviles */
@media (max-width: 767px) {
  .related .related-intro .related-navigation {
    display: none;
  }

  .related .catalog-grid .catalog-image img {
    height: 145px;
  }

  .related .catalog-grid .catalog-content {
    padding: 10px;
  }

  .related .catalog-grid .catalog-content .catalog-stats h4 {
    font-size: 12px;
  }

  .related .catalog-grid .catalog-content h3 {
    font-size: 14px;
  }

  .related .catalog-grid .catalog-image .catalog-badge {
    top: 10px;
    left: 10px;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 500;
  }

  .related .catalog-grid .catalog-image .catalog-discount {
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 500;
  }

  .related .catalog-grid .catalog-content .price-info .price-sale,
  .related .catalog-grid .catalog-content .price-info .price-list {
    font-size: 14px;
  }

  .related .catalog-grid .catalog-content .btn-catalog {
    padding: 6px 10px;
    font-weight: 400;
  }
}

/* Tablets pequeñas (iPad Mini) */
@media (min-width: 768px) and (max-width: 819px) {
  .related .related-intro .related-navigation {
    display: none;
  }

  .related .catalog-grid .catalog-image img {
    height: 150px;
  }
}

/* Tablets (iPad, iPad Air, iPad Pro 11) */
@media (min-width: 820px) and (max-width: 991px) {
  .related .related-intro .related-navigation {
    display: none;
  }
  
  .related .catalog-grid .catalog-image img {
    height: 150px;
  }
}

/* Tablets grandes (iPad Pro 12.9) */
@media (min-width: 992px) and (max-width: 1199px) {
  .related .catalog-grid .catalog-image img {
    height: 150px;
  }
}

/* Escritorio */
/* @media (min-width: 1200px) {} */

/*--------------------------------------------------------------
# Featured Products Section
--------------------------------------------------------------*/
.featured-products .featured-products-title {
  font-size: 30px;
  font-weight: 700;
  position: relative;
}

.featured-products .featured-products-tabs .nav-pills {
  display: inline-flex;
  padding: 8px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-radius: 50px;
}

.featured-products .featured-products-tabs .nav-pills .nav-item {
  margin: 0 5px;
}

.featured-products .featured-products-tabs .nav-pills .nav-item:first-child {
  margin-left: 0;
}

.featured-products .featured-products-tabs .nav-pills .nav-item:last-child {
  margin-right: 0;
}

.featured-products .featured-products-tabs .nav-pills .nav-link {
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 500;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.featured-products .featured-products-tabs .nav-pills .nav-link:hover {
  color: var(--accent-color);
}

.featured-products .featured-products-tabs .nav-pills .nav-link.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Swiper Slider */
.featured-products .swiper-wrapper {
  height: auto !important;
}

.featured-products .catalog-slider {
  position: relative;
  padding: 0 0 60px;
}

.featured-products .catalog-slider .swiper-pagination {
  bottom: 0;
}

.featured-products .catalog-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  opacity: 1;
  margin: 0 5px;
  transition: 0.3s;
}

.featured-products .catalog-slider .swiper-pagination .swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 5px;
  background-color: var(--accent-color);
}

.featured-products .catalog-slider .swiper-button-prev,
.featured-products .catalog-slider .swiper-button-next {
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-radius: 50%;
  color: var(--contrast-color);
  transition: 0.3s;
}

.featured-products .catalog-slider .swiper-button-prev:after,
.featured-products .catalog-slider .swiper-button-next:after {
  font-size: 16px;
}

.featured-products .catalog-slider .swiper-button-prev:hover,
.featured-products .catalog-slider .swiper-button-next:hover {
  background-color: var(--accent-color);
}

.featured-products .catalog-grid .catalog-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.featured-products .catalog-grid .catalog-card:hover {
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.08);
}

.featured-products .catalog-grid .catalog-image {
  position: relative;
  overflow: hidden;
  background-color: #E3E6EA;
}

.featured-products .catalog-grid .catalog-image img {
  width: 100%;
  height: 220px;
  object-fit: fill;
}

.featured-products .catalog-grid .catalog-image .catalog-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  color: var(--contrast-color);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.featured-products .catalog-grid .catalog-image .catalog-badge.badge-new {
  background-color: #28a745;
}

.featured-products .catalog-grid .catalog-image .catalog-discount {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.featured-products .catalog-grid .catalog-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: #f7f7f7;
}

.featured-products .catalog-grid .catalog-content .catalog-stats {
  margin-bottom: 0px;
}

.featured-products .catalog-grid .catalog-content .catalog-stats h4 {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-transform: uppercase;
  line-height: 1.4;
}

.featured-products .catalog-grid .catalog-content .catalog-stats .color {
  display: flex;
  align-items: center;
  gap: 3px;
}

.featured-products .catalog-grid .catalog-content .catalog-stats .color i {
  font-size: 12px;
}

.featured-products .catalog-grid .catalog-content .catalog-stats .color i::before {
  border: 2px solid #D5D8DE;
  border-radius: 50%;
}

.featured-products .catalog-grid .catalog-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--heading-color);
  text-transform: uppercase;
  line-height: 1.8;
}

.featured-products .catalog-grid .catalog-content .price-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0px;
  padding-top: 5px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.featured-products .catalog-grid .catalog-content .price-info .price-sale {
  font-size: 17px;
  font-weight: 500;
  color: var(--accent-color);
}

.featured-products .catalog-grid .catalog-content .price-info .price-list {
  font-size: 17px;
  font-weight: 500;
  color: var(--heading-color);
  text-decoration: line-through;
}

.featured-products .catalog-grid .catalog-content .btn-catalog {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: auto;
}

.featured-products .catalog-grid .catalog-content .btn-catalog:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

/* Móviles */
@media (max-width: 767px) {
  .featured-products .featured-products-tabs .nav-pills {
    flex-wrap: wrap;
    justify-content: center;
  }

  .featured-products .featured-products-tabs .nav-pills .nav-item {
    margin: 5px;
  }

  .featured-products .catalog-grid .catalog-image img {
    height: 145px;
  }

  .featured-products .catalog-grid .catalog-content {
    padding: 10px;
  }

  .featured-products .catalog-grid .catalog-content .catalog-stats h4 {
    font-size: 12px;
  }

  .featured-products .catalog-grid .catalog-content h3 {
    font-size: 14px;
  }

  .featured-products .catalog-grid .catalog-image .catalog-badge {
    top: 10px;
    left: 10px;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 500;
  }

  .featured-products .catalog-grid .catalog-image .catalog-discount {
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 500;
  }

  .featured-products .catalog-grid .catalog-content .price-info .price-sale,
  .featured-products .catalog-grid .catalog-content .price-info .price-list {
    font-size: 14px;
  }

  .featured-products .catalog-grid .catalog-content .btn-catalog {
    padding: 6px 10px;
    font-weight: 400;
  }
}

/* Tablets pequeñas (iPad Mini) */
@media (min-width: 768px) and (max-width: 819px) {
  .featured-products .catalog-grid .catalog-image img {
    height: 150px;
  }
}

/* Tablets (iPad, iPad Air, iPad Pro 11) */
@media (min-width: 820px) and (max-width: 991px) {
  .featured-products .catalog-grid .catalog-image img {
    height: 150px;
  }
}

/* Tablets grandes (iPad Pro 12.9) */
@media (min-width: 992px) and (max-width: 1199px) {
  .featured-products .catalog-grid .catalog-image img {
    height: 150px;
  }
}

/* Escritorio */
/* @media (min-width: 1200px) {} */

/*--------------------------------------------------------------
# Quotation Section
--------------------------------------------------------------*/
.quotation .catalog-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.quotation .catalog-card:hover {
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.08);
}

.quotation .catalog-image {
  position: relative;
  overflow: hidden;
  background-color: #E3E6EA;
}

.quotation .catalog-image img {
  width: 100%;
  height: auto;
  object-fit: fill;
}

.quotation .catalog-image .catalog-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  color: var(--contrast-color);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.quotation .catalog-image .catalog-badge.badge-new {
  background-color: #28a745;
}

.quotation .catalog-image .catalog-discount {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.quotation .catalog-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.quotation .catalog-content .catalog-stats {
  margin-bottom: 0px;
}

.quotation .catalog-content .catalog-stats h4 {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-transform: uppercase;
  line-height: 1.4;
}

.quotation .catalog-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--heading-color);
  text-transform: uppercase;
  line-height: 1.8;
}

.quotation .catalog-content .price-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0px;
  padding-top: 5px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.quotation .catalog-content .price-info .price-sale {
  font-size: 17px;
  font-weight: 500;
  color: var(--accent-color);
}

.quotation .catalog-content .price-info .price-list {
  font-size: 17px;
  font-weight: 500;
  color: var(--heading-color);
  text-decoration: line-through;
}


.quotation .catalog-content .btn-catalog {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: auto;
}

.quotation .catalog-content .btn-catalog:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

/* Estilo para las colores*/
.quotation .catalog-buttons .dot-color {
  width: 40px;
  height: 40px;
  padding: 3px;
  border: 1px solid #D5D8DE;
  border-radius: 50px;
  -webkit-box-shadow: 0 0 0 2px transparent;
  box-shadow: 0 0 0 2px transparent;
  cursor: pointer;
}

.quotation .catalog-buttons .color-active {
  background-color: #D5D8DE;
  -webkit-box-shadow: 0 0 0 2px #D5D8DE;
  box-shadow: 0 0 0 2px #D5D8DE;
}

.quotation .quotation-form-container {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
}

.quotation .quotation-form-container h3 {
  font-size: 30px;
  font-weight: 600;
  color: var(--heading-color);
  position: relative;
  padding-left: 15px;
}

.quotation .quotation-form-container h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.quotation .quotation-form-container>p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--default-color);
}

.quotation .quotation-form-container .php-quotation-form .form-label {
  font-size: 14px;
  font-weight: 400;
}

.quotation .quotation-form-container .php-quotation-form .form-check-label {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.quotation .quotation-form-container .php-quotation-form .form-control {
  height: auto;
  padding: 14px 20px;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 30%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.quotation .quotation-form-container .php-quotation-form .form-control:focus {
  background-color: var(--surface-color);
  border-color: var(--accent-color);
  box-shadow: none;
}

.quotation .quotation-form-container .php-quotation-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

/* Estilo selectpicker */
.quotation .quotation-form-container .php-quotation-form .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 100% !important;
}

.quotation .quotation-form-container .php-quotation-form .bootstrap-select>.dropdown-toggle.bs-placeholder {
  padding: 14px 20px !important;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 30%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.quotation .quotation-form-container .php-quotation-form .bootstrap-select [type=button]:not(:disabled), 
.quotation .quotation-form-container .php-quotation-form .bootstrap-select [type=reset]:not(:disabled), 
.quotation .quotation-form-container .php-quotation-form .bootstrap-select [type=submit]:not(:disabled), 
.quotation .quotation-form-container .php-quotation-form .bootstrap-select button:not(:disabled) {
  padding: 14px 20px !important;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 30%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.quotation .quotation-form-container .php-quotation-form .bootstrap-select .dropdown-toggle .filter-option-inner-inner {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.quotation .quotation-form-container .php-quotation-form .bootstrap-select>.dropdown-toggle.bs-placeholder:focus {
  box-shadow: none !important;
}

.quotation .quotation-form-container .php-quotation-form .bootstrap-select .dropdown-toggle:focus, .bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
  outline: none !important;
}

.quotation .quotation-form-container .php-quotation-form .bootstrap-select .dropdown-item.active, .dropdown-item:active {
  background-color: #a9a9a9 !important;
}
/* End selectpicker */

.quotation .quotation-form-container .php-quotation-form .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.quotation .quotation-form-container .php-quotation-form .form-check-input:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.quotation .quotation-form-container .php-quotation-form .form-check-input:checked:focus {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: none;
}

.quotation .quotation-form-container .php-quotation-form .button-quotation {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 15px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.quotation .quotation-form-container .php-quotation-form .button-quotation:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

@media (max-width: 768px) {
  .quotation {
    padding-top: 25px;
  }
  
  .quotation .quotation-form-container {
    padding: 25px 20px;
  }

  .quotation .quotation-form-container h3 {
    font-size: 22px;
  }

  .quotation .quotation-form-container .php-quotation-form button {
    padding: 12px 10px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact img {
  border-radius: 16px;
  overflow: hidden;
}

.contact .contact-cards-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

@media (min-width: 576px) {
  .contact .contact-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact .contact-card {
  background-color: var(--surface-color);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
}

.contact .contact-card .icon-box {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact .contact-card .icon-box i {
  font-size: 22px;
  color: var(--accent-color);
}

.contact .contact-card .contact-text h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.contact .contact-card .contact-text p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--default-color);
  margin-bottom: 0;
}

.contact .contact-form-container {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
}

.contact .contact-form-container h3 {
  font-size: 30px;
  font-weight: 600;
  color: var(--heading-color);
  position: relative;
  padding-left: 15px;
}

.contact .contact-form-container h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.contact .contact-form-container>p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--default-color);
}

.contact .contact-form-container .php-contact-form .form-label {
  font-size: 14px;
  font-weight: 400;
}

.contact .contact-form-container .php-contact-form .form-check-label {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .contact-form-container .php-contact-form .form-control {
  height: auto;
  padding: 14px 20px;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 30%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-contact-form .form-control:focus {
  background-color: var(--surface-color);
  border-color: var(--accent-color);
  box-shadow: none;
}

.contact .contact-form-container .php-contact-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.contact .contact-form-container .php-contact-form .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.contact .contact-form-container .php-contact-form .form-check-input:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.contact .contact-form-container .php-contact-form .form-check-input:checked:focus {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: none;
}

.contact .contact-form-container .php-contact-form .button-contact {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 15px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-contact-form .button-contact:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

@media (max-width: 768px) {
  .contact {
    padding-top: 25px;
  }
  
  .contact .contact-form-container {
    padding: 25px 20px;
  }

  .contact .contact-form-container h3 {
    font-size: 22px;
  }

  .contact .contact-form-container .php-contact-form button {
    padding: 12px 10px;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 4px;
  height: 40px;
  background-color: var(--accent-color);
  margin: 0 4px;
}

#preloader div:nth-child(1) {
  animation: animate-preloader 1s ease-in-out -0.45s infinite;
}

#preloader div:nth-child(2) {
  animation: animate-preloader 1s ease-in-out -0.3s infinite;
}

#preloader div:nth-child(3) {
  animation: animate-preloader 1s ease-in-out -0.15s infinite;
}

#preloader div:nth-child(4) {
  animation: animate-preloader 1s infinite;
}

@keyframes animate-preloader {

  0%,
  100% {
    transform: scaleY(0.3);
  }

  50% {
    transform: scaleY(1);
  }
}

/*--------------------------------------------------------------
# WhatsApp Help Button
--------------------------------------------------------------*/
.whatsapp-help {
  position: fixed;
  visibility: visible;
  opacity: 1;
  right: 15px;
  bottom: 35px;
  z-index: 99998;
  background-color: #26d366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  transition: all 0.4s;
}

.whatsapp-help i {
  font-size: 35px;
  color: var(--contrast-color);
  line-height: 0;
}

.whatsapp-help:hover {
  background-color: color-mix(in srgb, #26d366, transparent 20%);
  color: var(--contrast-color);
}

.whatsapp-help-info {
  position: fixed;
  visibility: visible;
  opacity: 1;
  right: 85px;
  bottom: 35px;
  z-index: 99998;
  background-color: #ffffff;
  width: 140px;
  height: 60px;
  border-radius: 14px;
  transition: all 0.4s;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
}

.whatsapp-help-info p {
  font-size: 14px;
  color: var(--default-color);
  line-height: 0;
}

/*--------------------------------------------------------------
# Featured Posts Section
--------------------------------------------------------------*/
.featured-posts .swiper-wrapper {
  height: auto !important;
}

.featured-posts .blog-posts-slider {
  position: relative;
  padding: 0 0 60px;
}

.featured-posts .blog-posts-slider .swiper-pagination {
  bottom: 0;
}

.featured-posts .blog-posts-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  opacity: 1;
  margin: 0 5px;
  transition: 0.3s;
}

.featured-posts .blog-posts-slider .swiper-pagination .swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 5px;
  background-color: var(--accent-color);
}

.featured-posts .blog-card {
  background: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.featured-posts .blog-card:hover {
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.08);
}

.featured-posts .blog-image {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.featured-posts .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.featured-posts .blog-image .category-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.featured-posts .blog-image:hover img {
  transform: scale(1.05);
}

.featured-posts .blog-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .featured-posts .blog-content {
    padding: 25px;
  }
}

.featured-posts .author-info {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.featured-posts .author-info .author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  background: var(--accent-color);
}

.featured-posts .author-info .author-details {
  display: flex;
  flex-direction: column;
}

.featured-posts .author-info .author-details .author-name {
  font-weight: 600;
  color: var(--heading-color);
  font-size: 14px;
  margin-bottom: 2px;
}

.featured-posts .author-info .author-details .publish-date {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.featured-posts h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 15px;
  color: var(--heading-color);
  display: -webkit-box;
  -webkit-line-clamp: 2;      /* Número de líneas */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 768px) {
  .featured-posts h3 {
    font-size: 18px;
  }
}

.featured-posts h3 a {
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.featured-posts h3 a:hover {
  color: var(--accent-color);
}

.featured-posts .blog-card p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 15px;
  /* flex: 1; */
  display: -webkit-box;
  -webkit-line-clamp: 3;      /* Número de líneas */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featured-posts .blog-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.featured-posts .btn-read-more {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: auto;
  text-decoration: none;
}

.featured-posts .btn-read-more:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Catalog Posts Section
--------------------------------------------------------------*/
.catalog-posts .posts-tabs .nav-pills {
  display: inline-flex;
  padding: 8px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-radius: 50px;
}

.catalog-posts .posts-tabs .nav-pills .nav-item {
  margin: 0 5px;
}

.catalog-posts .posts-tabs .nav-pills .nav-item:first-child {
  margin-left: 0;
}

.catalog-posts .posts-tabs .nav-pills .nav-item:last-child {
  margin-right: 0;
}

.catalog-posts .posts-tabs .nav-pills .nav-link {
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 500;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.catalog-posts .posts-tabs .nav-pills .nav-link:hover {
  color: var(--accent-color);
}

.catalog-posts .posts-tabs .nav-pills .nav-link.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .catalog-posts .posts-tabs .nav-pills {
    flex-wrap: wrap;
    justify-content: center;
  }

  .catalog-posts .posts-tabs .nav-pills .nav-item {
    margin: 5px;
  }
}

.catalog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.08);
  padding: 25px;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.catalog-posts article:hover {
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.08);
}

.catalog-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.catalog-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.catalog-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;      /* Número de líneas */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.catalog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.catalog-posts .title a:hover {
  color: var(--accent-color);
}

.catalog-posts .post-author-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 15px;
  background: var(--accent-color);
}

.catalog-posts .post-author {
  font-weight: 600;
  color: var(--heading-color);
  font-size: 14px;
  margin-bottom: 2px;
}

.catalog-posts .post-date {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 768px) {
  .catalog-posts {
    padding-top: 25px;
  }
}

/*--------------------------------------------------------------
# Posts Details Section
--------------------------------------------------------------*/
.posts-details .article-header {
  margin: 0 auto 0;
  text-align: center;
}

.posts-details .article-header .meta-categories {
  margin-bottom: 1.5rem;
}

.posts-details .article-header .meta-categories .category {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  margin: 0 0.5rem;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 30px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.posts-details .article-header .title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .posts-details .article-header .title {
    font-size: 1.8rem;
  }
}

.posts-details .article-header .article-meta .post-info {
  display: flex;
  gap: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
}

.posts-details .article-header .article-meta .post-info span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .posts-details .article-header .article-meta .post-info {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.posts-details .article-wrapper {
  display: grid;
  grid-template-columns: minmax(350px, 300px) 1fr;
  gap: 2rem;
  position: relative;
}

@media (max-width: 992px) {
  .posts-details .article-wrapper {
    grid-template-columns: 1fr;
  }
}

.posts-details .article-wrapper .table-of-contents {
  position: sticky;
  top: 100px;
  height: fit-content;
  background: #f7f7f7;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.posts-details .article-wrapper #table-of-contents-mobile {
    display: none;
  }

@media (max-width: 992px) {
  .posts-details .article-wrapper #table-of-contents {
    display: none;
  }

  .posts-details .article-wrapper #table-of-contents-mobile {
    display: block;
  }
}

.posts-details .article-wrapper .table-of-contents h3 {
  font-size: 1.2rem;
  padding: 0 0 0 10px;
  color: var(--heading-color);
  border-left: 4px solid var(--accent-color);
}

.posts-details .article-wrapper .table-of-contents .post-item {
  display: flex;
}

.posts-details .article-wrapper .table-of-contents .post-item:last-child {
  margin-bottom: 0;
}

.posts-details .article-wrapper .table-of-contents .post-item img {
  width: 80px;
  height: auto;
  margin-right: 10px;
}

.posts-details .article-wrapper .table-of-contents .post-item h4 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 1;      /* Número de líneas */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.posts-details .article-wrapper .table-of-contents .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.posts-details .article-wrapper .table-of-contents .post-item h4 a:hover {
  color: var(--accent-color);
}

.posts-details .article-wrapper .table-of-contents .post-item time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.posts-details .article-wrapper .table-of-contents .button-back {
  background: var(--accent-color);
  border-radius: 30px;
  color: var(--background-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.posts-details .article-wrapper .table-of-contents .button-back:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.posts-details .article-wrapper .article-content {
  font-size: 1.15rem;
  line-height: 1.8;
}

.posts-details .article-wrapper .article-content .content-section h2 {
  font-size: 2.2rem;
  color: var(--heading-color);
}

.posts-details .article-wrapper .article-content .content-section h3 {
  font-size: 1.8rem;
  color: var(--heading-color);
}

.posts-details .article-wrapper .article-content .content-section h4 {
  color: var(--heading-color);
}

.posts-details .article-wrapper .article-content .content-section h5 {
  color: var(--heading-color);
}

.posts-details .article-wrapper .article-content .content-section h6 {
  color: var(--heading-color);
}

@media (max-width: 992px) {
  .posts-details .article-wrapper .article-content .content-section h2 {
    font-size: 1.8rem;
  }

  .posts-details .article-wrapper .article-content .content-section h3 {
    font-size: 1.6rem;
  }

  .posts-details .article-wrapper .article-content .content-section h4 {
    font-size: 1.4rem;
  }

  .posts-details .article-wrapper .article-content .content-section h5 {
    font-size: 1.2rem;
  }

  .posts-details .article-wrapper .article-content .content-section h6 {
    font-size: 1rem;
}
}

.posts-details .article-wrapper .article-content .content-section p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--heading-color);
}

.posts-details .article-wrapper .article-content .content-section a {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--accent-color);
  text-decoration: none;
}

.posts-details .article-wrapper .article-content .content-section ul,
.posts-details .article-wrapper .article-content .content-section ol {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.posts-details .article-wrapper .article-content .content-section ul li,
.posts-details .article-wrapper .article-content .content-section ol li {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.posts-details .article-footer {
  margin-top: 4rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

/*--------------------------------------------------------------
# Catalog Section
--------------------------------------------------------------*/
.catalog .catalog-filters {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.catalog .catalog-filters .filter-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.catalog .catalog-filters .filter-group {
  margin-bottom: 25px;
}

.catalog .catalog-filters .filter-group h5 {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.catalog .catalog-filters .filter-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.catalog .catalog-filters .filter-checkbox {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  color: var(--default-color);
  padding-left: 25px;
  transition: color 0.3s ease;
}

.catalog .catalog-filters .filter-checkbox:hover {
  color: var(--accent-color);
}

.catalog .catalog-filters .filter-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.catalog .catalog-filters .filter-checkbox input:checked~.checkmark {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.catalog .catalog-filters .filter-checkbox input:checked~.checkmark:after {
  display: block;
}

.catalog .catalog-filters .filter-checkbox .checkmark {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 16px;
  width: 16px;
  background-color: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.catalog .catalog-filters .filter-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid var(--contrast-color);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.catalog .catalog-filters .btn-apply-filter {
  background-color: var(--accent-color);
  color: var(--background-color);
}

.catalog .catalog-header .catalog-title h4 {
  color: var(--heading-color);
  font-size: 22px;
  font-weight: 600;
}

.catalog .catalog-header-mobile {
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
  border-radius: 15px;
}

.catalog .catalog-header .btn-filter {
  background-color: var(--accent-color);
  color: var(--background-color);
  border-color: var(--accent-color);
  padding: 10px 15px;
  border-radius: 15px;
  font-weight: 400;
}

.modal {
  z-index: 99999 !important;
}

.modal .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border-radius: 15px;
  overflow: hidden;
}

.modal .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.modal .faq-container .faq-item h3 {
  font-weight: 500;
  font-size: 17px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
}

.modal .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.modal .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.modal .faq-container .faq-item .faq-content .filter-group {
  overflow: hidden;
}

.modal .faq-container .faq-item .faq-content .filter-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal .faq-container .faq-item .faq-content .filter-checkbox {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  color: var(--default-color);
  padding-left: 25px;
  transition: color 0.3s ease;
}

.modal .faq-container .faq-item .faq-content .filter-checkbox:hover {
  color: var(--accent-color);
}

.modal .faq-container .faq-item .faq-content .filter-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.modal .faq-container .faq-item .faq-content .filter-checkbox input:checked~.checkmark {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.modal .faq-container .faq-item .faq-content .filter-checkbox input:checked~.checkmark:after {
  display: block;
}

.modal .faq-container .faq-item .faq-content .filter-checkbox .checkmark {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 16px;
  width: 16px;
  background-color: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.modal .faq-container .faq-item .faq-content .filter-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid var(--contrast-color);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.modal .faq-container .btn-apply-filter {
  background-color: var(--accent-color);
  color: var(--background-color);
}

.modal .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 22px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

.modal .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 25px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.modal .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.modal .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.modal .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.modal .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

.catalog .catalog-grid .catalog-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.catalog .catalog-grid .catalog-card:hover {
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.08);
}

.catalog .catalog-grid .catalog-image {
  position: relative;
  overflow: hidden;
  background-color: #E3E6EA;
}

.catalog .catalog-grid .catalog-image img {
  width: 100%;
  height: 210px;
  object-fit: fill;
}

.catalog .catalog-grid .catalog-image .catalog-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  color: var(--contrast-color);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.catalog .catalog-grid .catalog-image .catalog-badge.badge-new {
  background-color: #28a745;
}

.catalog .catalog-grid .catalog-image .catalog-discount {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.catalog .catalog-grid .catalog-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: #f7f7f7;
}

.catalog .catalog-grid .catalog-content .catalog-stats {
  margin-bottom: 0px;
}

.catalog .catalog-grid .catalog-content .catalog-stats h4 {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-transform: uppercase;
  line-height: 1.4;
}

.catalog .catalog-grid .catalog-content .catalog-stats .color {
  display: flex;
  align-items: center;
  gap: 3px;
}

.catalog .catalog-grid .catalog-content .catalog-stats .color i {
  font-size: 12px;
}

.catalog .catalog-grid .catalog-content .catalog-stats .color i::before {
  border: 2px solid #D5D8DE;
  border-radius: 50%;
}

.catalog .catalog-grid .catalog-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--heading-color);
  text-transform: uppercase;
  line-height: 1.8;
}

.catalog .catalog-grid .catalog-content .price-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0px;
  padding-top: 5px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.catalog .catalog-grid .catalog-content .price-info .price-sale {
  font-size: 17px;
  font-weight: 500;
  color: var(--accent-color);
}

.catalog .catalog-grid .catalog-content .price-info .price-list {
  font-size: 17px;
  font-weight: 500;
  color: var(--heading-color);
  text-decoration: line-through;
}

.catalog .catalog-grid .catalog-content .btn-catalog {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: auto;
}

.catalog .catalog-grid .catalog-content .btn-catalog:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.catalog .pagination-wrapper {
  margin-top: 40px;
}

.catalog .pagination-wrapper .pagination .page-item {
  margin: 0 3px;
}

.catalog .pagination-wrapper .pagination .page-item .page-link {
  border: none;
  background-color: var(--surface-color);
  color: var(--default-color);
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.catalog .pagination-wrapper .pagination .page-item .page-link:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.catalog .pagination-wrapper .pagination .page-item.active .page-link {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.catalog .pagination-wrapper .pagination .page-item.disabled .page-link {
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  cursor: not-allowed;
}

.catalog .pagination-wrapper .pagination .page-item.disabled .page-link:hover {
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}


/* Móviles */
@media (max-width: 767px) {
  .catalog {
    padding-top: 25px;
  }
  .catalog .catalog-grid .catalog-card {
    margin-bottom: 20px;
  }

  .catalog .catalog-filters {
    padding: 20px;
  }

  .catalog .catalog-grid .catalog-image img {
    height: 130px;
  }

  .catalog .catalog-grid .catalog-content {
    padding: 10px;
  }

  .catalog .catalog-grid .catalog-content .catalog-stats h4 {
    font-size: 12px;
  }

  .catalog .catalog-grid .catalog-content h3 {
    font-size: 14px;
  }

  .catalog .catalog-grid .catalog-image .catalog-badge {
    top: 10px;
    left: 10px;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 500;
  }

  .catalog .catalog-grid .catalog-image .catalog-discount {
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 500;
  }

  .catalog .catalog-grid .catalog-content .price-info .price-sale,
  .catalog .catalog-grid .catalog-content .price-info .price-list {
    font-size: 13px;
  }

  .catalog .catalog-grid .catalog-content .btn-catalog {
    padding: 6px 10px;
    font-weight: 400;
  }
}

/* Tablets pequeñas (iPad Mini) */
@media (min-width: 768px) and (max-width: 819px) {
  .catalog .catalog-grid .catalog-image img {
    height: 150px;
  }
}

/* Tablets (iPad, iPad Air, iPad Pro 11) */
@media (min-width: 820px) and (max-width: 991px) {
  .catalog .catalog-grid .catalog-image img {
    height: 150px;
  }
}

/* Tablets grandes (iPad Pro 12.9) */
@media (min-width: 992px) and (max-width: 1199px) {
  .catalog .catalog-grid .catalog-image img {
    height: 150px;
  }
}

/* Escritorio */
/* @media (min-width: 1200px) {} */

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.heros {
  position: relative;
  background-color: var(--background-color);
  overflow: visible;
  margin-bottom: 7vh;
}

.heros::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 95vh;
  background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), linear-gradient(to bottom,rgba(0,0,0,0) 30%,rgba(0,0,0,0.7) 85%,rgba(0,0,0,0.95) 100%), var(--hero-bg);
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.heros .container {
  position: relative;
  z-index: 1;
}

.heros .heros-content {
  position: relative;
  margin-top: 50px;
}

.heros .heros-content h4 {
  font-weight: 500;
  font-size: 16px;
  color: color-mix(in srgb, var(--background-color), transparent 20%);
  letter-spacing: 1px;
}

.heros .heros-content h1 {
  font-size: 40px;
  font-weight: 700;
  color: var(--background-color);
  text-transform: uppercase;
  letter-spacing: -1px;
}

.heros .heros-content h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--background-color);
  text-transform: uppercase;
  letter-spacing: -1px;
}

.heros .heros-content p {
  font-size: 17px;
  color: color-mix(in srgb, var(--background-color), transparent 20%);
}

/* Estilo para las dots Motocicletas*/
.heros .heros-color .dot-color {
  width: 40px;
  height: 40px;
  padding: 3px;
  border: 1px solid #D5D8DE;
  border-radius: 50px;
  -webkit-box-shadow: 0 0 0 2px transparent;
  box-shadow: 0 0 0 2px transparent;
  cursor: pointer;
}

.heros .heros-color .color-active {
  background-color: #D5D8DE;
  -webkit-box-shadow: 0 0 0 2px #D5D8DE;
  box-shadow: 0 0 0 2px #D5D8DE;
}

.heros .heros-prices h3 {
  font-size: 20px;
  color: var(--background-color);
}

.heros .heros-buttons .btn-quotation {
  display: inline-block;
  padding: 18px 30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.heros .heros-buttons .btn-quotation:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.heros .trust-badges .badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.heros .trust-badges .badge-item .icon-svg {
  width: 45px;
  fill: var(--accent-color);
}

.heros .trust-badges .badge-item .badge-text {
  display: flex;
  flex-direction: column;
}

.heros .trust-badges .badge-item .badge-text .count {
  font-size: 20px;
  font-weight: 500;
  color: var(--background-color);
  line-height: 1;
}

.heros .trust-badges .badge-item .badge-text .label {
  font-size: 14px;
  color: color-mix(in srgb, var(--background-color), transparent 20%);
}

.heros .heros-image {
  position: relative;
  z-index: 5;
  left: -5%;
  transform: translateY(20%);
}

.heros .heros-image img {
  width: 100%;
  height: 100%;
}

/* Móviles */
@media (max-width: 767px) {
  .heros {
    margin-bottom: auto;
  }
  
  .heros::before {
    height: 40vh;
  }

  .heros .heros-image {
    left: 0;
    transform: translateY(20%);
  }

  .heros .heros-content {
    margin-top: 50px;
  }

  .heros .heros-content h4,
  .heros .heros-content h1,
  .heros .heros-content h2,
  .heros .heros-content p,
  .heros .heros-prices .price-costa-sale,
  .heros .heros-prices .price-selva-sale {
    color: var(--default-color);
  }

  .heros .heros-buttons .btn-quotation {
    border-radius: 50px;
    padding: 14px 20px;
    width: 100%;
    font-size: 18px;
  }

  .heros .trust-badges .badge-item .icon-svg {
    width: 40px;
  }

  .heros .trust-badges .badge-item .badge-text .count {
    font-size: 18px;
  }

  .heros .trust-badges .badge-item .badge-text .count,
  .heros .trust-badges .badge-item .badge-text .label {
    color: var(--default-color);
  }
}

/* Tablets pequeñas (iPad Mini) */
@media (min-width: 768px) and (max-width: 819px) {
  .heros {
    margin-bottom: auto;
  }

  .heros::before {
    height: 55vh;
  }

  .heros .heros-image {
    left: 0;
    transform: translateY(20%);
  }

  .heros .heros-content {
    margin-top: 70px;
  }

  .heros .heros-content h4,
  .heros .heros-content h1,
  .heros .heros-content h2,
  .heros .heros-content p,
  .heros .heros-prices .price-costa-sale,
  .heros .heros-prices .price-selva-sale {
    color: var(--default-color);
  }

  .heros .heros-buttons .btn-quotation {
    border-radius: 50px;
    padding: 14px 20px;
    width: 100%;
    font-size: 18px;
  }

  .heros .trust-badges .badge-item .badge-text .count,
  .heros .trust-badges .badge-item .badge-text .label {
    color: var(--default-color);
  }
}

/* Tablets (iPad, iPad Air, iPad Pro 11) */
@media (min-width: 820px) and (max-width: 991px) {
  .heros {
    margin-bottom: auto;
  }

  .heros::before {
    height: 48vh;
  }

  .heros .heros-image {
    left: 0;
    transform: translateY(20%);
  }

  .heros .heros-content {
    margin-top: 70px;
  }

  .heros .heros-content h4,
  .heros .heros-content h1,
  .heros .heros-content h2,
  .heros .heros-content p,
  .heros .heros-prices .price-costa-sale,
  .heros .heros-prices .price-selva-sale {
    color: var(--default-color);
  }

  .heros .heros-buttons .btn-quotation {
    border-radius: 50px;
    padding: 14px 20px;
    width: 100%;
    font-size: 18px;
  }

  .heros .trust-badges .badge-item .badge-text .count,
  .heros .trust-badges .badge-item .badge-text .label {
    color: var(--default-color);
  }
}

/* Tablets grandes (iPad Pro 12.9) */
@media (min-width: 992px) and (max-width: 1199px) {
  .heros {
    margin-bottom: auto;
  }

  .heros::before {
    height: 50vh;
  }

  .heros .heros-image {
    left: 0;
    transform: translateY(20%);
  }

  .heros .heros-content {
    margin-top: 40px;
  }

  .heros .trust-badges .badge-item .icon-svg {
    width: 32px;
  }

  .heros .trust-badges .badge-item .badge-text .count {
    font-size: 16px;
  }
}

/* Escritorio */
@media (min-width: 1200px) {}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
  background-image: linear-gradient(rgb(0, 0, 0) 28.84%, rgba(49, 49, 49, 0.7) 74.04%), url(https://carsaperupoc.vtexassets.com/arquivos/carsamotos_background.jpg);
  background-size: cover;
  background-position: 50% center;
}

.gallery .swiper-pagination {
  bottom: 0;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  opacity: 1;
  margin: 0 5px;
  transition: 0.3s;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 5px;
  background-color: var(--accent-color);
}

.gallery .swiper-button-prev,
.gallery .swiper-button-next {
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-radius: 50%;
  color: var(--contrast-color);
  transition: 0.3s;
}

.gallery .swiper-button-prev:after,
.gallery .swiper-button-next:after {
  font-size: 16px;
}

.gallery .swiper-button-prev:hover,
.gallery .swiper-button-next:hover {
  background-color: var(--accent-color);
}

.gallery .swiper-wrapper {
  height: 60vh; 
}

.gallery .swiper-slide {
  width: auto; 
  height: 100%;
}

.gallery .swiper-slide img {
  height: 100%;
  width: 100%;
  object-fit: contain; 
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery .swiper-slide:not(.swiper-slide-active) img {
  opacity: 0.4;
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-slide-active img {
    opacity: 1;
  }
  
  .gallery .swiper-slide-active {
    background: var(--background-color);
    z-index: 1;
    transform: scale(1.2);
  }
}

@media (max-width: 768px) {
  .gallery .swiper-wrapper {
    height: 25vh; 
  }
}

/*--------------------------------------------------------------
# Spec Section
--------------------------------------------------------------*/
.spec .spec-title {
  font-size: 30px;
  font-weight: 700;
  position: relative;
}

.spec .spec-tabs .nav-pills {
  display: inline-flex;
  padding: 8px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-radius: 50px;
}

.spec .spec-tabs .nav-pills .nav-item {
  margin: 0 5px;
}

.spec .spec-tabs .nav-pills .nav-item:first-child {
  margin-left: 0;
}

.spec .spec-tabs .nav-pills .nav-item:last-child {
  margin-right: 0;
}

.spec .spec-tabs .nav-pills .nav-link {
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 500;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.spec .spec-tabs .nav-pills .nav-link:hover {
  color: var(--accent-color);
}

.spec .spec-tabs .nav-pills .nav-link.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.spec .spec-cta {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  padding: 30px;
  border-radius: 10px;
}

.spec .spec-cta .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 400;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.spec .spec-cta .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  border-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .spec .spec-tabs .nav-pills {
    flex-wrap: wrap;
    justify-content: center;
  }

  .spec .spec-tabs .nav-pills .nav-item {
    margin: 5px;
  }
}

/*--------------------------------------------------------------
# Store Section
--------------------------------------------------------------*/
.store .store-tabs .nav-pills {
  display: inline-flex;
  padding: 8px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-radius: 50px;
}

.store .store-tabs .nav-pills .nav-item {
  margin: 0 5px;
}

.store .store-tabs .nav-pills .nav-item:first-child {
  margin-left: 0;
}

.store .store-tabs .nav-pills .nav-item:last-child {
  margin-right: 0;
}

.store .store-tabs .nav-pills .nav-link {
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 500;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.store .store-tabs .nav-pills .nav-link:hover {
  color: var(--accent-color);
}

.store .store-tabs .nav-pills .nav-link.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .store .store-tabs .nav-pills {
    flex-wrap: wrap;
    justify-content: center;
  }

  .store .store-tabs .nav-pills .nav-item {
    margin: 5px;
  }
}

.store .php-store-form {
  background-color: #f4f3f3;
}

.store .php-store-form .form-label {
  font-size: 14px;
  font-weight: 400;
}

.store .php-store-form .form-control {
  height: auto;
  padding: 14px 20px;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 30%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.store .php-store-form .form-control:focus {
  background-color: var(--surface-color);
  border-color: var(--accent-color);
  box-shadow: none;
}

.store .php-store-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

/* Estilo selectpicker */
.store .php-store-form .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 100% !important;
}

.store .php-store-form .bootstrap-select>.dropdown-toggle.bs-placeholder {
  padding: 14px 20px !important;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 30%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.store .php-store-form .bootstrap-select [type=button]:not(:disabled), 
.store .php-store-form .bootstrap-select [type=reset]:not(:disabled), 
.store .php-store-form .bootstrap-select [type=submit]:not(:disabled), 
.store .php-store-form .bootstrap-select button:not(:disabled) {
  padding: 14px 20px !important;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 30%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.store .php-store-form .bootstrap-select .dropdown-toggle .filter-option-inner-inner {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.store .php-store-form .bootstrap-select>.dropdown-toggle.bs-placeholder:focus {
  box-shadow: none !important;
}

.store .php-store-form .bootstrap-select .dropdown-toggle:focus, .bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
  outline: none !important;
}

.store .php-store-form .bootstrap-select .dropdown-item.active, .dropdown-item:active {
  background-color: #a9a9a9 !important;
}
/* End selectpicker */

.store .recent-post {
  background-color: var(--contrast-color);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.08);
}

.store .recent-post:hover {
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.08);
}

.store .recent-content .recent-title {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 800;
}

.store .recent-content .category {
  display: inline-block;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 15px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-color), transparent 80%));
  color: var(--accent-color);
  border-radius: 50px;
}

.store .recent-content .recent-meta i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-weight: 500;
  font-size: 16px;
}

.store .recent-content .recent-meta p {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-weight: 400;
  font-size: 14px;
}

.store .recent-content .recent-meta span {
  color: var(--default-color);
  font-size: 1rem;
}

.store .recent-content .btn-catalog {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: auto;
}

.store .recent-content .btn-catalog:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Compare Section
--------------------------------------------------------------*/
.compare .php-compare-form .boxes {
  background-color: #f4f3f3;
}

.compare .php-compare-form .form-label {
  font-size: 14px;
  font-weight: 400;
}

.compare .php-compare-form .form-control {
  height: auto;
  padding: 14px 20px;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 30%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.compare .php-compare-form .form-control:focus {
  background-color: var(--surface-color);
  border-color: var(--accent-color);
  box-shadow: none;
}

.compare .php-compare-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

/* Estilo selectpicker */
.compare .php-compare-form .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 100% !important;
}

.compare .php-compare-form .bootstrap-select>.dropdown-toggle.bs-placeholder {
  padding: 14px 20px !important;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 30%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.compare .php-compare-form .bootstrap-select [type=button]:not(:disabled), 
.compare .php-compare-form .bootstrap-select [type=reset]:not(:disabled), 
.compare .php-compare-form .bootstrap-select [type=submit]:not(:disabled), 
.compare .php-compare-form .bootstrap-select button:not(:disabled) {
  padding: 14px 20px !important;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 30%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.compare .php-compare-form .bootstrap-select .dropdown-toggle .filter-option-inner-inner {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.compare .php-compare-form .bootstrap-select>.dropdown-toggle.bs-placeholder:focus {
  box-shadow: none !important;
}

.compare .php-compare-form .bootstrap-select .dropdown-toggle:focus, .bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
  outline: none !important;
}

.compare .php-compare-form .bootstrap-select .dropdown-item.active, .dropdown-item:active {
  background-color: #a9a9a9 !important;
}
/* End selectpicker */

.compare .recent-post {
  background-color: var(--contrast-color);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.08);
}

.compare .recent-post:hover {
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.08);
}

.compare .recent-content .recent-title {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 800;
}

.compare .recent-content .category {
  display: inline-block;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 15px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-color), transparent 80%));
  color: var(--accent-color);
  border-radius: 50px;
}

.compare .recent-content .recent-meta i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-weight: 500;
  font-size: 16px;
}

.compare .recent-content .recent-meta p {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-weight: 400;
  font-size: 14px;
}

.compare .recent-content .recent-meta span {
  color: var(--default-color);
  font-size: 1rem;
}

.compare .recent-content .btn-catalog {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: auto;
}

.compare .recent-content .btn-catalog:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.compare .compare-cta {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  padding: 30px;
  border-radius: 10px;
}

.compare .compare-cta .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 400;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.compare .compare-cta .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  border-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
}