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

body {
    font-family: Arial, sans-serif;
    color: #292323;
    background: #fff;
}

header {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 7%;
    border-bottom: 1px solid #eee;
    background: white;
}

.logo {
    font-size: 28px;
    font-weight: 800;
}

.logo span {
    color: #b52e57;
}

nav {
    display: flex;
    gap: 35px;
}

nav a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
}

.cart-button {
    background: #b52e57;
    color: white;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: bold;
}

#cart-count {
    background: white;
    color: #b52e57;
    padding: 2px 7px;
    border-radius: 20px;
    margin-left: 5px;
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    background: #fff5f6;
}

.hero-text {
    padding: 100px 12%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.small-title {
    color: #b52e57;
    letter-spacing: 5px;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: Georgia, serif;
    font-size: 70px;
    line-height: 1;
    margin-bottom: 30px;
}

.hero p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}

.hero-image {
    height: 600px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-now {
    display: inline-block;
    background: #b52e57;
    color: white;
    padding: 16px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 25px;
    width: fit-content;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 45px 8%;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.features div {
    font-size: 30px;
}

.features h3 {
    font-size: 18px;
    margin: 10px;
}

.features p {
    font-size: 14px;
    color: #888;
}

.shop {
    padding: 90px 7%;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title p {
    color: #b52e57;
    letter-spacing: 4px;
    font-weight: bold;
}

.section-title h2 {
    font-family: Georgia, serif;
    font-size: 45px;
    margin-top: 15px;
}

.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .3s;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-image {
    height: 330px;
    position: relative;
    background: #f5eeee;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge {
    position: absolute;
    z-index: 2;
    top: 18px;
    left: 18px;
    background: #b52e57;
    color: white;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 21px;
}

.product-info p {
    color: #888;
    margin: 10px 0 20px;
}

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-bottom strong {
    color: #b52e57;
    font-size: 22px;
}

.product-bottom button {
    border: none;
    background: #b52e57;
    color: white;
    padding: 12px 18px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
}

.about {
    text-align: center;
    background: #fff5f6;
    padding: 80px 20px;
}

.about h2 {
    font-family: Georgia, serif;
    font-size: 40px;
    margin-bottom: 20px;
}

.about p {
    color: #777;
}

footer {
    text-align: center;
    padding: 60px;
    background: #292323;
    color: white;
}

.cart-page,
.checkout-page {
    max-width: 1200px;
    margin: auto;
    padding: 70px 20px;
}

.cart-page > h1,
.checkout-page > h1 {
    font-family: Georgia, serif;
    font-size: 50px;
    margin-bottom: 50px;
}

.cart-layout,
.checkout-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.cart-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.cart-item img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 15px;
}

.cart-details {
    flex: 1;
}

.cart-details h3 {
    margin-bottom: 10px;
}

.cart-details p {
    color: #b52e57;
    font-weight: bold;
}

.quantity {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.quantity button {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 50%;
    cursor: pointer;
}

.cart-subtotal {
    text-align: right;
}

.cart-subtotal strong {
    display: block;
    color: #b52e57;
    font-size: 20px;
}

.remove {
    border: none;
    background: #fff0f2;
    color: #b52e57;
    padding: 8px 14px;
    border-radius: 20px;
    margin-top: 10px;
    cursor: pointer;
}

.cart-summary,
.order-summary {
    background: #fff5f6;
    padding: 35px;
    border-radius: 20px;
    height: fit-content;
}

.summary-line,
.total,
.checkout-total {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.total {
    font-size: 25px;
}

.total strong,
.checkout-total strong {
    color: #b52e57;
}

.checkout-button,
.place-order {
    display: block;
    width: 100%;
    text-align: center;
    background: #b52e57;
    color: white;
    padding: 17px;
    border-radius: 30px;
    border: none;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    margin-top: 25px;
}

.empty-cart {
    text-align: center;
    padding: 100px 20px;
}

.checkout-form {
    background: white;
}

.checkout-form h2 {
    margin: 25px 0;
}

.checkout-form label {
    display: block;
    margin-top: 20px;
    margin-bottom: 8px;
    font-weight: bold;
}

.checkout-form input,
.checkout-form textarea,
.checkout-form select {
    width: 100%;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
}

.checkout-form textarea {
    height: 120px;
}

.aba-box {
    background: #fff1f4;
    padding: 25px;
    border-radius: 15px;
    margin-top: 25px;
}

.aba-box h3 {
    color: #b52e57;
    margin-bottom: 15px;
}

.aba-box p {
    margin-top: 15px;
    color: #777;
}

.checkout-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.checkout-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
}

.checkout-item div {
    flex: 1;
}

.checkout-item h3 {
    font-size: 16px;
}

.checkout-total {
    font-size: 25px;
}

.success-page {
    min-height: 100vh;
    background: #fff5f6;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.success-card {
    background: white;
    max-width: 550px;
    width: 100%;
    padding: 60px 40px;
    text-align: center;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,.1);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #b52e57;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    margin: auto;
}

.success-card h1 {
    font-family: Georgia, serif;
    margin: 25px 0 15px;
}

.order-number {
    background: #fff1f4;
    padding: 15px;
    margin: 25px 0;
    border-radius: 10px;
    color: #b52e57;
    font-weight: bold;
}


@media (max-width: 800px) {

    header {
        padding: 15px 5%;
    }

    nav {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-text {
        padding: 70px 8%;
    }

    .hero h1 {
        font-size: 50px;
    }

    .hero-image {
        height: 400px;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .products {
        grid-template-columns: 1fr;
    }

    .cart-layout,
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .cart-page > h1,
    .checkout-page > h1 {
        font-size: 38px;
    }

}
