@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #d62828;
    --secondary-color: #003049;
    --background-color: #f8f9fa;
    --light-color: #eae2b7;
    --dark-color: #212529;
    --text-color: #333;
    --text-light: #6c757d;
    --white: #fff;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #17a2b8;
}

html {
    font-size: 62.5%;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* ********************************** */
/*             UTILIDADES             */
/* ********************************** */
.container {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.heading-1 {
    text-align: center;
    font-weight: 600;
    font-size: 3.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 1rem;
}

.heading-1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8rem;
    height: 0.3rem;
    background-color: var(--primary-color);
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 0.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.section {
    padding: 5rem 0;
}

/* ********************************** */
/*               HEADER               */
/* ********************************** */
.container-hero {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.customer-support {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.customer-support i {
    font-size: 2.8rem;
    color: var(--primary-color);
}

.content-customer-support {
    display: flex;
    flex-direction: column;
}

.content-customer-support .text {
    font-size: 1.2rem;
    color: var(--text-light);
}

.content-customer-support .number {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-color);
}

.container-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.container-logo i {
    font-size: 3.2rem;
    color: var(--primary-color);
}

.container-logo h1 a {
    text-decoration: none;
    color: var(--secondary-color);
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    font-weight: 700;
}

.container-user {
    display: flex;
    gap: 1.5rem;
    cursor: pointer;
    align-items: center;
}

.container-user .fa-user {
    font-size: 2.8rem;
    color: var(--primary-color);
    padding-right: 2rem;
    border-right: 1px solid #e2e2e2;
}

.container-user .fa-basket-shopping {
    font-size: 2.8rem;
    color: var(--primary-color);
    padding-left: 1rem;
}

.content-shopping-cart {
    display: flex;
    flex-direction: column;
    position: relative;
}

.content-shopping-cart .text {
    font-size: 1.2rem;
    color: var(--text-light);
}

.content-shopping-cart .number {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-color);
}

.cart-count {
    position: absolute;
    top: -0.8rem;
    right: -0.8rem;
    background-color: var(--danger-color);
    color: var(--white);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
}

/* ************* NAVBAR ************* */
.container-navbar {
    background-color: var(--secondary-color);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.navbar .fa-bars {
    display: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
}

.menu {
    display: flex;
    gap: 2.5rem;
}

.menu li {
    list-style: none;
}

.menu a {
    text-decoration: none;
    font-size: 1.4rem;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.menu a::after {
    content: '';
    width: 0;
    height: 0.2rem;
    background-color: var(--primary-color);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.menu a:hover::after {
    width: 100%;
}

.menu a:hover {
    color: var(--primary-color);
}

.search-form {
    position: relative;
    display: flex;
    align-items: center;
    border: 2px solid var(--white);
    border-radius: 2rem;
    background-color: var(--white);
    height: 4rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.search-form:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.search-form input {
    outline: none;
    font-family: inherit;
    border: none;
    width: 25rem;
    font-size: 1.4rem;
    padding: 0 2rem;
    color: var(--text-color);
    cursor: pointer;
}

.search-form input::-webkit-search-cancel-button {
    appearance: none;
}

.search-form .btn-search {
    border: none;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 1rem;
    transition: all 0.3s ease;
}

.search-form .btn-search:hover {
    background-color: var(--secondary-color);
}

.btn-search i {
    font-size: 1.8rem;
    color: var(--white);
}

/* ********************************** */
/*             BANNER SLIDER          */
/* ********************************** */
.banner-slider {
    position: relative;
    width: 100%;
    height: 60rem;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 50rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 1rem;
}

.slide-content h2 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.slide-content p {
    font-size: 1.6rem;
    margin-bottom: 2rem;
}

.btn-slider {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 3rem;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-slider:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.slider-controls {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
}

.slider-controls span {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-controls span.active {
    background-color: var(--white);
    transform: scale(1.2);
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 5rem;
    height: 5rem;
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.prev:hover, .next:hover {
    background-color: var(--primary-color);
}

.prev {
    left: 2rem;
}

.next {
    right: 2rem;
}

/* ********************************** */
/*            MAIN CONTENT            */
/* ********************************** */
.main-content {
    background-color: var(--background-color);
}

/* ********************************** */
/*            QUICK ACCESS            */
/* ********************************** */
.quick-access {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 3rem 0;
    background-color: var(--white);
    margin-bottom: 3rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.quick-access-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-access-item a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.quick-access-item i {
    font-size: 3rem;
    color: var(--primary-color);
    background-color: var(--light-color);
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.quick-access-item span {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-color);
    text-transform: uppercase;
}

.quick-access-item:hover i {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

.quick-access-item:hover span {
    color: var(--primary-color);
}

/* ********************************** */
/*              FEATURES              */
/* ********************************** */
.container-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    padding: 3rem 0;
}

.card-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background-color: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.card-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card-feature i {
    font-size: 3rem;
    color: var(--primary-color);
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-content span {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--dark-color);
}

.feature-content p {
    color: var(--text-light);
    font-weight: 500;
    font-size: 1.2rem;
}

/* ********************************** */
/*             CATEGORIES             */
/* ********************************** */
.top-categories {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.container-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.card-category {
    height: 25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 2rem;
    gap: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.card-category:hover {
    transform: scale(1.03);
}

.card-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
}

.category-moca {
    background-image: url('img/camiseta-clasica.jpg');
    background-size: cover;
    background-position: center;
}

.category-capuchino {
    background-image: url('img/camiseta-seleccion.jpg');
    background-size: cover;
    background-position: center;
}

.category-expreso {
    background-image: url('img/camiseta-edicion-especial.jpg');
    background-size: cover;
    background-position: center;
}

.card-category p {
    font-size: 2.5rem;
    color: var(--white);
    text-transform: capitalize;
    position: relative;
    z-index: 1;
    font-weight: 600;
}

.card-category p::after {
    content: '';
    width: 3rem;
    height: 0.3rem;
    background-color: var(--primary-color);
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
}

.card-category span {
    font-size: 1.6rem;
    color: var(--white);
    cursor: pointer;
    z-index: 1;
    font-weight: 500;
    transition: all 0.3s ease;
}

.card-category span:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* ********************************** */
/*            TOP PRODUCTS            */
/* ********************************** */
.top-products {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.container-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.container-options span {
    color: var(--text-color);
    background-color: var(--white);
    padding: 1rem 3rem;
    font-size: 1.4rem;
    text-transform: capitalize;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.container-options span:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.container-options span.active {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Products */
.container-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 3rem;
}

.card-product {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.card-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.container-img {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
}

.container-img img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    transition: all 0.5s ease;
}

.card-product:hover .container-img img {
    transform: scale(1.05);
}

.container-img .discount {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    z-index: 1;
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: absolute;
    top: 1rem;
    right: -4rem;
    z-index: 2;
    transition: all 0.4s ease;
}

.button-group span {
    border: 1px solid var(--primary-color);
    padding: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s ease;
    background-color: var(--white);
}

.button-group span:hover {
    background-color: var(--primary-color);
}

.button-group span i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.button-group span:hover i {
    color: var(--white);
}

.card-product:hover .button-group {
    right: 1rem;
}

.content-card-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, min-content);
    row-gap: 1rem;
    padding-top: 1.5rem;
}

.stars {
    grid-row: 1/2;
    grid-column: 1/-1;
    display: flex;
    gap: 0.3rem;
}

.stars i {
    font-size: 1.4rem;
    color: var(--warning-color);
}

.content-card-product h3 {
    grid-row: 2/3;
    grid-column: 1/-1;
    font-weight: 500;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 4rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.content-card-product h3:hover {
    color: var(--primary-color);
}

.product-description {
    grid-row: 3/4;
    grid-column: 1/-1;
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.4;
    height: 3.6rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.add-cart {
    justify-self: start;
    border: 2px solid var(--primary-color);
    padding: 1rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
}

.add-cart:hover {
    background-color: var(--primary-color);
}

.add-cart i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.add-cart:hover i {
    color: var(--white);
}

.content-card-product .price {
    justify-self: end;
    align-self: center;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--dark-color);
}

.content-card-product .price span {
    font-size: 1.4rem;
    font-weight: 400;
    text-decoration: line-through;
    color: var(--text-light);
    margin-left: 0.5rem;
}

/* ********************************** */
/*               GALLERY              */
/* ********************************** */
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 30rem);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    transition: all 0.5s ease;
    cursor: pointer;
}

.gallery img:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.gallery-img-3 {
    grid-column: 2/4;
    grid-row: 1/3;
}

/* ********************************** */
/*              SPECIALS              */
/* ********************************** */
.specials {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

/* ********************************** */
/*               CATALOG              */
/* ********************************** */
.catalog-section {
    background-color: var(--white);
    padding: 5rem 0;
    border-radius: 2rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.catalog-container {
    display: grid;
    grid-template-columns: 25rem 1fr;
    gap: 3rem;
}

.filters {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: 1rem;
    height: fit-content;
}

.filters h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.filter-group {
    margin-bottom: 2rem;
}

.filter-group h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.size-options label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.3rem;
    font-weight: 500;
}

.size-options label:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.size-options input[type="checkbox"] {
    display: none;
}

.size-options input[type="checkbox"]:checked + label {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.year-select, .team-select, .sort-select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    font-size: 1.4rem;
    color: var(--text-color);
    background-color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.year-select:hover, .team-select:hover, .sort-select:hover {
    border-color: var(--primary-color);
}

.price-range {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-slider {
    width: 100%;
    height: 0.5rem;
    -webkit-appearance: none;
    appearance: none;
    background: #ddd;
    outline: none;
    border-radius: 1rem;
}

.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
}

.price-slider::-moz-range-thumb {
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
}

.price-values {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    color: var(--text-light);
}

.player-search {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    font-size: 1.4rem;
    color: var(--text-color);
}

.btn-apply-filters, .btn-reset-filters {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-apply-filters {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-apply-filters:hover {
    background-color: var(--secondary-color);
}

.btn-reset-filters {
    background-color: var(--light-color);
    color: var(--dark-color);
}

.btn-reset-filters:hover {
    background-color: #ddd;
}

.catalog-products {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.sort-options span {
    font-size: 1.4rem;
    color: var(--text-light);
}

.sort-select {
    width: 20rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(22rem, 1fr));
    gap: 2rem;
}

.catalog-product {
    background-color: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.catalog-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.catalog-product img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    transition: all 0.3s ease;
}

.catalog-product:hover img {
    transform: scale(1.05);
}

.catalog-product h4 {
    font-size: 1.5rem;
    font-weight: 500;
    padding: 1rem;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.catalog-product:hover h4 {
    color: var(--primary-color);
}

.catalog-product .price {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-color);
    padding: 0 1rem 1.5rem;
}

.btn-view {
    width: 100%;
    padding: 1rem;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-view:hover {
    background-color: var(--primary-color);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.page-btn {
    width: 4rem;
    height: 4rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.page-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.page-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.next-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    background-color: var(--secondary-color);
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.next-btn:hover {
    background-color: var(--primary-color);
}

/* ********************************** */
/*          PRODUCT DETAIL PAGE       */
/* ********************************** */
.product-page {
    background-color: var(--white);
    padding: 5rem 0;
    border-radius: 2rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.product-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.main-image {
    width: 100%;
    height: 45rem;
    border-radius: 1rem;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.main-image:hover img {
    transform: scale(1.02);
}

.thumbnail-images {
    display: flex;
    gap: 1rem;
}

.thumbnail {
    width: 8rem;
    height: 8rem;
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail:hover {
    border-color: var(--primary-color);
}

.thumbnail.active {
    border-color: var(--primary-color);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-code {
    font-size: 1.3rem;
    color: var(--text-light);
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating i {
    font-size: 1.4rem;
    color: var(--warning-color);
}

.rating span {
    font-size: 1.3rem;
    color: var(--text-light);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.current-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.old-price {
    font-size: 2rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.discount-badge {
    background-color: var(--success-color);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 0.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.product-description h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.product-description p {
    font-size: 1.4rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-description ul {
    margin-left: 2rem;
    margin-bottom: 2rem;
}

.product-description ul li {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.size-selection h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.size-options {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.size-option {
    padding: 1rem 1.5rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-option:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.size-option.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.size-guide {
    font-size: 1.3rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.size-guide:hover {
    text-decoration: underline;
}

.product-actions {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    overflow: hidden;
}

.quantity-minus, .quantity-plus {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-color);
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-minus:hover, .quantity-plus:hover {
    background-color: #ddd;
}

.quantity-input {
    width: 6rem;
    height: 4rem;
    border: none;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--dark-color);
}

.btn-add-to-cart {
    flex: 1;
    padding: 1rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 0.5rem;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-to-cart:hover {
    background-color: var(--secondary-color);
}

.btn-wishlist {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-color);
    border: none;
    border-radius: 0.5rem;
    font-size: 1.6rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-wishlist:hover {
    background-color: var(--danger-color);
    color: var(--white);
}

.product-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.product-share span {
    font-size: 1.4rem;
    color: var(--text-light);
}

.product-share a {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-color);
    border-radius: 50%;
    font-size: 1.6rem;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.product-share a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.product-tabs {
    margin-top: 5rem;
}

.tabs-header {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 1.5rem 3rem;
    background: none;
    border: none;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active::after {
    width: 100%;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.historic-image {
    width: 100%;
    height: 30rem;
    object-fit: cover;
    border-radius: 1rem;
    margin-top: 2rem;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid #eee;
}

.specs-table th, .specs-table td {
    padding: 1.5rem;
    text-align: left;
    font-size: 1.4rem;
}

.specs-table th {
    color: var(--dark-color);
    font-weight: 600;
    width: 30%;
}

.specs-table td {
    color: var(--text-light);
}

.review-summary {
    display: flex;
    gap: 5rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #eee;
}

.average-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.average {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.average-rating .stars {
    margin-bottom: 0.5rem;
}

.average-rating span {
    font-size: 1.4rem;
    color: var(--text-light);
}

.rating-bars {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rating-bar span {
    font-size: 1.4rem;
    color: var(--text-light);
    min-width: 8rem;
}

.bar-container {
    flex: 1;
    height: 1rem;
    background-color: #eee;
    border-radius: 1rem;
    overflow: hidden;
}

.bar {
    height: 100%;
    background-color: var(--warning-color);
}

.rating-bar span:last-child {
    min-width: 3rem;
    text-align: right;
}

.review-form {
    margin-bottom: 5rem;
    padding: 3rem;
    background-color: var(--background-color);
    border-radius: 1rem;
}

.review-form h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.rating-input {
    display: flex;
    gap: 0.5rem;
}

.rating-input i {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rating-input i.active {
    color: var(--warning-color);
}

#review-title, #review-text {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    font-size: 1.4rem;
    font-family: inherit;
    resize: none;
}

#review-text {
    height: 15rem;
}

.btn-submit-review {
    padding: 1.5rem 3rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 0.5rem;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-review:hover {
    background-color: var(--secondary-color);
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.review {
    padding-bottom: 3rem;
    border-bottom: 1px solid #eee;
}

.review:last-child {
    border-bottom: none;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.review-author {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--dark-color);
}

.review-rating {
    display: flex;
    gap: 0.3rem;
}

.review-rating i {
    font-size: 1.4rem;
    color: var(--warning-color);
}

.review-date {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-left: auto;
}

.review-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.review-text {
    font-size: 1.4rem;
    color: var(--text-light);
    line-height: 1.6;
}

.related-products {
    margin-top: 5rem;
}

.related-products h3 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 1rem;
}

.related-products h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 6rem;
    height: 0.3rem;
    background-color: var(--primary-color);
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
    gap: 2rem;
}

.related-product {
    background-color: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.related-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.related-product img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
}

.related-product h4 {
    font-size: 1.5rem;
    font-weight: 500;
    padding: 1.5rem;
    color: var(--dark-color);
}

.related-product .price {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-color);
    padding: 0 1.5rem 1.5rem;
}

/* ********************************** */
/*           SHOPPING CART           */
/* ********************************** */
.shopping-cart {
    background-color: var(--white);
    padding: 5rem 0;
    border-radius: 2rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.cart-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 10rem 1fr 15rem 10rem 5rem;
    gap: 2rem;
    padding: 2rem;
    background-color: var(--background-color);
    border-radius: 1rem;
    align-items: center;
}

.item-image {
    width: 10rem;
    height: 10rem;
    border-radius: 0.5rem;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.item-details h3 {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--dark-color);
}

.item-code {
    font-size: 1.2rem;
    color: var(--text-light);
}

.item-size {
    font-size: 1.3rem;
    color: var(--dark-color);
    font-weight: 500;
}

.item-price {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-color);
}

.item-quantity {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quantity-minus, .quantity-plus {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-color);
    border: none;
    border-radius: 0.5rem;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-minus:hover, .quantity-plus:hover {
    background-color: #ddd;
}

.quantity-input {
    width: 5rem;
    height: 3rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
}

.item-subtotal p {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--dark-color);
}

.btn-remove {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--danger-color);
    color: var(--white);
    border: none;
    border-radius: 0.5rem;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-remove:hover {
    background-color: #c82333;
}

.cart-summary {
    background-color: var(--background-color);
    padding: 3rem;
    border-radius: 1rem;
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.cart-summary h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
    padding-bottom: 1rem;
    border-bottom: 1px solid #ddd;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.4rem;
    color: var(--text-color);
}

.summary-row span:last-child {
    font-weight: 600;
}

.discount-row span:last-child {
    color: var(--success-color);
}

.total-row {
    font-size: 1.8rem;
    font-weight: 700;
    padding-top: 1.5rem;
    border-top: 1px solid #ddd;
}

.btn-checkout {
    width: 100%;
    padding: 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 0.5rem;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.btn-checkout:hover {
    background-color: var(--secondary-color);
}

.btn-continue-shopping {
    width: 100%;
    padding: 1.5rem;
    background-color: var(--light-color);
    color: var(--dark-color);
    border: none;
    border-radius: 0.5rem;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: block;
}

.btn-continue-shopping:hover {
    background-color: #ddd;
}

.payment-methods {
    margin-top: 3rem;
}

.payment-methods p {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.payment-icons {
    display: flex;
    gap: 1rem;
}

.payment-icons i {
    font-size: 3rem;
    color: var(--text-light);
}

/* ********************************** */
/*             CONTACT SECTION        */
/* ********************************** */
.contact-section {
    background-color: var(--white);
    padding: 5rem 0;
    border-radius: 2rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 1rem;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 6rem;
    height: 0.3rem;
    background-color: var(--primary-color);
}

.contact-info p {
    font-size: 1.4rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-info p i {
    font-size: 1.8rem;
    color: var(--primary-color);
    min-width: 3rem;
}

.social-media h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 1rem;
}

.social-media h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 6rem;
    height: 0.3rem;
    background-color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.whatsapp-contact h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 1rem;
}

.whatsapp-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 6rem;
    height: 0.3rem;
    background-color: var(--primary-color);
}

.whatsapp-contact p {
    font-size: 1.4rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background-color: #25D366;
    color: var(--white);
    text-decoration: none;
    border-radius: 0.5rem;
    font-size: 1.6rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.whatsapp-btn i {
    font-size: 2rem;
}

.contact-form {
    background-color: var(--background-color);
    padding: 3rem;
    border-radius: 1rem;
}

.contact-form h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 1rem;
}

.contact-form h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 6rem;
    height: 0.3rem;
    background-color: var(--primary-color);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    font-size: 1.4rem;
    font-family: inherit;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(214, 40, 40, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 15rem;
}

.btn-submit {
    width: 100%;
    padding: 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 0.5rem;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
}

.store-location {
    grid-column: 1 / -1;
}

.store-location h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 1rem;
}

.store-location h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 6rem;
    height: 0.3rem;
    background-color: var(--primary-color);
}

.map-container {
    width: 100%;
    height: 40rem;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 2rem;
}

.store-location p {
    font-size: 1.4rem;
    color: var(--text-color);
    line-height: 1.6;
}

/* ********************************** */
/*               FOOTER               */
/* ********************************** */
.footer {
    background-color: var(--secondary-color);
    color: var(--white);
}

.container-footer {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding: 5rem 0 3rem;
}

.menu-footer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.title-footer {
    font-weight: 600;
    font-size: 1.8rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
    color: var(--white);
}

.title-footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 6rem;
    height: 0.3rem;
    background-color: var(--primary-color);
}

.contact-info,
.information,
.my-account,
.newsletter {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info ul,
.information ul,
.my-account ul {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info ul li,
.information ul li,
.my-account ul li {
    list-style: none;
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 300;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    line-height: 1.6;
}

.contact-info ul li i,
.information ul li i,
.my-account ul li i {
    font-size: 1.6rem;
    color: var(--primary-color);
    min-width: 2rem;
}

.information ul li a,
.my-account ul li a {
    text-decoration: none;
    color: var(--white);
    font-weight: 300;
    transition: all 0.3s ease;
}

.information ul li a:hover,
.my-account ul li a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.newsletter .content p {
    font-size: 1.4rem;
    color: var(--white);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.newsletter .content input {
    width: 100%;
    padding: 1.2rem;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    background-color: transparent;
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.newsletter .content input:focus {
    border-bottom-color: var(--primary-color);
    outline: none;
}

.newsletter .content input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter .content button {
    width: 100%;
    padding: 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 0.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.newsletter .content button:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    font-size: 1.4rem;
    color: var(--white);
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.payment-methods img {
    height: 3rem;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.payment-methods img:hover {
    opacity: 1;
}

/* ********************************** */
/*       MEDIA QUERIES -- 1200px      */
/* ********************************** */
@media (max-width: 1200px) {
    .gallery {
        grid-template-rows: repeat(2, 25rem);
    }
    
    .product-detail {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .main-image {
        height: 35rem;
    }
    
    .cart-container {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ********************************** */
/*       MEDIA QUERIES -- 992px       */
/* ********************************** */
@media (max-width: 992px) {
    .container-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .container-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-moca {
        grid-column: 1/2;
    }
    
    .category-expreso {
        grid-column: 2/3;
    }
    
    .category-capuchino {
        grid-column: 1/3;
    }
    
    .gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 20rem);
    }
    
    .gallery-img-3 {
        grid-column: 1/3;
        grid-row: 2/4;
    }
    
    .menu-footer {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ********************************** */
/*       MEDIA QUERIES -- 768px       */
/* ********************************** */
@media (max-width: 768px) {
    html {
        font-size: 55%;
    }

    .hero {
        padding: 1.5rem 2rem;
    }

    .customer-support {
        display: none;
    }

    .content-shopping-cart {
        display: none;
    }

    .navbar {
        padding: 1rem 2rem;
    }

    .navbar .fa-bars {
        display: block;
        color: var(--white);
        font-size: 2.5rem;
    }

    .menu {
        position: fixed;
        top: 8rem;
        left: -100%;
        width: 80%;
        height: calc(100vh - 8rem);
        background-color: var(--secondary-color);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3rem;
        transition: all 0.5s ease;
        z-index: 999;
    }

    .menu.active {
        left: 0;
    }

    .search-form {
        display: none;
    }

    .content-banner {
        max-width: 50rem;
        margin: 0 auto;
        padding: 20rem 2rem;
    }

    .heading-1 {
        font-size: 3rem;
    }

    .card-category {
        height: 18rem;
    }

    .card-category p {
        font-size: 2.2rem;
    }

    .card-category span {
        font-size: 1.6rem;
    }

    .container-options span {
        padding: 1rem 2rem;
        font-size: 1.6rem;
    }

    .container-products {
        grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    }

    .container-blogs {
        grid-template-columns: repeat(2, 1fr);
        height: auto;
    }

    .menu-footer {
        grid-template-columns: repeat(2, 1fr);
    }

    .copyright {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .catalog-container {
        grid-template-columns: 1fr;
    }
    
    .cart-item {
        grid-template-columns: 8rem 1fr;
        grid-template-rows: repeat(3, auto);
    }
    
    .item-quantity {
        grid-column: 1/2;
        grid-row: 2/3;
    }
    
    .item-subtotal {
        grid-column: 2/3;
        grid-row: 2/3;
        justify-self: end;
    }
    
    .item-remove {
        grid-column: 1/3;
        grid-row: 3/4;
        justify-self: end;
    }
}

/* ********************************** */
/*       MEDIA QUERIES -- 576px       */
/* ********************************** */
@media (max-width: 576px) {
    html {
        font-size: 50%;
    }

    .heading-1 {
        font-size: 2.8rem;
    }

    .container-features {
        grid-template-columns: 1fr;
    }

    .card-feature {
        flex-direction: row;
        align-items: center;
    }

    .feature-content {
        align-items: flex-start;
    }

    .container-categories {
        grid-template-columns: 1fr;
    }

    .category-moca,
    .category-expreso,
    .category-capuchino {
        grid-column: 1/2;
    }

    .container-options {
        flex-direction: column;
        gap: 1rem;
    }

    .container-options span {
        width: 100%;
        text-align: center;
    }

    .gallery {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 20rem);
    }

    .gallery-img-3 {
        grid-column: 1/2;
        grid-row: 3/5;
    }

    .container-blogs {
        grid-template-columns: 1fr;
    }

    .menu-footer {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, auto);
        gap: 1rem;
    }
    
    .item-image {
        grid-row: 1/2;
        justify-self: center;
    }
    
    .item-details {
        grid-row: 2/3;
        text-align: center;
    }
    
    .item-quantity {
        grid-column: 1/2;
        grid-row: 3/4;
        justify-self: center;
    }
    
    .item-subtotal {
        grid-column: 1/2;
        grid-row: 4/5;
        justify-self: center;
    }
    
    .item-remove {
        grid-column: 1/2;
        grid-row: 5/6;
        justify-self: center;
    }
}




/* Contenedor de categorías */
.container-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 3rem 0;
}

/* Tarjeta individual */
.card-category {
    position: relative;
    height: 30rem;
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 0.4rem 1.5rem rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.16, 0.73, 0.58, 1);
    isolation: isolate; /* Para contener el z-index */
}

/* Imagen de fondo */
.card-category img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 0.73, 0.58, 1);
}

/* Contenido de la categoría */
.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    color: white;
    text-align: center;
    z-index: 2;
    transform: translateY(0);
    transition: all 0.5s ease;
}

/* Capa de overlay con gradiente */
.card-category::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    opacity: 1;
    transition: all 0.5s ease;
    z-index: 1;
}

/* Texto del título */
.category-content p {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease, opacity 0.3s ease;
}

/* Botón "Ver más" */
.category-content span {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 10rem;
    font-size: 1.4rem;
    font-weight: 500;
    transition: all 0.3s ease;
    transform: scale(0.95);
    opacity: 0.9;
    box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.1);
}

/* ---------------------------- */
/* Efectos hover */
/* ---------------------------- */

.card-category:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.15);
}

.card-category:hover img {
    transform: scale(1.08);
}

.card-category:hover::after {
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.card-category:hover .category-content {
    transform: translateY(-1rem);
}

.card-category:hover .category-content span {
    transform: scale(1);
    opacity: 1;
    padding: 0.8rem 2.5rem;
    background-color: var(--primary-color);
    box-shadow: 0 0.4rem 1rem rgba(214, 40, 40, 0.3);
}

/* ---------------------------- */
/* Efecto de aparición suave del texto */
/* ---------------------------- */
.category-content p {
    opacity: 0;
    transform: translateY(2rem);
}

.card-category:hover .category-content p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.category-content span {
    opacity: 0;
    transform: translateY(2rem);
}

.card-category:hover .category-content span {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}




.container-products {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #d62828;
    --secondary-color: #003049;
    --background-color: #f8f9fa;
    --light-color: #eae2b7;
    --dark-color: #212529;
    --text-color: #333;
    --text-light: #6c757d;
    --white: #fff;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #17a2b8;
}

html {
    font-size: 62.5%;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.heading-1 {
    text-align: center;
    font-weight: 600;
    font-size: 3.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 1rem;
}

.heading-1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8rem;
    height: 0.3rem;
    background-color: var(--primary-color);
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 0.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.section {
    padding: 5rem 0;
}

.container-hero, .shopping-cart, .contact-section, .catalog-section {
    background-color: var(--white);
    padding: 5rem 0;
    border-radius: 2rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.container-navbar {
    background-color: var(--secondary-color);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.menu {
    display: flex;
    gap: 2.5rem;
}

.menu a {
    text-decoration: none;
    font-size: 1.4rem;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.menu a:hover {
    color: var(--primary-color);
}

.search-form {
    display: flex;
    align-items: center;
    border: 2px solid var(--white);
    border-radius: 2rem;
    background-color: var(--white);
    height: 4rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.search-form input {
    outline: none;
    border: none;
    width: 25rem;
    font-size: 1.4rem;
    padding: 0 2rem;
    color: var(--text-color);
}

.card-category, .card-product {
    background-color: var(--white);
    border-radius: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.card-category:hover, .card-product:hover {
    transform: translateY(-5px);
}

.container-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 3rem;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 30rem);
    gap: 1.5rem;
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    transition: all 0.5s ease;
}

.gallery img:hover {
    transform: scale(1.02);
}

.footer {
    background-color: var(--secondary-color);
    color: var(--white);
}

.footer .menu-footer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

@media (max-width: 768px) {
    html {
        font-size: 55%;
    }

    .container-categories, .container-features {
        grid-template-columns: 1fr;
    }

    .gallery {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 20rem);
    }
}

@media (max-width: 576px) {
    html {
        font-size: 50%;
    }

    .heading-1 {
        font-size: 2.8rem;
    }
}

}

.card-product {
    width: calc(33.333% - 20px);
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
    overflow: hidden;
    padding: 10px;
    transition: transform 0.3s ease;
}

.card-product:hover {
    transform: scale(1.02);
}

.container-img img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.search-form {
    display: flex;
    gap: 10px;
    align-items: center;
}

