body {
    font-family: 'Montserrat', Arial, sans-serif;
    margin: 0;
    background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1500&q=80') no-repeat center center fixed;
    background-size: cover;
    color: #222;
}
nav {
    background: #222;
    padding: 0.7em 0;
    text-align: center;
}
nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 1.5em;
    font-weight: 600;
    font-size: 1.1em;
    padding: 0.3em 0.7em;
    border-radius: 4px;
    transition: background 0.2s;
}
nav a.active, nav a:hover {
    background: #ff69b4;
    color: #fff;
    transition: background 0.2s, color 0.2s;
}
.landing {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('2489681.webp') no-repeat center center;
    background-size: cover;
    position: relative;
}
.landing::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.45); 
    z-index: 1;
}
.landing-content {
    position: relative;
    z-index: 2;
    text-align: center;
    background: rgba(255,255,255,0.85);
    padding: 3em 2em;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(255, 105, 180, 0.13);
}
.landing-content h1 {
    font-size: 2.8em;
    margin-bottom: 0.3em;
    color: #2a5298;
}
.landing-content p {
    font-size: 1.2em;
    margin-bottom: 1.5em;
}
.cta-btn {
    background: linear-gradient(90deg, #ff69b4 0%, #ffb6c1 100%);
    color: #fff;
    border: none;
    padding: 0.9em 2.2em;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(255,105,180,0.13);
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
}
.cta-btn:hover, #place-order-btn:hover, #order-form button:hover {
    background: linear-gradient(90deg, #ff1493 0%, #ff69b4 100%);
    color: #fffbea;
    transform: scale(1.04);
    text-shadow: 0 2px 8px #fff, 0 0 2px #ff69b4;
}
main {
    max-width: 1100px;
    margin: 2em auto;
    padding: 2em;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(44, 62, 80, 0.10);
}
h2 {
    color: #ff69b4;
    margin-top: 0;
    font-size: 2em;
    letter-spacing: 1px;
}
.products {
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
    justify-content: center;
}
.product-card {
    background: #f8fffe;
    border: 1px solid #e3e8ee;
    border-radius: 14px;
    width: 240px;
    padding: 1.5em 1em 1.2em 1em;
    text-align: center;
    box-shadow: 0 2px 12px rgba(44, 62, 80, 0.06);
    transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s, background 0.18s;
    position: relative;
}
.product-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(255, 105, 180, 0.23);
    border-color: #ff69b4;
    background: #fff0f6;
}
.product-card img {
    width: 120px;
    height: 140px;
    object-fit: cover;
    margin-bottom: 1em;
    border-radius: 8px;
}
.product-card h3 {
    font-size: 1.1em;
    margin: 0.5em 0 0.3em 0;
    color: #1e3c72;
    font-weight: 700;
}
.product-card p {
    color: #2a5298;
    margin: 0.3em 0 1em 0;
    font-size: 1.08em;
    font-weight: 600;
}
.product-card button {
    background: linear-gradient(90deg, #ff69b4 0%, #ffb6c1 100%);
    color: #fff;
    border: none;
    padding: 0.7em 1.5em;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(255,105,180,0.10);
    transition: background 0.2s, transform 0.15s;
}
.product-card button:hover {
    background: linear-gradient(90deg, #ff1493 0%, #ff69b4 100%);
    transform: scale(1.06);
}
#cart-items {
    margin-bottom: 1.5em;
}
.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e3e8ee;
    padding: 0.7em 0;
}
.cart-item img {
    width: 60px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 1em;
}
.cart-item-details {
    flex: 1;
}
.cart-item-name {
    font-weight: 600;
    color: #2a5298;
}
.cart-item-qty {
    margin: 0 1em;
}
.cart-item-remove {
    color: #e74c3c;
    cursor: pointer;
    font-size: 1.2em;
    margin-left: 1em;
}
#cart-summary {
    font-size: 1.1em;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 1em;
}
#order-form input {
    display: block;
    width: 100%;
    margin: 0.7em 0;
    padding: 0.7em;
    border-radius: 6px;
    border: 1px solid #b2c7e6;
    font-size: 1em;
}
#order-form button {
    margin-top: 1em;
}
#order-success {
    text-align: center;
    color: #27ae60;
}
.contact-info {
    font-size: 1.2em;
    margin-top: 2em;
}
.contact-info a {
    color: #2a5298;
    text-decoration: underline;
}
a {
    transition: color 0.2s;
}
a:hover {
    color: #ff69b4;
}
@media (max-width: 800px) {
    .products {
        flex-direction: column;
        align-items: center;
    }
    main {
        padding: 1em 2vw;
    }
    .landing-content {
        padding: 2em 1em;
    }
}