* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo h2 {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
}

.logo, .cart-icon, .back-link {
    text-decoration: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

.login-link, .back-link {
    color: #27ae60;
    font-weight: bold;
    font-size: 14px;
}

.login-link { border: 0; background: transparent; cursor: pointer; }
.menu-overlay { position: fixed; inset: 0; z-index: 9; background: rgba(15, 23, 42, .35); opacity: 0; pointer-events: none; transition: opacity .2s ease; }
.menu-overlay.is-visible { opacity: 1; pointer-events: auto; }
.profile-menu { position: fixed; top: 0; right: 0; z-index: 10; display: flex; flex-direction: column; width: min(360px, 92vw); height: 100vh; padding: 26px; background: #fff; box-shadow: -12px 0 35px rgba(15, 23, 42, .16); transform: translateX(105%); transition: transform .25s ease; }
.profile-menu.is-open { transform: translateX(0); }
.menu-close { align-self: flex-end; border: 0; background: transparent; color: #64748b; font-size: 20px; cursor: pointer; }
.menu-profile { display: flex; align-items: center; gap: 13px; padding: 24px 0; border-bottom: 1px solid #e8eee9; }
.avatar, .profile-avatar { display: grid; place-items: center; flex: 0 0 auto; width: 48px; height: 48px; border-radius: 50%; background: #dff5e5; color: #16803c; font-weight: bold; }
.menu-profile div:last-child { display: grid; gap: 4px; min-width: 0; }
.menu-profile strong { color: #1e293b; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.menu-profile span { color: #64748b; font-size: 12px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.menu-links { display: grid; gap: 5px; padding: 22px 0; }
.menu-links a { display: flex; align-items: center; gap: 13px; padding: 13px 10px; border-radius: 6px; color: #334155; text-decoration: none; font-size: 14px; }
.menu-links a:hover { background: #f0fdf4; color: #16803c; }
.menu-links i { width: 18px; color: #27ae60; text-align: center; }
.menu-logout { margin-top: auto; padding: 13px; border: 1px solid #f2c4c0; border-radius: 6px; background: #fff8f7; color: #d6453d; cursor: pointer; font-weight: bold; }
.profile-page { max-width: 760px; margin: 0 auto; padding: 55px 20px; }
.profile-card { padding: 30px; background: #fff; border: 1px solid #e2e8f0; border-radius: 10px; box-shadow: 0 4px 14px rgba(15, 23, 42, .06); }
.profile-identity { display: flex; align-items: center; gap: 16px; padding-bottom: 25px; border-bottom: 1px solid #e2e8f0; }
.profile-avatar { width: 72px; height: 72px; font-size: 22px; }
.profile-identity h2 { color: #1e293b; margin-bottom: 4px; }
.profile-identity p { color: #64748b; }
.photo-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; padding: 18px 0; border-bottom: 1px solid #e2e8f0; }
.photo-upload, .photo-remove { padding: 9px 12px; border: 1px solid #b7dfc1; border-radius: 5px; color: #16803c; background: #f0fdf4; cursor: pointer; font-size: 12px; font-weight: bold; }
.photo-remove { border-color: #f2c4c0; color: #d6453d; background: #fff8f7; }
#profile-photo { display: none; }
.photo-status { flex-basis: 100%; color: #64748b; font-size: 11px; }
.profile-avatar, .avatar { background-position: center; background-size: cover; background-repeat: no-repeat; }
.profile-avatar { border: 0; cursor: pointer; }
.photo-modal { position: fixed; inset: 0; z-index: 20; display: grid; place-items: center; padding: 25px; background: rgba(15, 23, 42, .78); }
.photo-modal[hidden] { display: none; }
.photo-modal img { max-width: min(90vw, 620px); max-height: 82vh; border: 4px solid #fff; border-radius: 8px; object-fit: contain; background: #fff; }
.photo-modal button { position: absolute; top: 22px; right: 25px; border: 0; background: transparent; color: #fff; font-size: 28px; cursor: pointer; }
.profile-details { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: 24px 0; }
.profile-details div { display: grid; gap: 6px; }
.profile-details span { color: #64748b; font-size: 12px; }
.profile-details strong { color: #1e293b; font-size: 14px; }
.purchase-overview { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 18px; }
.purchase-overview > div { display: grid; grid-template-columns: auto 1fr; gap: 4px 12px; align-items: center; padding: 20px; background: #fff; border: 1px solid #e2e8f0; border-radius: 10px; box-shadow: 0 4px 14px rgba(15, 23, 42, .04); }
.purchase-overview i { grid-row: span 2; color: #27ae60; font-size: 22px; }
.purchase-overview span { color: #64748b; font-size: 12px; }
.purchase-overview strong { color: #1e293b; font-size: 21px; }
.order-history { margin-top: 38px; }
.order-history h2 { color: #1e293b; margin-top: 5px; }
.order-history-list { display: grid; gap: 10px; }
.history-row { display: flex; justify-content: space-between; gap: 20px; padding: 17px 20px; background: #fff; border: 1px solid #e2e8f0; border-radius: 8px; }
.history-row div { display: grid; gap: 5px; }
.history-row div:last-child { text-align: right; }
.history-row strong { color: #1e293b; font-size: 14px; }
.history-row span, .history-loading { color: #64748b; font-size: 12px; }
.save-address { display: flex !important; grid-template-columns: auto 1fr !important; align-items: center; margin-top: 18px; color: #475569 !important; font-weight: normal !important; }
.history-loading { padding: 20px 0; }
.status-badge { display: inline-block; width: fit-content; padding: 3px 8px; border-radius: 12px; background: #fff7ed; color: #c2410c; font-size: 10px !important; font-weight: bold; }
.status-confirmed { background: #eff6ff; color: #2563eb; }
.status-out-for-delivery { background: #fefce8; color: #a16207; }
.status-delivered { background: #f0fdf4; color: #16803c; }

.logo span {
    color: #27ae60;
}

.search-box{
    display: flex;
    align-items: center;
    border: 2px solid #27ae60;
    border-radius: 25px;
    overflow: hidden;
    width: 90%;
    max-width: 400px;
}

.area-dropdown {
    padding: 10px;
    border: none;
    outline: none;
    background-color: #f8f9fa;
    border-right: 1px solid #ccc;
}

.search-box input{
    flex: 1;
    min-width: 0;
    padding: 10px;
    border: none;
    outline: none;
}

.search-btn {
    background-color: #27ae60;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.cart-icon{
    position: relative;
    font-size: 22px;
    color: #2c3e50;
    cursor: pointer;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: #e74c3c;
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 50%;
}

.hero{
    background-color: #e8f5e9;
    padding: 50px 5%;
    text-align: center;
}

.hero h1 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    color: #555555;
    margin-bottom: 20px;
}

.shop-btn{
    background-color: #27ae60;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}
.location-section{
    text-align: center;
    padding: 30px 20px;
    background-color: #ffffff;
    margin-bottom: 20px;
}
.location-section h2 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
}
.area-buttons{
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.area-btn{
    padding: 8px 18px;
    border: 1px solid #27ae60;
    background-color: transparent;
    color: #27ae60;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}
.area-btn .active,
.area-btn:hover{
background-color: #27ae60;
color: #ffffff;
}

.categories {
    padding: 40px 5%;
    text-align: center;

}

.section-title {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 30px;
}

.category-container{
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 700px;
    margin: 0 auto;
}

.category-card {
    background-color: white;
    padding: 20px;
    width: 180px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    cursor: pointer;
}

.category-card i {
    font-size: 32px;
    color: #27ae60;
    margin-bottom: 10px;
}

.products{
    padding: 30px 15px;
    text-align: center;
}
.product-container{
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.product-card{
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px;
    width: 170px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 6px -1px rgba(0 0 0 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0 0 0 0.1);
}
.product-img-container{
    width: 100%;
    height: 110px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 10px;
}
.product-img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.product-card h3{
    font-size: 14px;
    color: #333333;
    margin-bottom: 6px;
    font-weight: 600;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-category {
    color: #64748b;
    font-size: 11px;
    margin-bottom: 5px;
}
.price{
    font-size: 14px;
    color: #27ae60;
    font-weight: bold;
    margin-bottom: 12px;
}
.add-btn{
    width: 100%;
    padding: 9px 0;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;

}
.add-btn:hover{
    background-color: #219150;
}

.promo-section{
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1100px;
    margin: 35px auto;
    padding: 0 15px;
    flex-wrap: wrap;
}
.promo-card{
    flex: 1;
    min-width: 280px;
    height: 180px;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.promo-1{
    background: linear-gradient(135deg, #16a34a, #15803d);
}
.promo-2{
    background: linear-gradient(135deg, #d97706, #b45309);
}
.promo-tag{
    background: rgba(255, 255, 255, 0.25);
    padding: 4px 10px;
    font-size: 11px;
    font-weight: bold;
    border-radius: 15px;
    text-transform: uppercase;
}
.promo-text h3{
    font-size: 20px;
    margin: 19px 0 5px 0;
}
.promo-text p{
    font-size: 13px;
    margin-bottom: 15px;
    opacity: 0.9;
}
.promo-btn{
    background-color: #ffffff;
    color: #1e293b;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 20px;
    display: inline-block;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.promo-btn:hover{
    transform: scale(1.05);
    background-color: #f8fafc;
}
.features-section{
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 30px 20px;
    background-color: #f8f9fa;
    flex-wrap: wrap;
}
.featured-card{
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 220px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.feature-icon{
    font-size: 32px;
    color: #27ae60;
    margin-bottom: 10px;
}
.featured-card h3{
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}
.featured-card p{
    font-size: 13px;
    color: #666;
}




.reviews-section {
  max-width: 1100px;
  margin: 50px auto;
  padding: 0 15px;
  text-align: center;
}

.reviews-title h2 {
  font-size: 26px;
  color: #1e293b;
  margin-bottom: 5px;
}

.reviews-title p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 30px;
}
.reviews-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.review-card {
  flex: 1;
  min-width: 280px;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.stars {
  font-size: 16px;
  margin-bottom: 12px;
}
.review-text {
  font-size: 14px;
  color: #334155;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}
.user-info h4 {
  font-size: 15px;
  color: #0f172a;
  margin: 0;
}
.user-info span {
  font-size: 12px;
  color: #64748b;
}


.footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 30px 0 15px;
    margin-top: 40px;
   display: block;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-col {
    width: 150px;
}

.footer-col h3 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #27ae60;
}

.footer-col p,
.footer-col li {
    width: 220px;
    text-align: left;
    font-size: 13px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-col ul {
      list-style: none;
    padding: 0;
}

.footer-col a {
    color: #bdc3c7;
    text-decoration: none;
}

.footer-bottom {
    width: 100%;
    clear: both;
    text-align: center;
    border-top: 1px solid #34495e;
    margin-top: 25px;
    padding-top: 12px;
    font-size: 12px;
    color: #bdc3c7;
}

.empty-message {
    width: 100%;
    padding: 35px;
    color: #64748b;
}

.checkout-body {
    background: #f7faf8;
    min-height: 100vh;
}

.cart-page, .billing-page {
    max-width: 980px;
    margin: 0 auto;
    padding: 45px 20px 70px;
}

.page-heading {
    margin-bottom: 28px;
}

.page-heading h1 {
    color: #1e293b;
    font-size: 32px;
    margin: 5px 0;
}

.page-heading p:not(.eyebrow) {
    color: #64748b;
}

.eyebrow {
    color: #27ae60;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cart-items {
    display: grid;
    gap: 12px;
}

.cart-item, .cart-summary, .billing-form {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.cart-item {
    display: grid;
    grid-template-columns: 70px 1fr auto auto auto;
    gap: 18px;
    align-items: center;
    padding: 14px;
}

.cart-item img {
    width: 70px;
    height: 65px;
    object-fit: contain;
}

.cart-item-info h3 { color: #1e293b; font-size: 15px; margin-bottom: 5px; }
.cart-offer { display: inline-block; margin-bottom: 5px; color: #16803c; font-size: 11px; font-weight: bold; }
.cart-item-info p { color: #64748b; font-size: 13px; }
.quantity-controls { display: flex; align-items: center; gap: 12px; }
.quantity-controls button { width: 28px; height: 28px; border: 1px solid #27ae60; background: white; color: #27ae60; border-radius: 5px; cursor: pointer; }
.item-total { color: #27ae60; white-space: nowrap; }
.remove-item { border: 0; background: transparent; color: #e74c3c; cursor: pointer; font-size: 15px; }

.cart-summary {
    max-width: 400px;
    margin: 20px 0 0 auto;
    padding: 22px;
}
.cart-summary > div { display: flex; justify-content: space-between; padding: 7px 0; color: #64748b; }
.cart-summary .total-row { border-top: 1px solid #e2e8f0; color: #1e293b; font-size: 18px; margin-top: 8px; padding-top: 15px; }
.checkout-btn { display: block; width: 100%; margin-top: 16px; padding: 12px; border: 0; border-radius: 6px; background: #27ae60; color: #fff; text-align: center; text-decoration: none; font-weight: bold; cursor: pointer; }
.checkout-btn:hover { background: #219150; }
.empty-cart { text-align: center; background: #fff; padding: 60px 20px; border: 1px solid #e2e8f0; border-radius: 10px; color: #64748b; }
.empty-cart i { color: #27ae60; font-size: 42px; margin-bottom: 14px; }
.empty-cart h2 { color: #1e293b; margin-bottom: 8px; }
.empty-cart .shop-btn { display: inline-block; margin-top: 20px; text-decoration: none; }

.billing-form { max-width: 700px; padding: 25px; }
.billing-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.billing-form label { display: grid; gap: 7px; color: #334155; font-size: 13px; font-weight: bold; }
.billing-form input, .billing-form select, .billing-form textarea { width: 100%; padding: 11px; border: 1px solid #cbd5e1; border-radius: 5px; font: inherit; font-size: 14px; resize: vertical; }
.billing-form label:nth-child(4) { grid-column: 1 / -1; }
.billing-form fieldset { border: 0; border-top: 1px solid #e2e8f0; margin-top: 22px; padding-top: 18px; }
.billing-form legend { color: #1e293b; font-weight: bold; padding-right: 8px; }
.payment-option { display: inline-flex !important; grid-template-columns: auto 1fr !important; align-items: center; margin: 12px 22px 4px 0; font-weight: normal !important; }
.payment-note { color: #64748b; font-size: 12px; margin-top: 10px; }
.mobile-payment-details { display: grid; gap: 4px; margin-top: 12px; padding: 12px; border-left: 3px solid #27ae60; background: #f0fdf4; color: #166534; }
.mobile-payment-details span { font-size: 12px; color: #64748b; }
.order-message { color: #16803c; font-weight: bold; line-height: 1.5; margin-top: 14px; }
.bill-actions > div { display: flex; gap: 10px; }
.print-btn, .email-btn { border: 0; border-radius: 6px; padding: 10px 14px; cursor: pointer; font-weight: bold; }
.print-btn { background: #e8f5e9; color: #16803c; }
.email-btn { background: #27ae60; color: #fff; }
.bill-page { max-width: 850px; margin: 0 auto; padding: 40px 20px 70px; }
.invoice { background: #fff; padding: 35px; border: 1px solid #e2e8f0; box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06); }
.invoice-header, .invoice-customer, .invoice-row, .invoice-total > div { display: flex; justify-content: space-between; gap: 20px; }
.invoice-header { border-bottom: 2px solid #27ae60; padding-bottom: 20px; }
.invoice-header h1 { color: #1e293b; margin-top: 5px; }
.invoice-meta, .invoice-customer div { display: grid; gap: 5px; text-align: right; color: #64748b; font-size: 13px; }
.invoice-meta strong, .invoice-customer strong { color: #1e293b; }
.invoice-customer { padding: 22px 0; border-bottom: 1px solid #e2e8f0; }
.invoice-customer div:first-child { text-align: left; }
.invoice-items { padding: 15px 0; }
.invoice-row { padding: 10px 0; color: #334155; border-bottom: 1px solid #f1f5f9; }
.invoice-row span:first-child { flex: 1; }
.invoice-row span:nth-child(2) { width: 60px; text-align: center; }
.invoice-row span:last-child { width: 110px; text-align: right; }
.invoice-labels { color: #64748b; font-size: 12px; font-weight: bold; text-transform: uppercase; }
.invoice-total { max-width: 300px; margin: 10px 0 0 auto; color: #64748b; }
.invoice-total > div { padding: 7px 0; }
.invoice-total .total-row { border-top: 2px solid #e2e8f0; color: #1e293b; font-size: 18px; margin-top: 6px; padding-top: 13px; }
.invoice-thanks { color: #16803c; text-align: center; margin-top: 35px; font-weight: bold; }

@media (max-width: 600px) {
    .navbar { flex-wrap: wrap; gap: 12px; }
    .search-box { order: 3; }
    .header-actions { margin-left: auto; }
    .cart-item { grid-template-columns: 55px 1fr auto; gap: 10px; }
    .cart-item img { width: 55px; height: 55px; }
    .quantity-controls, .item-total { grid-column: 2; }
    .remove-item { grid-column: 3; grid-row: 2; }
    .billing-fields { grid-template-columns: 1fr; }
    .billing-form label:nth-child(4) { grid-column: auto; }
    .bill-actions > div { width: 100%; }
    .print-btn, .email-btn { flex: 1; }
    .invoice { padding: 20px 14px; }
    .invoice-customer { display: grid; }
    .invoice-customer div { text-align: left; }
}

@media print {
    .bill-actions, .order-message { display: none; }
    .checkout-body { background: #fff; }
    .bill-page { padding: 0; }
    .invoice { border: 0; box-shadow: none; }
}





@media (max-width:600px) {
    header{
        flex-direction: column;
        gap: 12px;
        padding: 10px 15px;
    }
    .search-box {
        width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    }
}

/* Storefront polish */
body { background: #fbfcfb; color: #1e293b; overflow-x: hidden; }
.utility-bar { display: flex; justify-content: flex-end; gap: 28px; padding: 8px 5%; background: #173b31; color: #d7f5df; font-size: 11px; }
.utility-bar i { color: #8fe0a7; margin-right: 5px; }
.navbar { position: sticky; top: 0; z-index: 5; padding-top: 13px; padding-bottom: 13px; border-bottom: 1px solid #edf1ee; }
.logo { display: grid; gap: 2px; }
.logo h2 { letter-spacing: -.5px; }
.logo small { color: #82908a; font-size: 10px; letter-spacing: .4px; }
.search-box { box-shadow: 0 3px 12px rgba(23, 59, 49, .07); }
.search-btn { font-weight: bold; }
.hero { position: relative; min-height: 360px; display: flex; justify-content: space-between; align-items: center; padding: 65px 12%; overflow: hidden; text-align: left; background: linear-gradient(110deg, #e9f7ed 0%, #f8fbf4 58%, #fff4df 100%); }
.hero::after { content: ''; position: absolute; right: -80px; bottom: -150px; width: 430px; height: 430px; border: 55px solid rgba(39, 174, 96, .08); border-radius: 50%; }
.hero-content { position: relative; z-index: 1; max-width: 570px; }
.hero-kicker, .eyebrow { color: #218b4d; font-size: 11px; font-weight: bold; letter-spacing: 1.2px; text-transform: uppercase; }
.hero h1 { margin: 12px 0 14px; font-size: 56px; line-height: 1.02; letter-spacing: -1.5px; }
.hero h1 em { color: #27ae60; font-style: normal; }
.hero p { max-width: 460px; margin-bottom: 25px; color: #53665c; font-size: 16px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 20px; }
.hero-actions span { color: #476555; font-size: 12px; font-weight: bold; }
.hero-actions span i { margin-right: 5px; color: #d28b20; }
.hero-note { position: relative; z-index: 1; display: grid; gap: 3px; padding: 18px 22px; border-left: 3px solid #27ae60; background: rgba(255,255,255,.7); box-shadow: 0 12px 25px rgba(23,59,49,.08); }
.hero-note strong { color: #173b31; font-size: 24px; }
.hero-note span { color: #64748b; font-size: 12px; line-height: 1.4; }
.location-section { padding: 27px 20px; border-bottom: 1px solid #eef2ef; }
.location-section h2 { margin: 5px 0 16px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; max-width: 1140px; margin: 0 auto 24px; text-align: left; }
.section-title { margin: 5px 0 0; }
.section-hint { color: #82908a; font-size: 12px; }
.categories, .products { max-width: 1200px; margin: 0 auto; }
.category-container { max-width: none; display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.category-card { width: auto; min-height: 120px; display: grid; align-content: center; gap: 8px; border: 1px solid #edf1ee; border-radius: 8px; box-shadow: none; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.category-card:hover { transform: translateY(-3px); border-color: #99d9ac; box-shadow: 0 10px 22px rgba(23, 59, 49, .08); }
.category-card i { margin: 0; font-size: 27px; }
.category-card h3 { color: #334155; font-size: 13px; }
.products { padding-top: 40px; }
.product-container { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.product-card { width: auto; min-height: 280px; border-radius: 8px; box-shadow: 0 2px 8px rgba(15, 23, 42, .04); }
.product-card:hover { transform: translateY(-5px); }
.product-img-container { height: 135px; }
.product-card h3 { min-height: 40px; }
.add-btn { margin-top: auto; }
.promo-section { padding-left: 0; padding-right: 0; }
.trust-bar { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 1120px; margin: 12px auto 45px; padding: 22px 25px; border-top: 1px solid #e8eee9; border-bottom: 1px solid #e8eee9; gap: 20px; }
.trust-bar > div { display: flex; align-items: center; gap: 12px; }
.trust-bar i { color: #27ae60; font-size: 22px; }
.trust-bar span { display: grid; gap: 3px; }
.trust-bar strong { color: #1e293b; font-size: 13px; }
.trust-bar small { color: #82908a; font-size: 11px; }
.features-section { border-top: 1px solid #e8eee9; }
.footer { background: #173b31; }
.footer-col h3 { color: #8fe0a7; }

@media (max-width: 800px) {
    .hero { padding: 50px 7%; }
    .hero-note { display: none; }
    .category-container { grid-template-columns: repeat(3, 1fr); }
    .product-container { grid-template-columns: repeat(3, 1fr); }
    .trust-bar { grid-template-columns: repeat(2, 1fr); margin-left: 20px; margin-right: 20px; }
}

@media (max-width: 600px) {
    .utility-bar { justify-content: center; gap: 10px; font-size: 9px; }
    .utility-bar span:last-child { display: none; }
    .navbar { padding-left: 15px; padding-right: 15px; }
    .hero { min-height: 330px; padding: 45px 25px; }
    .hero h1 { font-size: 42px; }
    .hero-actions { align-items: flex-start; flex-direction: column; gap: 12px; }
    .section-heading { align-items: flex-start; flex-direction: column; gap: 5px; }
    .category-container { grid-template-columns: repeat(2, 1fr); }
    .product-container { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .product-card { min-height: 270px; padding: 10px; }
    .trust-bar { grid-template-columns: 1fr; }
    .footer-container { flex-direction: column; align-items: flex-start; gap: 24px; }
    .footer-col, .footer-col p, .footer-col li { width: auto; max-width: 100%; }
    .profile-page { padding: 35px 15px; }
    .profile-card { padding: 20px; }
    .profile-details { grid-template-columns: 1fr; gap: 14px; }
    .history-row { align-items: flex-start; flex-direction: column; gap: 12px; }
    .history-row div:last-child { text-align: left; }
}


