/**
* Template Name: FashionStore
* Template URL: https://bootstrapmade.com/fashion-store-bootstrap-template/
* Updated: Aug 15 2025 with Bootstrap v5.3.7
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font:  "Exo 2", sans-serif;
  --heading-font: "Exo 2", sans-serif;
  --nav-font:  "Exo 2", 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 { 
  --bg-texture:
    radial-gradient(
      circle at center,
      rgb(255, 255, 255) 0%,
      rgb(243, 232, 220) 50%,
      rgba(220,205,185,0.85) 100%
    );

   /* Background color for the entire website, including individual sections */
  --default-color: #202122; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #1c1a1a; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #6d0202; /* 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: #212529;  /* The default color of the main navmenu links */
  --nav-hover-color: #8c0d4f; /* 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: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #8c0d4f; /* 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:  #6d0202;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #232931;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #397deb;
  --surface-color: #38424f;
  --contrast-color: #ffffff;
}

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

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

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);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.logo-img {
  height: 60px;       /* ðŸ‘ˆ aquÃ­ controlas el tamaÃ±o */
  width: auto;
  max-height: 70px; 
}

/* Ocultamos el texto pero sin romper el layout */
.logo .sitename {
  display: none;
}

/* =========================
   DESKTOP (default)
========================= */

/* Imagen visible */
.logo-img {
  height: 60px;
  width: auto;
  display: block;
}

/* Texto oculto */
.logo .sitename {
  display: none;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

  /* Oculta imagen */
  .logo-img {
    display: none;
  }

  /* Muestra texto */
  .logo .sitename {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
  }
}


.header {
  min-height: 90px; /* o 80px */
  color: var(--default-color);
  background-color: var(--background-color);
  transition: all 0.5s;
  z-index: 997;
}

.header .top-bar {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  font-size: 18px;
}

.header .top-bar .top-bar-item {
  color: var(--default-color);
}

.header .top-bar .top-bar-item a {
  color: var(--accent-color);
  font-size: 18px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.header .top-bar .top-bar-item a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.header .top-bar .top-bar-item .selected-icon {
  color: var(--accent-color);
  opacity: 1;
  width: 16px;
}

.header .top-bar .dropdown-menu {
  min-width: 150px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 4px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.header .top-bar .dropdown-menu .dropdown-item {
  padding: 0.5rem 1rem;
  font-size: 14px;
  color: var(--default-color);
  display: flex;
  align-items: center;
}

.header .top-bar .dropdown-menu .dropdown-item .selected-icon {
  opacity: 1;
  color: var(--accent-color);
  width: 16px;
}

.header .top-bar .dropdown-menu .dropdown-item:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.header .main-header {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .main-header .logo {
  line-height: 1;
  display: flex;
  align-items: center;
}


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

.header .main-header .logo h1 span {

  color: var(--accent-color);
}

@media (max-width: 768px) {
  .header .main-header .logo h1 {
    font-size: 24px;
  }
}

.header .main-header .desktop-search-form {
  min-width: 440px;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .header .main-header .desktop-search-form {
    display: none;
  }
}

.header .main-header .header-actions {
  gap: 16px;
}

.header .main-header .header-actions .header-action-btn {
  position: relative;
  background: none;
  border: none;
  padding: 0.5rem;
  color: var(--accent-color);
  font-size: 15px;
  cursor: pointer;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.header .main-header .header-actions .header-action-btn i {
  font-size: 24px;
  margin-right: 6px;
}

.header .main-header .header-actions .header-action-btn:hover {
  color: var(--default-color);
}

.header .main-header .header-actions .header-action-btn .badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header .main-header .account-dropdown .dropdown-menu {
  background-color: var(--surface-color);
  min-width: 280px;
  padding: 0;
  border-radius: 6px;
  margin-top: 0.75rem;
  box-shadow: 0 5px 30px rgba(41, 21, 152, 0.15);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-header {
  padding: 1.25rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-header h6 {
  margin: 0 0 0.25rem;
  color: var(--heading-color);
  font-size: 16px;
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-header p {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-body {
  padding: 1rem 0;
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-body .dropdown-item {
  padding: 0.5rem 1.25rem;
  font-size: 14px;
  color: var(--default-color);
  transition: all 0.2s ease;
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-body .dropdown-item i {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: color 0.2s ease;
  font-size: 16px;
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-body .dropdown-item:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-body .dropdown-item:hover i {
  color: var(--accent-color);
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-footer {
  padding: 1.25rem;
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-footer .btn {
  font-size: 14px;
  padding: 0.5rem 1rem;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-footer .btn-outline-primary {
  border-color: var(--accent-color);
  background-color: transparent;
  color: var(--accent-color);
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-footer .btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.header .main-header .cart-dropdown .cart-dropdown-menu {
  background-color: var(--surface-color);
  min-width: 320px;
  padding: 0;
  border-radius: 6px;
  margin-top: 0.75rem;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  right: 0;
  left: auto;
}

@media (max-width: 576px) {
  .header .main-header .cart-dropdown .cart-dropdown-menu {
    min-width: 280px;
  }
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-header {
  padding: 1rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-header h6 {
  margin: 0;
  color: var(--heading-color);
  font-size: 16px;
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-body {
  max-height: 320px;
  overflow-y: auto;
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-body .cart-items {
  padding: 0.5rem 0;
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-body .cart-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-body .cart-item:last-child {
  border-bottom: none;
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-body .cart-item .cart-item-image {
  width: 50px;
  height: 50px;
  border-radius: 4px;
  overflow: hidden;
  margin-right: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-body .cart-item .cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-body .cart-item .cart-item-content {
  flex: 1;
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-body .cart-item .cart-item-content .cart-item-title {
  font-size: 14px;
  margin: 0 0 4px;
  color: var(--heading-color);
  font-weight: 500;
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-body .cart-item .cart-item-content .cart-item-meta {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-body .cart-item .cart-item-remove {
  background: none;
  border: none;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
  padding: 0;
  margin-left: 8px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-body .cart-item .cart-item-remove:hover {
  color: #dc3545;
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-footer {
  padding: 1rem;
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-footer .cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-weight: 500;
  color: var(--heading-color);
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-footer .cart-total .cart-total-price {
  font-size: 16px;
  color: var(--accent-color);
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-footer .cart-actions {
  display: flex;
  gap: 8px;
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-footer .cart-actions .btn {
  flex: 1;
  font-size: 14px;
  padding: 0.5rem 1rem;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-footer .cart-actions .btn-outline-primary {
  border-color: var(--accent-color);
  background-color: transparent;
  color: var(--accent-color);
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-footer .cart-actions .btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.header .search-form {
  margin: 0;
}

.header .search-form .input-group {
  position: relative;
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.header .search-form .input-group:focus-within {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.header .search-form .input-group .form-control {
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-right: none;
  padding: 14px 20px;
  font-size: 15px;
  background-color: transparent;
  color: var(--default-color);
  border-radius: 8px 0 0 8px;
}

.header .search-form .input-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 15px;
}

.header .search-form .input-group .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.header .search-form .input-group .search-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0 25px;
  border: 2px solid var(--accent-color);
  transition: all 0.3s ease;
  border-radius: 0 8px 8px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.header .search-form .input-group .search-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transition: width 0.3s ease;
  z-index: -1;
}

.header .search-form .input-group .search-btn:hover::before {
  width: 100%;
}

.header .search-form .input-group .search-btn i {
  font-size: 18px;
  position: relative;
}

.header .header-nav {
  background-color: var(--background-color);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 10px 0;
}


/* Desktop */
@media (min-width: 1200px) {
  .announcement-bar .swiper-slide {
    font-size: 18px;
  }
}

.header .announcement-bar {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  text-align: center;
  font-weight: 500;
  font-size: 18px;
}

.header .announcement-bar .announcement-slider {
  height: 24px;
  overflow: hidden;
}

.header .announcement-bar .announcement-slider .swiper-wrapper {
  height: auto !important;
}

.header .announcement-bar .announcement-slider .swiper-slide {
  text-align: center;
  height: 24px;
  line-height: 24px;
}

.header #mobileSearch {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  z-index: 1000;
}

.header #mobileSearch .search-form {
  padding: 10px 0;
}

@media (max-width: 991.98px) {
  .header .main-header .header-actions {
    gap: 0.5rem;
  }

  .header .main-header .header-actions .header-action-btn {
    padding: 0.25rem;
  }

  .header .main-header .header-actions .header-action-btn i {
    font-size: 20px;
    margin-right: 0;
  }
}



/*--------------------------------------------------------------
#Ola divisora
--------------------------------------------------------------*/

.section-divider {
  width: 100%;
  line-height: 0;
  overflow: hidden;
   
}

.section-divider svg {
  display: block;
  width: 100%;
  height: 90px;
  
}

.section-divider path {
 
  fill: #6d0202; /* color vino de la secciÃ³n de sectores */
}
.section-divider {

  width: 100%;
  line-height: 0;
  overflow: hidden;
  position: relative;
}



.section-divider svg {
  display: block;
  width: 100%;
  height: 90px;
 
}

/* OLA SUPERIOR */
.section-divider.top path {
  fill: #6d0202; /* vino */
}

/* OLA INFERIOR */
.section-divider.bottom path {
  fill: #6d0202; /* color de la secciÃ³n siguiente */
}

/*--------------------------------------------------------------
# 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;
    justify-content: space-between; 
    width: 100%;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 20px;
  }

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

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 20px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 600;
    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;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-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: var(--accent-color);
  }

  .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(--accent-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

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

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    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);
    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(--accent-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--accent-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: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    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;
  }
}


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

.footer .footer-main {
  padding: 70px 0 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.footer .footer-main .footer-widget {
  margin-bottom: 30px;
}

.footer .footer-main .footer-widget .logo {
  display: inline-block;
  margin-bottom: 20px;
}

.footer .footer-main .footer-widget .logo span {
  color: #f6efe4;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: var(--heading-font);
}

.footer .footer-main .footer-widget p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: #f6efe4;
}

.footer .footer-main .footer-widget h4 {
  color: #f6efe4;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-main .footer-widget h4:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #f6efe4;
  bottom: 0;
  left: 0;
}

.footer .footer-main .footer-widget h5 {
  color: #f6efe4;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
}

.footer .footer-main .footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.footer .footer-main .footer-contact .contact-item i {
  color: #f6efe4;
  font-size: 18px;
  margin-right: 12px;
  margin-top: 3px;
}

.footer .footer-main .footer-contact .contact-item span {
  color: #f6efe4;
  line-height: 1.5;
}

.footer .footer-main .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-main .footer-links li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 15px;
}

.footer .footer-main .footer-links li:before {
  content: ">";
  position: absolute;
  left: 0;
  top: 0;
  color: #f6efe4;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer .footer-main .footer-links a {
  color: #f6efe4;
  transition: all 0.3s ease;
}

.footer .footer-main .footer-links a:hover {
  color:#eeb7b7;
}

.footer .footer-main .app-buttons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.footer .footer-main .app-buttons .app-btn {
  display: flex;
  align-items: center;
  background-color: color-mix(in srgb, #f6efe4, transparent 90%);
  color: var(--default-color);
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.footer .footer-main .app-buttons .app-btn i {
  font-size: 20px;
  margin-right: 8px;
}

.footer .footer-main .app-buttons .app-btn span {
  font-size: 13px;
  font-weight: 500;
}

.footer .footer-main .app-buttons .app-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.968);
}

.footer .footer-main .social-links {
  margin-top: 25px;
}

.footer .footer-main .social-links h5 {
  margin-bottom: 15px;
}

.footer .footer-main .social-links .social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer .footer-main .social-links .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 90%);
  color: #f6efe4;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer .footer-main .social-links .social-icons a:hover {
  background-color:#0d0d0d15;
  color: #eeb7b7;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 247, 247, 0.322);
}

.footer .footer-bottom {
  padding: 25px 0;
  border-top: 1px solid rgba(232, 220, 220, 0.3);
}


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

.footer .footer-bottom .copyright p strong {
  color: #f6efe4;
}

.footer .footer-bottom .legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer .footer-bottom .legal-links a {
  color: #f6efe4;
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer .footer-bottom .legal-links a:hover {
  color: #eeb7b7;
}

@media (max-width: 991.98px) {
  .footer .footer-main {
    padding: 60px 0 30px;
  }

  .footer .footer-widget h4 {
    margin-bottom: 20px;
  }
}

@media (max-width: 767.98px) {
  .footer .footer-main {
    padding: 50px 0 20px;
  }

  .footer .footer-main .footer-widget {
    text-align: center;
  }

  .footer .footer-main .footer-widget h4:after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer .footer-main .footer-contact .contact-item {
    justify-content: center;
    color: #eeb7b7;
  }
  
  .footer .footer-main .footer-contact .contact-item span {
    justify-content: center;
    color: #ead4d4;
  }

  .footer .footer-main .footer-links li {
    padding-left: 0;
  }

  .footer .footer-main .footer-links li:before {
    display: none;
  }

  .footer .footer-main .app-buttons {
    justify-content: center;
  }

  .footer .footer-main .social-icons {
    justify-content: center;
  }

  .footer .footer-bottom .copyright,
  .footer .footer-bottom .credits {
    text-align: center;
  }
}

.footer-logo {
  max-width: 180px;
  height: auto;
  display: block;
}

.footer .logo {
  display: inline-block;
  margin-bottom: 16px;
}

/* Texto solo para SEO y accesibilidad */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-logo {
    max-width: 150px;
  }
}



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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

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

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

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

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.section-title p {
  margin-bottom: 0;
  font-size: 20px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.hero .hero-slider {
  position: relative;
}

.hero .hero-slider .swiper-wrapper {
  height: auto !important;
}

.hero .hero-slider .swiper-slide {
  pointer-events: auto !important;
  padding: 2rem 0;
}

.hero .hero-slider .swiper-slide .row {
  min-height: 500px;
}

.hero .hero-slider .swiper-pagination {
  bottom: 0;
}

.hero .hero-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

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

.hero .hero-slider .swiper-button-prev,
.hero .hero-slider .swiper-button-next {
  width: 44px;
  height: 44px;
  background-color: var(--surface-color);
  border-radius: 50%;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  top: auto;
  bottom: 10px;
}

.hero .hero-slider .swiper-button-prev::after,
.hero .hero-slider .swiper-button-next::after {
  font-size: 1.25rem;
  color: var(--accent-color);
}

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

.hero .hero-slider .swiper-button-prev:hover::after,
.hero .hero-slider .swiper-button-next:hover::after {
  color: var(--contrast-color);
}

.hero .hero-slider .swiper-button-prev {
  left: calc(50% - 60px);
}

.hero .hero-slider .swiper-button-next {
  right: calc(50% - 60px);
}

.hero .slide-content .slide-badge {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}

.hero .slide-content h1 {
  font-size: 4.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero .slide-content h1 span {
  color: var(--accent-color);
  position: relative;
}

.hero .slide-content h1 span::after {
  content: "";
  position: absolute;
  bottom: 0.25rem;
  left: 0;
  width: 100%;
  height: 0.5rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  z-index: -1;
}

.hero .slide-content p {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero  .slide-cta {
  margin-bottom: 0rem;
}

.hero  .slide-cta {
  position: relative;
  z-index: 5;
}

.hero .slide-content .slide-cta .btn {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 5rem;
  transition: all 0.3s ease;
}

.hero .slide-content .slide-cta .btn.btn-shop {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
}

.hero .slide-content .slide-cta .btn.btn-shop i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}



.hero .slide-content .slide-cta .btn.btn-shop:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
}

.hero .slide-content .slide-cta .btn.btn-shop:hover i {
  transform: translateX(5px);
}

.hero .slide-new .product-showcase {
  padding: 1rem;
}

.hero .slide-new .product-showcase .product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.hero .slide-new .product-showcase .product-grid .product-item {
  background-color: var(--surface-color);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero .slide-new .product-showcase .product-grid .product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.hero .slide-new .product-showcase .product-grid .product-item .product-image {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.hero .slide-new .product-showcase .product-grid .product-item .product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.hero .slide-new .product-showcase .product-grid .product-item .product-info {
  padding: 1rem;
  text-align: center;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.hero .slide-new .product-showcase .product-grid .product-item .product-info h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hero .slide-new .product-showcase .product-grid .product-item .product-info .price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--accent-color);
}

.hero .slide-sale .countdown-container {
  margin-top: 1.5rem;
}

.hero .slide-sale .countdown-container .countdown-label {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.hero .slide-sale .countdown-container .countdown {
  display: flex;
  gap: 1rem;
}

.hero .slide-sale .countdown-container .countdown>div {
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  min-width: 70px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.hero .slide-sale .countdown-container .countdown>div h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--accent-color);
}

.hero .slide-sale .countdown-container .countdown>div h4 {
  font-size: 0.75rem;
  font-weight: 500;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hero .slide-sale .sale-showcase {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero .slide-sale .sale-showcase .main-product {
  position: relative;
  max-width: 100%;
}

.hero .slide-sale .sale-showcase .main-product img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
}

.hero .slide-sale .sale-showcase .main-product .discount-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.hero .slide-sale .sale-showcase .main-product .discount-badge .percent {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}

.hero .slide-sale .sale-showcase .main-product .discount-badge .text {
  font-size: 1rem;
  font-weight: 600;
}

.hero .slide-sale .sale-showcase .floating-tag {
  position: absolute;
  bottom: 2rem;
  left: 0;
  background-color: var(--surface-color);
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero .slide-sale .sale-showcase .floating-tag .tag-content .tag-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hero .slide-sale .sale-showcase .floating-tag .tag-content .tag-price {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero .slide-sale .sale-showcase .floating-tag .tag-content .tag-price .old-price {
  font-size: 1rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: line-through;
}

.hero .slide-sale .sale-showcase .floating-tag .tag-content .tag-price .new-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-color);
}

.hero .slide-featured .feature-list {
  margin-top: 1.5rem;
}

.hero .slide-featured .feature-list .feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero .slide-featured .feature-list .feature-item i {
  font-size: 1.25rem;
  color: var(--accent-color);
}

.hero .slide-featured .feature-list .feature-item span {
  font-size: 1rem;
  font-weight: 500;
}

.hero .slide-featured .featured-showcase {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero .slide-featured .featured-showcase .featured-image {
  position: relative;
  max-width: 100%;
}

.hero .slide-featured .featured-showcase .featured-image img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
}

.hero .slide-featured .featured-showcase .featured-image .featured-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.hero .slide-featured .featured-showcase .featured-image .featured-badge i {
  font-size: 1rem;
}

.hero .slide-featured .featured-showcase .floating-review {
  position: absolute;
  bottom: 2rem;
  right: 0;
  background-color: var(--surface-color);
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 250px;
}

.hero .slide-featured .featured-showcase .floating-review .review-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.hero .slide-featured .featured-showcase .floating-review .review-stars i {
  color: #FFD700;
  font-size: 1rem;
}

.hero .slide-featured .featured-showcase .floating-review .review-text {
  font-size: 0.875rem;
  font-style: italic;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.hero .slide-featured .featured-showcase .floating-review .review-author {
  font-size: 0.75rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

@media (max-width: 991.98px) {
  .hero {
    padding: 60px 0;
  }

  .hero .hero-slider .swiper-slide .row {
    min-height: auto;
  }

  .hero .hero-slider .swiper-wrapper {
    height: auto !important;
  }

  .hero .slide-content {
    text-align: center;
    margin-bottom: 3rem;
  }

  .hero .slide-content h1 {
    font-size: 2.5rem;
  }

  .hero .slide-content .slide-cta {
    justify-content: center;
  }

  .hero .slide-content .feature-list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero .slide-sale .countdown-container .countdown {
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .hero {
    padding: 40px 0;
  }

  .hero .hero-slider .swiper-button-prev,
  .hero .hero-slider .swiper-button-next {
    width: 36px;
    height: 36px;
  }

  .hero .hero-slider .swiper-button-prev::after,
  .hero .hero-slider .swiper-button-next::after {
    font-size: 1rem;
  }

  .hero .hero-slider .swiper-button-prev {
    left: calc(50% - 50px);
  }

  .hero .hero-slider .swiper-button-next {
    right: calc(50% - 50px);
  }

  .hero .hero-slider .swiper-slide {
    pointer-events: none;
    height: auto;
  }


  .hero .hero-slider .swiper-slide-active {
    pointer-events: auto;
   
  }

  .hero .hero-slider .swiper-slide .row {
    min-height: 0;
  }


  .hero .slide-content h1 {
    font-size: 2rem;
  }

  .hero .slide-content p {
    font-size: 1rem;
  }

  .hero .slide-sale .countdown-container {
    margin-top: 1rem;
  }

  .hero .slide-sale .countdown-container .countdown-label {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }

  .hero .slide-sale .countdown-container .countdown {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }

  .hero .slide-sale .countdown-container .countdown>div {
    min-width: 55px;
    padding: 0.5rem;
  }

  .hero .slide-sale .countdown-container .countdown>div h3 {
    font-size: 1.25rem;
    margin-bottom: 0.125rem;
  }

  .hero .slide-sale .countdown-container .countdown>div h4 {
    font-size: .7rem;
  }

  .hero .slide-sale .sale-showcase .main-product .discount-badge {
    width: 4rem;
    height: 4rem;
  }

  .hero .slide-sale .sale-showcase .main-product .discount-badge .percent {
    font-size: 1.5rem;
  }

  .hero .slide-sale .sale-showcase .main-product .discount-badge .text {
    font-size: 0.875rem;
  }

  .hero .slide-featured .featured-showcase .featured-image .featured-badge {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
  }

  .hero .slide-featured .featured-showcase .floating-review {
    bottom: 1rem;
    right: 1rem;
    padding: 0.75rem;
    max-width: 200px;
  }
}


/* Logo principal - Slide 1 */
.hero-logo-main img {
  width: 550px;
  opacity: 1;
}

.hero-logo {
  display: flex;
  justify-content: flex-end;
}

.hero-logo img {
  width: 180px;
  margin-bottom: 16px;
  opacity: .4;
}




/* Mobile */
@media (max-width: 767px) {

  .hero-logo {
   display: flex;
  justify-content: center;
  }

  .hero-logo img {
    margin-top: 15px;
  }
  .hero-logo-main img {
    max-width: 240px;
  }

}


/*--------------------------------------------------------------
# Promo Cards Section
--------------------------------------------------------------*/
.promo-cards {
  --default-color: #666;
  --heading-color: #333;
}

#promo-cards {
  overflow: hidden;
}


.promo-card {
  min-width: 10px;
  flex-shrink: 0;
}

.promo-cards .promo-card {
  position: relative;
  min-height: 480px;
  padding: 1.5rem;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  transition: transform 0.3s ease;
  color: #fff;

}

.promo-cards .promo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(230, 204, 204, 0.088); /* ajusta 0.35â€“0.55 */
  z-index: 1;
}


.promo-cards .promo-card:hover {
  transform: translateY(-5px);
}

.promo-cards .promo-card .promo-content {
  position: relative;
  z-index: 2;
  max-width: 80%;
}

.promo-cards .promo-card .small-text {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.promo-cards .promo-card .promo-title {
 
  overflow: hidden;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.promo-cards .promo-card .promo-description {
  overflow: hidden;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}



.promo-cards .promo-card.card-1 {
   background-image:url("../img/index/card1.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
}

.promo-cards .promo-card.card-1 .promo-title {
  color: #6d0202;
  text-shadow: 
    -2px -2px 0 #ffffff,
     2px -2px 0 #fbf9f9,
    -2px  2px 0 #fdfdfd89,
     2px  2px 0 #ffffff;
}

.promo-cards .promo-card.card-2 {
   background-image:url("../img/index/card2.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--default-color);
}

.promo-cards .promo-card.card-2 .promo-title {
   color: #6d0202;
   text-shadow:  
    -2px -2px 0 #ffffff,
     2px -2px 0 #fbf9f9,
    -2px  2px 0 #fdfdfd89,
     2px  2px 0 #ffffff;
}

.promo-cards .promo-card.card-3 {
   background-image:url("../img/index/card3.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--default-color);
}

.promo-cards .promo-card.card-3 .promo-title {
   color: #6d0202;
   text-shadow:  
    -2px -2px 0 #ffffff,
     2px -2px 0 #fbf9f9,
    -2px  2px 0 #fdfdfd89,
     2px  2px 0 #ffffff;
}

.promo-cards .promo-card.card-4 {
  background-image:url("../img/index/card4.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--default-color);
}

.promo-cards .promo-card.card-4 .promo-title {
   color:#6d0202;
   text-shadow: 
    -2px -2px 0 #ffffff,
     2px -2px 0 #fbf9f9,
    -2px  2px 0 #fdfdfd89,
     2px  2px 0 #ffffff;

}


.promo-cards .promo-card.card-5 {
  background-image:url("../img/index/card5.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--default-color);
}

.promo-cards .promo-card.card-5 .promo-title {
   color:#6d0202;
   text-shadow: 
    -2px -2px 0 #ffffff,
     2px -2px 0 #fbf9f9,
    -2px  2px 0 #fdfdfd89,
     2px  2px 0 #ffffff;

}


.promo-cards .promo-card.card-6 {
  background-image:url("../img/index/card6.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--default-color);
}

.promo-cards .promo-card.card-6 .promo-title {
   color:#6d0202;
   text-shadow: 
    -2px -2px 0 #ffffff,
     2px -2px 0 #fbf9f9,
    -2px  2px 0 #fdfdfd89,
     2px  2px 0 #ffffff;

}

.promo-cards .promo-description,
.promo-cards .small-text {
  color:#ffffff;
  font-size: 16px !important;
  font-weight: bolder;
   text-shadow: 
    -1px -1px 0 #000000,
     1px -1px 0 #050505,
    -1px  1px 0 #000000,
     2px  2px 0 #000000;
  
}

@media (max-width: 1024px) {

  .promo-cards .row {
    animation: none;
    flex-wrap: wrap;          /* ahora sí permite bajar */
    overflow: visible;
    justify-content: center;
  }

  .promo-card {
    width: 90%;
    min-width: 90%;
    max-width: 700px;   /* evita que se estiren demasiado */
    margin: 0 auto;
  }

}


@media (max-width: 768px) {

  .promo-cards .row {
    animation: none;
    flex-wrap: wrap;      /* ← permite que bajen */
    width: 100%;
    justify-content: center;
  }

  .promo-card {
    min-width: 100%;
    width: 100%;
  }

}

@media (min-width: 1025px) {

  .promo-cards:hover .row {
    animation-play-state: paused;
  }

}

@media (max-width: 768px) {
  .duplicada {
    display: none;
  }
}

.slider-wrapper{
  overflow:hidden;
  width:100%;
}

.slider-track{
  display:flex;
  gap:60px;
}

/* IMPORTANTE: quitar bootstrap cols del flow */
.slider-track > div{
  flex:0 0 auto;
}

/* tamaño real tarjeta */
.promo-card{
  width:260px;
  flex:0 0 260px;
}


/* ========================= */
/* DESKTOP ANIMACION */
/* ========================= */

@media (min-width:1025px){

  .slider-track{
    animation:scrollCards 35s linear infinite;
  }

  .promo-cards:hover .slider-track{
    animation-play-state:paused;
  }

}

@keyframes scrollCards{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}


/* ========================= */
/* MOBILE */
/* ========================= */

@media (max-width:1024px){

  .slider-track{
    animation:none;
    flex-wrap:wrap;
    justify-content:center;
  }

  /* OCULTAR DUPLICADAS CORRECTAMENTE */
  .slider-track > div:nth-child(n+7){
    display:none;
  }

  .promo-card{
    width:90%;
    max-width:500px;
  }

}

/*--------------------------------------------------------------
# Extra Showcase Section (Image Slider)
--------------------------------------------------------------*/
.extra-showcase {
  position: relative;
  width: 100%;
  min-height: 70vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #5f0202ef;
}

/* Overlay oscuro */
.extra-showcase-overlay {
  position: absolute;
  inset: 0;
  background: #6d020289;
  z-index: 1;
}

/* Contenido */
.extra-showcase-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 900px;
  padding: 2rem;
}


.extra-showcase-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #f6efe4;
  text-shadow: 
    -1px -1px 0 #6d020289,
     2px -2px 0 #6d020289,
    -1px  1px 0 #6d020289,
     2px  2px 0 #6d020289;
  
}

.extra-showcase-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  text-shadow: 
    -1px -1px 0 #6d020289,
     2px -1px 0 #6d020289,
    -1px  1px 0 #6d020289,
     1px  1px 0 #6d020289;
}
/*--------------------------------------------------------------
# Slider solo CSS (FIX)
--------------------------------------------------------------*/
.extra-showcase-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.extra-showcase-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: extraShowcaseFade 12s infinite;
}

/* delays correctos */
.extra-showcase-media img:nth-child(1) {
  animation: showcase1 15s infinite;
}

.extra-showcase-media img:nth-child(2) {
  animation: showcase2 15s infinite;
}

.extra-showcase-media img:nth-child(3) {
  animation: showcase3 15s infinite;
}

/* Keyframes individuales */
@keyframes showcase1 {
  0%   { opacity: 1; }
  30%  { opacity: 1; }
  33%  { opacity: 0; }
  100% { opacity: 0; }
}

@keyframes showcase2 {
  0%   { opacity: 0; }
  33%  { opacity: 0; }
  36%  { opacity: 1; }
  63%  { opacity: 1; }
  66%  { opacity: 0; }
  100% { opacity: 0; }
}

@keyframes showcase3 {
  0%   { opacity: 0; }
  66%  { opacity: 0; }
  69%  { opacity: 1; }
  96%  { opacity: 1; }
  100% { opacity: 0; }
}


/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 768px) {
  .extra-showcase {
    min-height: 60vh;
  }

  .extra-showcase-content h2 {
    font-size: 1.8rem;
  }

  .extra-showcase-content p {
    font-size: 1rem;
  }
}


/* ===============================
   CLIENTS SECTION
================================ */

.clients-section {
  padding: 80px 20px;
}

.clients-container {
  max-width: 1200px;
  margin: 0 auto;
}


/* GRID DE LOGOS */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 40px 30px;
  align-items: center;
}

/* LOGO */
.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.client-logo img {
  max-width: 160px;
  max-height: 80px;
  width: 100%;
  object-fit: contain;
  opacity: 0.85;
  transition: all 0.3s ease;
}

/* Hover elegante */
.client-logo:hover img {
  opacity: 1;
  transform: scale(1.15);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .clients-section {
    padding: 60px 15px;
  }

  .clients-grid {
    gap: 30px 20px;
  }

  .client-logo img {
    max-width: 130px;
    max-height: 70px;
  }
}

.clients-note{
  max-width: 900px;
  margin: 18px auto 0;
  padding: 0 15px;
  text-align: center;
  font-size: 0.82rem;
  color: #b5b5b5;   /* gris muy claro */
  line-height: 1.4;
}

/* en móvil */
@media (max-width:768px){
  .clients-note{
    font-size:0.78rem;
    margin-top:14px;
  }
}
/* ===============================
   WhatsApp Floating Widget
================================ */

.whatsapp-widget {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  width: 280px;              /* ðŸ‘ˆ IMPORTANTE */
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* BotÃ³n verde */
.whatsapp-button {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
}

/* Chat box */
.whatsapp-chat {
  position: relative;        /* ðŸ‘ˆ CAMBIO CLAVE */
  margin-bottom: 12px;
  width: 280px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,.25);
  overflow: hidden;

  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all .3s ease;
}

/* Mostrar chat al hover */
.whatsapp-widget:hover .whatsapp-chat {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Header */
.whatsapp-header {
  background: #25d366;
  color: #fff;
  padding: 10px 14px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.whatsapp-header button {
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

/* Body */
.whatsapp-body {
  background: #ece5dd;
  padding: 14px;
}

/* Burbuja */
.chat-bubble {
  background: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.4;
  max-width: 90%;
}

/* BotÃ³n enviar */
.whatsapp-send {
  display: block;
  text-align: center;
  padding: 12px;
  background: #25d366;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.whatsapp-send:hover {
  background: #1ebe5d;
}




/*--------------------------------------------------------------
# Category Cards Section
--------------------------------------------------------------*/
.category-cards .category-tabs {
  margin-bottom: 40px;
  position: relative;
}

.category-cards .category-tabs .nav {
  border-bottom: 1px solid color-mix(in srgb, #f3e8dc, transparent 65%);
}

.category-cards .category-tabs .nav-link {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
  padding: 0.75rem 1.5rem;
  border: none;
  background: transparent;
  position: relative;
  transition: all 0.3s ease;
}

.category-cards .category-tabs .nav-link:hover {
  color: var(--heading-color);
}

.category-cards .category-tabs .nav-link.active {
  color: var(--heading-color);
  font-weight: 700;
  background: transparent;
}

.category-cards .category-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background-color: #f3e8dc;
}

.category-cards .tab-content {
  padding-top: 10px;
}

.category-cards .category-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 20px;
  background-color: var(--surface-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

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

.category-cards .category-card:hover img {
  transform: scale(1.05);
}

.category-cards .category-card:hover .category-link {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.category-cards .category-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

@media (max-width: 991px) {
  .category-cards .category-card img {
    height: 300px;
  }
}

@media (max-width: 767px) {
  .category-cards .category-card img {
    height: 250px;
  }
}

.category-cards .category-card .category-link {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--surface-color);
  color: var(--heading-color);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  padding: 10px 20px;
  border-radius: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.category-cards .category-card .category-link i {
  margin-left: 5px;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.category-cards .category-card .category-link:hover i {
  transform: translateX(3px);
}

@media (max-width: 767px) {
  .category-cards .category-tabs .nav-link {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }

  .category-cards .category-card .category-link {
    font-size: 0.8rem;
    padding: 8px 16px;
  }
}

/*--------------------------------------------------------------
# Best Sellers Section
--------------------------------------------------------------*/
.best-sellers .product-card {
  position: relative;
  background: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.best-sellers .product-card:hover {
  transform: translateY(-4px);
}

.best-sellers .product-card:hover .product-overlay {
  opacity: 1;
  visibility: visible;
}

.best-sellers .product-card:hover .hover-image {
  transform: scale(1);
  opacity: 1;
}

.best-sellers .product-card:hover .main-image {
  transform: scale(1.1);
  opacity: 0;
}

.best-sellers .product-image {
  position: relative;
  padding-top: 125%;
  background: color-mix(in srgb, var(--surface-color), transparent 97%);
  overflow: hidden;
}

.best-sellers .product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.best-sellers .product-image .main-image {
  transform: scale(1);
  opacity: 1;
}

.best-sellers .product-image .hover-image {
  transform: scale(1.1);
  opacity: 0;
}

.best-sellers .product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--background-color), transparent 75%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.best-sellers .product-actions {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.best-sellers .product-actions .action-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--surface-color);
  border: none;
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  transform: translateX(20px);
  animation: slideIn 0.3s ease forwards;
  opacity: 0;
}

.best-sellers .product-actions .action-btn:nth-child(2) {
  animation-delay: 0.1s;
}

.best-sellers .product-actions .action-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.best-sellers .product-actions .action-btn i {
  font-size: 1.25rem;
  
}
.best-sellers .product-actions .action-btn i:hover {
  color: #fff;
}

.best-sellers .product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  z-index: 1;
}

.best-sellers .product-badge.new {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.best-sellers .product-badge.sale {
  background: #ffa007;
  color: var(--contrast-color);
}

.best-sellers .product-details {
  padding: 1.5rem;
  background: var(--surface-color);
}

.best-sellers .product-category {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0.5rem;
  text-align: center;
}

.best-sellers .product-title {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  text-align: center;
  
}

.best-sellers .product-title a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.best-sellers .product-title a:hover {
  color: var(--accent-color);
}

.best-sellers .product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.best-sellers .product-price {
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--accent-color);
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.best-sellers .product-price .original-price {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: line-through;
  font-weight: normal;
}

.best-sellers .product-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--heading-color);
  font-weight: 500;
}

.best-sellers .product-rating i {
  color: #ffc107;
  margin-right: 0.25rem;
}

.best-sellers .product-rating span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.875rem;
  font-weight: normal;
}

@keyframes slideIn {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (max-width: 991.98px) {
  .best-sellers .product-image {
    padding-top: 100%;
  }

  .best-sellers .product-details {
    padding: 1.25rem;
  }

  .best-sellers .product-title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .best-sellers .product-price {
    font-size: 1rem;
  }

  .best-sellers .product-actions .action-btn {
    width: 2.5rem;
    height: 2.5rem;
  }

  .best-sellers .product-actions .action-btn i {
    font-size: 1.125rem;
  }
}

/*--------------------------------------------------------------
# Product List Section
--------------------------------------------------------------*/
.product-list .product-filters ul {
  gap: 10px;
}

.product-list .product-filters ul li {
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--default-color);
  cursor: pointer;
  border-radius: 30px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  transition: all 0.3s ease;
}

.product-list .product-filters ul li:hover {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.product-list .product-filters ul li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.product-list .product-container {
  position: relative;
  min-height: 400px;
}

.product-list .product-item {
  margin-bottom: 30px;
}

.product-list .product-card {
  position: relative;
  height: 100%;
  background-color: var(--surface-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.product-list .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-list .product-card:hover .product-image .main-img {
  opacity: 0;
}

.product-list .product-card:hover .product-image .hover-img {
  opacity: 1;
}

.product-list .product-card:hover .product-image .product-overlay {
  opacity: 1;
  visibility: visible;
}

.product-list .product-image {
  position: relative;
  overflow: hidden;
  padding-top: 100%;
}

.product-list .product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.product-list .product-image .main-img {
  opacity: 1;
  z-index: 1;
}

.product-list .product-image .hover-img {
  opacity: 0;
  z-index: 2;
}

.product-list .product-image .badge {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 3;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border-radius: 30px;
}

.product-list .product-image .product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.product-list .product-image .product-overlay .btn-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border-radius: 30px;
  transition: all 0.3s ease;
}

.product-list .product-image .product-overlay .btn-cart:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
}

.product-list .product-image .product-overlay .product-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-list .product-image .product-overlay .product-actions .action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.product-list .product-image .product-overlay .product-actions .action-btn:hover {
  color: var(--accent-color);
  transform: translateY(-2px);
}

.product-list .product-info {
  padding: 20px;
}

.product-list .product-info .product-title {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
}

.product-list .product-info .product-title a {
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.product-list .product-info .product-title a:hover {
  color: var(--accent-color);
}

.product-list .product-info .product-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.product-list .product-info .product-price .current-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-color);
}

.product-list .product-info .product-price .old-price {
  font-size: 14px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: line-through;
}

.product-list .product-info .product-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: #FFB800;
}

.product-list .product-info .product-rating span {
  margin-left: 5px;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.product-list .view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 500;
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border-radius: 30px;
  transition: all 0.3s ease;
}

.product-list .view-all-btn i {
  transition: transform 0.3s ease;
}

.product-list .view-all-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
}

.product-list .view-all-btn:hover i {
  transform: translateX(5px);
}

@media (max-width: 991.98px) {
  .product-list .product-container .product-item {
    margin-bottom: 20px;
  }
}

@media (max-width: 767.98px) {
  .product-list .product-filters ul {
    justify-content: center;
  }

  .product-list .product-filters ul li {
    padding: 6px 15px;
    font-size: 13px;
  }

  .product-list .product-info {
    padding: 15px;
  }

  .product-list .product-info .product-title {
    font-size: 15px;
  }

  .product-list .product-info .product-price .current-price {
    font-size: 16px;
  }

  .product-list .product-info .product-price .old-price {
    font-size: 13px;
  }
}

@media (max-width: 575.98px) {
  .product-list .product-container .row {
    margin-left: -10px;
    margin-right: -10px;
  }

  .product-list .product-container .product-item {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 15px;
  }
}

/*--------------------------------------------------------------
# Product Details Section
--------------------------------------------------------------*/
.product-details .product-gallery {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .product-details .product-gallery {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.product-details .product-gallery .thumbnails-vertical {
  order: 2;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .product-details .product-gallery .thumbnails-vertical {
    order: 1;
    width: 80px;
    margin-top: 0;
  }
}

.product-details .product-gallery .thumbnails-vertical .thumbnails-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 767px) {
  .product-details .product-gallery .thumbnails-vertical .thumbnails-container {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.product-details .product-gallery .thumbnails-vertical .thumbnail-item {
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.product-details .product-gallery .thumbnails-vertical .thumbnail-item:hover {
  opacity: 0.9;
}

.product-details .product-gallery .thumbnails-vertical .thumbnail-item.active {
  border-color: var(--accent-color);
  opacity: 1;
}

.product-details .product-gallery .thumbnails-vertical .thumbnail-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1/1;
}

.product-details .product-gallery .main-image-wrapper {
  order: 1;
  position: relative;
}

@media (min-width: 768px) {
  .product-details .product-gallery .main-image-wrapper {
    order: 2;
    flex: 1;
  }
}

.product-details .product-gallery .main-image-wrapper .image-zoom-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background-color:#fffefe6a;
}

.product-details .product-gallery .main-image-wrapper .image-zoom-container a {
  display: block;
  position: relative;
}

.product-details .product-gallery .main-image-wrapper .image-zoom-container a:hover .zoom-overlay {
  opacity: 1;
}

.product-details .product-gallery .main-image-wrapper .image-zoom-container .main-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  cursor: crosshair;
}

.product-details .product-gallery .main-image-wrapper .image-zoom-container .drift-zoom-pane {
  background:#dddddd2f;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-details .product-gallery .main-image-wrapper .image-zoom-container .drift-zoom-pane.drift-opening {
  animation: drift-fadeZoomIn 180ms ease-out;
}

.product-details .product-gallery .main-image-wrapper .image-zoom-container .drift-zoom-pane.drift-closing {
  animation: drift-fadeZoomOut 210ms ease-in;
}

.product-details .product-gallery .main-image-wrapper .image-zoom-container .drift-zoom-pane-loader {
  display: none;
}

@keyframes drift-fadeZoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes drift-fadeZoomOut {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(0.8);
    opacity: 0;
  }
}

.product-details .product-gallery .main-image-wrapper .image-zoom-container .zoom-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background-color: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-details .product-gallery .main-image-wrapper .image-zoom-container .zoom-overlay i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.product-details .product-gallery .main-image-wrapper .image-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 0.5rem;
  pointer-events: none;
}

.product-details .product-gallery .main-image-wrapper .image-nav .image-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--surface-color);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  pointer-events: auto;
}

.product-details .product-gallery .main-image-wrapper .image-nav .image-nav-btn i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.product-details .product-gallery .main-image-wrapper .image-nav .image-nav-btn:hover {
  background-color: var(--accent-color);
}

.product-details .product-gallery .main-image-wrapper .image-nav .image-nav-btn:hover i {
  color: var(--contrast-color);
}

.product-details .product-info-wrapper {
  height: 100%;
  padding: 0 0.5rem;
}

@media (min-width: 992px) {
  .product-details .product-info-wrapper {
    padding: 0 1rem;
    position: sticky;
    top: 100px;
  }
}

.product-details .product-info-wrapper .product-meta {
  margin-bottom: 1.5rem;
}

.product-details .product-info-wrapper .product-meta .product-category {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.product-details .product-info-wrapper .product-meta .product-share {
  position: relative;
}

.product-details .product-info-wrapper .product-meta .product-share .share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--surface-color);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-details .product-info-wrapper .product-meta .product-share .share-btn i {
  color: var(--accent-color);
  font-size: 1rem;
}

.product-details .product-info-wrapper .product-meta .product-share .share-btn:hover {
  background-color: var(--accent-color);
}

.product-details .product-info-wrapper .product-meta .product-share .share-btn:hover i {
  color: var(--contrast-color);
}

.product-details .product-info-wrapper .product-meta .product-share .share-btn:hover+.share-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.product-details .product-info-wrapper .product-meta .product-share .share-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--surface-color);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 0.75rem;
  display: flex;
  gap: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 10;
}

.product-details .product-info-wrapper .product-meta .product-share .share-dropdown:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.product-details .product-info-wrapper .product-meta .product-share .share-dropdown a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.product-details .product-info-wrapper .product-meta .product-share .share-dropdown a i {
  color: var(--default-color);
  font-size: 0.875rem;
}

.product-details .product-info-wrapper .product-meta .product-share .share-dropdown a:hover {
  background-color: var(--accent-color);
}

.product-details .product-info-wrapper .product-meta .product-share .share-dropdown a:hover i {
  color: var(--contrast-color);
}

.product-details .product-info-wrapper .product-meta .product-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0.75rem 0;
  color: var(--heading-color);
  line-height: 1.3;
}

@media (min-width: 768px) {
  .product-details .product-info-wrapper .product-meta .product-title {
    font-size: 2.25rem;
  }
}

.product-details .product-info-wrapper .product-meta .product-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.product-details .product-info-wrapper .product-meta .product-rating .stars {
  display: flex;
  align-items: center;
}

.product-details .product-info-wrapper .product-meta .product-rating .stars i {
  color: #FFD700;
  font-size: 1rem;
  margin-right: 2px;
}

.product-details .product-info-wrapper .product-meta .product-rating .stars .rating-value {
  margin-left: 0.5rem;
  font-weight: 600;
  color: var(--heading-color);
}

.product-details .product-info-wrapper .product-meta .product-rating .rating-count {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: none;
}

.product-details .product-info-wrapper .product-meta .product-rating .rating-count:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.product-details .product-info-wrapper .product-price-container {
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
}

.product-details .product-info-wrapper .product-price-container .price-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.product-details .product-info-wrapper .product-price-container .price-wrapper .current-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
}

.product-details .product-info-wrapper .product-price-container .price-wrapper .original-price {
  font-size: 1.25rem;
  text-decoration: line-through;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-left: 1rem;
}

.product-details .product-info-wrapper .product-price-container .discount-badge {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.product-details .product-info-wrapper .product-price-container .stock-info {
  display: flex;
  align-items: center;
}

.product-details .product-info-wrapper .product-price-container .stock-info i {
  color: #10b981;
  margin-right: 0.5rem;
}

.product-details .product-info-wrapper .product-price-container .stock-info span {
  font-weight: 500;
}

.product-details .product-info-wrapper .product-price-container .stock-info .stock-count {
  margin-left: 0.5rem;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: normal;
}

.product-details .product-info-wrapper .product-short-description {
  margin-bottom: 2rem;
}

.product-details .product-info-wrapper .product-short-description p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  font-size: 1rem;
}

.product-details .product-info-wrapper .product-options {
  margin-bottom: 2rem;
}

.product-details .product-info-wrapper .product-options .option-group {
  margin-bottom: 1.5rem;
}

.product-details .product-info-wrapper .product-options .option-group .option-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.product-details .product-info-wrapper .product-options .option-group .option-header .option-title {
  font-weight: 600;
  margin: 0;
}

.product-details .product-info-wrapper .product-options .option-group .option-header .selected-option {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.product-details .product-info-wrapper .product-options .option-group .color-options {
  display: flex;
  gap: 1rem;
}



.product-details .product-info-wrapper .product-options .option-group .color-options .color-option {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.product-details .product-info-wrapper .product-options .option-group .color-options .color-option:hover {
  transform: scale(1.1);
}

.product-details .product-info-wrapper .product-options .option-group .color-options .color-option.active {
  border-color: var(--accent-color);
}

.product-details .product-info-wrapper .product-options .option-group .color-options .color-option.active i {
  opacity: 1;
}

.product-details .product-info-wrapper .product-options .option-group .color-options .color-option i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--contrast-color);
  font-size: 0.875rem;
  opacity: 0;
}

.product-details .product-info-wrapper .product-options .option-group .size-options {
  display: flex;
  gap: 0.75rem;
}

.product-details .product-info-wrapper .product-options .option-group .size-options .size-option {
  min-width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  transition: all 0.3s ease;
  font-weight: 500;
}

.product-details .product-info-wrapper .product-options .option-group .size-options .size-option:hover {
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.product-details .product-info-wrapper .product-options .option-group .size-options .size-option.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
  box-shadow: 0 4px 10px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.product-details .product-info-wrapper .product-options .option-group .quantity-selector {
  display: flex;
  align-items: center;
  max-width: 150px;
}

.product-details .product-info-wrapper .product-options .option-group .quantity-selector .quantity-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-details .product-info-wrapper .product-options .option-group .quantity-selector .quantity-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.product-details .product-info-wrapper .product-options .option-group .quantity-selector .quantity-btn.decrease {
  border-radius: 8px 0 0 8px;
}

.product-details .product-info-wrapper .product-options .option-group .quantity-selector .quantity-btn.increase {
  border-radius: 0 8px 8px 0;
}

.product-details .product-info-wrapper .product-options .option-group .quantity-selector .quantity-input {
  width: 60px;
  height: 40px;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-left: none;
  border-right: none;
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
}

.product-details .product-info-wrapper .product-options .option-group .quantity-selector .quantity-input:focus {
  border-color: var(--accent-color);
  outline: none;
}

.product-details .product-info-wrapper .product-options .option-group .quantity-selector .quantity-input::-webkit-inner-spin-button,
.product-details .product-info-wrapper .product-options .option-group .quantity-selector .quantity-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-details .product-info-wrapper .product-actions {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.product-details .product-info-wrapper .product-actions .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.product-details .product-info-wrapper .product-actions .btn i {
  margin-right: 0.5rem;
}

.product-details .product-info-wrapper .product-actions .add-to-cart-btn {
  flex: 1;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.product-details .product-info-wrapper .product-actions .add-to-cart-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.product-details .product-info-wrapper .product-actions .buy-now-btn {
  flex: 1;
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.product-details .product-info-wrapper .product-actions .buy-now-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.product-details .product-info-wrapper .product-actions .wishlist-btn {
  width: 48px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-details .product-info-wrapper .product-actions .wishlist-btn i {
  margin-right: 0;
  font-size: 1.25rem;
}

.product-details .product-info-wrapper .product-actions .wishlist-btn:hover {
  color: #fff;
  border-color: #e53935;
  background-color: #e53935;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(229, 57, 53, 0.3);
}

@media (max-width: 575px) {
  .product-details .product-info-wrapper .product-actions {
    flex-direction: column;
  }

  .product-details .product-info-wrapper .product-actions .wishlist-btn {
    width: 100%;
  }
}

.product-details .product-info-wrapper .delivery-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 576px) {
  .product-details .product-info-wrapper .delivery-options {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-details .product-info-wrapper .delivery-options .delivery-option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background-color: var(--surface-color);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.product-details .product-info-wrapper .delivery-options .delivery-option:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.product-details .product-info-wrapper .delivery-options .delivery-option i {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.product-details .product-info-wrapper .delivery-options .delivery-option h6 {
  margin: 0 0 0.25rem;
  font-weight: 600;
  color: var(--heading-color);
}

.product-details .product-info-wrapper .delivery-options .delivery-option p {
  margin: 0;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.product-details .product-details-accordion {
  margin-top: 3rem;
}

.product-details .product-details-accordion .accordion-item {
  border: none;
  background-color: transparent;
  margin-bottom: 1rem;
}

.product-details .product-details-accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.product-details .product-details-accordion .accordion-item .accordion-header .accordion-button {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--heading-color);
  box-shadow: none;
}

.product-details .product-details-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.product-details .product-details-accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.product-details .product-details-accordion .accordion-item .accordion-header .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233690e7'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.product-details .product-details-accordion .accordion-item .accordion-collapse {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-top: none;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.product-details .product-details-accordion .accordion-item .accordion-collapse .accordion-body {
  padding: 1.5rem;
  background-color: var(--surface-color);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.product-details .product-details-accordion .accordion-item .accordion-collapse .accordion-body h4 {
  color: var(--heading-color);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.product-details .product-details-accordion .accordion-item .accordion-collapse .accordion-body p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.product-details .product-details-accordion .accordion-item .accordion-collapse .accordion-body .feature-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 1.5rem;
}

.product-details .product-details-accordion .accordion-item .accordion-collapse .accordion-body .feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.product-details .product-details-accordion .accordion-item .accordion-collapse .accordion-body .feature-list li i {
  color: var(--accent-color);
  margin-right: 0.75rem;
  font-size: 1.125rem;
  margin-top: 0.125rem;
}

.product-details .product-details-accordion .accordion-item .accordion-collapse .accordion-body .specs-table .specs-row {
  display: flex;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.product-details .product-details-accordion .accordion-item .accordion-collapse .accordion-body .specs-table .specs-row:last-child {
  border-bottom: none;
}

.product-details .product-details-accordion .accordion-item .accordion-collapse .accordion-body .specs-table .specs-row .specs-label {
  width: 40%;
  padding: 0.75rem 0;
  font-weight: 600;
  color: var(--heading-color);
}

.product-details .product-details-accordion .accordion-item .accordion-collapse .accordion-body .specs-table .specs-row .specs-value {
  width: 60%;
  padding: 0.75rem 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.product-details .product-details-accordion .product-reviews .reviews-summary {
  margin-bottom: 2.5rem;
}

.product-details .product-details-accordion .product-reviews .reviews-summary .overall-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
  .product-details .product-details-accordion .product-reviews .reviews-summary .overall-rating {
    margin-bottom: 0;
  }
}

.product-details .product-details-accordion .product-reviews .reviews-summary .overall-rating .rating-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

.product-details .product-details-accordion .product-reviews .reviews-summary .overall-rating .rating-stars {
  margin: 0.75rem 0;
}

.product-details .product-details-accordion .product-reviews .reviews-summary .overall-rating .rating-stars i {
  color: #FFD700;
  font-size: 1.5rem;
  margin-right: 2px;
}

.product-details .product-details-accordion .product-reviews .reviews-summary .overall-rating .rating-count {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.product-details .product-details-accordion .product-reviews .reviews-summary .rating-breakdown {
  padding: 1.5rem;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.product-details .product-details-accordion .product-reviews .reviews-summary .rating-breakdown .rating-bar {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.product-details .product-details-accordion .product-reviews .reviews-summary .rating-breakdown .rating-bar:last-child {
  margin-bottom: 0;
}

.product-details .product-details-accordion .product-reviews .reviews-summary .rating-breakdown .rating-bar .rating-label {
  width: 60px;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.product-details .product-details-accordion .product-reviews .reviews-summary .rating-breakdown .rating-bar .progress {
  flex: 1;
  height: 8px;
  margin: 0 0.75rem;
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 4px;
}

.product-details .product-details-accordion .product-reviews .reviews-summary .rating-breakdown .rating-bar .progress .progress-bar {
  background-color: #FFD700;
  border-radius: 4px;
}

.product-details .product-details-accordion .product-reviews .reviews-summary .rating-breakdown .rating-bar .rating-count {
  width: 30px;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: right;
}

.product-details .product-details-accordion .product-reviews .reviews-list .review-item {
  padding: 1.5rem;
  border-radius: 12px;
  background-color: var(--surface-color);
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.product-details .product-details-accordion .product-reviews .reviews-list .review-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-details .product-details-accordion .product-reviews .reviews-list .review-item .review-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.product-details .product-details-accordion .product-reviews .reviews-list .review-item .review-header .reviewer-info {
  display: flex;
  align-items: center;
}

.product-details .product-details-accordion .product-reviews .reviews-list .review-item .review-header .reviewer-info .reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 0.75rem;
}

.product-details .product-details-accordion .product-reviews .reviews-list .review-item .review-header .reviewer-info .reviewer-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.product-details .product-details-accordion .product-reviews .reviews-list .review-item .review-header .reviewer-info .review-date {
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.product-details .product-details-accordion .product-reviews .reviews-list .review-item .review-header .review-rating i {
  color: #FFD700;
  font-size: 0.875rem;
  margin-right: 2px;
}

.product-details .product-details-accordion .product-reviews .reviews-list .review-item .review-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.product-details .product-details-accordion .product-reviews .reviews-list .review-item .review-content p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.product-details .product-details-accordion .product-reviews .review-form-container {
  padding: 2rem;
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.product-details .product-details-accordion .product-reviews .review-form-container h4 {
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.75rem;
}

.product-details .product-details-accordion .product-reviews .review-form-container h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 3px;
}

.product-details .product-details-accordion .product-reviews .review-form-container .form-label {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.product-details .product-details-accordion .product-reviews .review-form-container .form-control {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  background-color: var(--background-color);
  transition: all 0.3s ease;
}

.product-details .product-details-accordion .product-reviews .review-form-container .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 80%);
}

.product-details .product-details-accordion .product-reviews .review-form-container .form-text {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.product-details .product-details-accordion .product-reviews .review-form-container .star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.product-details .product-details-accordion .product-reviews .review-form-container .star-rating input[type=radio] {
  display: none;
}

.product-details .product-details-accordion .product-reviews .review-form-container .star-rating label {
  cursor: pointer;
  font-size: 0;
  margin: 0;
  padding: 0 0.25rem;
}

.product-details .product-details-accordion .product-reviews .review-form-container .star-rating label i {
  font-size: 1.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 80%);
  transition: all 0.2s ease;
}

.product-details .product-details-accordion .product-reviews .review-form-container .star-rating input[type=radio]:checked~label i,
.product-details .product-details-accordion .product-reviews .review-form-container .star-rating label:hover i,
.product-details .product-details-accordion .product-reviews .review-form-container .star-rating label:hover~label i {
  color: #FFD700;
}

.product-details .product-details-accordion .product-reviews .review-form-container .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.product-details .product-details-accordion .product-reviews .review-form-container .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent-color), transparent 70%);
}

/*--------------------------------------------------------------
# Category Product List Section
--------------------------------------------------------------*/
.category-product-list {
  padding: 0 0 40px 0;
}

.category-product-list .product-box {
  position: relative;
  height: 100%;
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.category-product-list .product-box:hover {
  transform: translateY(-8px);
}

.category-product-list .product-box:hover .product-overlay {
  opacity: 1;
  visibility: visible;
}

.category-product-list .product-box:hover .main-img {
  transform: scale(1.08);
}

.category-product-list .product-thumb {
  position: relative;
  overflow: hidden;
  padding-bottom: 100%;
}

.category-product-list .main-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.category-product-list .product-label {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 3;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.35em 0.8em;
  border-radius: 30px;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.category-product-list .product-label.product-label-sale {
  background-color: #e53e3e;
}

.category-product-list .product-label.product-label-sold {
  background-color: #718096;
}

.category-product-list .product-label.product-label-hot {
  background-color: #dd6b20;
}

.category-product-list .product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
}

.category-product-list .product-quick-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

.category-product-list .quick-action-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--heading-color);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.category-product-list .quick-action-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.category-product-list .add-to-cart-container {
  width: 100%;
}

.category-product-list .add-to-cart-btn {
  width: 100%;
  padding: 0.8rem 1.5rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.category-product-list .add-to-cart-btn:hover {
  background-color: color-mix(in srgb, var(--contrast-color), #6d0202 100%);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.category-product-list .add-to-cart-btn a  {
  color: #fff;
}

.category-product-list .add-to-cart-btn.disabled {
  background-color: #a0aec0;
  cursor: not-allowed;
}

.category-product-list .add-to-cart-btn.disabled:hover {
  background-color: #a0aec0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.category-product-list .product-content {
  padding: .8rem;
  text-align: center;
}


.category-product-list .product-title {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  color: var(--accent-color);
}

.category-product-list .product-title a {
  color: inherit;
  margin: 0%;
}

.category-product-list .product-title a:hover {
  color: var(--accent-color);
}

.category-product-list .product-price {
  text-align: center;
}

.category-product-list .product-price span {
  font-size: 1rem;
  color:#00000050;
}

.category-product-list .product-price .original {
  font-size: 0.9rem;
  font-weight: 400;
  text-decoration: line-through;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.category-product-list .product-price .sale {
  color: #e53e3e;
}

.category-product-list .product-rating-container {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.category-product-list .rating-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  margin-right: 0.5rem;
}

.category-product-list .rating-stars i {
  margin-right: 1px;
}

.category-product-list .rating-number {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--heading-color);
}

.category-product-list .product-color-options {
  display: flex;
  gap: 0.5rem;
}

.category-product-list .color-option {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s ease;
}

.category-product-list .color-option:hover {
  transform: scale(1.1);
}

.category-product-list .color-option.active:after {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 2px solid var(--accent-color);
  border-radius: 50%;
}

@media (max-width: 991.98px) {
  .category-product-list .product-title {
    font-size: 0.95rem;
    height: 2.6rem;
  }

  .category-product-list .product-content {
    padding: 1.25rem;
  }
}

@media (max-width: 767.98px) {
  .category-product-list .product-box {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }

  .category-product-list .product-overlay {
    opacity: 1;
    visibility: visible;
    background-color: rgba(0, 0, 0, 0.1);
  }

  .category-product-list .add-to-cart-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }
}

/*--------------------------------------------------------------
# Category Pagination Section
--------------------------------------------------------------*/
.category-pagination {
  padding-top: 0;
}

.category-pagination nav {
  position: relative;
}

.category-pagination ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.category-pagination li {
  margin: 0;
  transition: all 0.3s ease-in-out;
}

.category-pagination li.ellipsis {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 8px 16px;
  user-select: none;
}

.category-pagination li a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 8px 16px;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 4px color-mix(in srgb, var(--default-color), transparent 90%);
}

.category-pagination li a.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.category-pagination li a:hover:not(.active) {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: translateY(-1px);
  box-shadow: 0 3px 6px color-mix(in srgb, var(--default-color), transparent 85%);
}

.category-pagination li a i {
  font-size: 14px;
}

.category-pagination li a span {
  margin: 0 4px;
}

@media (max-width: 575px) {
  .category-pagination ul {
    gap: 4px;
  }

  .category-pagination li a {
    min-width: 36px;
    height: 36px;
    padding: 8px 12px;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Cart Section
--------------------------------------------------------------*/
.cart .cart-items {
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.cart .cart-items .cart-header {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.cart .cart-items .cart-header h5 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.cart .cart-items .cart-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: background-color 0.3s ease;
}

.cart .cart-items .cart-item:last-child {
  border-bottom: none;
}

.cart .cart-items .cart-item:hover {
  background-color: color-mix(in srgb, var(--background-color), transparent 70%);
}

.cart .cart-items .cart-item .product-info .product-image {
  width: 5rem;
  height: 5rem;
  min-width: 5rem;
  border-radius: 0.375rem;
  overflow: hidden;
  margin-right: 1rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart .cart-items .cart-item .product-info .product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@media (max-width: 767.98px) {
  .cart .cart-items .cart-item .product-info .product-image {
    width: 4rem;
    height: 4rem;
    min-width: 4rem;
  }
}

.cart .cart-items .cart-item .product-info .product-details {
  flex: 1;
}

.cart .cart-items .cart-item .product-info .product-details .product-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: var(--heading-color);
}

.cart .cart-items .cart-item .product-info .product-details .product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 0.8125rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.cart .cart-items .cart-item .product-info .product-details .product-meta span {
  display: inline-block;
}

.cart .cart-items .cart-item .product-info .product-details .remove-item {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.8125rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.3s ease;
}

.cart .cart-items .cart-item .product-info .product-details .remove-item:hover {
  color: #dc3545;
}

.cart .cart-items .cart-item .product-info .product-details .remove-item i {
  font-size: 0.875rem;
}

.cart .cart-items .cart-item .price-tag .current-price {
  font-weight: 600;
  color: var(--heading-color);
  font-size: 1rem;
}

.cart .cart-items .cart-item .price-tag .original-price {
  text-decoration: line-through;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.875rem;
  margin-left: 0.5rem;
}

.cart .cart-items .cart-item .quantity-selector {
  display: inline-flex;
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 0.375rem;
  overflow: hidden;
}

.cart .cart-items .cart-item .quantity-selector .quantity-btn {
  background: none;
  border: none;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  transition: background-color 0.3s ease;
}

.cart .cart-items .cart-item .quantity-selector .quantity-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.cart .cart-items .cart-item .quantity-selector .quantity-btn:active {
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.cart .cart-items .cart-item .quantity-selector .quantity-input {
  width: 2.5rem;
  text-align: center;
  border: none;
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  font-size: 0.875rem;
  color: var(--heading-color);
  font-weight: 600;
  padding: 0.25rem 0;
  background-color: var(--surface-color);
}

.cart .cart-items .cart-item .quantity-selector .quantity-input:focus {
  outline: none;
}

.cart .cart-items .cart-item .quantity-selector .quantity-input::-webkit-inner-spin-button,
.cart .cart-items .cart-item .quantity-selector .quantity-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart .cart-items .cart-item .item-total {
  font-weight: 700;
  color: var(--heading-color);
  font-size: 1.125rem;
}

@media (max-width: 767.98px) {
  .cart .cart-items .cart-item {
    padding: 1rem 0.5rem;
    margin-bottom: 0.5rem;
    border-radius: 0.375rem;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .cart .cart-items .cart-item .price-tag,
  .cart .cart-items .cart-item .item-total {
    font-size: 0.9375rem;
  }
}

.cart .cart-items .cart-actions {
  padding-top: 1.5rem;
  margin-top: 1rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.cart .cart-items .cart-actions .coupon-form .input-group {
  max-width: 24rem;
}

.cart .cart-items .cart-actions .coupon-form .input-group .form-control {
  border-right: none;
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 0.875rem;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.cart .cart-items .cart-actions .coupon-form .input-group .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.cart .cart-items .cart-actions .coupon-form .input-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.cart .cart-items .cart-actions .coupon-form .input-group .btn {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  border-left: none;
  font-size: 0.875rem;
  background-color: color-mix(in srgb, var(--default-color), transparent 10%);
  color: var(--contrast-color);
}

.cart .cart-items .cart-actions .coupon-form .input-group .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
  border-color: var(--accent-color);
}

.cart .cart-items .cart-actions .btn {
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: all 0.3s ease;
}

.cart .cart-summary {
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  padding: 1.5rem;
  position: sticky;
  top: 6.5rem;
}

.cart .cart-summary .summary-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.cart .cart-summary .summary-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.cart .cart-summary .summary-item.discount {
  color: #28a745;
}

.cart .cart-summary .summary-item .summary-label {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.cart .cart-summary .summary-item .summary-value {
  font-weight: 600;
  color: var(--heading-color);
}

.cart .cart-summary .summary-item .shipping-options {
  width: 100%;
  margin-top: 0.5rem;
}

.cart .cart-summary .summary-item .shipping-options .form-check {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.cart .cart-summary .summary-item .shipping-options .form-check:last-child {
  margin-bottom: 0;
}

.cart .cart-summary .summary-item .shipping-options .form-check .form-check-input {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0.5rem;
  float: none;
}

.cart .cart-summary .summary-item .shipping-options .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.cart .cart-summary .summary-item .shipping-options .form-check .form-check-input:focus {
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 75%);
}

.cart .cart-summary .summary-item .shipping-options .form-check .form-check-label {
  font-size: 0.875rem;
  color: var(--default-color);
  padding-left: 0;
}

.cart .cart-summary .summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1.5rem 0;
  padding-top: 1rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.cart .cart-summary .summary-total .summary-label {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--heading-color);
}

.cart .cart-summary .summary-total .summary-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
}

.cart .cart-summary .checkout-button {
  margin-bottom: 1rem;
}

.cart .cart-summary .checkout-button .btn {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.cart .cart-summary .checkout-button .btn i {
  transition: transform 0.3s ease;
}

.cart .cart-summary .checkout-button .btn:hover i {
  transform: translateX(0.25rem);
}

.cart .cart-summary .continue-shopping {
  margin-bottom: 1.5rem;
}

.cart .cart-summary .continue-shopping .btn-link {
  color: var(--accent-color);
  text-decoration: none;
  font-size: 0.9375rem;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  transition: all 0.3s ease;
}

.cart .cart-summary .continue-shopping .btn-link i {
  transition: transform 0.3s ease;
}

.cart .cart-summary .continue-shopping .btn-link:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.cart .cart-summary .continue-shopping .btn-link:hover i {
  transform: translateX(-0.25rem);
}

.cart .cart-summary .payment-methods {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-top: 1rem;
}

.cart .cart-summary .payment-methods .payment-title {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0.5rem;
  text-align: center;
}

.cart .cart-summary .payment-methods .payment-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.cart .cart-summary .payment-methods .payment-icons i {
  font-size: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: color 0.3s ease;
}

.cart .cart-summary .payment-methods .payment-icons i:hover {
  color: var(--accent-color);
}

.cart .btn-outline-accent {
  color: var(--accent-color);
  border-color: var(--accent-color);
  background-color: transparent;
}

.cart .btn-outline-accent:hover,
.cart .btn-outline-accent:focus,
.cart .btn-outline-accent:active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}



.cart .btn-outline-remove {
  color: #dc3545;
  border-color: #dc3545;
  background-color: transparent;
}

.cart .btn-outline-remove:hover,
.cart .btn-outline-remove:focus,
.cart .btn-outline-remove:active {
  color: var(--contrast-color);
  background-color: #dc3545;
  border-color: #dc3545;
}

.cart .btn-accent {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.cart .btn-accent:hover,
.cart .btn-accent:focus,
.cart .btn-accent:active {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  border-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

@media (max-width: 991.98px) {
  .cart .cart-summary {
    position: static;
  }
}

/*--------------------------------------------------------------
# Search Results Header Section
--------------------------------------------------------------*/
.search-results-header .results-count h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.search-results-header .results-count p {
  font-size: 1.1rem;
  margin-bottom: 0;
}

.search-results-header .results-count .results-number,
.search-results-header .results-count .search-term {
  font-weight: 600;
  color: var(--accent-color);
}

.search-results-header .search-form {
  position: relative;
}

.search-results-header .search-form .input-group {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-radius: 50px;
  overflow: hidden;
}

.search-results-header .search-form .form-control {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 12px 20px;
  border-radius: 50px 0 0 50px;
  border-right: none;
  height: auto;
}

.search-results-header .search-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.search-results-header .search-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.search-results-header .search-form .search-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0 25px;
  border-radius: 0 50px 50px 0;
  transition: all 0.3s ease;
}

.search-results-header .search-form .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

.search-results-header .search-filters .filter-label {
  font-weight: 600;
  margin-right: 10px;
  color: var(--heading-color);
}

.search-results-header .search-filters .tags-wrapper {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}

.search-results-header .search-filters .filter-tag {
  display: inline-flex;
  align-items: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 0.85rem;
  padding: 5px 12px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.search-results-header .search-filters .filter-tag i {
  margin-left: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-results-header .search-filters .filter-tag:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.search-results-header .search-filters .filter-tag:hover i {
  transform: scale(1.1);
}

.search-results-header .search-filters .sort-options label {
  color: var(--heading-color);
  font-weight: 500;
}

.search-results-header .search-filters .sort-options .form-select {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.search-results-header .search-filters .sort-options .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

@media (max-width: 991.98px) {
  .search-results-header .filter-tags {
    margin-bottom: 15px;
  }

  .search-results-header .sort-options {
    text-align: left;
  }
}

@media (max-width: 767.98px) {
  .search-results-header .results-count h2 {
    font-size: 1.5rem;
  }

  .search-results-header .results-count p {
    font-size: 1rem;
  }

  .search-results-header .filter-label {
    display: block;
    margin-bottom: 8px;
  }

  .search-results-header .tags-wrapper {
    margin-top: 5px;
  }
}


/*--------------------------------------------------------------
# About 2 Section
--------------------------------------------------------------*/

.about-2 {
  padding: 0%;
}

.about-2 .small-title {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--accent-color);
}

.about-2 .about-title {
  font-size: 2.2rem;
  margin: 0 0 1rem 0;
  font-weight: 700;
  line-height: 1.2;
}

@media (max-width: 992px) {
  .about-2 .about-title {
    font-size: 1.6rem;
  }
}

.about-2 .about-description {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 1.125rem;
  line-height: 1.6;
}

@media (min-width: 992px) {
  .about-2 .description-wrapper {
    border-left: 1px solid var(--accent-color);
    padding-left: 30px;
  }
}

.about-2 .content-card {
  align-items: center;
  height: 80%;
  display: flex;
  flex-direction: column;
}

.about-2 .content-card .card-image {
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 12px 12px 12px 12px;
}

.about-2 .content-card .card-image img {
  transition: transform 0.5s ease;
}

.about-2 .content-card .card-content {
  flex: 1; 
  display: flex;
  flex-direction: column;
}

.about-2 .content-card .card-content h3 {
  color: var(--accent-color);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.about-2 .content-card .card-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 1.1rem ;
  margin-bottom: 1.5rem;
  flex: 1;
}

.about-2 .content-card .card-content .read-more {
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.about-2 .content-card .card-content .read-more:hover {
  gap: 0.75rem;
}

.about-2 .content-card .card-content .read-more:hover i {
  transform: translateX(5px);
}

.about-2 .content-card .card-content .read-more i {
  transition: transform 0.3s ease;
}

.about-2 .content-card:hover .card-image img {
  transform: scale(1.05);
}

@media (max-width: 991px) {

  .about-2 .row {
    text-align: center;
  }

   .about-2 .content-card {
    height: auto;
  }

  .about-2 .description-wrapper {
    border-left: none;
    padding-left: 0;
    margin-top: 1rem;
  }

  .about-2 .about-title {
    margin-bottom: 0.8rem;
  }

  .about-2 .about-description {
    font-size: 1rem;
  }
   .about-2 .row.mb-lg-5 {
    margin-bottom: 2rem !important;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials  {
  background-color: var(--accent-color);
  
}

.testimonials .testimonials-slider {
  width: 100%;
  position: relative;
  padding-bottom: 60px;
  
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .testimonial-item {
  background-color: #f3e8dd;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
}

@media (max-width: 575px) {
  .testimonials .testimonial-item {
    padding: 20px;
  }
}

.testimonials .testimonial-item h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.testimonials .testimonial-item p {
  font-size: 19px;
  line-height: 1.8;
  margin-bottom: 30px;
  font-style: italic;
}

.testimonials .testimonial-item .profile {
  gap: 15px;
}

.testimonials .testimonial-item .profile .profile-img {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonials .testimonial-item .profile .profile-info h3 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
}

.testimonials .testimonial-item .profile .profile-info span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
}

.testimonials .testimonial-item .featured-img-wrapper {
  min-height: 240px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.testimonials .testimonial-item .featured-img {
  width: 70%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.testimonials .swiper-navigation {
  position: absolute;
  bottom: 0;
  gap: 10px;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  margin: 0;
  width: 44px;
  height: 44px;
  background-color: var(--surface-color);
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  transition: 0.3s;
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
  font-size: 20px;
  color: var(--default-color);
}

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

.testimonials .swiper-button-prev:hover::after,
.testimonials .swiper-button-next:hover::after {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Contact 2 Section
--------------------------------------------------------------*/
.contact-2 {
  padding-top: 5px;
}

.contact-2 .info-item+.info-item {
  margin-top: 40px;
}

.contact-2 .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact-2 .info-item h3 {
  padding: 0;
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact-2 .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 16px;
}

.contact-2 .php-email-form {
  height: 100%;
}

.contact-2 .php-email-form input[type=text],
.contact-2 .php-email-form input[type=email],
.contact-2 .php-email-form textarea,
.contact-2 .php-email-form select
 {
  font-size: 18px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color:#333735da;
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact-2 .php-email-form input[type=text]:focus,
.contact-2 .php-email-form input[type=email]:focus,
.contact-2 .php-email-form textarea:focus
.contact-2 .php-email-form select:focus  {
  border-color: var(--accent-color);
}

.contact-2 .php-email-form input[type=text]::placeholder,
.contact-2 .php-email-form input[type=email]::placeholder,
.contact-2 .php-email-form textarea::placeholder
.contact-2 .php-email-form select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact-2 .php-email-form button[type=submit] {
  font-size: 22px;
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact-2 .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}



/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.faq .faq-description {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 2rem;
}

.faq .faq-arrow {
  color: var(--accent-color);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

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

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

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

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

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
  font-size: 17px;
}

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

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

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

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

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


/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.error-404 .error-content {
  padding: 2rem;
}

.error-404 .error-badge {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-block;
}

.error-404 .error-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--heading-font);
  line-height: 1.2;
}

.error-404 .error-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 500px;
  margin-bottom: 2rem;
}

.error-404 .error-actions .btn {
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.error-404 .error-actions .btn.btn-outline {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
}

.error-404 .error-actions .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.error-404 .error-actions .btn.btn-solid {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

.error-404 .error-actions .btn.btn-solid:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

.error-404 .error-illustration {
  padding: 2rem;
  position: relative;
}

.error-404 .error-illustration .illustration-container {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-404 .error-illustration .planet {
  position: absolute;
  font-size: 8rem;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
  animation: float 6s infinite ease-in-out;
  z-index: 1;
}

.error-404 .error-illustration .astronaut {
  position: absolute;
  font-size: 4rem;
  color: var(--heading-color);
  animation: float 4s infinite ease-in-out;
  animation-delay: 1s;
  z-index: 2;
  transform: translateX(50px);
}

.error-404 .error-illustration .stars {
  position: absolute;
  width: 100%;
  height: 100%;
}

.error-404 .error-illustration .stars i {
  position: absolute;
  color: color-mix(in srgb, var(--heading-color), transparent 40%);
  animation: twinkle infinite ease-in-out;
}

.error-404 .error-illustration .stars i.star-1 {
  top: 20%;
  left: 20%;
  font-size: 1rem;
  animation-duration: 3s;
}

.error-404 .error-illustration .stars i.star-2 {
  top: 30%;
  right: 25%;
  font-size: 0.8rem;
  animation-duration: 4s;
}

.error-404 .error-illustration .stars i.star-3 {
  bottom: 40%;
  left: 30%;
  font-size: 1.2rem;
  animation-duration: 5s;
}

.error-404 .error-illustration .stars i.star-4 {
  top: 50%;
  right: 40%;
  font-size: 0.9rem;
  animation-duration: 3.5s;
}

.error-404 .error-illustration .stars i.star-5 {
  bottom: 30%;
  right: 30%;
  font-size: 1.1rem;
  animation-duration: 4.5s;
}

.error-404 .support-text p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0.5rem;
}

.error-404 .support-text .support-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.error-404 .support-text .support-link:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

@media (max-width: 991.98px) {
  .error-404 .error-content {
    text-align: center !important;
    padding-bottom: 0;
  }

  .error-404 .error-text {
    margin: 0 auto 2rem;
  }

  .error-404 .error-illustration {
    padding-top: 3rem;
  }

  .error-404 .error-illustration .illustration-container {
    height: 300px;
  }

  .error-404 .error-illustration .planet {
    font-size: 6rem;
  }

  .error-404 .error-illustration .astronaut {
    font-size: 3rem;
  }
}

@media (max-width: 575.98px) {
  .error-404 .error-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .error-404 .error-actions .btn {
    width: 100%;
  }

  .error-404 .error-actions .ms-3 {
    margin-left: 0 !important;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes twinkle {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  margin: 60px 0 30px 0;
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
  padding: 0 0 0 10px;
  margin: 0 0 20px 0;
  border-left: 4px solid var(--accent-color);
}

.widget-item {
  margin-bottom: 30px;
  background-color: color-mix(in srgb, var(--default-color), transparent 98%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 30px;
  border-radius: 5px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.pdf-modal{
  display:none;
  position:fixed;
  z-index:9999;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.85);
}

.pdf-content{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:90%;
  height:90%;
  background:#fff;
  border-radius:8px;
  overflow:hidden;
}

.pdf-content iframe{
  width:100%;
  height:100%;
  border:none;
}

.pdf-close{
  position:absolute;
  right:15px;
  top:10px;
  font-size:28px;
  cursor:pointer;
  z-index:2;
}


.marca-gto-badge {
  position: absolute;
  top: 40px;
  right: 40px;
  z-index: 10;
}

.marca-gto-badge img {
  width:180px;
  height:auto;
  transform:rotate(-10deg);
  filter:drop-shadow(0 10px 20px rgba(0,0,0,0.2));
  animation:badgeForward 3.5s ease-in-out infinite;
}

.marca-gto-badge img:hover {
  animation-play-state:paused;
  transform:rotate(-10deg) scale(1.05);
}

/* adelante y atrás */
@keyframes badgeForward{

  0%{
    transform:rotate(-10deg) scale(1);
  }

  50%{
    transform:rotate(-10deg) scale(1.08);
  }

  100%{
    transform:rotate(-10deg) scale(1);
  }

}

