/* *{margin: 0; padding:0; box-sizing:border-box;} */

body{
    font-family: 'Segoe UI', sans-serif;
    background: #f0f4f8;
    color: #1a1a1a;
    overflow-x: hidden;
}

.tangerine-bold {
    font-family: "Tangerine", "sans-serif";
    font-weight: 700;
    font-style: normal;
}

/*header{
    background: #ffffff;
    color: #000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #d1d5db;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
}

.logo{
    font-weight: bold;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
*/

/* nav a{
    margin: 0 1rem;
    color: #1f2937;
    text-decoration: none;
    font-weight: 500;
}

nav a:hover{
    color: #2563eb;
} */


.hero{
    background: #e2e8f0;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding: 0.2rem;
    background-size: cover;
    background-position: center;
    color: white;
}

.hero-content{
    max-width: 600px;
}

.hero h1{
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p{
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.hero button{
    background-color: #0077cc;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

main{
    padding: 6rem 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.products-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card{
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card img{
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.product-name{
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.product-description{
    font-size: 0.95rem;
    color: #4b5563;
    margin-bottom: 1rem;
}

.product-price{
    font-weight: bold;
    font-size: 1.2rem;
    color: #0077cc;
    margin-bottom: 1rem;
}
.product-card button{
    background-color: #0077cc;
    color: white;
    padding: 0.6rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.product-card button:hover{
    background-color: #005fa3;
}

.button-added{
    background-color: green !important;
    color: white !important;
}

.cart-popup{
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #1e40af;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    font-weight: bold;
    z-index: 100;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-popup.show{
    display: block;
    opacity: 1;
}

/*Change to match the homepage*/
/* footer{
    text-align: center;
    padding: 2rem;
    background: #f9fafb;
    color: #374151;
    border-top: 1px solid #e5e7eb;
}

.footer-link{
    text-decoration: none;
    color: #374562;
    font-weight: 500;
}

.footer-link:hover{
    text-decoration: underline;
} */