*{
    box-sizing:border-box;
}

body{
    font-family: Arial, Helvetica, sans-serif;
}

#wrapper{
    max-width:1400px;
    width:100%;
    margin:0 auto;
}

.header{
    background-image: url(images/texture\ see\ through.jpg);
    height: 450px;
    display: flex;
    align-items: center; 
    justify-content: center; 
    flex-direction: column;
    line-height: 0px;
    color:口#fff;
}
.headerContent h1{
    font-size: 2.25em;
    padding:20px;
    margin:20px auto;
    text-align: center;
}
.headerContent p{
    font-size: 1.25em;
    padding:20px;
    margin:20px auto;
}

.headerContent{
    background-color:#ddaaff;
    height:200px;
    width:auto;
    margin:auto;

}
.products{
    max-width:1400px;
    height:auto;
    background-color:rgb(110, 59, 147);
    
}
.productPlanners, .productNotebooks, .productFreebies {
    max-width:1400px;
    display:flex;
    flex-wrap:wrap;
    justify-content: center;
    align-items:center; 
}

.product-card img{
 
    max-width:200px;
}

.product-card{
    background-color:#ddaaff;
    border-radius: 10px;
    padding:10px;
    margin: 20px;
    display:flex;
    flex-direction: column;
    align-items:center;
}

.btn-main{
    border-style:none;
    color: #ffff;
    background-color:#F29CB7;
    padding:10px 30px;
    border-radius:10px;
}

/* start cart*/
.cart-item{
    display:flex;
    align-items: center;
    justify-content:space-between;
    gap:20px;
    padding:15px 0px;
    border-bottom:1px solid #ddd;
}

.cart-thumb{
    width:80px;
    height:80px;
    object-fit:cover;
    border-radius: 6px;
}

.cart-info{
    flex:1;
}

.cart-actions{
    display:flex;
    align-items: center;
    gap:10px;
}

.qty-btn{
    padding:6px 10px;
    font-size:1em;
    cursor:pointer;
}
.qty-display{
    min-width: 20px;
    text-align:center;
    font-size:1em;
}

.remove-btn{
    padding:6px 12px;
    background-color:red;
    color:#fff;
    border:none;
    cursor:pointer;
    border-radius:10px;
}
.iconCart a{
    text-decoration: none;
}
.cart p.total{
    text-align: right;
}
