*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

:root {
    --orange-main: #d35400;
    --orange-light: #e67e22;
    --text-dark: #4a2c2a;
    --bg-cream: #fdf5e6;
}

body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    padding-top: 80px;
}

/* Header */
nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 5%;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--bg-cream);
    
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: bold;
}

.nav-links a.active { color: var(--orange-main); }


nav { 
    display: flex; 
    gap: 25px; 
    transition: 0.3s ease; 
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #5a2c0c;
    font-weight: 500;
}

nav a:hover { 
    color: #d35400;
    text-decoration: underline;
    transition: 0.3s;
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -15px;
    background: #ff5a00;
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 50%;
}

/* HERO */
.hero {
    height: 650px;
    background: radial-gradient(circle, #fff 0%, #fdf5e6 100%);
    background-image: url("images/blur-bokeh-bright-color.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.hero img{
    height: 250px;
    align-items: center;
    border-radius: 30%;
}

.hero h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.hero-pr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}


.img-pr2 img,
.imp-pr1 img {
   margin-bottom: 20%;
}

.btn-primary {
    background: #ff5a00;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #e04d00;
}

/* FEATURES */
.features {
    display: flex;
    justify-content: space-around;
    padding: 30px;
    background: white;
}

.features div {
    text-align: center;
}

.features span {
    display: block;
    font-size: 13px;
    color: gray;
}

/* PRODUCTS */
.products {
    padding: 60px 80px;
    background-image: url(images/blur-bokeh-bright-color.jpg);
}

.products h2 {
    text-align: center;
    margin-bottom: 40px;
}

.product-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px;
}

.product-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.card {
    background: white;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

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

.card h3 {
    margin-bottom: 10px;
}

.card p {
    margin-bottom: 15px;
    font-weight: bold;
}

.card button {
    background: #ff5a00;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.card button:hover{
    background-color: #d35400;
}



/* CART */
.cart-section {
    padding: 50px 80px;
    display: flex;
    justify-content: center;
    
}

.cart {
    background: white;
    padding: 30px;
    width: 350px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.cart-item {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
    width: 310px;
}

.cart-item span{
    color: #d35400;
}

.cart-item img{
    width: 100px;
}

.total {
    margin: 20px 0;
    font-weight: bold;
    text-align: right;
}