@charset "utf-8";
/* CSS Document */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #f8f5f2;
    color: #2e2e2e;
    font-family: 'Montserrat', sans-serif;
}

/* HEADER */

header{
    width: 100%;
    padding: 30px 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo{
    font-family: 'Cormorant Garamond', serif;
    font-size: 55px;
}

nav{
    display: flex;
    gap: 40px;
}

nav a{
    text-decoration: none;
    color: #2e2e2e;
    font-size: 14px;
    letter-spacing: 1px;
}

.icons{
    display: flex;
    gap: 20px;
}

.icons img{
    width: 28px;
}

/* HERO */

.hero{
    width: 90%;
    margin: auto;
    position: relative;
}

.hero img{
    width: 100%;
    height: 700px;
    object-fit: cover;
}

.hero-text{
    position: absolute;
    bottom: 80px;
    left: 50px;
    color: #5f3f3f;
}

.hero-text h1{
    font-family: 'Cormorant Garamond', serif;
    font-size: 65px;
    line-height: 70px;
    margin-bottom: 20px;
}

.hero-text p{
    font-size: 28px;
}


/* BENEFICIOS */

.benefits{
    width: 85%;
    margin: 70px auto;
    display: flex;
    justify-content: space-around;
    text-align: center;
    border-bottom: 1px solid #c8beb7;
    padding-bottom: 30px;
}

.benefits h3{
    font-family: 'Cormorant Garamond', serif;
    font-size: 35px;
}

.benefits p{
    font-size: 22px;
}

/* TITULOS */

.section-title{
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-title h2{
    font-family: 'Cormorant Garamond', serif;
    font-size: 50px;
}

.section-title a{
    text-decoration: none;
    color: #2e2e2e;
    font-size: 22px;
}

/* CATEGORÍAS */

.categories{
    margin-top: 70px;
}

.category-grid{
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 35px;
}

.card{
    width: 22%;
}

.card img{
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.card h3{
    text-align: center;
    margin-top: 18px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 35px;
}

/* COLECCIONES */

.collections{
    margin-top: 120px;
}

.collection-grid{
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
.collection-card{
    width: 32%;
    text-align: center;
}

.collection-card{
    text-align: center;
}

.collection-card img{
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.collection-card h3{
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    margin-top: 15px;
}

.collection-card p{
    font-size: 18px;
}

/* PERSONALIZAR */

.customize{
    width: 85%;
    margin: 120px auto;
    background-color: #cbb8af;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.customize h2{
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    margin-bottom: 10px;
}

.customize p{
    font-size: 22px;
}

.customize button{
    background-color: #eadad2;
    border: none;
    padding: 20px 60px;
    font-size: 18px;
    cursor: pointer;
}

/* FRASE */

.quote{
    text-align: center;
    margin-bottom: 120px;
}

.quote h2{
    font-family: 'Cormorant Garamond', serif;
    font-size: 60px;
}

/* FOOTER */

footer{
    background-color: #d9cec8;
    padding: 70px;
}

.footer-container{
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-column{
    width: 18%;
}

.footer-column h2{
    font-family: 'Cormorant Garamond', serif;
    font-size: 50px;
    margin-bottom: 20px;
}

.footer-column h3{
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    margin-bottom: 20px;
}

.footer-column p,
.footer-column a{
    display: block;
    text-decoration: none;
    color: #2e2e2e;
    margin-bottom: 12px;
    line-height: 28px;
    font-size: 17px;
}

.socials{
    display: flex;
    gap: 20px;
}

.socials img{
    width: 60px;
	height: 60px;
	object-fit: contain;
	opacity: 0.85;
	transition: 0.3s;
}

.socials img:hover{
    opacity: 1;
    transform: scale(1.08);
}

.copyright{
    border-top: 1px solid #a89891;
    margin-top: 60px;
    padding-top: 20px;
}

.copyright p{
    font-size: 14px;
}

/* PAGE TITLE */

.page-title{
    width: 85%;
    margin: 30px auto 60px auto;
}

.page-title h1{
    font-family: 'Cormorant Garamond', serif;
    font-size: 60px;
    margin-bottom: 10px;
}

.page-title p{
    font-size: 16px;
}

/* SHOP */

.shop-container{
    width: 85%;
    margin: auto;
    display: flex;
    gap: 60px;
}

/* FILTROS */

.filters{
    width: 18%;
    border-right: 1px solid #c8beb7;
    padding-right: 30px;
}

.filters h2{
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    margin-bottom: 40px;
}

.filter-group{
    margin-bottom: 60px;
}

.filter-group h3{
    font-family: 'Cormorant Garamond', serif;
    font-size: 35px;
    margin-bottom: 25px;
}

.filter-group label{
    display: block;
    margin-bottom: 18px;
    font-size: 18px;
}

/* PRODUCTOS */

.products-section{
    width: 82%;
}

.products-section h2{
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    margin-bottom: 40px;
}

.products-grid{
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.product-card{
    width: 28%;
}

.product-card img{
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.product-card h3{
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    margin-top: 15px;
}

.product-card p{
    font-size: 20px;
}

/* PERSONALIZACIÓN */

.custom-page{
    width: 85%;
    margin: 60px auto;
    display: flex;
    justify-content: space-between;
}

.custom-btn{
    background-color: #eadad2;
    padding: 20px 60px;
    text-decoration: none;
    color: #2e2e2e;
    font-size: 18px;
}

/* IZQUIERDA */

.custom-left{
    width: 55%;
}

.step{
    margin-bottom: 70px;
}

.step h2{
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    margin-bottom: 25px;
}

.piece-img{
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.step input{
    width: 100%;
    padding: 25px;
    border: 1px solid #b8aaa3;
    background-color: #efebe8;
    font-size: 18px;
}

/* TIPOGRAFÍAS */

.fonts{
    display: flex;
    gap: 30px;
}

.font-card{
    width: 100px;
    height: 100px;
    background-color: #ddd4cf;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.font-card h3{
    font-size: 35px;
}

.font-card p{
    margin-top: 10px;
    font-size: 15px;
}

.cursive h3{
    font-style: italic;
}

/* RESUMEN */

.summary{
    width: 30%;
    background-color: #cbb8af;
    padding: 50px;
    border-radius: 20px;
    height: fit-content;
}

.summary h2{
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    margin-bottom: 50px;
}

.summary-product{
    margin-bottom: 80px;
}
.summary-info{
    margin-bottom: 80px;
}

.summary-info p{
    margin-bottom: 25px;
}

.summary h1{
    text-align: center;
    font-size: 60px;
    margin-bottom: 40px;
}

.summary button{
    width: 100%;
    background-color: #4a2730;
    color: white;
    border: none;
    padding: 18px;
    cursor: pointer;
    margin-bottom: 40px;
}

.shipping{
    text-align: center;
    font-size: 14px;
}