/* ==============================
   GLOBAL STYLING
============================== */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;

    /* MAIN BACKGROUND */
    background: linear-gradient(rgba(255,248,250,0.95), rgba(255,248,250,0.95)),
                url('logo.png') center fixed;
    background-size: cover;
}

input, select, textarea {
    width: 80%;
    max-width: 400px;
    padding: 10px;
    margin: 5px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-family: inherit;
}

/* ==============================
   NAVIGATION
============================== */
nav {
    text-align: center;
    padding: 40px 20px;
    background: white;
}

nav h1 {
    font-size: 3rem;
    color: #b85c74;
    margin-bottom: 5px;
}

.tagline {
    font-style: italic;
    margin-bottom: 15px;
    color: #7a4f5b;
}

.logo-video {
    width: 160px;
    display: block;
    margin: 15px auto;
    border-radius: 20px;
}

.nav-buttons {
    margin-top: 15px;
}

/* ==============================
   HERO SECTION
============================== */
.hero {
    display: flex;
    justify-content: center;
}

.hero-box {
    background: white;
    padding: 25px;
    border-radius: 20px;
    margin: 20px;
    text-align: center;
}

/* ==============================
   PRODUCTS GRID
============================== */
.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.product {
    background: white;
    border-radius: 20px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
}

/* ==============================
   BUTTONS
============================== */
.btn {
    background: #d88c9a;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 20px;
    cursor: pointer;
    margin: 5px;
}

.clear {
    background: #999;
}

/* ==============================
   PRICE LIST & HIGHLIGHT
============================== */
.price-list {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin: 15px 0;
}

.price-item {
    flex: 1;
    background: #fff5f7;
    padding: 10px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}

.price-item .size {
    display: block;
    font-weight: bold;
    color: #b85c74;
}

.price-item .price {
    font-size: 18px;
    font-weight: bold;
}

.price-item.highlight {
    background: #d88c9a;
    color: white;
    transform: scale(1.05);
}

.price-item.highlight .size,
.price-item.highlight .price {
    color: white;
}

.price-item small {
    display: block;
    font-size: 10px;
}

/* ==============================
   MISSION & CART
============================== */
.mission {
    background: white;
    margin: 20px;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
}

.cart-box, #cartDisplay {
    text-align: center;
    margin: 20px;
    background: white;
    padding: 20px;
    border-radius: 20px;
}

#cartItems p {
    margin: 5px;
}

#totalPrice {
    color: #b85c74;
}

/* ==============================
   WHATSAPP BUTTON
============================== */
.whatsapp {
    position: fixed;
    bottom: 15px;
    right: 15px;
    background: #25D366;
    color: white;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
}

/* ==============================
   FOOTER
============================== */
.footer {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, #fbe3e8, #ffffff);
    margin-top: 40px;
    font-size: 14px;
    color: #6b4c53;
    border-top: 1px solid rgba(0,0,0,0.05);
}