/* GENERAL STYLING */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #fafafa;
    color: #333;
}

header {
    background: #ff914d;
    padding: 15px;
    text-align: center;
}

header h1 {
    margin: 0;
}

nav a {
    margin: 0 10px;
    color: white;
    font-weight: bold;
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 15px;
    background: #ff914d;
    color: white;
    margin-top: 40px;
}

/* HERO SECTION */
.hero {
    display: flex;
    padding: 30px;
    background: #fff2e6;
}

.hero img {
    width: 50%;
    border-radius: 10px;
}

.hero-text {
    width: 50%;
    padding: 20px;
}

.btn {
    display: inline-block;
    background: #ff914d;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    margin-top: 10px;
    text-decoration: none;
}

.btn:hover {
    background: #ff7722;
}

/* PRODUCTS GRID */
.products-section {
    padding: 30px;
    text-align: center;
}

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

.product-card {
    width: 280px;
    background: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 0 10px #ccc;
}

.product-card img {
    width: 100%;
    border-radius: 10px;
}

.price {
    font-weight: bold;
    color: #ff7722;
}

/* CART */
.cart-page {
    padding: 30px;
}

.cart-item {
    display: flex;
    background: white;
    margin: 15px 0;
    padding: 15px;
    border-radius: 10px;
}

.cart-item img {
    width: 120px;
    margin-right: 20px;
    border-radius: 10px;
}

.cart-total {
    text-align: center;
    margin-top: 30px;
}

/* PAYMENT FORM */
.payment-form {
    display: flex;
    flex-direction: column;
    width: 300px;
    margin: auto;
}

.payment-form input {
    margin-bottom: 10px;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #aaa;
}

/* THANK YOU PAGE */
.thankyou-section {
    text-align: center;
    padding: 30px;
}

.thankyou-section img {
    width: 300px;
    border-radius: 10px;
    margin-bottom: 20px;
}
