body {
    margin: 0;
    font-family: Georgia, serif;
    color: #111;
}

a {
    text-decoration: none;
    color: inherit;
}

.navbar {
    display: flex;
    justify-content: space-between;
    padding: 25px 60px;
    border-bottom: 1px solid #ddd;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.hero {
    padding: 120px 60px;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.btn {
    padding: 12px 28px;
    border: 1px solid #000;
}

.footer {
    text-align: center;
    padding: 30px;
    border-top: 1px solid #ddd;
    margin-top: 80px;
}
.products-section {
    padding: 80px 60px;
}

.page-title {
    font-size: 42px;
    margin-bottom: 40px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 40px;
}

.product-card {
    text-align: center;
}

.product-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.product-card .price {
    font-size: 16px;
    margin-bottom: 12px;
}
.product-detail {
    padding: 80px 60px;
}

.product-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.product-image img {
    width: 420px;
    height: 520px;
    object-fit: cover;
}

.product-info h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.product-info .price {
    font-size: 22px;
    margin-bottom: 20px;
}

.product-info .description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}
.cart-section {
    padding: 80px 60px;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th,
.cart-table td {
    border-bottom: 1px solid #ddd;
    padding: 15px;
    text-align: left;
}

.cart-table th {
    font-weight: bold;
}
.checkout-section {
    padding: 80px 60px;
    max-width: 600px;
}

.checkout-form label {
    display: block;
    margin: 15px 0 5px;
}

.checkout-form input,
.checkout-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
}

.checkout-form textarea {
    height: 120px;
}.success-section {
    padding: 120px 60px;
    text-align: center;
}

.success-section h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.success-section p {
    font-size: 18px;
    margin-bottom: 30px;
}