/* Glo Little Luxury — site-wide brand chrome (header, footer, nav, buttons, cards) */

.glo-theme, .glo-theme :where(h1,h2,h3,h4,h5,h6,p,a,span,li,button,input) {
  font-family: var(--glo-font-body);
  color: var(--glo-ink);
}
.glo-theme { background: var(--glo-bg); }
.glo-theme :where(h1,h2,h3,h4){ font-family: var(--glo-font-display); font-weight: 700; line-height: 1.12; margin: 0; }
.glo-theme a { text-decoration: none; color: inherit; }
.glo-theme ul { list-style: none; margin: 0; padding: 0; }
.glo-theme img { max-width: 100%; display: block; }
.glo-theme *, .glo-theme *::before, .glo-theme *::after { box-sizing: border-box; }

.glo-wrap { max-width: var(--glo-container); margin: 0 auto; padding: 0 24px; }

/* ---------- Announcement bar ---------- */
.glo-announce { background: var(--glo-ink); color: #fff; text-align: center; font-size: 13px; font-weight: 600; padding: 8px 12px; letter-spacing: .3px; }

/* ---------- Header ---------- */
.glo-header { background: var(--glo-surface); border-bottom: 1px solid var(--glo-border); position: sticky; top: 0; z-index: 999; }
.glo-header__top { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; gap: 24px; }
.glo-logo { font-family: var(--glo-font-display); font-size: 28px; font-weight: 800; color: var(--glo-violet); line-height: 1; }
.glo-logo span { color: var(--glo-coral); }

.glo-search { flex: 1; max-width: 480px; display: flex; background: var(--glo-bg); border-radius: var(--glo-radius-pill); padding: 4px 4px 4px 18px; align-items: center; }
.glo-search input { border: none; background: transparent; flex: 1; font-family: var(--glo-font-body); font-size: 14px; color: var(--glo-ink); outline: none; min-width: 0; }
.glo-search button { background: var(--glo-violet); color: #fff; border: none; border-radius: var(--glo-radius-pill); padding: 9px 20px; font-weight: 700; font-size: 13px; cursor: pointer; }

.glo-header-actions { display: flex; align-items: center; gap: 22px; font-size: 12.5px; font-weight: 700; flex-shrink: 0; }
.glo-header-actions .glo-hact { display: flex; flex-direction: column; align-items: center; gap: 3px; color: var(--glo-ink); }
.glo-header-actions svg { width: 20px; height: 20px; stroke: var(--glo-ink); }
.glo-header-actions .glo-cart-count { background: var(--glo-coral); color: #fff; border-radius: 999px; font-size: 10px; padding: 0 5px; min-width: 15px; text-align: center; margin-left: 3px; }

.glo-nav { background: var(--glo-teal-deep); }
.glo-nav__inner { display: flex; align-items: center; gap: 26px; padding: 11px 0; overflow-x: auto; }
.glo-nav__inner a { color: #fff; font-weight: 600; font-size: 13.5px; white-space: nowrap; opacity: .95; }
.glo-nav__inner a:hover { opacity: 1; text-decoration: underline; }
.glo-nav__inner a.glo-nav-hot { background: var(--glo-coral); padding: 6px 14px; border-radius: var(--glo-radius-pill); opacity: 1; }

/* ---------- Buttons ---------- */
.glo-btn { display: inline-block; font-family: var(--glo-font-body); font-weight: 700; font-size: 14px; padding: 13px 26px; border-radius: var(--glo-radius-pill); border: none; cursor: pointer; text-align: center; transition: transform .15s ease, opacity .15s ease; }
.glo-btn:hover { transform: translateY(-1px); opacity: .94; }
.glo-btn--primary { background: var(--glo-violet); color: #fff; }
.glo-btn--coral { background: var(--glo-coral); color: #fff; }
.glo-btn--ghost { background: transparent; border: 2px solid rgba(255,255,255,.7); color: #fff; padding: 11px 24px; }
.glo-btn--ghost-dark { background: transparent; border: 2px solid var(--glo-ink); color: var(--glo-ink); padding: 11px 24px; }
.glo-btn--sm { padding: 9px 18px; font-size: 12.5px; }
.glo-btn--block { display: block; width: 100%; }

/* ---------- Section shell ---------- */
.glo-section { padding: 52px 0; }
.glo-section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 26px; gap: 16px; flex-wrap: wrap; }
.glo-eyebrow { color: var(--glo-coral); font-weight: 700; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; display: block; }
.glo-section-head h2 { font-size: 26px; }
.glo-section-head .glo-see-all { font-size: 13px; font-weight: 700; color: var(--glo-violet); border-bottom: 2px solid var(--glo-violet); padding-bottom: 2px; flex-shrink: 0; }

/* ---------- Category tiles ---------- */
.glo-cat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.glo-cat-card { background: var(--glo-surface); border-radius: var(--glo-radius-md); padding: 18px 10px; text-align: center; border: 1px solid var(--glo-border); transition: border-color .15s ease, transform .15s ease; }
.glo-cat-card:hover { border-color: var(--glo-teal-bright); transform: translateY(-3px); }
.glo-cat-card .glo-cat-ic { width: 56px; height: 56px; border-radius: 50%; background: var(--glo-bg); margin: 0 auto 10px; display: flex; align-items: center; justify-content: center; color: var(--glo-teal-deep); }
.glo-cat-card .glo-cat-ic svg { width: 26px; height: 26px; }
.glo-cat-card h4 { font-family: var(--glo-font-display); font-size: 13.5px; font-weight: 700; margin-bottom: 2px; }
.glo-cat-card p { font-size: 11px; color: var(--glo-ink-soft); margin: 0; }

/* ---------- Concern tiles ---------- */
.glo-concern { background: var(--glo-violet); }
.glo-concern .glo-section-head h2, .glo-concern .glo-eyebrow { color: #fff; }
.glo-concern .glo-eyebrow { color: #FFD9A0; }
.glo-concern .glo-see-all { color: #fff; border-color: #fff; }
.glo-concern-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.glo-concern-card { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22); border-radius: 14px; padding: 16px 12px; text-align: center; color: #fff; font-size: 13px; font-weight: 600; transition: background .15s ease; }
.glo-concern-card:hover { background: rgba(255,255,255,.2); }

/* ---------- Trust strip ---------- */
.glo-trust { background: var(--glo-surface); border-bottom: 1px solid var(--glo-border); padding: 20px 0; }
.glo-trust-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.glo-trust-item { display: flex; align-items: center; gap: 12px; }
.glo-trust-item .glo-trust-ic { width: 40px; height: 40px; border-radius: 50%; background: var(--glo-bg); display: flex; align-items: center; justify-content: center; color: var(--glo-teal-deep); flex-shrink: 0; }
.glo-trust-item .glo-trust-ic svg { width: 20px; height: 20px; }
.glo-trust-item h4 { font-family: var(--glo-font-display); font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.glo-trust-item p { font-size: 12px; color: var(--glo-ink-soft); margin: 0; }

/* ---------- Product cards (reused on homepage, and future category/PDP pages) ---------- */
.glo-prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.glo-prod-card { background: var(--glo-surface); border: 1px solid var(--glo-border); border-radius: var(--glo-radius-md); overflow: hidden; position: relative; display: flex; flex-direction: column; }
.glo-prod-card .glo-badge { position: absolute; top: 10px; left: 10px; background: var(--glo-coral); color: #fff; font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 10px; z-index: 2; }
.glo-prod-img { height: 160px; background: var(--glo-bg); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.glo-prod-img img { height: 100%; width: 100%; object-fit: contain; padding: 12px; }
.glo-prod-body { padding: 14px; display: flex; flex-direction: column; flex: 1; }
.glo-prod-cat { font-size: 10px; color: var(--glo-teal-deep); font-weight: 700; text-transform: uppercase; letter-spacing: .4px; margin-bottom: 4px; }
.glo-prod-title { font-family: var(--glo-font-display); font-size: 13.5px; font-weight: 700; line-height: 1.3; margin-bottom: 8px; min-height: 34px; }
.glo-prod-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 10px; margin-top: auto; }
.glo-prod-price .glo-now { color: var(--glo-coral); font-weight: 800; font-size: 15px; }
.glo-prod-price .glo-old { color: #B2AF9F; font-size: 12px; text-decoration: line-through; }
.glo-prod-cart { width: 100%; background: var(--glo-violet); color: #fff; border: none; border-radius: 10px; padding: 9px; font-weight: 700; font-size: 12px; cursor: pointer; }
.glo-prod-cart:hover { opacity: .9; }

/* ---------- Footer ---------- */
.glo-footer { background: var(--glo-ink); color: #D8D6CC; padding: 48px 0 20px; }
.glo-footer .glo-logo { color: #fff; margin-bottom: 10px; }
.glo-foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 36px; }
.glo-foot-grid p { font-size: 13px; line-height: 1.7; color: #A6A498; }
.glo-foot-col h5 { font-family: var(--glo-font-display); font-size: 12.5px; color: #fff; font-weight: 700; margin-bottom: 14px; letter-spacing: .4px; text-transform: uppercase; }
.glo-foot-col li { font-size: 13px; margin-bottom: 9px; color: #A6A498; }
.glo-foot-col a:hover { color: #fff; }
.glo-foot-bottom { border-top: 1px solid #34332C; padding-top: 18px; font-size: 12px; color: #7A785F; text-align: center; }

@media (max-width: 980px) {
  .glo-cat-grid { grid-template-columns: repeat(3, 1fr); }
  .glo-concern-grid { grid-template-columns: repeat(2, 1fr); }
  .glo-prod-grid { grid-template-columns: repeat(2, 1fr); }
  .glo-trust-inner { grid-template-columns: 1fr 1fr; }
  .glo-foot-grid { grid-template-columns: 1fr 1fr; }
  .glo-search { display: none; }
}
