/*
Theme Name: Blocksy Child Custom
Template: blocksy
Author: TheBrianMC
Description: Tema hijo para programar mi e-commerce a mi manera.
Version: 1.0.0.1783378228
Updated: 2026-07-06 17:50:28

*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    /* Fonts */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;

    /* Background Color */
    --bg-color: #1a4789;
    --bg-color-secondary: #163172;

    /* Text Color */
    --text-color: #fff;
    --text-color-secondary: #ccc;

    /* UI Colors */
    --surface-color: #fff;
    --surface-color-muted: #00000010;
    --surface-color-dark: #181818;
    --surface-color-dark-secondary: #23272a;
    --surface-color-overlay-dark: #0f0f0f;
    --text-color-dark: #23272a;
    --text-color-darker: #3A4F66;
    --accent-color: #34a853;
    --danger-color: #ea4335;
    --danger-color-hover: #ff5757;
    --border-color: #00000020;
    --border-color-soft: #d3d3d350;
}

body {
    font-family: var(--font-primary);
}

#header [data-row*=middle] {
    background-color: transparent !important;
}
#header {
    padding: 0 20px;
    margin: 0px;
    width: 100%;
    background-color: var(--bg-color) !important;
}
#header .ct-container {
    display: flex !important;
    justify-content: flex-start;
    max-width: 100%;
    width: 100vw;
    margin: 0 20px;

}
#header [data-items*=primary] {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
#header [data-column*=end] {
    display: flex !important;
    padding: 20px;
    margin-right: 20px;
}
#header [data-column*=middle] {
    display: flex;
    justify-content: center;
    flex: 1;
}
#header [data-column*=start] {
    display: flex !important;
}
#header #header-menu-1 li {
    height: 30%;
    position: relative;
    overflow: hidden;
}
#header #header-menu-1 li::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2.5px;
    border-radius: 1.25px;
    background-color: var(--text-color);
    transition: bottom 0.3s ease;
}
#header #header-menu-1 li:hover::after {
    bottom: 2px;
}
#header #header-menu-1 li.current_page_item::after {
    bottom: 2px !important;
}
#header #header-menu-1 #menu-main-menu {
    display: flex;
    align-items: center;
}
#header a {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color) !important;
}
#header .ct-cart-content {
    font-family: 'Montserrat', sans-serif;
    border-radius: 16px !important;
    background-color: var(--surface-color) !important;
    color: var(--text-color-dark) !important;
}
#header .ct-cart-content a, #header .ct-cart-content span, #header .ct-cart-content p {
    color: var(--text-color-dark) !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500 !important;
}
#header .ct-cart-content .woocommerce-mini-cart__total.total {
    background-color: var(--surface-color-muted) !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    margin: 0 !important;
    padding: 12px 10px !important;
}
#header .woocommerce-mini-cart.cart_list.product_list_widget path {
    fill: var(--danger-color-hover) !important;
}
#header .woocommerce-mini-cart.cart_list.product_list_widget svg {
    height: 16px !important;
    width: 16px !important;
}
#header .button.wc-forward {
    border-radius: 5px;
    color: var(--text-color) !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600 !important;
    background-color: var(--bg-color) !important;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}
#header .button.wc-forward:hover {
    background-color: var(--bg-color-secondary) !important;
}
#header .woocommerce-mini-cart-item.mini_cart_item {
    position: relative;
}
#header .woocommerce-mini-cart-item.mini_cart_item:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background-color: var(--border-color);
    
}
#header .ct-header-account-dropdown {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color-dark) !important;
    border-radius: 16px !important;
}
#header .ct-header-account-dropdown a {
    color: var(--text-color-dark) !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500 !important;
    margin-bottom: 2px !important;
}
#header .ct-header-account-dropdown a:hover {
    background-color: var(--border-color-soft) !important
}

/* Login y Registro */
.ct-account-modal {
    overflow: hidden;
    border-radius: 20px !important;
    background-color: var(--surface-color) !important;
}
.ct-account-modal .input,
.ct-signin-container input[type="text"],
.ct-signin-container input[type="password"],
.ct-signin-container input[type="email"],
.woocommerce-form-login .input-text {
    box-sizing: border-box !important;
    display: block !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    line-height: normal !important;
    width: 100% !important;
    max-width: 100% !important;

    border-radius: 15px !important;
    padding: 15px 10px !important;
    border: 1px solid var(--border-color) !important;
    background-color: var(--surface-color) !important;
    outline: none !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
}

.ct-account-modal .input:focus,
.ct-signin-container input[type="text"]:focus,
.ct-signin-container input[type="password"]:focus,
.ct-signin-container input[type="email"]:focus,
.woocommerce-form-login .input-text:focus {
    border: 1px solid var(--accent-color) !important;
    background-color: var(--surface-color) !important;
}

.ct-account-modal .ct-button {
    box-sizing: border-box !important;
    display: block !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    line-height: normal !important;
    width: 100% !important;
    max-width: 100% !important;

    font-family: 'Montserrat', sans-serif;
    font-weight: 600 !important;
    background-color: var(--bg-color) !important;
    color: var(--text-color) !important;
    padding: 20px 10px !important;
    border-radius: 15px !important;
    transition: background-color 0.3s ease !important;
}
.ct-account-modal .ct-button:hover {
    background-color: var(--bg-color-secondary) !important;
    color: var(--text-color) !important;
}

/* Buscador "Header" */
.ct-panel-actions .ct-toggle-close {
    --icon-close: url("./assets/icons/close-bold.svg");
    background-color: var(--danger-color) !important;
    background-image: var(--icon-close) !important;
    background-size: 65% !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    border-radius: 8px !important;
    padding: 0 !important;
    width: 36px !important;
    height: 36px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}
.ct-panel-actions .ct-toggle-close:hover {
    --icon-close: url("./assets/icons/close-bold-active.svg");
}
.ct-panel-actions .ct-toggle-close svg {
    opacity: 0 !important;
    width: 100%;
    height: 100%;
}
.ct-panel-content {
    --vertical-alignment: default;
    position: relative;
    justify-content: center;
    align-items: center;
}
.ct-search-form {
    position: relative;
    width: 100%;
    height: 100%;
}
.ct-search-form-inner.ct-pseudo-input {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: top 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.ct-search-results {
    margin-top: 60px !important;
}
.ct-search-form-inner.ct-pseudo-input {
    background-color: var(--surface-color) !important;
    border: 1px solid var(--border-color) !important;
    outline: none !important;
}
.ct-search-form-inner.ct-pseudo-input input {
    color: var(--text-color-darker) !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500 !important;
}
.ct-search-form-inner.ct-pseudo-input input::placeholder {
    color: var(--text-color-dark) !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500 !important;
    border-right: 1px solid var(--border-color) !important;
}
.ct-search-form-inner.ct-pseudo-input button {
    background-color: var(--bg-color) !important;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}
.ct-search-form-inner.ct-pseudo-input button:hover {
    background-color: var(--bg-color-secondary) !important;
}

/* Section Carrousel */
.elementor #carrousel-content {
    position: relative;
    padding: 0 !important;
    margin: 0 !important;
    max-height: 500px !important;
    overflow: hidden !important;
}
.elementor #carrousel-content img {
    width: 100% !important;
    height: 500px !important;
    max-height: 500px !important;
    object-fit: cover !important;
    object-position: center center !important;
}
.elementor #carrousel-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    z-index: 1;
}
.elementor-swiper-button {
    display: none !important;   
}
#header-carrousel-info {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}
#header-carrousel-info #header-title-carrousel   {
    position: relative !important;
    font-family: var(--font-secondary) !important;
    font-weight: 700 !important;
    color: var(--text-color) !important;
}
#header-carrousel-info #header-title-carrousel::after {
    position: absolute !important;
    top: -5px;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background-color: var(--border-color-soft) !important;
}
#header_carrousel-btn {
    position: relative !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-top: 10px !important;
    background-color: var(--bg-color) !important;
    padding: 15px 50px !important;
    cursor: pointer !important;
    overflow: hidden !important;
    border-radius: 15px !important;
    font-family: var(--font-secondary) !important;
    font-weight: 500 !important;
    transition: background-color 0.3s ease !important;
}
#header_carrousel-btn:hover {
    background-color: var(--bg-color-secondary) !important;
}
#header_carrousel-btn #header_carrousel-logo-btn {
    position: absolute !important;
    right: -40px !important;
    height: 20px !important;
    width: 20px !important;
    transform: rotate(90deg) !important;
    transition: right 0.3s ease !important;
}
#header_carrousel-btn:hover #header_carrousel-logo-btn {
    right: 15px !important;
}
.swiper-pagination-bullet {
    background: var(--bg-color-secondary) !important;
}
/* Categorias */
#flex_content-categories {
    margin: 0 !important;
    padding: 10px 20px !important;
    gap: 10px !important;
}

/* --- */

.crazzy-cat-title-row {
  grid-column: 1 / -1;
  width: 100%;
  flex-basis: 100%;

  list-style: none;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;

  margin: 40px 0 0 0;
  padding-bottom: 8px;
  border-bottom: 1px solid #00000014;
}

.crazzy-cat-title-row:first-child {
  margin-top: 0;
}

.crazzy-cat-title {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0;
  padding: 0 14px;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-color-darker);
  cursor: pointer;
}

.crazzy-cat-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  border-radius: 2px;
  background: var(--bg-color-secondary);
}
.crazzy-cat-count {
  font-size: 0.8rem;
  color: #00000080;
  white-space: nowrap;
}
.figure-link-subcat {
    width: 12px !important;
    height: 12px;
    margin-left: 10px;
    background-image: url(./assets/icons/right-arrow-next-svgrepo-com.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    right: 0;
    transition: margin-left .3s;
}
.crazzy-cat-title:hover .figure-link-subcat {
    margin-left: 15px;
}
/* --- */
.elementor-element.e-grid[data-id="8ba20a9"] {
    margin: 0 !important;
    padding: 0 !important;
}
.elementor-element.e-grid[data-id="8ba20a9"] div {
    position: relative;
    border-radius: 15px !important;
    padding: 40px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    overflow: hidden;
    image-rendering: pixelated;
}
.elementor-element.e-grid[data-id="8ba20a9"] div::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: inherit; 
    background-size: cover;
    background-position: center;
    transition: transform .3s;
    z-index: 10;
    filter: brightness(0.7);
}
.elementor-element.e-grid[data-id="8ba20a9"] div:hover::after {
    transform: scale(1.2) rotate(-2deg);
    filter: brightness(0.7) blur(10px) contrast(120%);
}
.elementor-element.e-grid[data-id="8ba20a9"] div p {
    z-index: 20;
}
/* .elementor-element.e-grid[data-id="8ba20a9"] div p:nth-child(1) {
    color: #163172;
} */
.elementor-element.e-grid[data-id="8ba20a9"] div p:nth-child(2) {
    margin-bottom: auto !important;
    width: 50% !important;
}
.elementor-element.e-grid[data-id="8ba20a9"] div button {
    position: relative !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-top: 10px !important;
    background-color: var(--bg-color) !important;
    padding: 15px 60px !important;
    cursor: pointer !important;
    overflow: hidden !important;
    border-radius: 15px !important;
    font-family: var(--font-secondary) !important;
    font-weight: 500 !important;
    text-align: center;
    transition: background-color 0.3s !important;
    z-index: 20;
}
.elementor-element.e-grid[data-id="8ba20a9"] div button:hover {
    background-color: var(--bg-color-secondary) !important;
}
.elementor-element.e-grid[data-id="8ba20a9"] div button img {
    position: absolute;
    transform: rotate(45deg);
    height: 20px !important;
    width: 20px !important;
    right: -40px;
    transition: right .3s;
}
.elementor-element.e-grid[data-id="8ba20a9"] div button:hover img {
    right: 20px;
}
/* Delivery Info */
#delivery-info {
    max-width: 100vw;
    margin: 20px 0;
    padding: 0 20px;
    overflow: hidden;
}
#delivery-info .e-grid {
    border-radius: 24px;
    overflow: hidden;
    background-color: var(--bg-color);
}
#delivery-info #logo-shield-protection, 
#delivery-info #logo-truck_delivery, 
#delivery-info #logo-return-delivery, 
#delivery-info #logo-customer-service {
    background-repeat: no-repeat;
    background-size: 95%;
    background-position: center;
    height: 36px;
    width: 36px;
    margin-right: 10px;
}
#delivery-info #logo-shield-protection {
    background-image: url('assets/icons/shield-check-svgrepo-com.svg');
}
#delivery-info #logo-truck_delivery {
    background-image: url('assets/icons/delivery-truck-speed-outline-rounded.svg');
}
#delivery-info #logo-return-delivery {
    background-image: url('assets/icons/cashback-ui-web-svgrepo-com.svg');
}
#delivery-info #logo-customer-service {
    background-image: url('assets/icons/customer-service-2-line.svg');
}
#delivery-info .e-grid .e-con-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}
#delivery-info .delivery-info-cont {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 260px;
}
#delivery-info .delivery-info-cont .text-delivery-info {
    position: relative;
    max-width: fit-content;
}
#delivery-info .delivery-info-cont .text-delivery-info::before {
    content: '';
    width: 1px;
    height: 50%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ffffff20;
}
footer [data-row*='middle'] {
    background: var(--bg-color) !important;
}
footer .wp-block-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 0 !important;
}
footer .wp-block-group h6 {
    color: var(--text-color);
    font-family: var(--font-secondary);
    border-bottom: 1px solid var(--border-color-soft);
    width: 100%;
    margin: 0 !important;
    padding: 0 0 10px!important;
}
footer .wp-block-group p {
    margin-bottom: 0 !important;
    background-color: #00000020;
    margin: 10px 0 0!important;
    padding: 10px 15px !important;
    border-radius: 10px;
}
footer .wp-block-group ul {
    padding: 0;
    margin-right: 0 !important;
    margin-left: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
footer .wp-block-group ul li {
    background-color: #00000020;
    margin: 10px 0 0!important;
    padding: 10px 15px !important;
    border-radius: 10px;
    width: 100%;
}
footer .wp-block-group input {
    box-sizing: border-box !important;
    display: block !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    line-height: normal !important;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 15px !important;
    padding: 15px 20px !important;
    border: 1px solid var(--border-color) !important;
    background-color: var(--surface-color) !important;
    outline: none !important;
    color: var(--text-color-darker) !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
}
footer .wp-block-group input::placeholder {
    color: var(--text-color-dark);
}
footer .wp-block-group button {
    background-color: var(--bg-color-secondary) !important;
    border-radius: 15px;
    transition: background-color 0.3s ease;
    padding: 15px;
}
footer .wp-block-group button:hover {
    background-color: #122b64 !important;
}
footer .wp-block-group .wp-block-paragraph {
    margin-bottom: 10px !important;
} 
footer [data-column*='widget-area-4'] .wp-block-group .wp-block-paragraph {
    margin-bottom: 10px !important;
    background-color: transparent !important;
    padding: 0 !important;
}
/* Barra de navegación móvil */
.mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: -2px;
    width: 100%;
    z-index: 99999;
    min-height: 68px !important;
    display: none;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom)) 10px;
    background: var(--bg-color);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}
.mobile-bottom-nav .mobile-nav-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    width: 100%;
    margin: 0 auto;
}
.mobile-bottom-nav a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 7px 4px;
    border-radius: 10px;
    color: var(--text-color);
    font-family: var(--font-secondary);
    font-size: 10px;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}
.mobile-bottom-nav a:hover,
.mobile-bottom-nav a:focus,
.mobile-bottom-nav a:active,
.mobile-bottom-nav a.active {
    position: relative;
    background-color: var(--bg-color-secondary) !important;
    box-shadow: none !important;
    outline: none !important;
    color: var(--text-color) !important;
    transform: none !important;
}
.mobile-bottom-nav a::after {
    content: '';
    width: 0%;
    height: 4px;
    position: absolute;
    left: 50%;
    bottom: -2px;
    transform: translateX(-50%);
    background-color: var(--surface-color);
    border-radius: 2px;
    transition: .3s;
}
.mobile-bottom-nav a.active::after {
    width: 50%;
}
.mobile-bottom-nav img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
    filter: none;
}
.mobile-bottom-nav span {
    line-height: 1;
}
/* My Account */
.ct-acount-nav li.is-active a {
    background: var(--bg-color) !important;
}
.ct-acount-nav li a:hover {
    background: var(--bg-color-secondary) !important;
}
.woocommerce-Button.button {
    border-radius: 10px !important;
    padding: 15px 40px !important;
    background-color: var(--bg-color) !important;
}
.woocommerce-Button.button:hover {
    background-color: var(--bg-color-secondary) !important;
}
.woocommerce-EditAccountForm.edit-account input {
    box-sizing: border-box !important;
    display: block !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    line-height: normal !important;
    width: 100% !important;
    max-width: 100% !important;

    border-radius: 15px !important;
    padding: 15px 10px !important;
    border: 1px solid var(--border-color) !important;
    background-color: var(--surface-color) !important;
    outline: none !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
}
.woocommerce-EditAccountForm.edit-account input:focus {
    border: 1px solid var(--bg-color) !important;
}

/* Contactanos */
.entry-content.is-layout-constrained figure img {
    max-height: 400px;
    object-fit: cover;
    object-position: top;
}
.wp-block-stackable-column[data-block-id*='a77da3a'] {
    overflow: hidden;
    border-radius: 20px;
}
.wp-block-stackable-column[data-block-id*='a77da3a'] input {
    box-sizing: border-box !important;
    display: block !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    line-height: normal !important;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 15px !important;
    padding: 15px 20px !important;
    border: 1px solid var(--border-color) !important;
    background-color: var(--surface-color) !important;
    outline: none !important;
    color: var(--text-color-darker) !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
}
.wp-block-stackable-column[data-block-id*='a77da3a'] input:focus {
    border: 1px solid var(--bg-color) !important;
}
.wp-block-stackable-column[data-block-id*='a77da3a'] textarea {
    resize: none;
    outline: none !important;
    border-radius: 15px !important;
}
.wp-block-stackable-column[data-block-id*='a77da3a'] textarea:focus {
    border: 1px solid var(--bg-color);
}
.wp-block-stackable-column[data-block-id*='a77da3a'] button {
    background-color: var(--bg-color) !important;
    border-radius: 15px;
    width: 100%;
    transition: background-color 0.3s ease;
    padding: 15px;
}
.wp-block-stackable-column[data-block-id*='a77da3a'] button:hover {
    background-color: var(--bg-color-secondary) !important;
}
.wp-block-stackable-icon.stk-block-icon[data-block-id*='4f66621'] .stk--svg-wrapper {
    background-image: url('./assets/icons/email-icon.svg');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}
.wp-block-stackable-icon.stk-block-icon[data-block-id*='514d4fa'] .stk--svg-wrapper {
    background-image: url('./assets/icons/whatsapp-icon.svg');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}
.stk-column-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}
.stk--svg-wrapper {
    height: 40px;
    width: 40px;
}
.stk--svg-wrapper svg {
    display: none;
}
/* Header Productos */
.entry-header.ct-container-narrow {
    max-height: 200px !important;
    min-height: auto !important;
    padding: 20px !important;
}

/* Productos */
.woocommerce-ordering .orderby {
    border-radius: 10px;
}
.woocommerce-ordering .orderby:active,
.woocommerce-ordering .orderby:focus,
.woocommerce-ordering .orderby:hover {
    outline: none;
    border: 1px solid var(--bg-color);
}
.ct-woo-card-rating {
    position: relative;
    width: fit-content;
    margin: 0 !important;
    border-radius: 5px;
}
.star-rating {
    display: flex;
    position: static !important;
    right: 20px;
    top: 20px;
    align-items: center;
    width: 100% !important;
    padding-left: 20px;
    gap: 10px;
}
.star-rating::before {
    display: none;
    position: relative !important;
}
.star-rating::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px !important;
    height: 14px !important;
    background-image: url(./assets/icons/star-svgrepo-com.svg) !important;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
}
.star-rating span {
    display: none;
}
.star-rating span:nth-child(2), 
.star-rating span:nth-child(3) {
    display: block;
    max-height: 16px !important;
    position: relative !important;
    color: var(--text-color-dark) !important;
    width: auto !important;
    font-family: var(--font-primary) !important;
    font-size: 14px;
    letter-spacing: normal;
    padding: 0 !important;
}
.star-rating span:nth-child(2) {
    font-weight: 500;
    border-right: 1px solid #00000020;
    padding-right: 10px !important;
}
.star-rating span:nth-child(3) {
    opacity: .8;
    font-size: 12px;
    font-weight: 300;
}
.star-rating span::before, 
.ct-rating-count,
.ct-rating-average {
    display: none !important;
}
.products {
    grid-column-gap: 20px !important;
}
.products li.product {
    border: 1px solid var(--border-color-soft);
    box-shadow: 0 0 4px #0f0f0f10;
    position: relative !important;
    justify-content: flex-start;
    min-height: 350px;
    padding: 20px;
    border-radius: 20px;
    gap: 10px;
    overflow: hidden;
}
.products li.product figure, 
.products li.product h2, 
.products li.product ul.entry-meta, 
.products li.product span.price {
    margin: 0 !important;
}
.products li.product span.price {
    font-size: 1.1em;
}
.products li.product figure {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid var(--surface-color-muted);
}
.products li.product .ct-woo-card-actions {
    margin: 0 !important;
    margin-top: auto !important;
}
.products li.product ul.entry-meta a {
    font-weight: 300;
    font-family: var(--font-secondary);
}
.products li.product ul.entry-meta a:hover {
    color: var(--bg-color-secondary);
}
.products .ct-woo-card-actions a {
    width: 100%;
    padding: 10px 0;
    border-radius: 10px;
    background-color: var(--bg-color);
    transition: background-color .3s;
}
.products .ct-woo-card-actions a:hover {
    background-color: var(--bg-color-secondary);
}
.product .onsale {
    background-color: var(--accent-color) !important;
}
.product .out-of-stock-badge,
.product .onsale {
    position: absolute;
    left: 5px;
    bottom: 5px;
    top: auto;
    border-radius: 8px;
} 
/* Categorias */
.ct-container-full {
    padding-top: 0 !important;
}
.hero-section {
    display: flex;
    align-items: center;
    min-height: 300px !important;
}
.hero-section.is-width-constrained {
    min-height: 80px !important;
    justify-content: flex-start;
    background-color: transparent !important;
    margin-bottom: 0 !important;
}
.hero-section.header-title {
    min-height: 100px !important;
    justify-content: center;
    background-color: var(--bg-color-secondary) !important;
    margin: 0 !important;
    min-width: 100vw !important;
}
.hero-section img {
    object-fit: cover !important;
}
.hero-section h1 {
    color: var(--text-color) !important;
}
/* Carrito Pagina */
.wc-block-cart-items__row a {
    color: var(--bg-color-secondary) !important;
}
.wc-block-cart-items__row a:hover {
    color: var(--bg-color) !important;
}
.wc-block-cart-items__row img {
    border-radius: 8px;
}
.wc-block-cart-items__row .wc-block-cart-item__image {
    height: fit-content !important;
    vertical-align: middle !important;
}
.wc-block-cart-items__row .wc-block-components-quantity-selector {
    border-radius: 8px;
}
.wc-block-cart-items__row .wc-block-components-product-badge.wc-block-components-sale-badge {
    border-radius: 6px;
    padding: 5px 10px !important;
}
.wc-block-components-sidebar.wc-block-cart__sidebar.wp-block-woocommerce-cart-totals-block a,
.wc-block-components-sidebar.wc-block-cart__sidebar.wp-block-woocommerce-cart-totals-block button {
    padding: 16px 0 !important;
    border-radius: 10px;
    outline: none;
    background-color: var(--bg-color) !important;
}
.wc-block-components-sidebar.wc-block-cart__sidebar.wp-block-woocommerce-cart-totals-block a:hover {
    background-color: var(--bg-color-secondary) !important;
}
.wc-block-components-sidebar.wc-block-cart__sidebar.wp-block-woocommerce-cart-totals-block input {
    box-sizing: border-box !important;
    display: block !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    line-height: normal !important;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 10px !important;
    padding: 15px 20px !important;
    border: 1px solid var(--border-color) !important;
    background-color: var(--surface-color) !important;
    outline: none !important;
    color: var(--text-color-darker) !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
}
.wc-block-components-sidebar.wc-block-cart__sidebar.wp-block-woocommerce-cart-totals-block input:focus {
    border: 1px solid var(--bg-color) !important;
}
/* Producto Pagina Individual */
.ct-product-add-to-cart button {
    padding: 16px 0 !important;
    border-radius: 10px !important;
    outline: none;
    background-color: var(--bg-color) !important;
}
.ct-product-add-to-cart button:hover {
    background-color: var(--bg-color-secondary) !important;
}
.ct-product-add-to-cart .quantity {
    border-radius: 10px !important;
    outline: none !important;
}
.ct-product-add-to-cart .quantity input.input-text {
    outline: none !important;
    border-radius: 10px !important;
    border: 1px solid var(--bg-color) !important;
}
.ct-product-add-to-cart .quantity input:focus {
    border: 2px solid var(--bg-color-secondary) !important;
}
.ct-product-add-to-cart .quantity .ct-increase:hover,
.ct-product-add-to-cart .quantity .ct-decrease:hover {
    background-color: var(--bg-color) !important;
}
.ct-media-container img {
    border-radius: 10px !important;
}
.ct-breadcrumbs span {
    color: var(--text-color-darker) !important;
}
.woocommerce div.product div.woocommerce-tabs ul.tabs li.active a {
    color: var(--bg-color) !important;
}
.woocommerce div.product div.woocommerce-tabs ul.tabs li.active:before {
    background-color: var(--bg-color) !important;
    border-radius: 2px;
}
#commentform textarea#comment {
    resize: none;
    outline: none !important;
    border-radius: 15px !important;
}
#commentform button {
    padding: 16px 40px !important;
    border-radius: 10px !important;
    outline: none;
    background-color: var(--bg-color) !important;
}
#commentform button:hover {
    background-color: var(--bg-color-secondary) !important
}
/* Responsive Mobile */
@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: block;
    }
    body {
        padding-bottom: 64px !important;
    }
    #header [data-items*=primary] {
        gap: 5px;
    }
    #header [data-device*=mobile] {
        padding: 0 5px;
    }
    #header [data-device*=mobile] .ct-container {
        padding: 0;
        margin: 0;
        width: 100%;
        justify-content: space-between;
    }
    #header [data-device*=mobile] [data-column*=end] {
        margin: 0;
        padding: 0;
        justify-content: flex-end;
    }
    .ct-search-results {
        margin-top: 80px;
    }
    .ct-panel-inner {
        padding: 20px !important;
        border-top-left-radius: 20px !important;
        border-bottom-left-radius: 20px !important;
        overflow: hidden !important;
        background: var(--bg-color) !important;
    }
    .ct-panel-content {
        align-items: flex-start !important;
    }
    .ct-panel-content-inner {
        width: 100% !important;

    }
    .ct-panel-content-inner ul {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
    }
    .ct-panel-content-inner li {
        position: relative !important;
        background-color: var(--bg-color-secondary) !important;
        border-radius: 10px !important;
        padding: 10px 20px !important;
        display: flex !important;
        align-items: center !important;
    }
    .ct-panel-content-inner li a {
        color: var(--text-color) !important;
        font-family: 'Montserrat', sans-serif;
        font-weight: 500 !important;
    }
    .ct-panel-content-inner li.current_page_item {
        background-color: var(--bg-color-secondary) !important;
    }
    .ct-panel-content-inner li.current_page_item .ct-panel-content-inner-line {
        position: absolute !important;
        right: -2px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: 4px !important;
        height: 50% !important;
        border-radius: 2px !important;
        background-color: #fff !important;
    }
    /* Login */
    button.woocommerce-button.button.woocommerce-form-login__submit,
    button.woocommerce-Button.woocommerce-button.button.woocommerce-form-register__submit {
        padding: 15px 40px !important;
        width: 100%;
        border-radius: 10px;
        background-color: var(--bg-color);
        transition: background-color .3s;
    }
    button.woocommerce-button.button.woocommerce-form-login__submit:active {
        background-color: var(--bg-color-secondary);
    }
    #reg_email {
        box-sizing: border-box !important;
        display: block !important;
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        line-height: normal !important;
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 15px !important;
        padding: 15px 10px !important;
        border: 1px solid var(--border-color) !important;
        background-color: var(--surface-color) !important;
        outline: none !important;
        box-shadow: none !important;
        transition: all 0.3s ease !important;
    }

    /* Header Carrousel */
    #header-carrousel-info {
        padding: 20px 25px !important;
    }
    .swiper-pagination-bullet {
        transform: scale(.8);
    }
    /* Delivery Info */
    #delivery-info .e-grid .e-con-inner {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: flex-start;
        padding: 20px 40px;
        gap: 5px;
        width: 100%;
    }
    #delivery-info .delivery-info-cont {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        background-color: #00000020;
        border-radius: 10px;
        padding: 10px 16px;
        max-width: 100%;
    }
    /* Footer */
    footer [data-row*='bottom'] .ct-container {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        grid-row-gap: 5px !important;
    }
    footer [data-column*='socials'] .ct-social-box {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 20px;
    }
    .ct-footer-copyright p {
        font-size: 12px;
    }
    /* Productos */
    .products {
        grid-template-columns: 1fr 1fr !important;
        grid-column-gap: 10px !important;
        grid-row-gap: 15px !important;
    }
    .products h2 {
        font-size: 14px;
    }
    .products span {
        font-size: 14px !important;
    }
    .products .price span {
        font-size: 1.1em !important;
    }
    .products li.meta-categories a {
        font-size: 12px !important;
    } 
    .products li.product {
        gap: 5px;
        min-height: 300px;
        padding: 10px;
    }
    .ct-container {
        margin: 0 !important;
        width: 100% !important;
        padding: 20px 10px!important;
    }
    /* Producto Pagina Individual */
    #commentform button {
        width: 100% !important;
    }
}

