/* ============================================================
   DOĞAL MAMA — ANA CSS
   ============================================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  color: #1a1a18;
  background: #f9f8f4;
  padding-bottom: 64px; /* alt nav için */
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
input, select, textarea, button { font-family: inherit; font-size: inherit; }

/* ---- CSS VARIABLES ---- */
:root {
  --green:       #2d5a27;
  --green-light: #eaf3de;
  --green-mid:   #3a7a32;
  --green-dark:  #1e3d1b;
  --amber:       #f59e2e;
  --amber-dark:  #412402;
  --red:         #e24b4a;
  --border:      #d3d1c7;
  --bg:          #f9f8f4;
  --white:       #ffffff;
  --text-muted:  #888780;
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   20px;
}

/* ---- HEADER ---- */
.site-header { background: var(--green); position: sticky; top: 0; z-index: 100; }
.header-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 60px;
}
.logo {
  display: flex; align-items: center; gap: 8px;
  color: #fff; font-size: 18px; font-weight: 600;
}
.logo-leaf {
  width: 18px; height: 18px;
  background: #5a9e50; border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg); flex-shrink: 0;
}
.main-nav { display: flex; gap: 24px; }
.main-nav a { color: #a8d8a0; font-size: 14px; transition: color .2s; }
.main-nav a:hover { color: #fff; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.icon-btn svg {
  width: 20px; height: 20px; fill: none; stroke: #fff;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.cart-btn {
  display: flex; align-items: center; gap: 6px;
  background: var(--amber); color: var(--amber-dark);
  font-size: 13px; font-weight: 600; border: none;
  border-radius: 20px; padding: 7px 16px; cursor: pointer;
  position: relative;
}
.cart-btn svg { width: 16px; height: 16px; fill: none; stroke: var(--amber-dark); stroke-width: 2; }
.cart-badge {
  background: var(--white); color: var(--amber-dark);
  font-size: 10px; font-weight: 700; border-radius: 10px; padding: 1px 5px;
}
.btn-outline-sm {
  background: transparent; border: 1px solid #a8d8a0; color: #a8d8a0;
  font-size: 12px; border-radius: 16px; padding: 5px 12px; cursor: pointer;
  transition: all .2s;
}
.btn-outline-sm:hover { background: rgba(255,255,255,.1); color: #fff; }

/* ---- FLASH ---- */
.flash { padding: 12px 24px; font-size: 13px; font-weight: 500; }
.flash-success { background: #eaf3de; color: #27500a; border-bottom: 1px solid #c0dd97; }
.flash-error   { background: #fcebeb; color: #791f1f; border-bottom: 1px solid #f7c1c1; }

/* ---- HERO ---- */
.hero { background: var(--green); padding: 40px 24px 48px; }
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.hero-text { max-width: 480px; }
.hero-eyebrow { color: #a8d8a0; font-size: 13px; font-weight: 500; margin-bottom: 10px; letter-spacing: .5px; }
.hero-text h1 { color: #fff; font-size: 32px; font-weight: 700; line-height: 1.25; margin-bottom: 12px; }
.hero-sub { color: #a8d8a0; font-size: 15px; line-height: 1.6; margin-bottom: 24px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 12px; }
.hero-stat {
  background: rgba(255,255,255,.1); border-radius: var(--radius-md);
  padding: 14px 20px; text-align: center; min-width: 96px;
}
.hs-num { display: block; color: #fff; font-size: 22px; font-weight: 700; }
.hs-label { display: block; color: #a8d8a0; font-size: 11px; margin-top: 2px; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block; background: var(--amber); color: var(--amber-dark);
  font-size: 14px; font-weight: 600; border: none; border-radius: 22px;
  padding: 10px 24px; cursor: pointer; transition: opacity .2s;
}
.btn-primary:hover { opacity: .9; }
.btn-outline {
  display: inline-block; background: transparent; color: #fff;
  font-size: 14px; border: 1.5px solid rgba(255,255,255,.4);
  border-radius: 22px; padding: 10px 24px; cursor: pointer; transition: all .2s;
}
.btn-outline:hover { background: rgba(255,255,255,.1); }
.btn-secondary {
  display: inline-block; background: var(--green); color: #fff;
  font-size: 13px; font-weight: 600; border: none; border-radius: var(--radius-sm);
  padding: 9px 20px; cursor: pointer;
}
.btn-white {
  display: inline-block; background: #fff; color: var(--green);
  font-size: 14px; font-weight: 600; border-radius: 22px;
  padding: 10px 24px; cursor: pointer;
}
.btn-block { display: block; width: 100%; text-align: center; }
.btn-remove {
  background: none; border: none; color: var(--text-muted); font-size: 16px;
  cursor: pointer; padding: 4px 8px;
}
.btn-remove:hover { color: var(--red); }
.btn-out-of-stock {
  background: #f1efe8; color: var(--text-muted); border: none;
  border-radius: var(--radius-sm); padding: 8px; width: 100%;
  font-size: 12px; cursor: not-allowed;
}
.btn-danger-sm {
  background: #fcebeb; color: #791f1f; border: 1px solid #f7c1c1;
  font-size: 11px; border-radius: 6px; padding: 3px 8px; cursor: pointer;
}

/* ---- SECTION ---- */
.section { max-width: 1200px; margin: 0 auto; padding: 28px 24px; }
.section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.section-head h2 { font-size: 20px; font-weight: 700; }
.see-all { font-size: 13px; color: var(--green); }

/* ---- CATEGORIES ---- */
.cats-scroll {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px;
  overflow-x: auto; padding-bottom: 4px;
}
.cats-scroll::-webkit-scrollbar { display: none; }
.cat-pill {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 20px; padding: 7px 18px; font-size: 13px;
  color: #444441; white-space: nowrap; cursor: pointer; transition: all .2s;
}
.cat-pill:hover, .cat-pill.active { background: var(--green); color: #fff; border-color: var(--green); }

/* ---- PRODUCTS GRID ---- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.product-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.product-card:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.card-img-wrap {
  display: block; height: 240px; overflow: hidden;
  background: var(--green-light); position: relative;
}
.card-img-wrap img { width: 100%; height: 100%; object-fit: contain; padding: 8px; background: var(--green-light); }
.card-img-placeholder { width: 100%; height: 100%; background: var(--green-light); }
.badge-sale, .badge-new {
  position: absolute; top: 8px; left: 8px;
  font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 10px;
}
.badge-sale { background: var(--red); color: #fff; }
.badge-new  { background: var(--green); color: #fff; left: auto; right: 8px; }
.card-body { padding: 12px; }
.card-title { font-size: 13px; font-weight: 600; color: #1a1a18; margin-bottom: 5px; line-height: 1.4; }
.card-title a:hover { color: var(--green); }
.card-stars { display: flex; align-items: center; gap: 1px; margin-bottom: 6px; }
.card-stars small { font-size: 11px; color: var(--text-muted); margin-left: 4px; }
.star-filled { color: var(--amber); font-size: 12px; }
.star-empty  { color: #d3d1c7; font-size: 12px; }
.card-price-row { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.price     { font-size: 16px; font-weight: 700; color: var(--green); }
.old-price { font-size: 12px; color: var(--text-muted); text-decoration: line-through; }
.card-btns { display: flex; gap: 6px; }
.inline-form { flex: 1; }
.btn-add-cart {
  width: 100%; background: var(--green-light); color: #27500a;
  border: none; border-radius: var(--radius-sm); font-size: 11px; font-weight: 600;
  padding: 7px 0; cursor: pointer; transition: background .2s;
}
.btn-add-cart:hover { background: #c0dd97; }
.btn-buy-now {
  width: 100%; background: var(--green); color: #fff;
  border: none; border-radius: var(--radius-sm); font-size: 11px; font-weight: 600;
  padding: 7px 0; cursor: pointer; transition: opacity .2s;
}
.btn-buy-now:hover { opacity: .88; }

/* ---- BLOG ---- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; display: block; transition: transform .2s; }
.blog-card:hover { transform: translateY(-2px); }
.blog-thumb { height: 160px; background-size: cover; background-position: center; }
.blog-thumb-placeholder { height: 160px; background: #c0dd97; }
.blog-info { padding: 14px; }
.blog-info h3 { font-size: 14px; font-weight: 600; margin-bottom: 6px; line-height: 1.4; }
.blog-excerpt { font-size: 12px; color: var(--text-muted); margin-bottom: 6px; }
.blog-date { font-size: 11px; color: var(--text-muted); }

/* ---- PROMO BANNER ---- */
.promo-banner { background: var(--green); padding: 28px 24px; }
.promo-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.promo-inner h3 { color: #fff; font-size: 18px; margin-bottom: 6px; }
.promo-inner p  { color: #a8d8a0; font-size: 14px; }

/* ---- FOOTER ---- */
.site-footer { background: var(--green-dark); padding: 32px 24px 20px; margin-top: 40px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: block; margin-bottom: 20px; }
.footer-col h4 { color: #a8d8a0; font-size: 12px; font-weight: 700; margin-bottom: 10px; letter-spacing: .5px; }
.footer-col p, .footer-col a { color: #6a9e62; font-size: 13px; line-height: 1.8; display: block; }
.footer-col a:hover { color: #a8d8a0; }
.footer-bottom { max-width: 1200px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,.08); padding-top: 16px; }
.footer-bottom p { color: #4a7a42; font-size: 12px; }

/* ---- BOTTOM NAV (Mobile) ---- */
.bottom-nav {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--white); border-top: 1px solid var(--border);
  justify-content: space-around; align-items: stretch;
}
.nav-item {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  padding: 8px 0 10px; gap: 3px; cursor: pointer; position: relative;
}
.nav-item svg { width: 20px; height: 20px; fill: none; stroke: #888780; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.nav-item span { font-size: 9px; color: #888780; }
.nav-item .cart-badge { position: absolute; top: 5px; right: calc(50% - 16px); background: var(--red); color: #fff; }
.nav-item.active svg { stroke: var(--green); }
.nav-item.active span { color: var(--green); font-weight: 600; }

/* ---- PRODUCT DETAIL ---- */
.product-detail-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.product-gallery .main-img { width: 100%; border-radius: var(--radius-md); border: 1px solid var(--border); }
.img-placeholder-lg { height: 340px; background: var(--green-light); border-radius: var(--radius-md); }
.thumb-row { display: flex; gap: 8px; margin-top: 10px; }
.thumb-row .thumb { width: 64px; height: 64px; object-fit: cover; border-radius: 8px; border: 1px solid var(--border); cursor: pointer; }
.product-category { font-size: 12px; color: var(--text-muted); margin-bottom: 6px; }
.product-info h1 { font-size: 24px; font-weight: 700; margin-bottom: 10px; }
.rating-row { display: flex; align-items: center; gap: 4px; margin-bottom: 14px; }
.rating-count { font-size: 13px; color: var(--text-muted); margin-left: 4px; }
.price-block { margin-bottom: 16px; }
.price-big { font-size: 28px; font-weight: 700; color: var(--green); }
.product-desc { font-size: 14px; line-height: 1.7; color: #444; margin-bottom: 20px; }
.add-to-cart-block { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 10px; }
.qty-control { display: flex; align-items: center; gap: 8px; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 4px; }
.qty-btn { background: var(--green-light); border: none; border-radius: 4px; width: 28px; height: 28px; font-size: 16px; cursor: pointer; color: var(--green); }
.qty-control input { width: 36px; text-align: center; border: none; background: none; font-size: 15px; font-weight: 600; }
.qty-control span { min-width: 28px; text-align: center; font-weight: 600; }
.stock-info { font-size: 12px; color: var(--text-muted); margin-top: 6px; }
/* ── Ürün Açıklaması (tam genişlik) ── */
.product-desc-full { margin: 2rem 0; padding: 2rem; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); }
.product-desc-full h2 { font-size: 1.1rem; font-weight: 700; color: #0f172a; margin-bottom: 1.25rem; padding-bottom: .75rem; border-bottom: 2px solid var(--green-light); }

/* ---- REVIEWS ---- */
.reviews-section { border-top: 1px solid var(--border); padding-top: 28px; }
.reviews-section h2 { font-size: 18px; font-weight: 700; margin-bottom: 20px; }
.review-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px; margin-bottom: 12px; }
.review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; flex-wrap: wrap; }
.review-header strong { font-size: 14px; }
.review-header small { font-size: 11px; color: var(--text-muted); margin-left: auto; }
.review-stars { display: flex; }

/* ---- CART ---- */
.cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: 24px; align-items: start; }
.cart-row { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid #f1efe8; }
.cart-img { width: 72px; height: 72px; object-fit: cover; border-radius: var(--radius-sm); border: 1px solid var(--border); }
.cart-img-placeholder { width: 72px; height: 72px; background: var(--green-light); border-radius: var(--radius-sm); }
.cart-info { flex: 1; }
.cart-name { font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.cart-unit-price { font-size: 12px; color: var(--text-muted); }
.cart-qty-wrap .qty-control { display: flex; align-items: center; gap: 4px; }
.cart-qty-wrap .qty-btn { width: 24px; height: 24px; font-size: 14px; }
.cart-line-total { font-size: 15px; font-weight: 700; color: var(--green); min-width: 80px; text-align: right; }
.coupon-row { display: flex; align-items: center; gap: 10px; padding: 16px 0; }
.coupon-row input { flex: 1; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 8px 12px; }
.coupon-applied { color: var(--green); font-size: 13px; font-weight: 600; }
.coupon-error { color: var(--red); font-size: 13px; }
.cart-summary { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px; }
.cart-summary h3 { font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; padding: 5px 0; }
.summary-row.total { font-size: 17px; font-weight: 700; border-top: 1px solid var(--border); margin-top: 8px; padding-top: 12px; }
.summary-row.discount { color: var(--green); }
.free-ship-hint { font-size: 12px; color: var(--green); margin-top: 10px; text-align: center; }
.empty-cart { text-align: center; padding: 60px 20px; }
.empty-cart p { font-size: 16px; color: var(--text-muted); margin-bottom: 20px; }

/* ---- CHECKOUT ---- */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 28px; align-items: start; }
.checkout-form { }
.form-section { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px; margin-bottom: 16px; }
.form-section h3 { font-size: 15px; font-weight: 700; margin-bottom: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 5px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 9px 12px; font-size: 14px; background: #fafaf8; transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--green); }
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.addr-option { display: flex; align-items: center; gap: 8px; padding: 8px 0; cursor: pointer; font-size: 14px; border-bottom: 1px solid #f1efe8; }
.payment-option { display: flex; align-items: center; gap: 10px; padding: 10px 0; cursor: pointer; font-size: 14px; border-bottom: 1px solid #f1efe8; }
.auto-order-label { display: flex; align-items: center; gap: 8px; font-size: 14px; cursor: pointer; }
.sticky-summary { position: sticky; top: 76px; }
.summary-item { display: flex; justify-content: space-between; font-size: 13px; padding: 4px 0; color: #444; }
.summary-divider { border-top: 1px solid var(--border); margin: 10px 0; }
.secure-badge { text-align: center; font-size: 12px; color: var(--text-muted); margin-top: 10px; }

/* ---- SUCCESS PAGE ---- */
.success-page { display: flex; justify-content: center; padding: 60px 24px; }
.success-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; max-width: 500px; width: 100%; text-align: center; }
.success-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--green); color: #fff; font-size: 28px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.error-icon { background: var(--red); }
.success-box h1 { font-size: 22px; margin-bottom: 10px; }
.success-box p { color: var(--text-muted); margin-bottom: 8px; }
.success-actions { display: flex; gap: 12px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }
.review-reward-banner { margin-top: 24px; background: var(--green-light); border-radius: var(--radius-sm); padding: 16px; }
.review-reward-banner p { color: #27500a; font-size: 14px; margin-bottom: 10px; }

/* ---- AUTH ---- */
.auth-page { display: flex; justify-content: center; padding: 40px 24px; }
.auth-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; max-width: 420px; width: 100%; }
.auth-box h1 { font-size: 22px; font-weight: 700; margin-bottom: 20px; }
.auth-switch { text-align: center; margin-top: 16px; font-size: 14px; color: var(--text-muted); }
.auth-switch a { color: var(--green); font-weight: 600; }
.alert-error   { background: #fcebeb; color: #791f1f; border-radius: var(--radius-sm); padding: 10px 14px; margin-bottom: 14px; font-size: 13px; }
.alert-success { background: var(--green-light); color: #27500a; border-radius: var(--radius-sm); padding: 10px 14px; margin-bottom: 14px; font-size: 13px; }
.alert-warning { background: #faeeda; color: #633806; border-radius: var(--radius-sm); padding: 10px 14px; margin-bottom: 14px; font-size: 13px; }

/* ---- ACCOUNT ---- */
.account-page h1 { font-size: 22px; font-weight: 700; margin-bottom: 24px; }
.account-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; margin-bottom: 28px; }
.account-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 20px 16px; display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center; font-size: 13px; font-weight: 600; transition: all .2s;
}
.account-card svg { width: 24px; height: 24px; fill: none; stroke: var(--green); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.account-card:hover { border-color: var(--green); background: var(--green-light); }
.account-card-logout svg { stroke: var(--red); }
.account-card-logout:hover { border-color: var(--red); background: #fcebeb; }
.referral-box { background: #faeeda; border-radius: var(--radius-md); padding: 20px; border: 1px solid #fac775; }
.referral-box h3 { font-size: 15px; font-weight: 700; color: #412402; margin-bottom: 10px; }
.ref-code-display { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.ref-code-display span { font-size: 22px; font-weight: 700; color: #412402; letter-spacing: 3px; }
.referral-box p { font-size: 13px; color: #854f0b; }
.orders-list { display: flex; flex-direction: column; gap: 12px; }
.order-row-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 16px; }
.order-row-head { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 10px; }
.order-num { font-weight: 700; font-size: 15px; }
.order-date, .order-total { font-size: 13px; color: var(--text-muted); }
.order-total { margin-left: auto; font-weight: 600; color: var(--green); }
.status-badge { font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 10px; }
.status-green  { background: var(--green-light); color: #27500a; }
.status-blue   { background: #e6f1fb; color: #0c447c; }
.status-amber  { background: #faeeda; color: #633806; }
.status-purple { background: #eeedfe; color: #3c3489; }
.status-teal   { background: #e1f5ee; color: #085041; }
.status-red    { background: #fcebeb; color: #791f1f; }
.status-gray   { background: #f1efe8; color: #5f5e5a; }
.tracking-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 13px; color: var(--text-muted); margin-bottom: 10px; padding: 8px 10px; background: #f1efe8; border-radius: var(--radius-sm); }
.tracking-row code { background: var(--white); border: 1px solid var(--border); border-radius: 4px; padding: 2px 6px; font-size: 12px; }
.order-row-actions { display: flex; gap: 8px; }
.back-link { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; color: var(--green); margin-bottom: 16px; }
.data-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.data-table th { text-align: left; padding: 10px 12px; font-size: 11px; font-weight: 700; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.data-table td { padding: 10px 12px; border-bottom: 1px solid #f1efe8; }
.pts-plus { color: var(--green); font-weight: 600; }
.pts-minus { color: var(--red); font-weight: 600; }
.points-header-card { background: var(--green); border-radius: var(--radius-md); padding: 24px; text-align: center; margin-bottom: 20px; }
.pts-big { font-size: 42px; font-weight: 700; color: #fff; }
.pts-label { color: #a8d8a0; font-size: 14px; margin-top: 4px; }
.pts-worth { display: inline-block; background: rgba(255,255,255,.15); color: #fff; font-size: 13px; border-radius: 20px; padding: 4px 14px; margin-top: 8px; }
.points-info-text { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.addresses-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; margin-bottom: 28px; }
.address-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 16px; font-size: 13px; line-height: 1.7; }
.address-card strong { font-size: 14px; font-weight: 700; }
.default-addr { border-color: var(--green); }
.default-badge { display: inline-block; background: var(--green-light); color: var(--green); font-size: 10px; font-weight: 700; border-radius: 8px; padding: 2px 8px; margin-bottom: 6px; }
.add-address-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px; margin-top: 16px; }
.add-address-form h3 { font-size: 16px; font-weight: 700; margin-bottom: 16px; }

/* ---- ORDER DETAIL ---- */
.order-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 16px; }
.order-items-box, .order-info-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 16px; }
.order-items-box h3, .order-info-box h3 { font-size: 15px; font-weight: 700; margin-bottom: 12px; }
.order-item-row { display: flex; gap: 10px; padding: 6px 0; border-bottom: 1px solid #f1efe8; font-size: 13px; }
.oi-name { flex: 1; }
.oi-qty { color: var(--text-muted); }
.oi-price { font-weight: 600; }
.order-total-row { display: flex; justify-content: space-between; font-weight: 700; font-size: 15px; padding-top: 10px; margin-top: 4px; border-top: 1px solid var(--border); }
.review-prompt-box { background: var(--green-light); border-radius: var(--radius-md); padding: 20px; margin-top: 20px; }
.review-prompt-box p { color: #27500a; font-size: 14px; margin-bottom: 16px; }
.review-form-item { margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid rgba(0,0,0,.06); }
.star-select { display: flex; flex-direction: row-reverse; justify-content: flex-end; margin: 8px 0; }
.star-select input { display: none; }
.star-select label { font-size: 24px; color: #d3d1c7; cursor: pointer; }
.star-select input:checked ~ label,
.star-select label:hover,
.star-select label:hover ~ label { color: var(--amber); }
.review-form-item textarea { width: 100%; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 8px; font-size: 13px; margin-bottom: 8px; }

/* ---- BLOG DETAIL ---- */
.blog-detail .blog-hero-img { height: 320px; background-size: cover; background-position: center; border-radius: var(--radius-md); margin-bottom: 20px; }
.blog-detail h1 { font-size: 26px; font-weight: 700; margin-bottom: 8px; }
.blog-content { font-size: 15px; line-height: 1.8; color: #333; margin-top: 16px; }

/* ---- EMPTY ---- */
.empty-msg { color: var(--text-muted); font-size: 15px; padding: 20px 0; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .hero-stats { display: none; }
  .hero-text h1 { font-size: 24px; }
  .checkout-layout, .cart-layout, .product-detail-inner, .order-detail-grid { grid-template-columns: 1fr; }
  .sticky-summary { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  body { padding-bottom: 70px; }
  .bottom-nav { display: flex; }
  .site-header .btn-outline-sm { display: none; }
}
@media (max-width: 600px) {
  .products-grid { grid-template-columns: 1fr 1fr; }
  .hero-text h1 { font-size: 20px; }
  .section { padding: 20px 16px; }
  .hero { padding: 24px 16px 32px; }
  .header-inner { padding: 0 16px; }
  .footer-inner { grid-template-columns: 1fr; }
  .account-grid { grid-template-columns: 1fr 1fr; }
  }
.site-logo-img { height: 40px; width: auto; max-width: 180px; object-fit: contain; display: block; }