@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&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 {
    --ff-text: "Poppins", sans-serif;
    --ff-heading: "Poppins", sans-serif;
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 800;
    --clr-black: #171717;
    --clr-black-rgb: 23, 23, 23;
    --clr-secondary: #ff0000;
    --clr-secondary-rgb: 255, 0, 0;
    --clr-white: #ffffff;
    --clr-white-rgb: 255, 255, 255;
    --clr-background: #f4f3f3;
    --clr-background-rgb: 244, 243, 243;
    --clr-gray: #d3d3d3;
    --clr-gray-rgb: 211, 211, 211;
}

body {
    font-family: var(--ff-text);
    font-size: 1rem;
    background-color: var(--clr-white);
    color: var(--clr-black);
    font-weight: 400;
    transition: all 0.3s ease;
}
body * {
    transition: all 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    font-family: var(--ff-heading);
    clear: both;
    font-weight: 500;
}

h2 {
    font-size: 32px;
    line-height: 34px;
}
@media (width > 1024px) {
    h2 {
        font-size: 48px;
        line-height: 50px;
    }
}

p {
    line-height: 1.5;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

.site-main,
.container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}
@media (width > 1024px) {
    .site-main,
    .container {
        padding-left: 0;
        padding-right: 0;
    }
}

.owl-carousel {
    display: block !important;
}

/* Links
--------------------------------------------- */
a {
    color: var(--clr-black);
    text-decoration: none;
}
a:hover,
a:focus,
a:active {
    color: var(--clr-black);
    outline: 0;
}

.admin-bar .site-header {
    top: 32px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 1rem;
}
.site-header__container {
    padding: 1rem;
    background-color: var(--clr-white);
    transition: all 0.3s ease;
}
.site-header__container.scroll {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 20px 20px;
}
.site-header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.site-header__search {
    display: none;
}
.site-header__search.active {
    display: block;
}
.site-header__cats {
    padding-top: 1rem;
    justify-content: space-between;
    display: none;
    flex-direction: column;
    gap: 1rem;
}
.site-header__cats nav {
    display: block !important;
}
.site-header__cats nav .menu {
    display: flex;
    flex-direction: column;
    gap: 0 !important;
}
.site-header__cats nav .menu li {
    border-bottom: 1px solid #ccc;
}
.site-header__cats nav .menu li a {
    width: 100%;
    display: block;
    padding: 1rem;
}
@media (width > 1024px) {
    .site-header__cats nav {
        display: none !important;
    }
}
.site-header__cats h3 {
    margin-top: 0;
    font-family: var(--ff-text);
    font-weight: 500;
    font-size: 16px;
}
@media (width > 1024px) {
    .site-header__cats {
        flex-direction: row;
    }
}
.site-header__cats.active {
    display: flex;
}
.site-header__cats .col-categories {
    flex: 1;
}
.site-header__cats .col-categories__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}
@media (width > 1024px) {
    .site-header__cats .col-categories__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.site-header__cats .col-categories__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.site-header__cats .col-categories__item h4 {
    margin: 0;
    font-family: var(--ff-text);
    font-weight: 500;
    font-size: 14px;
}
.site-header .menu-icon img {
    width: 30px;
}
.site-header .col-contacto {
    display: flex;
    gap: 0;
    flex-direction: column;
}
@media (width > 1024px) {
    .site-header .col-contacto {
        gap: 1rem;
    }
}
.site-header .col-contacto__wrapper {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}
@media (width > 1024px) {
    .site-header .col-contacto__wrapper {
        flex-direction: row;
        align-items: center;
    }
}
.site-header .col-contacto .widget_media_image {
    display: none;
}
@media (width > 1024px) {
    .site-header .col-contacto .widget_media_image {
        display: block;
    }
}
.site-header .col-contacto img {
    border-radius: 30px;
}
.site-header .col-contacto section {
    margin: 0;
}
.site-header .col-contacto ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.site-header button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}
.site-header button img {
    display: block;
}
.site-header__left {
    display: flex;
    align-items: center;
    gap: 20px;
}
.site-header__left button {
    transition: all 0.3s ease;
}
.site-header__left button:hover {
    transform: scale(1.1);
}
.site-header__left .site-branding img {
    width: 90%;
}
@media (width > 1024px) {
    .site-header__left .site-branding img {
        width: 100%;
    }
}
.site-header__right {
    display: flex;
    align-items: center;
    gap: 8px;
}
.site-header__right button,
.site-header__right a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--clr-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.site-header__right button:hover,
.site-header__right a:hover {
    background-color: rgba(var(--clr-gray-rgb), 0.5);
    transform: scale(1.1);
}
.site-header .main-navigation {
    width: auto;
    display: none;
}
@media (width > 1024px) {
    .site-header .main-navigation {
        display: block;
    }
}
.site-header .main-navigation .menu {
    display: flex;
    gap: 50px;
}

.site-footer {
    padding: 1rem;
    border-top: 1px solid #ccc;
    background-color: var(--clr-white);
}
.site-footer .copy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 20px;
}
@media (width > 992px) {
    .site-footer .copy {
        flex-direction: row;
    }
}
.site-footer .copy p,
.site-footer .copy section {
    margin: 0;
}
.site-footer .copy ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.site-footer .footer-widgets-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
@media (width > 992px) {
    .site-footer .footer-widgets-container {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 40px;
    }
}
.site-footer .footer-widgets-container .widget {
    width: 100%;
}
@media (width > 992px) {
    .site-footer .footer-widgets-container .widget {
        width: 16%;
    }
}
.site-footer .footer-widgets-container .widget .widget-title {
    font-family: var(--ff-text);
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 1px;
    font-weight: 500;
}
.site-footer .footer-widgets-container .widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.site-footer .footer-widgets-container .widget ul li {
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--clr-black);
}
.site-footer .footer-widgets-container .widget ul li a {
    font-size: 14px;
    color: var(--clr-black);
    text-decoration: none;
    transition: opacity 0.3s;
}
.site-footer .footer-widgets-container .widget ul li a:hover {
    opacity: 0.7;
}
@media (width > 992px) {
    .site-footer .footer-widgets-container .widget:nth-child(5) {
        width: 30%;
    }
}
.site-footer .footer-widgets-container .widget:nth-child(5) h3 {
    font-family: var(--ff-heading);
    font-size: 28px;
    text-transform: none;
    font-weight: 400;
    font-style: italic;
    margin: 0;
}
.site-footer .footer-widgets-container .widget:nth-child(5) h3 strong {
    font-weight: 500;
}
.site-footer .footer-widgets-container .widget:nth-child(5) form {
    margin-top: 20px;
    position: relative;
}
.site-footer
    .footer-widgets-container
    .widget:nth-child(5)
    form
    input[type="email"] {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 0;
    height: 50px;
}
.site-footer
    .footer-widgets-container
    .widget:nth-child(5)
    form
    input[type="submit"] {
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    font-size: 14px;
    color: transparent;
    text-decoration: none;
    transition: opacity 0.3s;
    border: 1px solid #ccc;
    border-left: 0;
    background-color: var(--clr-white);
    height: 50px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23080000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 12h14m-7-7l7 7l-7 7'/%3E%3C/svg%3E");
}
.site-footer
    .footer-widgets-container
    .widget:nth-child(5)
    form
    input[type="submit"]:hover {
    opacity: 0.7;
}

.btn-asistencia {
    margin-bottom: 0 !important;
}
.btn-asistencia a {
    padding: 20px 30px;
    border: 2px solid var(--clr-black);
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    padding-right: 60px;
    width: 100%;
    display: block;
}
.btn-asistencia a::before {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    display: inline-block;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23080000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m12 5l6 6m-6-6l-6 6m6-6v14'/%3E%3C/svg%3E");
    transition: all 0.3s ease;
}
.btn-asistencia a:hover {
    background-color: var(--clr-black);
    color: var(--clr-white);
    transform: translateY(-5px);
}
.btn-asistencia a:hover::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m12 5l6 6m-6-6l-6 6m6-6v14'/%3E%3C/svg%3E");
    transform: translateY(-50%) rotate(90deg);
}

.btn a {
    font-weight: bold;
    padding: 10px 30px;
    border: 2px solid var(--clr-black);
    display: inline-block;
    transition: all 0.3s ease;
}
.btn a:hover {
    background-color: var(--clr-black);
    color: var(--clr-white);
    transform: translateY(-5px);
}

.btn-white a {
    background-color: var(--clr-white);
    color: var(--clr-black);
    font-weight: bold;
    padding: 10px 30px;
    display: inline-block;
    transition: all 0.3s ease;
}
.btn-white a:hover {
    background-color: var(--clr-black);
    color: var(--clr-white);
    transform: translateY(-5px);
}

/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    border: 1px solid;
    border-color: #ccc #ccc #bbb;
    border-radius: 3px;
    background: #e6e6e6;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1;
    padding: 0.6em 1em 0.4em;
}
button:hover,
button:focus,
button:active,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="button"]:active,
input[type="reset"]:hover,
input[type="reset"]:focus,
input[type="reset"]:active,
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="submit"]:active {
    border-color: #ccc #bbb #aaa;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea,
select {
    color: #666;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 3px;
    width: 100%;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus,
select:focus {
    color: #111;
}

.hero-home {
    min-height: 700px;
    position: relative;
}
.hero-home .wpb_column {
    position: relative;
}
.hero-home .wpb_column .vc_column-inner::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    background: #fff;
    background: linear-gradient(
        0deg,
        rgb(255, 255, 255) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    display: block !important;
}
.hero-home .wpb_column .vc_column-inner .wpb_wrapper {
    position: relative;
}
.hero-home h2 {
    font-weight: 300;
    font-size: 28px;
    line-height: 30px;
}
.hero-home a {
    font-weight: bold;
    padding: 10px 30px;
    border: 2px solid var(--clr-black);
    display: inline-block;
    transition: all 0.3s ease;
}
.hero-home a:hover {
    background-color: var(--clr-black);
    color: var(--clr-white);
    transform: translateY(-5px);
}

.asistencia-comprar > div {
    padding: 20px !important;
    padding-top: 250px !important;
}
.asistencia-comprar > div::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    background: linear-gradient(
        41deg,
        rgb(255, 255, 255) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    display: block !important;
}
.asistencia-comprar > div .wpb_wrapper {
    position: relative;
}

.cta-home {
    position: relative;
    padding: 30px;
    color: var(--clr-white);
}
.cta-home h2 {
    margin: 0;
}
.cta-home h2 em {
    color: var(--clr-black);
}
.cta-home h4 {
    margin-bottom: 0;
    font-family: var(--ff-text);
}
.cta-home::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    background: #dbb797;
    background: linear-gradient(
        90deg,
        rgb(219, 183, 151) 0%,
        rgba(219, 183, 151, 0) 100%
    );
    display: block !important;
}

.pum-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
    flex-direction: column;
}
.pum-content ul li {
    padding-left: 30px;
    position: relative;
}
.pum-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23080000' d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24c1.12.37 2.33.57 3.57.57c.55 0 1 .45 1 1V20c0 .55-.45 1-1 1c-9.39 0-17-7.61-17-17c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1c0 1.25.2 2.45.57 3.57c.11.35.03.74-.25 1.02z'/%3E%3C/svg%3E");
}
.pum-content ul li:nth-child(2)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23080000' d='M4 20q-.825 0-1.412-.587T2 18V6q0-.825.588-1.412T4 4h16q.825 0 1.413.588T22 6v12q0 .825-.587 1.413T20 20zm8-7l8-5V6l-8 5l-8-5v2z'/%3E%3C/svg%3E");
}
.pum-content ul li:nth-child(3)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23080000' d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7m0 9.5a2.5 2.5 0 0 1 0-5a2.5 2.5 0 0 1 0 5'/%3E%3C/svg%3E");
}

.tags-home {
    margin-bottom: 0;
}

.tanya-product-tags {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
@media (width > 768px) {
    .tanya-product-tags {
        grid-template-columns: repeat(4, 1fr);
    }
}
.tanya-product-tags .tanya-product-tag-item {
    position: relative;
    padding: 20px;
    color: var(--clr-white);
    text-decoration: none;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 300px;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}
@media (width > 768px) {
    .tanya-product-tags .tanya-product-tag-item {
        min-height: 600px;
    }
}
.tanya-product-tags .tanya-product-tag-item::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #171717;
    background: linear-gradient(
        0deg,
        rgb(23, 23, 23) 0%,
        rgba(23, 23, 23, 0) 100%
    );
    display: block !important;
}
.tanya-product-tags .tanya-product-tag-item h3 {
    font-size: 20px;
    font-weight: 300;
    line-height: 20px;
    color: var(--clr-white);
    margin: 0;
    position: relative;
    font-style: italic;
}
@media (width > 768px) {
    .tanya-product-tags .tanya-product-tag-item h3 {
        font-size: 40px;
        line-height: 40px;
    }
}
.tanya-product-tags .tanya-product-tag-item h3 span {
    display: block;
    font-size: 14px;
    color: #dbb797;
    text-align: center;
}
@media (width > 768px) {
    .tanya-product-tags .tanya-product-tag-item h3 span {
        font-size: 28px;
    }
}

.single-product .product {
    display: block;
}
.single-product .product .onsale {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--clr-secondary);
    color: var(--clr-white);
    padding: 10px 20px;
    border-radius: 10px;
    z-index: 10;
}

.product-summary-flex-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
@media (width > 992px) {
    .product-summary-flex-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 40px;
    }
}

.summary {
    width: 100%;
}
@media (width > 992px) {
    .summary {
        width: 35%;
        position: sticky;
        top: 120px;
    }
}
.summary .quantity {
    width: 40px;
    display: inline-block;
}
.summary .quantity input {
    width: 100%;
    height: 40px;
}
.summary h1 {
    font-size: 30px;
    margin-top: 0;
}
@media (width > 1024px) {
    .summary h1 {
        font-size: 54px;
    }
}
.summary .price {
    display: flex;
    flex-direction: column;
}
.summary .price ins {
    background: transparent;
    font-size: 28px;
    font-weight: bold;
}
.summary .price del {
    font-size: 14px;
    opacity: 0.5;
}
.summary .button {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--clr-black);
    color: var(--clr-white);
    border: 0;
    flex: 1;
    cursor: pointer;
}
.summary .product_meta {
    border-top: 1px solid #ccc;
    width: 100%;
    margin-top: 20px;
    padding-top: 20px;
    font-size: 13px;
    opacity: 0.5;
}

.woocommerce-variation-add-to-cart {
    display: flex;
    align-items: center;
    gap: 14px;
}

.wc-product-images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}
@media (width > 992px) {
    .wc-product-images-grid {
        width: 60%;
    }
}
.wc-product-images-grid__item {
    margin: 0;
}
.wc-product-images-grid img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.woocommerce-tabs {
    width: 100%;
}

.woocommerce-breadcrumb {
    font-size: 14px;
    margin: 10px 0;
    opacity: 0.7;
}

.woocommerce-shop .site-main,
.tax-product_cat .site-main {
    max-width: 100%;
}

.mi-cuenta-header {
    padding: 20px;
    position: relative;
}
.mi-cuenta-header::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    background: #dbb797;
    background: linear-gradient(
        90deg,
        rgb(219, 183, 151) 0%,
        rgba(219, 183, 151, 0) 100%
    );
    display: block !important;
}
.mi-cuenta-header h1 {
    color: var(--clr-white);
}

.mi-cuenta .woocommerce {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
@media (width > 992px) {
    .mi-cuenta .woocommerce {
        flex-direction: row;
        align-items: flex-start;
    }
}
.mi-cuenta .woocommerce .woocommerce-MyAccount-navigation {
    width: 25%;
}
.mi-cuenta .woocommerce .woocommerce-MyAccount-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.mi-cuenta .woocommerce .woocommerce-MyAccount-navigation ul li {
    border-bottom: 1px solid #eee;
}
.mi-cuenta .woocommerce .woocommerce-MyAccount-navigation ul li a {
    padding: 10px;
    display: block;
}

.shop-header-wrapper {
    padding: 20px;
    position: relative;
    background-image: url(https://tanya.com.co/wp-content/uploads/2026/01/cta-80.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 20px;
}
@media (width > 1024px) {
    .shop-header-wrapper {
        padding: 70px;
    }
}
.shop-header-wrapper .container {
    position: relative;
    z-index: 1;
}
.shop-header-wrapper::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    background: #dbb797;
    background: linear-gradient(
        90deg,
        rgb(219, 183, 151) 0%,
        rgba(219, 183, 151, 0) 100%
    );
    display: block !important;
}
.shop-header-wrapper h1 {
    font-size: 18px;
    font-weight: 600;
    color: var(--clr-white);
    letter-spacing: 12px;
    font-family: var(--ff-text);
    text-transform: uppercase;
    margin: 0;
}
.shop-header-wrapper p {
    color: var(--clr-white);
    font-size: 30px;
    font-family: var(--ff-heading);
    margin: 0;
}
@media (width > 1024px) {
    .shop-header-wrapper p {
        font-size: 60px;
    }
}
.shop-header-wrapper p strong {
    color: var(--clr-black);
    font-style: italic;
    font-weight: 400;
}

.shop-main-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 64px;
}
@media (width > 992px) {
    .shop-main-layout {
        flex-direction: row;
        align-items: flex-start;
    }
}
.shop-main-layout .shop-sidebar-column {
    width: 100%;
}
@media (width > 992px) {
    .shop-main-layout .shop-sidebar-column {
        width: 25%;
        flex-shrink: 0;
    }
}
.shop-main-layout .shop-content-column {
    width: 100%;
}
@media (width > 992px) {
    .shop-main-layout .shop-content-column {
        flex-grow: 1;
    }
}
.shop-main-layout .shop-content-column .woocommerce-notices-wrapper {
    width: 100%;
    margin-bottom: 16px;
}
.shop-main-layout .shop-content-column .woocommerce-result-count {
    float: left;
    margin: 0;
    padding: 10px 0;
    opacity: 0.7;
}
.shop-main-layout .shop-content-column .woocommerce-ordering {
    float: right;
    margin-bottom: 16px;
}
.shop-main-layout .shop-content-column .woocommerce-ordering select {
    padding: 12px 20px;
    border-radius: 30px;
    border: 1px solid #eee;
    background-color: transparent;
    cursor: pointer;
    font-size: 14px;
    outline: none;
}
.shop-main-layout .shop-content-column .woocommerce-ordering select:focus {
    border-color: var(--clr-black);
}
.shop-main-layout .shop-content-column .products {
    clear: both;
    display: block;
}

/* Shop Notices */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    padding: 16px 24px;
    background-color: var(--clr-background) !important;
    border-top: 3px solid var(--clr-secondary) !important;
    color: var(--clr-black);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
}
.woocommerce-message a,
.woocommerce-info a,
.woocommerce-error a {
    font-weight: 700;
    color: inherit;
    text-decoration: underline;
}

.woocommerce-error {
    border-color: #d9534f;
}

/* Product Card Loop Styles */
.products .product {
    position: relative;
    margin-bottom: 48px;
}
.products .product .onsale {
    position: absolute;
    top: 20px;
    left: 20px;
    margin: 0;
    background-color: var(--clr-secondary);
    color: var(--clr-white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 10;
    line-height: 1;
    min-height: auto;
    min-width: auto;
}
.products .product .product-image-transition {
    position: relative;
    width: 100%;
    height: 350px;
    margin-bottom: 24px;
    border-radius: 8px;
    overflow: hidden;
}
.products .product .product-image-transition img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 0;
    transition: opacity 0.4s ease-in-out;
}
.products .product .product-image-transition .secondary-image-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 2;
}
.products .product .product-image-transition:hover .secondary-image-hover {
    opacity: 1;
}
.products .product .product-card-details .product-title-price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 10px;
}
.products
    .product
    .product-card-details
    .product-title-price-row
    .woocommerce-loop-product__title {
    font-size: 28px;
    font-family: var(--font-heading);
    font-weight: 400;
    margin: 0;
    line-height: 1.1;
    flex: 1;
}
.products .product .product-card-details .product-title-price-row .price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin: 0;
    line-height: 1.2;
    color: var(--clr-black);
}
.products .product .product-card-details .product-title-price-row .price ins {
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
    background: transparent;
}
.products .product .product-card-details .product-title-price-row .price del {
    font-size: 14px;
    opacity: 0.5;
    order: 1;
}
.products
    .product
    .product-card-details
    .product-title-price-row
    .price
    > .amount {
    font-weight: 800;
    font-size: 18px;
}
.products .product .product-card-details .product-card-short-desc {
    font-size: 15px;
    opacity: 0.8;
    margin-top: 8px;
    line-height: 1.5;
    font-family: var(--font-text);
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.products .product .add_to_cart_button {
    margin-top: 16px;
    display: inline-block;
}

.related .products,
.related-products-404 .products {
    display: inline-block;
    width: 100%;
}
.related > h2,
.related-products-404 > h2 {
    text-align: center;
}
.related > h2 strong,
.related-products-404 > h2 strong {
    font-style: italic;
    font-weight: 400;
}

.wc-block-cart__submit a {
    background-color: var(--clr-black);
    color: var(--clr-white);
}

.wc-block-components-button {
    background-color: var(--clr-black);
    color: var(--clr-white);
    border: 0;
}

mark,
ins {
    background: transparent;
}

.guia-tallas {
    margin-top: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pum-container td,
.pum-container p,
.pum-container ul {
    font-weight: 400 !important;
}
.pum-container ul {
    margin: 0;
    padding: 0;
}
.pum-container p {
    margin: 0;
}
.pum-container h3 {
    font-family: var(--ff-text);
    margin: 0;
}
.pum-container .wp-block-button__link {
    margin-top: 20px;
    border-radius: 0;
    background-color: var(--clr-black);
    color: var(--clr-white);
    border: 2px solid var(--clr-black);
}
.pum-container .wp-block-button__link:hover {
    background-color: var(--clr-white);
    color: var(--clr-black);
}

.error-404 {
    text-align: center;
    padding: 80px 0;
}
.error-404 .error-code {
    font-size: 150px;
    line-height: 1;
    margin: 0;
    font-weight: 900;
    color: var(--clr-secondary, #ff0000);
    opacity: 0.1;
}
.error-404 .page-title {
    font-size: 40px;
    margin-bottom: 20px;
    margin-top: -60px;
    position: relative;
    font-weight: 700;
}
.error-404 .page-text {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #666;
}
.error-404 .btn-404 {
    display: inline-block;
    background-color: var(--clr-black, #000);
    color: var(--clr-white, #fff);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}
.error-404 .btn-404:hover {
    opacity: 0.8;
    color: var(--clr-white, #fff);
}
.error-404 .related-products-404 {
    margin-top: 100px;
    text-align: left;
}
.error-404 .related-products-404 h3 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 32px;
    font-family: var(--font-heading, serif);
} /*# sourceMappingURL=tanya.css.map */
