* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; background: #fff; overflow-x: hidden; scroll-behavior: smooth; }

.ribbon { background: #000; color: #FFFF00; padding: 8px 0; overflow: hidden; white-space: nowrap; border-bottom: 2px solid #FFFF00; }
.ribbon-track { display: inline-block; animation: scroll 25s linear infinite; font-weight: 700; font-size: 11px; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

header { background: #FFFF00; height: 80px; padding: 0 5%; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; }
.site-logo { max-height: 50px; }
nav ul { display: flex; list-style: none; align-items: center; }
nav ul li { margin-left: 30px; font-weight: 700; text-transform: uppercase; font-size: 12px; cursor: pointer; }

/* HERO CAROUSEL SETTINGS */
.carousel-container { width: 100%; height: 550px; overflow: hidden; position: relative; }
.carousel-slide { display: flex; width: 100%; height: 100%; transition: transform 1.2s ease-in-out; }
.slide { min-width: 100%; height: 100%; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide-overlay { position: absolute; bottom: 40px; left: 40px; z-index: 10; }
.btn-main-corner { background: #FFFF00; padding: 16px 40px; font-weight: 900; border: none; cursor: pointer; box-shadow: 6px 6px 0px #000; text-transform: uppercase; }

/* PRODUCT GRID */
.product-grid { padding: 20px 5% 40px; }
.section-caption { font-weight: 300; font-size: 1.1rem; text-transform: lowercase; color: #444; margin-bottom: 15px; padding-left: 15px; }
.container { display: flex; justify-content: space-between; flex-wrap: wrap; }
.item { width: 32%; padding: 15px; border-radius: 25px; border: 1px solid transparent; transition: 0.4s ease; }
.item:hover { border-color: #FFFF00; background: #fafafa; }

.product-image-wrapper { position: relative; width: 100%; height: 380px; background: #fdfdf0; border-radius: 20px; overflow: hidden; margin-bottom: 15px; }
.product-image-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s ease; }
.item:hover .product-image-wrapper img { transform: scale(1.05); }

.quick-view-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: #FFFF00; padding: 12px 24px; border: none; border-radius: 50px; font-weight: 700; font-size: 10px; text-transform: uppercase; cursor: pointer; opacity: 0; transition: 0.3s; z-index: 15; }
.item:hover .quick-view-btn { opacity: 1; }
.badge { position: absolute; top: 12px; left: 12px; background: #000; color: #FFFF00; padding: 6px 12px; font-size: 9px; font-weight: 900; border-radius: 50px; z-index: 10; }

.modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); z-index: 9999; align-items: center; justify-content: center; }
.modal-content { background: #fff; width: 90%; max-width: 850px; padding: 40px; border-radius: 30px; position: relative; max-height: 90vh; overflow-y: auto; }
.modal-body { display: flex; gap: 30px; }
.modal-image { flex: 1; height: 400px; border-radius: 20px; overflow: hidden; }
.modal-image img { width: 100%; height: 100%; object-fit: cover; }
.modal-text { flex: 1; text-align: left; }
.info-section { margin-top: 15px; border-top: 1px solid #eee; padding-top: 10px; }
.info-section h4 { font-size: 10px; text-transform: uppercase; color: #888; margin-bottom: 5px; }
.info-section p { font-size: 13px; line-height: 1.5; color: #333; }
.close-modal { position: absolute; right: 25px; top: 15px; font-size: 30px; cursor: pointer; }

.cart-sidebar { position: fixed; right: -400px; top: 0; width: 350px; height: 100%; background: #fff; z-index: 8888; transition: 0.4s ease; padding: 40px 30px; box-shadow: -10px 0 30px rgba(0,0,0,0.1); display: flex; flex-direction: column; }
.cart-sidebar.active { right: 0; }
.add-btn { width: 100%; background: #000; color: #fff; padding: 14px; border-radius: 10px; border: none; cursor: pointer; font-weight: 700; text-transform: uppercase; margin-top: 15px; }

.about-us { background: #000; color: #fff; padding: 80px 10%; text-align: center; }
footer { padding: 30px; text-align: center; font-size: 11px; color: #888; background: #f9f9f9; }

@media (max-width: 768px) { .modal-body { flex-direction: column; } .item { width: 100%; } .modal-image { height: 250px; } }
/* ADD TO THE BOTTOM OF YOUR STYLE.CSS */

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.checkout-field {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    outline: none;
    transition: 0.3s ease;
}

.checkout-field:focus {
    border-color: #FFFF00;
}

.total-box {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 14px;
}

.checkout-btn {
    width: 100%;
    background: #FFFF00;
    color: #000;
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 4px 4px 0px #000;
    transition: 0.2s;
}

.checkout-btn:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px #000;
}

.empty-msg {
    text-align: center;
    color: #888;
    margin-top: 50px;
    font-size: 13px;
}