* {
    font-family: 'Montserrat', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f9f9f9;
    color: #333;
    font-weight: 100;
}

/* HEADER */

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.header__logo {
    height: 20px;
    width: auto;
}

.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header__menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.header__menu-item {
    margin: 0;
}

.header__link {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.header__link:hover {
    color: #000;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header__icon {
    width: 20px;
    height: 20px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.header__icon:hover {
    opacity: 0.7;
}


/* PRODUCT*/

.product {
    display: flex;
    width: 1200px;
    margin: 80px auto;
    font-family: 'Montserrat', sans-serif;
}

/* GALERÍA */
.product__gallery {
    width: 55%;
    position: relative;
}

.carousel {
    position: relative;
}

.carousel__track-container {
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel__track {
    display: flex;
    transition: transform 0.4s ease;
    padding: 0;
    margin: 0;
    list-style: none;
}

.carousel__slide {
    min-width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.carousel__slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    z-index: 2;
    padding: 0 8px;
    border-radius: 50%;
}

.carousel__btn--prev {
    left: 10px;
}

.carousel__btn--next {
    right: 10px;
}

/* INFO PRODUCTO */
.product__info {
    width: 45%;
    padding-left: 60px;
}

.product__title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
}

.product__price {
    font-size: 18px;
    margin-bottom: 30px;
}

.product__option {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.product__label {
    font-weight: 500;
}

.product__value {
    color: #999;
}

.product__size {
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    color: #aaa;
}

.product__size-guide {
    display: inline-block;
    margin: 20px 0;
    text-decoration: underline;
    color: #000;
}

.product__model {
    background: #f5f5f5;
    padding: 15px;
    margin-bottom: 30px;
    font-size: 14px;
}

.product__add {
    width: 100%;
    background: #000;
    color: #fff;
    padding: 18px;
    border: none;
    cursor: pointer;
    margin-bottom: 15px;
    border-radius: 30px;
    overflow: hidden;
}

.product__pay {
    width: 100%;
    padding: 10px;
    border: 1px solid #000;
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 30px;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
}

.product__description {
    font-size: 14px;
    color: #555;
}

.product__more {
    display: inline-block;
    margin-top: 10px;
    text-decoration: underline;
    color: #000;
}

/* Icon styles for product info and pay */
.icon-pay-wrapper {
    display: inline-flex;
    align-items: center;
}

.icon--apple {
    height: 1.7em;
    width: auto;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}

.icon--ruler {
    height: 1em;
    width: auto;
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
}

/* FOOTER */

.footer {
    background-color: #000;
    color: #e5e5e5;
    font-family: Arial, Helvetica, sans-serif;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 60px;
    padding: 80px 100px;
}

.newsletter-title {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 20px;
}

.newsletter-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 420px;
}

.newsletter-form {
    display: flex;
    align-items: center;
    background-color: #2b2b2b;
    margin-bottom: 20px;
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 15px;
    color: #fff;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: #aaa;
}

.newsletter-form button {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 20px;
    padding: 0 20px;
    cursor: pointer;
}

.newsletter-legal {
    font-size: 11px;
    line-height: 1.5;
    color: #aaa;
    max-width: 420px;
    margin-bottom: 10px;
}

.newsletter-lang {
    font-size: 11px;
    text-decoration: underline;
    cursor: pointer;
}

.footer-info {
    font-size: 13px;
}

.footer-info p {
    margin-bottom: 20px;
}

.footer-column h3 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li,
.footer-column p {
    font-size: 13px;
    margin-bottom: 12px;
    color: #ccc;
}

.footer-logo {
    border-top: 1px solid #222;
    padding: 40px 0;
}

.footer-logo img {
    width: 90%;
    display: block;
    margin: auto;
}