/**
* Template Name: KnightOne
* Template URL: https://bootstrapmade.com/knight-simple-one-page-bootstrap-template/
* Updated: Oct 16 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
        "Noto Color Emoji";
    --heading-font: "Raleway", sans-serif;
    --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #282828; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #940099; /* 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: white; /* The default color of the main navmenu links */
    --nav-hover-color: #3d3c3d; /* 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: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #940099; /* 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: #f9f9f9;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}

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

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

a {
    color: gray;
    text-decoration: none;
    transition: 0.3s;
    transition: all;
}

a:hover {
    color: black;
    text-decoration: none;
}

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

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(
        var(--accent-color) 50%,
        color-mix(in srgb, var(--accent-color), transparent 75%) 52%
    );
    border-radius: 50%;
    display: block;
    position: relative;
    overflow: hidden;
}

.pulsating-play-btn:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-play-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    animation: none;
    border-radius: 0;
}

.pulsating-play-btn:hover:after {
    border-left: 15px solid var(--accent-color);
    transform: scale(20);
}

@keyframes pulsate-play-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

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

/* 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
--------------------------------------------------------------*/
.header {
    --background-color: white;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 10px 0;
    transition: all 0.5s;
    z-index: 997;
    border-bottom: 1px solid
        color-mix(in srgb, var(--default-color), transparent 90%);
}

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

.header .logo img {
    max-height: 36px;
    margin-right: 8px;
}

.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: black;
}

.header .cta-btn,
.header .cta-btn:focus {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 14px;
    padding: 8px 26px;
    margin: 0;
    border-radius: 50px;
    transition: 0.3s;
}

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

@media (max-width: 1200px) {
    .header.logo {
        order: 1;
    }
    .header .btn-cart {
        order: 2;
    }
    .header .logo h1 {
        font-size: 18px;
    }
    .header .cta-btn {
        margin: 0 15px 0 0;
        padding: 6px 20px;
    }

    .header .navmenu {
        order: 3;
    }
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
    --background-color: rgba(255, 248, 248, 0.9);
}

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

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

    .navmenu li {
        position: relative;
    }

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

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

    .navmenu a,
    .navmenu a:focus {
        color: black;
        font-size: 15px;
        padding: 0 2px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
    }

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

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

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

    .navmenu li:hover > a,
    .navmenu .active,
    .navmenu .active:focus {
        color: black;
    }

    .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: black;
        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: black;
        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(--contrast-color);
    }

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

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

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

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

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

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

    .mobile-nav-active .mobile-nav-toggle {
        color: #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 {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    text-align: center;
    padding: 30px 0;
    position: relative;
}

.footer h3 {
    font-size: 36px;
    font-weight: 700;
    position: relative;
    padding: 0;
    margin: 0 0 15px 0;
    color: blueviolet;
}

.footer p {
    font-size: 15px;
    font-style: italic;
    padding: 0;
    margin: 0 0 30px 0;
}

.footer .social-links {
    margin: 0 0 30px 0;
}

.footer .social-links a {
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin: 0 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

.footer .social-links .instagram{
    background: linear-gradient(170deg, rgba(84,5,177,1) 0%, rgba(210,14,178,1) 27%, rgba(255,0,76,1) 54%, rgba(255,207,0,1) 86%);
    color :white;
}
.footer .social-links .tiktok{
    background: white;
    color: black;
    text-shadow: 2px 2px 0px rgba(255, 0, 0, 0.6), -2px -2px 0px rgba(2, 211, 248, 0.6);
}
.footer .social-links .facebook{
    background: rgb(0, 17, 255);
    color :white;
}
.footer .social-links .whatsapp{
    background: green;
    color :white;
}

.footer .social-links a:hover {
    transform: scale(1.1);
    text-decoration: none;
}

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

.footer .credits {
    font-size: 13px;
    padding-top: 5px;
}

/*--------------------------------------------------------------
# Preloader Premium - Estilo Boutique Dorada
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999; /* Un poco más alto para asegurar que tape todo */
    overflow: hidden;
    background-color: #ffffff; /* Fondo blanco limpio de alta costura */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.6s;
}

/* Anillo Exterior Grande (Gira a la derecha) */
#preloader::before {
    content: "";
    position: absolute;
    width: 70px;
    height: 70px;
    border: 2px solid transparent;
    /* Degradado dorado elegante para el borde */
    border-top: 2px solid #d4af37;
    border-bottom: 2px solid #b38f2d;
    border-radius: 50%;
    animation: spin-clockwise 1.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}

/* Anillo Interior Pequeño (Gira a la izquierda) */
#preloader::after {
    content: "";
    position: absolute;
    width: 45px;
    height: 45px;
    border: 2px solid transparent;
    /* Tono dorado más claro para hacer contraste */
    border-left: 2px solid #f3e5ab;
    border-right: 2px solid #e6ca65;
    border-radius: 50%;
    opacity: 0.8;
    animation: spin-counterclockwise 1s linear infinite;
}

/* --- ANIMACIONES --- */

/* Giro hacia la derecha con efecto sutil de aceleración/desaceleración */
@keyframes spin-clockwise {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Giro rápido hacia la izquierda para dar contraste visual */
@keyframes spin-counterclockwise {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

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

.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);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 160px 0 80px 0;
    text-align: center;
    position: relative;
}

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

.page-title h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0;
    font-size: 16px;
    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 50%);
}

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

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

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    position: relative;
}

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

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

.section-title p {
    margin-bottom: 0;
    color: color-mix(in srgb, var(--default-color) 90%, white 50%);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
 

.hero img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.cont-titulo img{
  height: auto;
  width: 200px;
  position: relative!important;
  inset: 0;
  display: block;
  opacity: 0;
  object-fit: cover;
  z-index: 100;
  animation-name: logo-opacity;
  animation-duration: 3s;
  animation-delay: 2s;
  animation-fill-mode: forwards; /* Mantiene la posición final */
}
@keyframes logo-opacity{
  0%{
    opacity: 0;
  }
  50%{
    opacity: 1;
  }
  100%{
    opacity: 0;
  }
}
.hero-image.active {
    opacity: 1;
}

/* .hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}
 */
.hero .container {
    position: relative;
    z-index: 3;
}

.hero h2 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
}

.hero p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 10px 0 20px 0;
    font-size: 24px;
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 32px;
        line-height: 36px;
    }

    .hero p {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.tienda ul {
    list-style: none;
    padding: 0;
}

.tienda ul li {
    padding-bottom: 5px;
    display: flex;
    align-items: center;
}

.tienda ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--accent-color);
}

.tienda .read-more {
    background: var(--accent-color);
    color: var(--contrast-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 10px 28px;
    border-radius: 50px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tienda .read-more i {
    font-size: 18px;
    margin-left: 5px;
    line-height: 0;
    transition: 0.3s;
}

.tienda .read-more:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.tienda .read-more:hover i {
    transform: translate(5px, 0);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
    background-color: var(--surface-color);
    box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
    padding: 60px 30px;
    transition: all ease-in-out 0.3s;
    border-radius: 18px;
    border-bottom: 5px solid var(--surface-color);
    height: 100%;
}

.services .service-item .icon {
    color: var(--contrast-color);
    background: var(--accent-color);
    margin: 0;
    width: 64px;
    height: 64px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    transition: ease-in-out 0.3s;
}

.services .service-item h3 {
    font-weight: 700;
    margin: 10px 0 15px 0;
    font-size: 22px;
    transition: ease-in-out 0.3s;
}

.services .service-item p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

@media (min-width: 1365px) {
    .services .service-item:hover {
        transform: translateY(-10px);
        border-color: var(--accent-color);
    }

    .services .service-item:hover h3 {
        color: var(--accent-color);
    }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
    padding: 120px 0;
    position: relative;
    clip-path: inset(0);
}

.call-to-action img {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.call-to-action:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 50%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.call-to-action .container {
    position: relative;
    z-index: 3;
}

.call-to-action h3 {
    color: var(--default-color);
    font-size: 28px;
    font-weight: 700;
}

.call-to-action p {
    color: var(--default-color);
}

.call-to-action .cta-btn {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    /*  background: var(--accent-color); */
    color: var(--accent-color);
}

.call-to-action .cta-btn:hover {
    background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-image {
    position: relative;
    min-height: 400px;
}

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

.features .features-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.features .features-item i {
    font-size: 48px;
    color: var(--accent-color);
    margin-right: 20px;
    line-height: 0;
}

.features .features-item p {
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 0;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .clients-wrap {
    border-top: 1px solid
        color-mix(in srgb, var(--default-color), transparent 85%);
    border-left: 1px solid
        color-mix(in srgb, var(--default-color), transparent 85%);
}

.clients .client-logo {
    background-color: var(--surface-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid
        color-mix(in srgb, var(--default-color), transparent 85%);
    border-bottom: 1px solid
        color-mix(in srgb, var(--default-color), transparent 85%);
    overflow: hidden;
}

.clients .client-logo img {
    padding: 50px;
    max-width: 80%;
    transition: 0.3s;
}

@media (max-width: 640px) {
    .clients .client-logo img {
        padding: 30px;
        max-width: 50%;
    }
}

.clients .client-logo:hover img {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
    position: relative;
}

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

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

.stats .container {
    position: relative;
    z-index: 3;
}

.stats .subheading {
    text-align: center;
}

.stats .subheading h3 {
    font-weight: 700;
    font-size: 36px;
}

.stats .stats-item {
    padding: 30px;
    width: 100%;
}

.stats .stats-item span {
    font-size: 48px;
    display: block;
    color: var(--default-color);
    font-weight: 700;
}

.stats .stats-item p {
    padding: 0;
    margin: 0;
    font-family: var(--heading-font);
    font-size: 16px;
    font-weight: 700;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    text-align: center;
}

.portfolio .portfolio-filters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 20px 10px 20px;
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 5px;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
    color: var(--contrast-color);
    background-color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
    margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
    margin-right: 0;
}

@media (max-width: 575px) {
    .portfolio .portfolio-filters li {
        font-size: 14px;
        margin: 0 0 10px 0;
    }
}

.portfolio .portfolio-item {
    position: relative;
    overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
    opacity: 0;
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: -100%;
    z-index: 3;
    transition: all ease-in-out 0.5s;
    background: color-mix(in srgb, var(--surface-color), transparent 10%);
    padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
    font-size: 18px;
    font-weight: 600;
    padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 14px;
    margin-bottom: 0;
    padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
    position: absolute;
    right: 50px;
    font-size: 24px;
    top: calc(50% - 14px);
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    transition: 0.3s;
    line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
    color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
    right: 14px;
    font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
    opacity: 1;
    bottom: 0;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
    background-color: var(--surface-color);
    box-shadow: 0px 5px 90px rgba(0, 0, 0, 0.1);
    padding: 40px 20px;
    text-align: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.pricing .pricing-item h3 {
    padding: 15px;
    margin-top: 15px;
    font-size: 18px;
    font-weight: 600;
}

.pricing .pricing-item h4 {
    color: var(--accent-color);
    font-size: 42px;
    font-family: var(--default-font);
    font-weight: 500;
}

.pricing .pricing-item h4 sup {
    font-size: 20px;
    top: -15px;
    left: -3px;
}

.pricing .pricing-item h4 span {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 16px;
    font-weight: 300;
}

.pricing .pricing-item ul {
    padding: 20px 0;
    list-style: none;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
}

.pricing .pricing-item ul li {
    padding-bottom: 16px;
}

.pricing .pricing-item ul .na {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    text-decoration: line-through;
}

.pricing .pricing-item .btn-wrap {
    padding: 15px;
    text-align: center;
}

.pricing .pricing-item .btn-buy {
    color: var(--accent-color);
    background-color: transparent;
    border: 2px solid var(--accent-color);
    display: inline-block;
    padding: 10px 40px 12px 40px;
    border-radius: 50px;
    font-size: 14px;
    font-family: var(--heading-font);
    font-weight: 600;
    transition: 0.3s;
}

.pricing .pricing-item .btn-buy:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.pricing .recommended .btn-buy {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.pricing .recommended .btn-buy:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .recommended-badge {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    font-size: 13px;
    padding: 3px 25px 6px 25px;
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    color: var(--accent-color);
    border-radius: 50px;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content h3 {
    font-weight: 400;
    font-size: 34px;
}

.faq .content p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-container {
    margin-top: 15px;
}

.faq .faq-container .faq-item {
    background-color: var(--surface-color);
    position: relative;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

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

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

.faq .faq-container .faq-item h3 span {
    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;
}

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

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

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts article {
    background: var(--surface-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

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

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

.recent-posts .title {
    font-size: 20px;
    font-weight: 700;
    padding: 0;
    margin: 0 0 20px 0;
}

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

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

.recent-posts .post-author-img {
    width: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.recent-posts .post-author {
    font-weight: 600;
    margin-bottom: 5px;
}

.recent-posts .post-date {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item + .info-item {
    margin-top: 40px;
}

.contact .info-item i {
    color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    font-size: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
}

.contact .info-item h3 {
    padding: 0;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.contact .info-item:hover i {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.contact .php-email-form {
    height: 100%;
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form textarea {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: var(--default-color);
    background-color: var(--surface-color);
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type="text"]:focus,
.contact .php-email-form input[type="email"]:focus,
.contact .php-email-form textarea:focus {
    border-color: var(--accent-color);
}

.contact .php-email-form input[type="text"]::placeholder,
.contact .php-email-form input[type="email"]::placeholder,
.contact .php-email-form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type="submit"] {
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .swiper-wrapper {
    height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
    width: 48px;
    height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
    color: rgba(255, 255, 255, 0.8);
    background-color: rgba(0, 0, 0, 0.15);
    font-size: 24px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
    background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {
    .portfolio-details .swiper-button-prev,
    .portfolio-details .swiper-button-next {
        display: none;
    }
}

.portfolio-details .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
    opacity: 1;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.portfolio-details .portfolio-info h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    bottom: 0;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li {
    display: flex;
    flex-direction: column;
    padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
    text-transform: uppercase;
    font-weight: 400;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
    padding: 8px 40px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 50px;
    transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
    padding: 30px 30px 0 30px;
    position: relative;
    background: color-mix(in srgb, var(--default-color), transparent 97%);
    margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50px;
    border: 6px solid var(--background-color);
    float: left;
    margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 15px 0 5px 0;
    padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, var(--accent-color), transparent 50%);
    font-size: 26px;
    line-height: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
    font-style: italic;
    margin: 0 0 15px 0 0 0;
    padding: 0;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
    background-color: var(--surface-color);
    padding: 10px 30px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    margin-bottom: 20px;
}

.service-details .services-list a {
    display: block;
    line-height: 1;
    padding: 8px 0 8px 15px;
    border-left: 3px solid
        color-mix(in srgb, var(--default-color), transparent 70%);
    margin: 20px 0;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    transition: 0.3s;
}

.service-details .services-list a.active {
    color: var(--heading-color);
    font-weight: 700;
    border-color: var(--accent-color);
}

.service-details .services-list a:hover {
    border-color: var(--accent-color);
}

.service-details .services-img {
    margin-bottom: 20px;
}

.service-details h3 {
    font-size: 26px;
    font-weight: 700;
}

.service-details h4 {
    font-size: 20px;
    font-weight: 700;
}

.service-details p {
    font-size: 15px;
}

.service-details ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.service-details ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.service-details ul i {
    font-size: 20px;
    margin-right: 8px;
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
    background-color: var(--surface-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

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

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

.blog-posts .title {
    font-size: 20px;
    font-weight: 700;
    padding: 0;
    margin: 0 0 20px 0;
}

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

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

.blog-posts .post-author-img {
    width: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.blog-posts .post-author {
    font-weight: 600;
    margin-bottom: 5px;
}

.blog-posts .post-date {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
    padding-top: 0;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

.blog-pagination li {
    margin: 0 5px;
    transition: 0.3s;
}

.blog-pagination li a {
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--accent-color);
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
    color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
    padding-bottom: 30px;
}

.blog-details .article {
    background-color: var(--surface-color);
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
    margin: -30px -30px 20px -30px;
    overflow: hidden;
}

.blog-details .title {
    color: var(--heading-color);
    font-size: 28px;
    font-weight: 700;
    padding: 0;
    margin: 30px 0;
}

.blog-details .content {
    margin-top: 20px;
}

.blog-details .content h3 {
    font-size: 22px;
    margin-top: 30px;
    font-weight: bold;
}

.blog-details .content blockquote {
    overflow: hidden;
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    padding: 60px;
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.blog-details .content blockquote p {
    color: var(--default-color);
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
}

.blog-details .content blockquote:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--accent-color);
    margin-top: 20px;
    margin-bottom: 20px;
}

.blog-details .meta-top {
    margin-top: 20px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}

.blog-details .meta-top ul li + li {
    padding-left: 20px;
}

.blog-details .meta-top i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 14px;
    display: inline-block;
    line-height: 1;
}

.blog-details .meta-bottom {
    padding-top: 10px;
    border-top: 1px solid
        color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    display: inline;
}

.blog-details .meta-bottom a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
    color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
    list-style: none;
    display: inline;
    padding: 0 20px 0 0;
    font-size: 14px;
}

.blog-details .meta-bottom .cats li {
    display: inline-block;
}

.blog-details .meta-bottom .tags {
    list-style: none;
    display: inline;
    padding: 0;
    font-size: 14px;
}

.blog-details .meta-bottom .tags li {
    display: inline-block;
}

.blog-details .meta-bottom .tags li + li::before {
    padding-right: 6px;
    color: var(--default-color);
    content: ",";
}

.blog-details .meta-bottom .share {
    font-size: 16px;
}

.blog-details .meta-bottom .share i {
    padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
    padding: 10px 0;
}

.blog-comments .comments-count {
    font-weight: bold;
}

.blog-comments .comment {
    margin-top: 30px;
    position: relative;
}

.blog-comments .comment .comment-img {
    margin-right: 14px;
}

.blog-comments .comment .comment-img img {
    width: 60px;
}

.blog-comments .comment h5 {
    font-size: 16px;
    margin-bottom: 2px;
}

.blog-comments .comment h5 a {
    font-weight: bold;
    color: var(--default-color);
    transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
    color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
    padding-left: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
    font-size: 20px;
}

.blog-comments .comment time {
    display: block;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
    padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
    padding-top: 10px;
}

.comment-form form {
    background-color: var(--surface-color);
    margin-top: 30px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
    font-weight: bold;
    font-size: 22px;
}

.comment-form form p {
    font-size: 14px;
}

.comment-form form input {
    background-color: var(--surface-color);
    color: var(--default-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
    font-size: 14px;
    border-radius: 4px;
    padding: 10px 10px;
}

.comment-form form input:focus {
    color: var(--default-color);
    background-color: var(--surface-color);
    box-shadow: none;
    border-color: var(--accent-color);
}

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

.comment-form form textarea {
    background-color: var(--surface-color);
    color: var(--default-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 14px;
    height: 120px;
}

.comment-form form textarea:focus {
    color: var(--default-color);
    box-shadow: none;
    border-color: var(--accent-color);
    background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
    margin-bottom: 25px;
}

.comment-form form .btn-primary {
    border-radius: 4px;
    padding: 10px 20px;
    border: 0;
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
    color: var(--contrast-color);
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
    background-color: var(--surface-color);
    padding: 30px;
    margin: 60px 0 30px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
    color: var(--heading-color);
    font-size: 20px;
    font-weight: 700;
    padding: 0;
    margin: 0 0 20px 0;
}

.widget-item {
    margin-bottom: 40px;
}

.widget-item:last-child {
    margin-bottom: 0;
}

.blog-author-widget img {
    max-width: 120px;
    margin-right: 20px;
}

.blog-author-widget h4 {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 0px;
    padding: 0;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author-widget .social-links {
    margin: 5px 0;
}

.blog-author-widget .social-links a {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    margin-right: 5px;
    font-size: 18px;
}

.blog-author-widget .social-links a:hover {
    color: var(--accent-color);
}

.blog-author-widget p {
    font-style: italic;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 10px 0 0 0;
}

.search-widget form {
    background: var(--background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
    padding: 3px 10px;
    position: relative;
    border-radius: 50px;
    transition: 0.3s;
}

.search-widget form input[type="text"] {
    border: 0;
    padding: 4px 10px;
    border-radius: 4px;
    width: calc(100% - 40px);
    background-color: var(--background-color);
    color: var(--default-color);
}

.search-widget form input[type="text"]:focus {
    outline: none;
}

.search-widget form button {
    background: none;
    color: var(--default-color);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    font-size: 16px;
    padding: 0 16px;
    transition: 0.3s;
    line-height: 0;
}

.search-widget form button i {
    line-height: 0;
}

.search-widget form button:hover {
    color: var(--accent-color);
}

.search-widget form:is(:focus-within) {
    border-color: var(--accent-color);
}

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

.categories-widget ul li {
    padding-bottom: 10px;
}

.categories-widget ul li:last-child {
    padding-bottom: 0;
}

.categories-widget ul a {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    transition: 0.3s;
}

.categories-widget ul a:hover {
    color: var(--accent-color);
}

.categories-widget ul a span {
    padding-left: 5px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 14px;
}

.recent-posts-widget .post-item {
    display: flex;
    margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
    margin-bottom: 0;
}

.recent-posts-widget .post-item img {
    width: 80px;
    margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
    color: var(--default-color);
    transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
    color: var(--accent-color);
}

.recent-posts-widget .post-item time {
    display: block;
    font-style: italic;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

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

.tags-widget ul li {
    display: inline-block;
}

.tags-widget ul a {
    background-color: color-mix(in srgb, var(--default-color), transparent 94%);
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    border-radius: 50px;
    font-size: 14px;
    padding: 5px 15px;
    margin: 0 6px 8px 0;
    display: inline-block;
    transition: 0.3s;
}

.tags-widget ul a:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.tags-widget ul a span {
    padding-left: 5px;
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    font-size: 14px;
}

/* BOOBSTRAP 5 */

/* Clases para Margen (Margin) */
.m-0 {
    margin: 0;
}

.mt-0 {
    margin-top: 0;
}

.mr-0 {
    margin-right: 0;
}

.mb-0 {
    margin-bottom: 0;
}

.ml-0 {
    margin-left: 0;
}

.mx-0 {
    margin-left: 0;
    margin-right: 0;
}

.my-0 {
    margin-top: 0;
    margin-bottom: 0;
}

/* Clases con valores de espaciado más grandes */
.m-1 {
    margin: 4px;
}

.mt-1 {
    margin-top: 4px;
}

.mr-1 {
    margin-right: 4px;
}

.mb-1 {
    margin-bottom: 4px;
}

.ml-1 {
    margin-left: 4px;
}

.mx-1 {
    margin-left: 4px;
    margin-right: 4px;
}

.my-1 {
    margin-top: 4px;
    margin-bottom: 4px;
}

.m-2 {
    margin: 8px;
}

.mt-2 {
    margin-top: 8px;
}

.mr-2 {
    margin-right: 8px;
}

.mb-2 {
    margin-bottom: 8px;
}

.ml-2 {
    margin-left: 8px;
}

.mx-2 {
    margin-left: 8px;
    margin-right: 8px;
}

.my-2 {
    margin-top: 8px;
    margin-bottom: 8px;
}

.m-3 {
    margin: 16px;
}

.mt-3 {
    margin-top: 16px;
}

.mr-3 {
    margin-right: 16px;
}

.mb-3 {
    margin-bottom: 16px;
}

.ml-3 {
    margin-left: 16px;
}

.mx-3 {
    margin-left: 16px;
    margin-right: 16px;
}

.my-3 {
    margin-top: 16px;
    margin-bottom: 16px;
}

.m-4 {
    margin: 24px;
}

.mt-4 {
    margin-top: 24px;
}

.mr-4 {
    margin-right: 24px;
}

.mb-4 {
    margin-bottom: 24px;
}

.ml-4 {
    margin-left: 24px;
}

.mx-4 {
    margin-left: 24px;
    margin-right: 24px;
}

.my-4 {
    margin-top: 24px;
    margin-bottom: 24px;
}

.m-5 {
    margin: 48px;
}

.mt-5 {
    margin-top: 48px;
}

.mr-5 {
    margin-right: 48px;
}

.mb-5 {
    margin-bottom: 48px;
}

.ml-5 {
    margin-left: 48px;
}

.mx-5 {
    margin-left: 48px;
    margin-right: 48px;
}

.my-5 {
    margin-top: 48px;
    margin-bottom: 48px;
}

/* Clases para Padding (Relleno) */
.p-0 {
    padding: 0;
}

.pt-0 {
    padding-top: 0;
}

.pr-0 {
    padding-right: 0;
}

.pb-0 {
    padding-bottom: 0;
}

.pl-0 {
    padding-left: 0;
}

.px-0 {
    padding-left: 0;
    padding-right: 0;
}

.py-0 {
    padding-top: 0;
    padding-bottom: 0;
}

/* Clases con valores de espaciado más grandes */
.p-1 {
    padding: 4px;
}

.pt-1 {
    padding-top: 4px;
}

.pr-1 {
    padding-right: 4px;
}

.pb-1 {
    padding-bottom: 4px;
}

.pl-1 {
    padding-left: 4px;
}

.px-1 {
    padding-left: 4px;
    padding-right: 4px;
}

.py-1 {
    padding-top: 4px;
    padding-bottom: 4px;
}

.p-2 {
    padding: 8px;
}

.pt-2 {
    padding-top: 8px;
}

.pr-2 {
    padding-right: 8px;
}

.pb-2 {
    padding-bottom: 8px;
}

.pl-2 {
    padding-left: 8px;
}

.px-2 {
    padding-left: 8px;
    padding-right: 8px;
}

.py-2 {
    padding-top: 8px;
    padding-bottom: 8px;
}

.p-3 {
    padding: 16px;
}

.pt-3 {
    padding-top: 16px;
}

.pr-3 {
    padding-right: 16px;
}

.pb-3 {
    padding-bottom: 16px;
}

.pl-3 {
    padding-left: 16px;
}

.px-3 {
    padding-left: 16px;
    padding-right: 16px;
}

.py-3 {
    padding-top: 16px;
    padding-bottom: 16px;
}

.p-4 {
    padding: 24px;
}

.pt-4 {
    padding-top: 24px;
}

.pr-4 {
    padding-right: 24px;
}

.pb-4 {
    padding-bottom: 24px;
}

.pl-4 {
    padding-left: 24px;
}

.px-4 {
    padding-left: 24px;
    padding-right: 24px;
}

.py-4 {
    padding-top: 24px;
    padding-bottom: 24px;
}

.p-5 {
    padding: 48px;
}

.pt-5 {
    padding-top: 48px;
}

.pr-5 {
    padding-right: 48px;
}

.pb-5 {
    padding-bottom: 48px;
}

.pl-5 {
    padding-left: 48px;
}

.px-5 {
    padding-left: 48px;
    padding-right: 48px;
}

.py-5 {
    padding-top: 48px;
    padding-bottom: 48px;
}

.container-titulo {
    position: absolute;
    z-index: 7;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container-titulo div {
    position: relative;
    width: 50%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    opacity: 1;
}
.container-titulo div:nth-of-type(1) {
    animation-name: desplegar-cont-izquierda;
    animation-delay: 5s;
    animation-duration: 5s;
    animation-fill-mode: forwards;
}
.container-titulo div:nth-of-type(2) {
    animation-name: desplegar-cont-derecha;
    animation-delay: 5s;
    animation-duration: 5s;
    animation-fill-mode: forwards;
}
@keyframes desplegar-cont-izquierda {
    0% {
        transform: translateX(0vw);
        opacity: 1;
    }

    100% {
        transform: translateX(-100vw);
    }
}

@keyframes desplegar-cont-derecha {
    0% {
        transform: translateX(0vw);
        opacity: 1;
    }
    100% {
        transform: translateX(100vw);
    }
}

.titulo-class {
    position: relative;
    z-index: 100;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}
.titulo-class span {
    opacity: 0; /* Inicia invisible */
    position: relative;
    animation-duration: 5s;
    z-index: 1;
    animation-fill-mode: forwards; /* Asegura que se quede en la posición final */
    font-family: var(--heading-font);
}
.titulo-class span:nth-of-type(1) {
    color: blueviolet;
    font-size: 90px;
    animation-name: slideFromLeft;
    animation-fill-mode: forwards; /* Mantiene la posición final */
}

.titulo-class span:nth-of-type(2) {
    color: white;
    padding-top: 33px;
    font-size: 40px;
    animation-name: slideFromRight;
    animation-fill-mode: forwards; /* Mantiene la posición final */
}

@keyframes slideFromLeft {
    0% {
        opacity: 0;
        transform: translateX(
            -100vw
        ); /* Inicia fuera de la pantalla, a la izquierda */
    }
    80% {
        opacity: 1;
        transform: translateX(0); /* Llega a su posición original */
    }
    100% {
        opacity: 0; /* Mantiene visible */
    }
}

@keyframes slideFromRight {
    0% {
        opacity: 0;
        transform: translateX(
            100vw
        ); /* Inicia fuera de la pantalla, a la derecha */
    }
    80% {
        opacity: 1;
        transform: translateX(0); /* Llega a su posición original */
    }
    100% {
        opacity: 0;
    }
}

/* Estilos generales para los iconos */
.btns-cart {
    font-size: larger;
    transition: all 0.1s;
}
.btns-cart:hover {
    transform: scale(1.2);
}

/* Estilos del contador (notificación) */
.badge-cart {
    position: absolute;
    top: 0px;
    right: 8px;
    padding: 5px;
    background-color: red; /* Fondo rojo */
    border-radius: 50%;
}

/* Estilo para ajustar el espacio alrededor de los iconos */
.position-relative {
    position: relative;
}

/* Estilos generales */
/* Estilos generales */
.modelo {
    margin: 0 auto;
}
.cont-modelo {
    margin: 20px 100px 20px 100px;
}
.hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.favorito-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.product-heart {
    position: absolute;
    top: 6px;
    right: 23px;
    font-size: x-large;
    color: white;
    transition: 0.5s;
    cursor: pointer;
}
.product-heart {
    position: absolute;
    top: 6px;
    right: 23px;
    font-size: x-large;
    color: white;
    transition: 0.5s;
    cursor: pointer;
}

.product-heart.active {
    color: red !important;
}
/* Aplica el hover al contenedor y cambia el color del icono */
.product-heart:hover {
    color: red;
}

.product-heart i {
    transition: transform 0.3s ease; /* Asegúrate de que la transición se aplica correctamente */
}

/* Aplica la transformación al ícono cuando el contenedor tiene hover */
.product-heart:hover i {
    transform: scale(1.15);
}
/* Media Queries */
.sub-titulo {
    display: inline-block;
    position: relative;
    padding-bottom: 7px;
    cursor: pointer;
}
.sub-titulo {
    position: relative; /* Asegura que el pseudo-elemento se posicione correctamente */
}

.sub-titulo::before {
    content: ""; /* Es necesario agregar content para que funcione el pseudo-elemento */
    width: 0;
    padding-top: 30px;
    position: absolute;
    transition: all 0.7s;
    border-bottom: 2px solid black;
}

.sub-titulo:hover::before {
    width: 100%;
}

h2,
h3,h5 , p {
    font-family: serif;
}


.cont-titulo{
  display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* section producto vendidos */
.productos-vendidos {
    margin: 0 auto;
}
.cont-productos-vendidos {
    margin: 10px 100px 10px 100px;
}
.contenido-detalles {
    padding: 5px;
    margin: 0 auto;
    font-family: serif;
}
.contenido-detalles .color-detalle {
    position: relative;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    border: 1px solid gray;
    display: inline-block; /* O usa block si prefieres */
    transition: 0.5s all;
    cursor: pointer;
}
.contenido-detalles .color-detalle.active{
    border: 2px solid white;
    box-shadow: 0px 0px 0px 1.5px rgba(0,0,0,1);
}
.contenido-detalles p {
    margin-bottom: 3px;
    font-size: unset;
}

.contenido-detalles .contenido-detalles-modelo {
    background-color: black;
    display: inline-block;
    color: white;
    padding: 3px 10px;
    font-size: 9px;
    font-family: cursive;
}

.btn-comprar {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: var(--default-color);
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
}
.btn-comprar {
    background-color: black;
    color: white;
    border: 2px solid black;
    padding: 0px 10px 1px 10px;
    width: 110px;
    transition: all 0.7s;
}

/* .btn-comprar:hover {
    transform: scale(1.02);
    color: white;
} */
.title-class {
    font-size: 95px;
    font-family: small-caps;
    color: violet;
}
.sub-title-class {
    font-size: 53px;
    color: white;
}
.btn-ir-comprar {
    font-weight: 400;
    line-height: 1.5;
    color: white;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: black;
    font-size: 1rem;
}
.btn-ir-comprar {
  padding: 10px 30px;
  background : black;
  color :white;
  transition: all 0.5s;
  font-size: large;
  font-family: serif;
  padding: 3px 20px;
} 
.btn-ir-comprar:hover{
  background-color: black;
  color: white;
  transform: scale(1.02);
}

.img-loja{
  width: 100%;
}
/* Celulares (hasta 576px) */
@media (max-width: 576px) {
    .footer h3 {
        font-size: 30px;
        font-weight: 700;
        position: relative;
        padding: 0;
        margin: 0 0 15px 0;
        color: blueviolet;
    }
    .modelo .row {
        flex-wrap: wrap; /* Asegura que las imágenes se distribuyan correctamente */
    }
    .title-class {
        font-size: 35px;
    }
    .sub-title-class {
        font-size: 15px;
    }
    .product-heart {
        font-size: large;
    }
    .cont-modelo {
        margin: 10px 20px 10px 20px;
    }
    .cont-productos-vendidos {
        margin: 10px 20px 10px 20px;
    }
    .modelo .col-6 {
        padding-bottom: 20px; /* Espacio entre las imágenes */
    }
    .titulo-class span:nth-of-type(1) {
        font-size: 35px;
    }

    .titulo-class span:nth-of-type(2) {
        color: white;
        padding-top: 10px;
        font-size: 15px;
    }
}

/* Tablets (de 577px a 1024px) */
@media (min-width: 577px) and (max-width: 1024px) {
    .modelo .row {
        flex-wrap: wrap;
    }
    .cont-modelo {
        margin: 15px 60px 15px 60px;
    }
    .cont-productos-vendidos {
        margin: 15px 60px 15px 60px;
    }
    .modelo .col-md-4 {
        padding: 0 15px; /* Espaciado entre columnas */
    }
}

/* Pantallas grandes (PC, a partir de 1025px) */
@media (min-width: 1025px) {
    .modelo .row {
        flex-wrap: wrap;
    }

    .modelo .col-lg-4 {
        padding: 0 15px; /* Espaciado entre columnas */
    }
}

.redes-sociales i{
    display: block;
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    font-size: 100px;
    transform: translate(-50%, -50%);
    color: white;
}
.class-icon{
    transition: all 0.75s;
}
.class-icon:hover {
    transform: rotate(360deg) scale(1.1);
}
.redes-sociales .icon{
    display: inline-block;
    vertical-align: middle;
    position: relative;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background-clip: content-box !important;
    padding: 10px;
    transition: .5s;
    color: #D7D0BE;
    margin-left: 15px;
    margin-right: 15px;
    font-size: 70px;
}
.redes-sociales .icon-instagram{
    background: linear-gradient(170deg, rgba(84,5,177,1) 0%, rgba(210,14,178,1) 27%, rgba(255,0,76,1) 54%, rgba(255,207,0,1) 86%);
    border: 2px dashed orangered;
}
.redes-sociales .icon-facebook{
    position: relative;
    background: rgb(0, 17, 255);
    border: 2px dashed blue;
}

.redes-sociales .icon-tiktok{
    background: black;
    border: 2px dashed black;
    text-shadow: 5px 5px 0px rgba(255, 0, 0, 0.6), -5px -5px 0px rgba(2, 211, 248, 0.6);
}
.redes-sociales .icon-whatsapp{
    background: green;
    border: 2px dashed green;
}

@media (max-width: 576px) {
    .redes-sociales .icon{
        width: 66px;
        height: 66px;
    }
    .redes-sociales i{

        font-size: 24px;

    }
    .redes-sociales .icon-instagram{
        border: 1px dashed orangered;
    }
    .redes-sociales .icon-facebook{
        border: 1px dashed blue;
    }
    
    .redes-sociales .icon-tiktok{
        border: 1px dashed black;
        text-shadow: 1.5px 1.5px 0px rgba(255, 0, 0, 0.6), -1.5px -1.5px 0px rgba(2, 211, 248, 0.6);
    }
    .redes-sociales .icon-whatsapp{
        border: 1px dashed green;
    }
    section .section{
        padding: 15px;
    }
}

/* Tablets (de 577px a 1024px) */
@media (min-width: 577px) and (max-width: 1024px) {
    .redes-sociales .icon{
        width: 160px;
        height: 160px;
    }
    .redes-sociales i{

        font-size: 75px;

    }
}

.contenedor-carrito{
    display: flex;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 2011;
    position: fixed;
}

.ventana-emergente{
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0px;
    right: 0px;
    width: 500px;
    height: 100%;
    background: white;
    padding: 20px 20px 10px 20px;
    border-radius: 5px 0px 0px 5px;
    font-family: 'Raleway' !important;
    font-weight: 400 !important;
    transform: translateX(100%);
    transition: transform 1s ease-in-out;
}
.ventana-emergente.active{
    transform: translateX(0vh);
}
.ventana-carrito{
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: space-between;
    flex-direction: column;
}

.ventana-body{
    padding: 10px;
    overflow: auto;
}

.ventana-body .item-carrito img{
    width: 107px;
    height: 100%;
}

.item-carrito{
    position: relative;
    padding: 15px 0px;
    border-bottom: 1px solid gray;
}
.item-carrito .item-detalles{
    padding: 5px 5px 5px 14px;
    width: 100%;
    height: auto;
    font-size: smaller;
}
.item-carrito .item-detalles h6{
    font-weight: 600;
    font-family: system-ui !important; 
    width: 70%;
}
.item-carrito .item-detalles p{
    color: gray;
    font-family: system-ui !important;
    margin-bottom: 0px;
}
.item-detalles .color-item{
    width: 16px;
    height: 16px;
    display: block;
    border-radius: 50%;
    border:1px solid gray
}

.item-detalles .item-carrito-button{
    display: flex;
    flex-direction: row;
    justify-content: end;
    position: absolute;
    top: 28px;
    right: 0px;
}
.item-carrito-button .btn-detalles{
    border: none;
    padding: 0px;
    font-size: larger;
    color: gray;
    background: white;
    transition: all 0.75s;
}   

.btn-detalles.btn-editar-carrito:hover{
    color: orange;
    transform: scale(1.1);
}

.btn-detalles.btn-eliminar-carrito:hover{
    color: red;
    transform: scale(1.1);
}
.btn-finalizar{
    border-radius: 0px;
    font-family: monospace;
    background: black;
    border: none;
    font-weight: 600;
    padding: 3px 10px;
    transition: all 0.5s;
    color: white;
}
.btn-finalizar:hover{
    transform: scale(1.1);
    color:white;
    background: black;
}
.btn-finalizar.disabled {
    pointer-events: none;  /* Deshabilita la acción de clic */
    color: white;  /* Cambia el color para mostrar que está deshabilitado */
    background: gray;
    text-decoration: none;  /* Opcional, para quitar subrayado */
}
.abreviatura{
    font-size: 10px;
    padding-top: 5px;
}

.contenedor-favoritos{
    display: flex;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 2011;
    position: fixed;
    padding: 20px;
}
.ventana-emergente-favoritos{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background: white;
    padding: 20px 20px 10px 20px;
    border-radius: 5px 0px 0px 5px;
    font-family: 'Raleway' !important;
    font-weight: 400 !important;
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
}
.ventana-emergente-favoritos.active{
    opacity: 1;
}

.ventana-emergente-favoritos{
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: space-between;
    flex-direction: column;
}
.ventana-body-favoritos {
    padding: 10px;
    width: 100%;
    /* Agregamos un height adecuado para que se pueda desplazar dentro de un contenedor de tamaño fijo */
    height: calc(100vh - 120px); /* Esto resta un espacio para el header y el padding */
    overflow-y: auto; /* Aplica scroll vertical si es necesario */
    overflow-x: hidden; /* Desactiva el desplazamiento horizontal */
}
.ventana-body-favoritos span,p{
    font-size: 13px;
}
.section-ubicacion p{
    font-size: unset;
}
.ventana-body-favoritos button{
    font-size: 13px;
}
.ventana-body-favoritos .product-heart.favorito{
    font-size: 26px;
}
.contenedor-galeria-tienda{
    margin: 50px;
}
.contenedor-galeria .row{
    padding-left: 0px!important;
    padding-right: 0px!important;
     width: 100.9%; 
}
.contenedor-galeria .item-galeria{
    position: relative;
    padding-left: 0px;
    padding-right: 0px;
    transition: transform 0.5s;
}
.contenedor-galeria .img-galeria{
    width: 100%;
    position: relative;
    height: auto;
    transition: all 0.5s;    
    height: 400px;
    object-fit: cover;
}
.animation-img:hover .img-galeria{
    transform: scale(1.05);
    z-index: 100;
    box-shadow: 0px 0px 30px -8px rgba(0,0,0,1);
}

.contenedor-galeria-tienda .row{
    padding-left: 0px!important;
    padding-right: 0px!important;
    /* width: 100.9%; */
}
.contenedor-galeria-tienda .item-galeria-tienda{
    position: relative;
    padding: 20px;
    transition: transform 0.5s;
}
.contenedor-galeria-tienda .img-galeria-tienda{
    width: 100%;
    position: relative;
    height: auto;
    transition: all 0.5s;    
}
.animation-img:hover .img-galeria-tienda{
    transform: scale(1.05);
    z-index: 100;
    box-shadow: 0px 0px 30px -8px rgba(0,0,0,1);
}

@media (max-width: 576px) {
    .contenedor-galeria .row{
        width: 103.5%;
        height:100%;
    }
    .ventana-body-favoritos span, p {
        font-size: 10px;
    }
    .ventana-emergente-favoritos{
        padding: 10px 10px 10px 10px;
    }
   .ventana-emergente{
    width: 355px;
   }
   .ventana-body .item-carrito img{
    width: 85px;
    height: auto;
   }
   .item-detalles p,h6, .item-carrito-button{
    font-size: 10px;
   }
   .btn-finalizar{
    font-size: small;
   }
   .ventana-footer{
    font-size: small;
   }
   .abreviatura{
    font-size: 8px;
    }
    .ventana-body-favoritos .product-heart.favorito{
    font-size: large;
    }
    .ventana-body-favoritos {
        height: calc(90vh - 20px); /* Esto resta un espacio para el header y el padding */
        padding: 10px 0px
    }
    .section-title h2 {
        font-size: 20px;
    }
    .contenedor-galeria-tienda {
        margin: 20px 10px;
    }
    .item-galeria-tienda h5{
        font-size: small;
    }
}

/* Tablets (de 577px a 1024px) */
@media (min-width: 577px) and (max-width: 1024px) {
    .contenedor-galeria .row{
        width: 104.5%;
    }
  
}


.contenedor-emergente-imagenes{
    padding: 20px;
    background: rgb(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    opacity: 0;
    align-items: center;
    transition: all 0.5s;
}
.contenedor-emergente-imagenes.active{
    opacity: 1;
}
.ventana-emergente-imagenes{
    background: white;
    width: 430px;
 /*    height: 100%; */
    border-radius: 5px;
    position: relative;
    padding: 20px;
    display: flex;
    flex-direction: column;
}
.herader-imagen{
    position: relative;
}
.body-imagen .imagen-principal{
    width: 400px;
    height: auto;
}
.body-imagen{
    justify-content: center;
    flex-direction: row;
    align-items: start;
    display: flex;
}

.body-imagen .imagen-miniatura{
    width: 80px;
    height: auto;
    display: flex;
}


.body-imagen .ver-img{
    width: 100%;
    display: flex;
    height: 100%;
    background: rgb(0, 0, 0, 0.5);
    color: white;
    position: absolute;
    top: 0;
    bottom: 0;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    transition: 0.5s all;
}
.body-imagen .ver-img:hover{
    opacity: 1;
}
.body-imagen .ver-img.active{
    opacity: 1;
}

.body-imagen-miniaturas{
    display: flex;
    flex-direction: column;
}

.container-tienda{
    width: 100%;
    height: 100%;
     background: #f9f9f9;
   position: relative;
   width: 100%;
   height: 100%;
   padding: 20px 30px;
}
.contenededor-items{
    padding: 10px;
    background: #ffffff;
    border-radius: 5px;
}
.mensaje-notificacion{
    display: flex;
    justify-content: center;
    align-items: center;
    color: gray;
    font-size: 20px;
    height: calc(100vh - 302px);
}
.mensaje-notificacion h3{
    font-size: large;
    text-align: center;
}
@media (max-width: 576px) {
    .container-tienda{
        padding: 44px 13px;
    }
    .container-tienda .btn-comprar {
        width: 80px;
        font-size: 11px;
    }
    .contenido-detalles p {
        margin-bottom: 3px;
        font-size: 11px;
    }
    .container-tienda .contenido-detalles p {
        margin-bottom: 3px;
        font-size: 11px;
    }
    .container-tienda .contenido-detalles p span{
        font-size: 11px;
    }
    .body-imagen{
        flex-direction:column;
    }
    .body-imagen-miniaturas{
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
   
    .herader-imagen{
        position: relative;
        padding: 10px 20px 0px 20px;
    }
    .body-imagen .imagen-principal{
        width: 315px;
        height: auto;
    }
    .contenedor-emergente-imagenes{
        padding:20px 0px
    }
    .ventana-emergente-imagenes{
        height: auto;
        width: 100%;
        padding: 0;
    }
}

/* Tablets (de 577px a 1024px) */
@media (min-width: 577px) and (max-width: 1024px) {
    .contenedor-galeria .row{
        width: 104.5%;
    }
  
}

.btn-filtro{
    color: rgb(49, 49, 49);
    background-color:white;
    border:2px solid rgb(49, 49, 49);
    transition: all 0.5s;
}

.btn-filtro:hover:focus{
    color: black;
    border:2px solid black;
    box-shadow: 0 0 0 2px black;
}

.slidebar-tienda{
    flex: 0 0 25%;
    width: 20%;
}
.contenedor-items{
    flex: 0 0 80%;
    width: 80%;
}

.search-bar {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 10px auto;
    background-color: #ffffff;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  /* Input de búsqueda */
  .search-bar input {
    width: 100%;
    font-size: 18px;
    border: 2px solid gray;
    border-radius: 15px;
    outline: none;
    background-color: #ffffff;
    color: #333;
    transition: all 0.3s ease-in-out;
  }

  /* Input cuando tiene foco (efecto visual) */
  .search-bar input:focus {
    background-color: #ffffff;
    box-shadow: 0 0 8px rgba(48, 48, 48, 0.5) !important;
  }

  /* Ícono de la lupa */
  .search-bar .search-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    font-size: 20px;
    color: #6c757d;
    transition: color 0.3s ease;
  }

  /* Ícono cuando el campo tiene foco */
  .search-bar input:focus .search-icon{
    color: #000000;
  }

  /* Botón de limpieza (X) */
  .search-bar .clear-icon {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 18px;
    color: #6c757d;
    cursor: pointer;
    transition: color 0.3s ease;
  }

  /* Botón X cuando el campo tiene foco */
  .search-bar input:focus ~ .clear-icon {
    color: #dc3545;
  }

  .custom-select-wrapper {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 10px 10px;
  }

  /* Estilo para el select */
  .custom-select {
    width: 100%;
    padding: 8px 40px 8px 20px; /* Espacio para el ícono */
    font-size: 16px;
    border: 2px solid gray;
    border-radius: 16px;
    outline: none;
    background-color: #fff;
    color: #333;
    appearance: none; /* Eliminar el estilo predeterminado del select */
    -webkit-appearance: none; /* Para Safari */
    -moz-appearance: none; /* Para Firefox */
    transition: all 0.3s ease;
  }

  /* Estilo cuando el select tiene foco */
  .custom-select:focus {
    border-color: #000408;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  }

  /* Estilo para el ícono */
  .custom-select-wrapper .select-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 18px;
    color: #aaa;
    pointer-events: none; /* El ícono no interfiere con la interacción del select */
  }

  /* Estilo para la opción seleccionada */
  .custom-select option {
    padding: 10px;
    font-size: 16px;
  }

  .contenedor-producto .imagen-producto{
    width: 100%;
    height: 100%;
    object-fit: cover
  }

  .contenedor-producto .producto-imagenes{
    margin: 0;
    position: relative;
    height: calc(100vh - 120px);
    overflow: auto;
  }

  .contenedor-producto .producto-imagenes::-webkit-scrollbar {
  display: none;
}

  .contenedor-producto .btn-talla{
    font-family: inherit;
    margin-right: 10px;
    border: 1px solid gray;
    padding: 6px 10px;
    border-radius: 7px;
    color: gray;
    cursor: pointer;
    transition: 0.5s all;
  }

  .contenedor-producto .btn-talla:hover{
    color: white;
    background-color: black;
    transition: all 0.5s;
}
  
.contenedor-producto .btn-talla.active{
    color: white;
    background-color: black;
    
}
.contenedor-producto .imagen-color{
    width: 50px;
    height: auto;
    transition: all 0.5s;
  }
  .contenedor-producto .imagen-color.active{
    border: 2px solid black;
    transform: scale(1.05);
  }

  .contenedor-producto .imagen-color:hover{
    border: 2px solid black;
    transform: scale(1.1);
  }

  .contenedor-producto .producto-detalles p{
    margin-bottom: 5px;
    font-size: unset;
    font-family: 'Raleway';
  }

  .contenedor-producto .producto-detalles div .btn-favorito-compra{
    cursor: pointer;
    border: 2px solid black;
    padding: 0px 5px;
    font-size: x-large;
    color: gray;
  }

  .contenedor-producto .producto-detalles div .btn-favorito-compra{

    border: 1px solid gray;
    padding: 4px 8px;

    font-size: x-large;
    color: gray;
    border-radius: 5px;
    transition: 0.5s;
  }

  .contenedor-producto .producto-detalles div .btn-favorito-compra.active{
    color: red;
  }

  .contenedor-producto .producto-detalles div .btn-añadir-carrito{
    padding: 8px 18px;
    font-family: revert;
    font-weight: 700;
    background: black;
    color: white;
    border: none;
    border-radius: 5px;
  }
  .contenedor-producto .producto-detalles  .btn-actualizar-carrito{
    padding: 8px 18px;
    font-family: revert;
    font-weight: 700;
    background: black;
    color: white;
    border: none;
    border-radius: 5px;
  }
  .contenedor-producto .producto-detalles  .btn-eliminar-carrito{
    padding: 5px 11px;
    font-family: revert;
    font-weight: 700;
    background: white;
    color: red;
    border: 1px solid gray;
    border-radius: 5px;
  }








  .dm-width {
    width: 500px;
    margin: 0 auto;
 }
 
 .iphone-mockup {
    position: relative;
    z-index: 5;
 }
 
 .dm-device {
     position: relative;
     width: 100%;
     padding-bottom:203.477897%;
     margin-bottom: 20px;
 }
 
 .device {
   position: absolute;
     top: 0;
     bottom: 0;
     left: 0;
     right: 0;
     width: 100%;
     height: 100%;
     -webkit-background-size: 100% 100%;
     
     background-repeat: no-repeat;
   background-size: cover;
     background-position: center center;
 }
 
 .screen {
    overflow: hidden;
     position: absolute;
     top: 18.1%;
     bottom: 20.6%;
     left: 12.49%;
     right: 17.4%;
     background-color: #E91E63;
 }
 
 .slider {
   height: 100%;
 }
 .slider div {
   height: 100%;
 }
 .btn-informacion{
    padding: 1px 10px;
    border-radius: 50%;
    color: white;
    background: gray;
     border: none; 
    transition: all 0.5s;
 }
 .btn-informacion:hover{
   /*  color: black; */
   background: black;
     border: none; 
 }
 .slider__item {
     font-size: 100px;
     color: rgba(255,255,255,0.7);
     display: flex;
     justify-content: center;
     align-items: center;
 }
 
 .slider__item--1 {
    background-color: #E91E63;
 }
 .slider__item--2 {
    background-color: #2196F3;
 }
 .slider__item--3 {
    background-color: #4CAF50;
 }
 
 .slider__item--4 {
   background-color: #FFC107;
 }

 .tallas-tamaños th,td,b{
    font-size: small;
    color: gray;
    font-weight: 500;
 }

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

/* Tablets (de 577px a 1024px) */
@media (min-width: 577px) and (max-width: 1024px) {
    .contenedor-galeria .row{
        width: 104.5%;
    }
    .tallas-tamaños th,td{
        font-size: unset;
        color: gray;
     }
}


.item .imagen-carousel{
    width: 100%;
}


.estado-cantidad{
    color: white;
    padding: 5px 10px 0px 10px;
    font-size: small;
    border-radius: 5px;
    margin-right: 30px;
}

.estado-cantidad-disponible{
    background: green;
}

.estado-cantidad-bajo{
    background: orange;
}
.estado-cantidad-agotado{
    background: red;
}
.sms-carrito-vacio{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sms-carrito-vacio h3{
    font-family: inherit;
    color: gray;
    font-size: x-large;
    font-weight: 300;
}

.btn-finalizar-sms{
    color: red;
    font-size: smaller;
    display: flex;
    justify-content: center;
}

.contenedor-finalizar-compra{
   padding: 20px;
}

.contenedor-finalizar-compra h3{
    font-family: "raleway";
}

.carrito-detalles{
    padding: 20px;
    width: 100%;
    height: calc(100% - 160px);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    overflow: auto;
}

.carrito-detalles .item-carrito{
    flex: 0 1 calc(50% - 10px); /* Cada elemento ocupa el 50% del ancho menos el espacio del gap */
    background: #fff;
    padding: 10px;
    /* border: 1px solid #ddd; */
    border-radius: 8px;
    text-align: center;
    border-bottom: none;
    padding-bottom: 1px;
    margin-bottom: 1px;
}
.carrito-detalles .item-carrito img {
    width: 107px;
    height: 100%;
}

.form-finalizar {
    padding: 10px; /* Más espacio interno para mejorar la usabilidad */
    width: 100%;
    border-radius: 0px 8px 8px 0px; /* Bordes más redondeados */
    border: 1px solid #ccc; /* Color gris claro para el borde */
    font-size: 16px; /* Aumentar tamaño de fuente */
    color: #333; /* Texto oscuro */
    background-color: #f9f9f9; /* Fondo claro */
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1); /* Pequeña sombra interna */
    transition: all 0.3s ease; /* Suaviza los cambios en el hover y focus */
}

.form-finalizar:focus {
    border: 1px solid rgba(0, 0, 0, 0.75); /* Azul suave */
    outline: none; /* Elimina el contorno predeterminado del navegador */
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.75); /* Efecto de brillo */
    background-color: #fff; /* Fondo blanco para enfatizar el enfoque */
}

.form-label{
    margin: 0;
    padding: 10px; /* Más espacio interno para mejorar la usabilidad */
    border-radius: 8px 0px 0px 8px; /* Bordes más redondeados */
    border: 1px solid #ccc; /* Color gris claro para el borde */
    font-size: 16px; /* Aumentar tamaño de fuente */
    color: #333; /* Texto oscuro */
    background-color: #e6e6e6; /* Fondo claro */
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1); /* Pequeña sombra interna */
    transition: all 0.3s ease; /* Suaviza los cambios en el hover y focus */
}
.obtener-codigo{
    padding: 2px 10px;
    border-radius: 5px;
    color: white;
    border: green;
    background: green;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5), 7px 7px 20px 0px rgba(0, 0, 0, .1), 4px 4px 5px 0px rgba(0, 0, 0, .1);
}

.sms-notificacion{
    width: 100%;
    display: block;
    font-size: smaller;
    color: red;
    text-align: center;
}

.sms-notificacion b{
    color: red;
}

.form-pin{
    text-align: center;
    /* padding: 10px; */
    margin: 7px;
    width: 29px;
    height: 29px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
    color: #333;
    background-color: #f9f9f9;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;

}

.form-pin:focus {
    border: 1px solid rgba(0, 0, 0, 0.75); /* Azul suave */
    outline: none; /* Elimina el contorno predeterminado del navegador */
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.75); /* Efecto de brillo */
    background-color: #fff; /* Fondo blanco para enfatizar el enfoque */
}

.detalles-carrito-compras{
    padding: 10px 21px 10px 18px;
}

.formulario-detalles  .detalles-compra{
    font-size: unset;
    font-family: 'Roboto';
    margin-bottom: 7px;
}

.container-compra {
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
}

.container-compra p, b {
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    color: #333;
    font-weight: 400;
}

.contenido-compra .form-label {
    font-size: 16px;
    color: #444;
    margin-bottom: 5px;
    padding: 10px;
    background: #e6e6e6;
    border-radius: 4px;
}

.contenido-compra .form-text {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.form-button {
    color: white;
    background: #28a745;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.form-button:hover {
    background: #218838;
}

.clase-nota {
    font-size: 12px;
    color: #888;
    font-style: italic;
}

.contenedor-carrito-compra {
    background: white;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    margin-top: 20px;
    padding: 15px;
}

.item-carrito {
    margin-bottom: 20px;
}

.item-carrito img {
    width: 120px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.item-detalles {
    margin-left: 20px;
    font-size: 14px;
}

.item-detalles h6 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.color-item {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #ccc;
}

.item-carrito .item-detalles p {
    margin: 5px 0;
    color: #777;
}

.item-carrito .item-detalles .abreviatura {
    font-size: 12px;
    color: #555;
}
.clase-nota {
    font-size: 12px;
    color: #888;
    font-style: italic;
}

.formulario-compra .clase-nota-2 {
    font-size: 12px;
    color: #888;
    font-style: italic;
}

.estado-compra{
    padding: 4px 7px;                               
    color: white;
    font-family: 'Poppins';
    border-radius: 6px;
}
.estado-compra.cancelada{
    background: red;
}
.estado-compra.pendiente{
    background: orange;
}
.estado-compra.confirmada{
    background: blue;
}
.estado-compra.entregada{
    background: green;
}

.clase-login{
    cursor: pointer;
    color:white;
    padding: 7px 5px;
    background:green;
    border-radius: 10px; 
    font-size:13px;
    transition: 0.5s all;
}
.clase-login:hover{
    transform: scale(1.02);
    color:white;
}


.copy-buttom{
    padding: 7px 17px;
    align-self: center;
}
.container-compra p{
    margin: 0.3rem;
}
.loja-img{
    width: 100%;
    height: 390px;   
    object-fit: cover;
}
.cubes {
    width: 40px;
    height: 40px;
    margin: 100px auto;
   }
   
   .cubes .sk-cube {
    width: 33%;
    height: 33%;
    background-color: #333;
    float: left;
    animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
   }
   
   .cubes .sk-cube1 {
    animation-delay: 0.2s;
   }
   
   .cubes .sk-cube2 {
    animation-delay: 0.3s;
   }
   
   .cubes .sk-cube3 {
    animation-delay: 0.4s;
   }
   
   .cubes .sk-cube4 {
    animation-delay: 0.1s;
   }
   
   .cubes .sk-cube5 {
    animation-delay: 0.2s;
   }
   
   .cubes .sk-cube6 {
    animation-delay: 0.3s;
   }
   
   .cubes .sk-cube7 {
    animation-delay: 0s;
   }
   
   .cubes .sk-cube8 {
    animation-delay: 0.1s;
   }
   
   .cubes .sk-cube9 {
    animation-delay: 0.2s;
   }
   
   @keyframes sk-cubeGridScaleDelay {
    0%,
    70%,
    100% {
     transform: scale3D(1, 1, 1);
    }
    35% {
     transform: scale3D(0, 0, 1);
    }
   }
 
   /*  begin folding css */
   
   .folding {
    margin: 20px auto;
    width: 40px;
    height: 40px;
    position: relative;
    transform: rotateZ(45deg);
   }
   
   .folding .sk-cube {
    float: left;
    width: 50%;
    height: 50%;
    position: relative;
    transform: scale(1.1);
   }
   
   .folding .sk-cube:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333;
    animation: sk-foldCubeAngle 2.4s infinite linear both;
    transform-origin: 100% 100%;
   }
   
   .folding .sk-cube2 {
    transform: scale(1.1) rotateZ(90deg);
   }
   
   .folding .sk-cube3 {
    transform: scale(1.1) rotateZ(180deg);
   }
   
   .folding .sk-cube4 {
    transform: scale(1.1) rotateZ(270deg);
   }
   
   .folding .sk-cube2:before {
    animation-delay: 0.3s;
   }
   
   .folding .sk-cube3:before {
    animation-delay: 0.6s;
   }
   
   .folding .sk-cube4:before {
    animation-delay: 0.9s;
   }
   
   @keyframes sk-foldCubeAngle {
    0%,
    10% {
     transform: perspective(140px) rotateX(-180deg);
     opacity: 0;
    }
    25%,
    75% {
     transform: perspective(140px) rotateX(0deg);
     opacity: 1;
    }
    90%,
    100% {
     transform: perspective(140px) rotateY(180deg);
     opacity: 0;
    }
   }
 
   /*  begin bounce css */
   
   .bounce {
    margin: 100px auto 0;
    width: 70px;
    text-align: center;
   }
   
   .bounce>div {
    width: 18px;
    height: 18px;
    background-color: #333;
    border-radius: 100%;
    display: inline-block;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
   }
   
   .bounce .bounce1 {
    animation-delay: -0.32s;
   }
   
   .bounce .bounce2 {
    animation-delay: -0.16s;
   }
   
   @keyframes sk-bouncedelay {
    0%,
    80%,
    100% {
     transform: scale(0);
    }
    40% {
     transform: scale(1.0);
    }
   }
 
   /*  begin dots css */
   
   .dots {
    margin: 100px auto;
    width: 40px;
    height: 40px;
    position: relative;
    text-align: center;
    animation: sk-rotate 2.0s infinite linear;
   }
   
   .dot1,
   .dot2 {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    background-color: #333;
    border-radius: 100%;
    animation: sk-bounce 2.0s infinite ease-in-out;
   }
   
   .dot2 {
    top: auto;
    bottom: 0;
    animation-delay: -1.0s;
   }
   
   @keyframes sk-rotate {
    100% {
     transform: rotate(360deg);
    }
   }
   
   @keyframes sk-bounce {
    0%,
    100% {
     transform: scale(0.0);
    }
    50% {
     transform: scale(1.0);
    }
   }
   .imagen-vendidos{
    width: 100%;
    height: 350px;
    object-fit: cover;
   }

   .imagen-modelos{
    height: 400px;
    object-fit: cover;
   }

   .buttom-galeria{
    color: white;
    background: #940099;
    border-color: #940099;
   }
    .fixed-footer{
        position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: row;
   
    align-items: center;
    z-index: 1000;
    }
   .fixed-footer-whatsapp {
    
    margin: 0.5rem;
    padding: 2px 7px;
    background: green;
    color: white;
    border-radius: 50%;
    font-size: x-large;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 1;
    transition: opacity 0.5s ease; /* Para una transición suave */
}

.whatsapp-message {
    display: none; /* Inicialmente oculto */
    font-size: 14px;
    white-space: nowrap;
    position:relative;
    opacity: 0;
    transition: opacity 0.5s ease;
    background: #ffffff;
    padding: 3px 6px 3px 6px;
    border-radius: 10px;
    color: gray;
    box-shadow: 0px 0px 7px 1px rgba(0,0,0,0.75);
    margin-left: 3px;
}

.whatsapp-message {
    display: inline-block; /* Mostrar el mensaje cuando corresponda */
    opacity: 1;
}
.whatsapp-message::before {
    content: '';
    position: absolute;
    left: -11px;
    top: 37%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #ffffff;
    transform: rotate(90deg);
}
@media (max-width: 576px) {
    .imagen-vendidos{
  
        height: 250px;
  
       }
    
       .imagen-modelos{
        height: 250px;
     
       }
    .loja-img{
        height: 225px;   
    }
    .contenedor-galeria .img-galeria{
        width: 100%;
        height: 200px;
    }
    .item-carrito img {
        height: 100%;
    }
    .contenedor-carrito-compra{
        padding: 0px;
    }

    .item-carrito .item-detalles  p, span, b, h6 { 
        font-size: 11px;
        font-weight: 400;
    }
    .item-carrito .item-detalles h6 {
        font-size: 11px;
    }
    .item-carrito .item-detalles {
        padding: 0px;
        margin-left: 10px ;
    }
    .display-carrito{
        flex-direction: column-reverse;
    }
    .formulario-compra p, span, b ,h6{
        font-size: 11px;
        font-weight: 400;
    }
    .formulario-compra h3{
        font-size: 15px;
    }
    .formulario-detalles .detalles-compra{
        font-size: 12px;
        font-weight: 500;
    }
    .formulario-detalles h4{
        font-size: large;
        font-weight: 500;
    }
    .form-finalizar{
        padding: 5px 10px;
       
    }
    .form-label{
        padding: 5px 10px;
        
    }
    .btn-comprar{
        font-size: 8px;
    padding: 4px;
    }
    .carrito-detalles {
        padding: 5px;
        flex-direction: column;
    flex-wrap: initial;
    }
    .item-carrito{
        padding: 5px;
        margin-bottom: 10px;
        border-bottom: 1px solid gray;
    }
    .carrito-detalles .item-carrito img {
    width: 95px;
    }
    .clase-login{
        cursor: pointer;
        color: white;
        padding: 5px 7px;
        background: green;
        border-radius: 10px;
        font-size: 10px;
        margin-right: 9px;
    
    }
}

/* Tablets (de 577px a 1024px) */
@media (min-width: 577px) and (max-width: 1024px) {

}

/* Pantallas grandes (PC, a partir de 1025px) */
@media (min-width: 1025px) {
 
}

/* Estilo para el mensaje */
.cache-message {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #000000c7;
    padding: 10px;
    text-align: center;
    z-index: 1000;
    display: none; /* Inicialmente oculto */
}

.cache-message p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: white;
    font-family: math;
}

.cache-message button {
    padding: 5px 10px;
    margin-left: 20px;

    background-color: #000000c7;
    color: white;
    border: 1px solid white;
    cursor: pointer;
}

