@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@500;600;700&display=swap');


:root {

    --primary: #111111;
    --secondary: #ffffff;
    --gray: #777;
    --light: #f7f7f7;
    --border: #e8e8e8;

    --transition: .35s ease;

    --shadow:
        0 15px 35px rgba(0, 0, 0, .08);

}

/*=========================================
        RESET
=========================================*/

* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;

}

body {

    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: #222;
    overflow-x: hidden;

}

img {

    width: 100%;
    display: block;

}

a {

    text-decoration: none;
    color: inherit;

}

ul {

    list-style: none;

}

.container {

    width: 90%;
    max-width: 1300px;
    margin: auto;

}

/*=========================================
        HEADER
=========================================*/

header {

    position: fixed;
    background-color: rgb(226, 226, 214);
    top: 0;
    left: 0;

    width: 100%;

    padding: 25px 8%;

    display: flex;

    justify-content: space-between;

    align-items: center;

    z-index: 999;

    transition: .4s;

}

header.active {

    background: #fff;

    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);

    padding: 18px 8%;

}

.logo {

    font-family: 'Cormorant Garamond', serif;

    font-size: 28px;

    font-weight: 600;

    letter-spacing: 8px;

    text-transform: uppercase;

}

.logo a {

    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: center;

}

.logo-divider {

    display: flex;
    align-items: center;
    gap: 6px;
    width: 65%;
    margin: 5px auto 0;
    letter-spacing: 0;

}

.logo-divider span {

    flex: 1;
    height: .5px;
    background: #c9a45c;

}

.logo-divider i {

    font-size: 7px;
    color: #d88a9a;

}

.nav-mark {

    display: none;

}

nav ul {

    display: flex;

    gap: 40px;

}

nav ul li a {

    font-size: 15px;

    font-weight: 500;

    position: relative;

}

nav ul li a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 0;

    height: 2px;

    background: #111;

    transition: .3s;

}

nav ul li a:hover::after {

    width: 100%;

}

.icons {

    display: flex;

    align-items: center;

    gap: 22px;

    font-size: 18px;

    cursor: pointer;

}

.icons i {

    transition: .3s;

}

.icons i:hover {

    transform: translateY(-3px);

}

.menu {

    display: none;

}

.icon-wrap {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

}

.badge {

    display: none;
    position: absolute;
    top: -9px;
    right: -11px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-size: 10px;
    align-items: center;
    justify-content: center;

}

.badge.show {

    display: flex;

}

/*=========================================
        PANELES: CARRITO / FAVORITOS
=========================================*/

.drawer-backdrop {

    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    z-index: 1000;

}

.drawer-backdrop.active {

    display: block;

}

.side-drawer {

    position: fixed;
    top: 0;
    right: -100%;
    width: 400px;
    max-width: 92vw;
    height: 100vh;
    background: #fff;
    z-index: 1001;
    transition: .4s;
    box-shadow: -15px 0 35px rgba(0, 0, 0, .15);
    display: flex;
    flex-direction: column;

}

.side-drawer.active {

    right: 0;

}

.drawer-header {

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border-bottom: 1px solid var(--border);

}

.drawer-header h3 {

    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;

}

.drawer-close {

    cursor: pointer;
    font-size: 20px;

}

.search-box {

    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 25px 10px;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 30px;

}

.search-box i {

    color: #999;
    font-size: 15px;

}

.search-box input {

    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    font-family: inherit;
    background: transparent;

}

.drawer-body {

    flex: 1;
    overflow-y: auto;
    padding: 10px 25px;

}

.empty-msg {

    color: #999;
    text-align: center;
    padding: 60px 0;

}

.cart-item,
.fav-item {

    display: flex;
    gap: 15px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);

}

.cart-item img,
.fav-item img {

    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;

}

.cart-item-info {

    flex: 1;

}

.cart-item-info h4 {

    font-size: 15px;
    margin-bottom: 5px;

}

.cart-item-info span {

    color: #777;
    font-size: 14px;

}

.qty-control {

    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;

}

.qty-btn {

    width: 26px;
    height: 26px;
    border: 1px solid var(--border);
    background: #fff;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;

}

.qty-btn:hover {

    background: #f2f2f2;

}

.remove-btn {

    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 15px;
    align-self: flex-start;

}

.remove-btn:hover {

    color: #e0245e;

}

.drawer-footer {

    padding: 20px 25px;
    border-top: 1px solid var(--border);

}

.cart-total {

    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 15px;

}

#cart-whatsapp {

    display: block;
    width: 100%;
    text-align: center;
    box-sizing: border-box;

}

#cart-whatsapp.disabled {

    pointer-events: none;
    opacity: .5;

}

/*=========================================
        HERO
=========================================*/

.hero {

    position: relative;

    width: 100%;

    height: 100vh;

    overflow: hidden;

}

.hero img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    animation: zoom 18s infinite alternate;

}

.overlay {

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, .28);

    z-index: 1;

}

.hero-content {

    position: absolute;

    z-index: 5;

    left: 10%;

    top: 70%;

    transform: translateY(-50%);

    color: #fff;

}

.hero-content h1 {

    font-family: 'Cormorant Garamond';

    font-size: 75px;

    font-weight: 700;

    margin-bottom: 18px;

}

.hero-content p {

    font-size: 20px;

    margin-bottom: 35px;

    letter-spacing: 2px;

}

.btn {

    display: inline-block;

    padding: 16px 45px;

    background: #111;

    color: #fff;

    transition: .35s;

    border-radius: 3px;

    letter-spacing: 1px;

}

.btn:hover {

    background: #fff;

    color: #111;

}

.btn-outline {

    background: transparent;
    color: #111;
    border: 1px solid #111;

}

.btn-outline:hover {

    background: #111;
    color: #fff;

}

.see-all {

    text-align: center;
    margin-top: 50px;

}

/*=========================================
        CÓMO FUNCIONA
=========================================*/

.how {

    padding: 100px 0;
    background: #fafafa;

}

.how h2 {

    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 50px;
    margin-bottom: 60px;

}

.how-steps {

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;

}

.how-step {

    position: relative;
    background: #fff;
    text-align: center;
    padding: 50px 25px 35px;
    border-radius: 8px;
    transition: .35s;

}

.how-step:hover {

    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);

}

.how-number {

    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;

}

.how-step i {

    font-size: 34px;
    margin-bottom: 18px;
    color: #111;

}

.how-step h3 {

    margin-bottom: 12px;
    font-size: 19px;

}

.how-step p {

    color: #777;
    font-size: 14px;
    line-height: 1.7;

}

/*=========================================
        CATEGORÍAS
=========================================*/

.categories {

    padding: 120px 0;

}

.categories h2 {

    text-align: center;

    font-family: 'Cormorant Garamond';

    font-size: 50px;

    margin-bottom: 60px;

}

.cards {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 35px;

}

.card {

    overflow: hidden;

    position: relative;

    cursor: pointer;

}

.card img {

    height: 420px;

    object-fit: cover;

    transition: .5s;

}

.card:hover img {

    transform: scale(1.08);

}

.card h3 {

    position: absolute;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

    color: #fff;

    font-size: 35px;

    font-family: 'Cormorant Garamond';

    letter-spacing: 2px;
}

/*=========================================
        PRODUCTOS
=========================================*/

.products {

    padding: 120px 0;
    background: #fafafa;

}

.catalog {

    padding: 100px 0;

}

.products h2 {

    text-align: center;
    font-size: 52px;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 70px;

}

.lightbox {

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, .92);

    display: flex;

    align-items: center;

    justify-content: center;

    opacity: 0;

    visibility: hidden;

    transition: .3s;

    z-index: 2000;

    cursor: zoom-out;

}

.lightbox.active {

    opacity: 1;

    visibility: visible;

}

.lightbox img {

    max-width: 92vw;

    max-height: 92vh;

    object-fit: contain;

    cursor: default;

}

.lightbox-close {

    position: fixed;

    top: 25px;

    right: 25px;

    width: 45px;

    height: 45px;

    border: none;

    border-radius: 50%;

    background: rgba(255, 255, 255, .12);

    color: white;

    font-size: 20px;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: .3s;

}

.lightbox-close:hover {

    background: rgba(255, 255, 255, .25);

}

.lightbox-arrow {

    position: fixed;

    top: 50%;

    transform: translateY(-50%);

    width: 50px;

    height: 50px;

    border: none;

    border-radius: 50%;

    background: rgba(255, 255, 255, .12);

    color: white;

    font-size: 20px;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: .3s;

    z-index: 2001;

}

.lightbox-arrow:hover {

    background: rgba(255, 255, 255, .25);

}

.lightbox-prev {

    left: 25px;

}

.lightbox-next {

    right: 25px;

}

#pd-main img {

    cursor: zoom-in;

}

.related-products {

    padding: 100px 0;
    background: #fafafa;

}

.related-products h2 {

    text-align: center;
    font-size: 42px;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 50px;

}

.products-grid {

    display: grid;

    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));

    gap: 35px;

}

.product {

    display: flex;

    flex-direction: column;

    background: #fff;

    border-radius: 8px;

    overflow: hidden;

    transition: .35s;

    box-shadow: 0 8px 25px rgba(0, 0, 0, .05);

}

.product:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);

}

.product img {

    height: 380px;

    object-fit: cover;

}

.product-media {

    position: relative;
    overflow: hidden;
    cursor: pointer;

}

.product .fav-btn {

    position: absolute;
    top: 15px;
    right: 15px;
    width: 38px;
    min-width: 38px;
    height: 38px;
    padding: 0;
    margin: 0;
    line-height: 1;
    appearance: none;
    -webkit-appearance: none;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    color: #111;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    cursor: pointer;
    z-index: 5;
    transition: .3s;

}

.product .fav-btn:hover {

    transform: scale(1.1);

}

.product .fav-btn.active {

    color: #e0245e;

}

.product-media video {

    position: absolute;
    inset: 0;
    width: 100%;
    height: 380px;
    object-fit: contain;
    background: #0b0b0b;
    opacity: 0;
    transition: .35s;

}

.product-media:hover video {

    opacity: 1;

}

.product-media .play-icon {

    position: absolute;
    right: 15px;
    bottom: 15px;
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, .55);
    color: #fff;
    border-radius: 50%;
    font-size: 13px;
    pointer-events: none;
    transition: .35s;

}

.product-media:hover .play-icon {

    opacity: 0;

}

.product h3 {

    margin: 25px 25px 10px;

    font-size: 23px;

    font-weight: 600;

}

.product span {

    margin-left: 25px;

    display: block;

    color: #777;

    font-size: 20px;

    margin-bottom: 20px;

}

.product button {

    width: calc(100% - 50px);

    margin: auto 25px 25px;

    padding: 16px;

    border: none;

    background: #111;

    color: white;

    cursor: pointer;

    transition: .35s;

    font-size: 15px;

}

.product button:hover {

    background: #444;

}

/*=========================================
        PROMOCIÓN
=========================================*/

.promo {

    padding: 70px;

    background: #111;

    color: #fff;

    text-align: center;

}

.promo h2 {

    font-size: 42px;

    margin-bottom: 10px;

    letter-spacing: 3px;

}

.promo p {

    font-size: 18px;

}

/*=========================================
        COLECCIÓN
=========================================*/

.collection {

    display: grid;

    grid-template-columns: 1fr 1fr;

    min-height: 380px;

}

.collection-image {

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    background: #0b0b0b;

}

.collection-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

}

.collection-image video {

    max-width: 100%;

    max-height: 100%;

    display: block;

}

.collection-info {

    display: flex;

    justify-content: center;

    align-items: flex-start;

    flex-direction: column;

    padding: 90px;

    background: white;

}

.collection-info span {

    text-transform: uppercase;

    color: #999;

    letter-spacing: 3px;

    margin-bottom: 20px;

}

.collection-info h2 {

    font-family: 'Cormorant Garamond', serif;

    font-size: 60px;

    margin-bottom: 30px;

}

.collection-info p {

    color: #666;

    line-height: 1.9;

    margin-bottom: 30px;

}

.link-video {

    background: none;
    border: none;
    padding: 0;
    margin-bottom: 30px;
    font-family: inherit;
    font-size: 15px;
    color: #111;
    text-decoration: underline;
    cursor: pointer;

}

.collection-gallery {

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    width: 100%;
    margin-bottom: 40px;

}

.collection-gallery img {

    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 6px;

}

/*=========================================
        BENEFICIOS
=========================================*/

.benefits {

    padding: 120px 0;

    background: #f8f8f8;

}

.benefits .container {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 35px;

}

.benefit {

    background: white;

    text-align: center;

    padding: 45px 25px;

    transition: .35s;

}

.benefit:hover {

    transform: translateY(-8px);

    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);

}

.benefit i {

    font-size: 45px;

    margin-bottom: 25px;

}

.benefit h3 {

    margin-bottom: 15px;

}

.benefit p {

    color: #666;

}

/*=========================================
        ABOUT
=========================================*/

.about {

    padding: 120px 0;

}

.about .container {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;

}

.about span {

    color: #999;

    letter-spacing: 3px;

}

.about h2 {

    font-family: 'Cormorant Garamond', serif;

    font-size: 58px;

    margin: 20px 0;

}

.about p {

    line-height: 1.9;

    color: #666;

    margin-bottom: 35px;

}

.about img {

    border-radius: 10px;

}

/*=========================================
        INSTAGRAM
=========================================*/

.instagram {

    padding: 100px 0;

}

.instagram h2 {

    text-align: center;

    font-family: 'Cormorant Garamond', serif;

    font-size: 52px;

    margin-bottom: 50px;

}

.gallery {

    display: grid;

    grid-template-columns: repeat(6, 1fr);

}

.gallery img {

    height: 260px;

    object-fit: cover;

    transition: .35s;

}

.gallery img:hover {

    transform: scale(1.08);

}

/*=========================================
        NEWSLETTER
=========================================*/

.newsletter {

    padding: 120px 20px;

    background: #111;

    color: #fff;

    text-align: center;

}

.newsletter h2 {

    font-family: 'Cormorant Garamond', serif;

    font-size: 55px;

    margin-bottom: 20px;

}

.newsletter p {

    max-width: 650px;

    margin: 0 auto 40px;

    color: #ddd;

    line-height: 1.8;

}

.newsletter form {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 15px;

    flex-wrap: wrap;

}

.newsletter input {

    width: 420px;

    max-width: 100%;

    padding: 18px;

    border: none;

    outline: none;

    font-size: 16px;

}

.newsletter button {

    padding: 18px 40px;

    border: none;

    background: white;

    color: #111;

    cursor: pointer;

    transition: .3s;

    font-weight: 600;

}

.newsletter button:hover {

    background: #d9d9d9;

}

/*=========================================
        FOOTER
=========================================*/

footer {

    background: #0b0b0b;

    color: white;

    padding-top: 90px;

}

.footer-container {

    width: 90%;

    max-width: 1300px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    gap: 100px;

}

.footer-logo {

    color: #fff;

    text-align: center;

}

.footer-container > div:nth-child(3) {

    text-align: center;

    justify-self: end;

}

.footer-logo .social {

    margin-top: 20px;

}

.footer-container h3 {

    margin-bottom: 25px;

    font-size: 24px;

}

.footer-container p {

    color: #bbb;

    line-height: 1.8;

}

.footer-container ul li {

    margin-bottom: 15px;

}

.footer-container ul li a {

    color: #bbb;

    transition: .3s;

}

.footer-container ul li a:hover {

    color: white;

    padding-left: 8px;

}

.social {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    font-size: 22px;

}

.newsletter .social {

    font-size: 28px;

    color: #fff;

}

.social i {

    cursor: pointer;

    transition: .35s;

}

.social i:hover {

    transform: translateY(-5px);

}

.copy {

    border-top: 1px solid #222;

    margin-top: 60px;

    text-align: center;

    padding: 25px;

    color: #999;

    font-size: 14px;

}

/*=========================================
            NOSOTROS
=========================================*/

.about {

    padding: 120px 0;
    background: #ffffff;

}

.about .container {

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px;
    align-items: center;

}

.about-text span {

    display: block;
    color: #999;
    font-size: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;

}

.about-text h2 {

    font-family: 'Cormorant Garamond', serif;
    font-size: 60px;
    margin-bottom: 30px;
    color: #111;

}

.about-text p {

    color: #666;
    line-height: 2;
    font-size: 17px;
    margin-bottom: 20px;
    text-align: justify;

}

.about-image {

    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);

}

.about-image img {

    width: 100%;
    transition: .5s;

}

.about-image:hover img {

    transform: scale(1.08);

}

/*=========================================
        TÉRMINOS Y CONDICIONES
=========================================*/

.terms {

    padding: 100px 0;

}

.terms .container {

    max-width: 800px;

}

.terms-item {

    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border);

}

.terms-item:last-child {

    border-bottom: none;

}

.terms-item h3 {

    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    margin-bottom: 12px;

}

.terms-item p {

    color: #666;
    line-height: 1.9;

}

/*=========================================
        DETALLE DE PRODUCTO
=========================================*/

.product-detail {

    padding: 160px 0 100px;

}

.pd-back {

    display: inline-block;
    margin-bottom: 40px;
    color: #777;
    font-size: 14px;
    transition: .3s;

}

.pd-back:hover {

    color: #111;

}

.pd-grid {

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;

}

.pd-gallery,
.pd-info {

    min-width: 0;

}

.pd-gallery-main {

    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #0b0b0b;

}

.pd-gallery-main img {

    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;

}

.pd-gallery-main video {

    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;

}

#pd-main {

    width: 100%;
    height: 100%;

}

.pd-arrow {

    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .85);
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    z-index: 6;
    transition: .3s;

}

.pd-arrow:hover {

    background: #fff;
    transform: translateY(-50%) scale(1.08);

}

.pd-arrow-prev {

    left: 15px;

}

.pd-arrow-next {

    right: 15px;

}

.pd-thumbs {

    display: flex;
    gap: 12px;
    margin-top: 15px;
    overflow-x: auto;
    padding-bottom: 5px;

}

.pd-thumb {

    position: relative;
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    background: #0b0b0b;
    transition: .3s;

}

.pd-thumb img {

    width: 100%;
    height: 100%;
    object-fit: contain;

}

.pd-thumb.active {

    border-color: #111;

}

.pd-thumb.is-video::after {

    content: "\f04b";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(0, 0, 0, .4);
    font-size: 13px;

}

.pd-label {

    text-transform: uppercase;
    color: #999;
    letter-spacing: 3px;
    font-size: 14px;

}

.pd-info h1 {

    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    margin: 12px 0 18px;

}

.pd-price {

    display: block;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 25px;

}

.pd-description {

    color: #666;
    line-height: 1.9;
    margin-bottom: 25px;

}

.pd-details {

    margin-bottom: 35px;

}

.pd-details li {

    position: relative;
    color: #555;
    padding-left: 24px;
    margin-bottom: 12px;

}

.pd-details li::before {

    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #111;
    font-size: 12px;

}

.pd-actions {

    display: flex;
    align-items: center;
    gap: 15px;

}

.pd-add-btn {

    flex: 1;
    border: none;
    font-family: inherit;
    font-size: 15px;

}

.pd-fav-btn {

    width: 56px;
    min-width: 56px;
    height: 56px;
    padding: 0;
    margin: 0;
    line-height: 1;
    appearance: none;
    -webkit-appearance: none;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: .3s;

}

.pd-fav-btn:hover {

    transform: scale(1.08);

}

.pd-fav-btn.active {

    color: #e0245e;
    border-color: #e0245e;

}

.pd-policy {

    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: #999;
    font-size: 13px;

}

/*=========================================
        HERO PÁGINAS INTERNAS (Nosotros, etc.)
=========================================*/

.hero-page {

    height: 70vh;

}

.hero-page .overlay {

    background: rgba(0, 0, 0, .45);

}

.hero-page .hero-content {

    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);

}

/*=========================================
            BENEFICIOS
=========================================*/

.benefits {

    background: #f8f8f8;
    padding: 100px 0;

}

.benefits .container {

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;

}

.benefit {

    background: white;
    padding: 45px 30px;
    text-align: center;
    transition: .35s;
    border-radius: 8px;

}

.benefit:hover {

    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);

}

.benefit i {

    font-size: 48px;
    margin-bottom: 20px;
    color: #111;

}

.benefit h3 {

    margin-bottom: 15px;
    font-size: 24px;

}

.benefit p {

    color: #777;
    line-height: 1.8;

}

/*=========================================
            RESPONSIVE
=========================================*/

@media(max-width:900px) {

    .about .container {

        grid-template-columns: 1fr;

    }

    .pd-grid {

        grid-template-columns: 1fr;

    }

    .side-drawer {

        width: 100%;

    }

    .hero-page .hero-content h1 {

        font-size: 50px;

    }

    .benefits .container {

        grid-template-columns: 1fr;

    }

}

@media(max-width:600px) {

    .hero-page {

        height: 55vh;

    }

    .hero-page .hero-content h1 {

        font-size: 40px;

    }

    .hero-page .hero-content p {

        font-size: 16px;

    }

    .about {

        padding: 70px 20px;

    }

    .about-text h2 {

        font-size: 42px;

    }

    .about-text p {

        font-size: 16px;

    }

}

/*=========================================
        ANIMACIONES
=========================================*/

@keyframes zoom {

    from {

        transform: scale(1);

    }

    to {

        transform: scale(1.15);

    }

}

.fade {

    opacity: 0;

    transform: translateY(50px);

    transition: 1s;

}

.fade.show {

    opacity: 1;

    transform: translateY(0);

}

/*=========================================
        BOTÓN
        VOLVER ARRIBA
=========================================*/

#top {

    position: fixed;

    right: 30px;

    bottom: 30px;

    width: 55px;

    height: 55px;

    background: #111;

    color: white;

    display: flex;

    justify-content: center;

    align-items: center;

    border-radius: 50%;

    cursor: pointer;

    opacity: 0;

    visibility: hidden;

    transition: .4s;

    z-index: 999;

}

.whatsapp-float {

    position: fixed;

    left: 25px;

    bottom: 30px;

    width: 58px;

    height: 58px;

    background: #25D366;

    color: white;

    display: flex;

    justify-content: center;

    align-items: center;

    border-radius: 50%;

    font-size: 28px;

    box-shadow: 0 6px 20px rgba(0, 0, 0, .25);

    transition: .3s;

    z-index: 999;

}

.whatsapp-float:hover {

    transform: scale(1.08);

    background: #1ebe57;

}

#top.active {

    opacity: 1;

    visibility: visible;

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:1100px) {

    .collection {

        grid-template-columns: 1fr;

    }

    .about .container {

        grid-template-columns: 1fr;

    }

    .benefits .container {

        grid-template-columns: repeat(2, 1fr);

    }

    .how-steps {

        grid-template-columns: repeat(2, 1fr);

    }

    .cards {

        grid-template-columns: repeat(2, 1fr);

    }

    .gallery {

        grid-template-columns: repeat(3, 1fr);

    }

}

@media(max-width:768px) {

    .footer-container {

        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 50px;

    }

    .footer-container > div:not(.footer-logo) {

        order: 2;

    }

    .footer-logo {

        order: 1;

    }

    .footer-container > div:nth-child(3) {

        text-align: center;

        justify-self: center;

    }

    header {

        padding: 20px;

    }

    .menu {

        display: block;

    }

    nav {

        position: fixed;
        top: 0;
        right: -100%;
        width: 270px;
        height: 100vh;
        background: #fff;
        z-index: 1000;
        transition: .4s;
        box-shadow: -15px 0 35px rgba(0, 0, 0, .12);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 60px;

    }

    .nav-mark {

        display: block;
        width: 75%;
        max-width: 190px;
        margin-bottom: 40px;
        flex-shrink: 0;

    }

    .nav-mark img {

        width: 100%;

    }

    nav ul {

        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex: 1;
        gap: 35px;

    }

    nav.active {

        right: 0;

    }

    .menu-backdrop {

        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .4);
        z-index: 998;

    }

    .menu-backdrop.active {

        display: block;

    }

    .hero-content h1 {

        font-size: 50px;

    }

    .hero-content {

        left: 8%;

    }

    .cards {

        grid-template-columns: 1fr;

    }

    .products-grid {

        grid-template-columns: 1fr;

    }

    .how-steps {

        grid-template-columns: 1fr;

    }

    .gallery {

        grid-template-columns: repeat(2, 1fr);

    }

    .benefits .container {

        grid-template-columns: 1fr;

    }

    .newsletter input {

        width: 100%;

    }

    .newsletter button {

        width: 100%;

    }

}

@media(max-width:500px) {

    .logo {

        font-size: 22px;
        letter-spacing: 4px;

    }

    .hero-content h1 {

        font-size: 40px;

    }

    .products h2,
    .categories h2,
    .instagram h2,
    .newsletter h2 {

        font-size: 38px;

    }

    .collection-info {

        padding: 45px;

    }

    .collection-info h2 {

        font-size: 42px;

    }

    .gallery {

        grid-template-columns: 1fr;

    }

    .gallery img {

        height: 300px;

    }

}