/* ==========================================================
   UNIFIED TEMPLATE — Design Tokens (from Claude Design)
   ========================================================== */
:root {
  --teal-700: #145d6c;
  --teal-600: #1a7b8e;
  --teal-500: #2a98ad;
  --teal-50:  #e6f3f5;
  --teal-25:  #f4fafb;
  --green-600: #27ae60;
  --green-500: #2ecc71;
  --green-50:  #e8f7ee;
  --orange-500: #e67e22;
  --orange-50: #fdf1e6;
  --ink:        #102329;
  --ink-2:      #2a3d44;
  --muted:      #6b7d80;
  --line:       #e2e8ea;
  --line-2:     #eef2f4;
  --paper:      #ffffff;
  --canvas-bg:  #f0f4f6;
  --danger:     #c0392b;
  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --shadow-xs: 0 1px 2px rgba(16, 35, 41, 0.05);
  --shadow-sm: 0 2px 8px rgba(16, 35, 41, 0.06), 0 1px 2px rgba(16, 35, 41, 0.04);
  --shadow-md: 0 8px 28px rgba(16, 35, 41, 0.10), 0 2px 6px rgba(16, 35, 41, 0.04);
  --shadow-lg: 0 24px 60px rgba(16, 35, 41, 0.16);
  --font: "Alexandria", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* Apply the template font globally */
body { font-family: var(--font); }

/* ===== HEADER ===== */
.uh-welcome { background: var(--teal-700); color: rgba(255,255,255,0.9); font-size: 12.5px; padding: 9px 0; }
.uh-welcome-row { max-width: 1320px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.uh-welcome-msg { display: inline-flex; align-items: center; gap: 8px; font-weight: 400; }
.uh-welcome-msg svg { color: #f0c674; width: 14px; height: 14px; }
.uh-welcome-msg img { width: 18px; height: 18px; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.9; }
.uh-lang { display: inline-flex; align-items: center; gap: 2px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-pill); padding: 3px; }
.uh-lang button { color: rgba(255,255,255,0.7); font-family: inherit; font-size: 12px; font-weight: 500; padding: 4px 12px; border-radius: var(--radius-pill); border: 0; background: none; cursor: pointer; }
.uh-lang button.active { background: #fff; color: var(--teal-700); font-weight: 600; }

.uh-main { background: #fff; border-bottom: 1px solid var(--line-2); }
.uh-main-row { max-width: 1320px; margin: 0 auto; padding: 0 32px; height: 84px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 32px; }

.uh-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.uh-logo-mark { width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.uh-logo-mark svg { width: 28px; height: 28px; }
.uh-logo-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.uh-logo-text h1 { margin: 0; font-size: 19px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; line-height: 1.1; }
.uh-logo-text p { margin: 2px 0 0; font-size: 11px; font-weight: 500; color: var(--teal-600); letter-spacing: 0.08em; text-transform: uppercase; }

.uh-search { max-width: 560px; width: 100%; justify-self: center; position: relative; }
.uh-search-form { display: flex; background: var(--teal-25); border: 1.5px solid var(--line); border-radius: var(--radius-pill); padding: 4px; align-items: center; transition: all .2s; }
.uh-search-form:hover, .uh-search-form:focus-within { border-color: var(--teal-500); }
.uh-search-form .icon { width: 20px; height: 20px; margin: 0 14px 0 8px; color: var(--muted); }
.uh-search-form input { flex: 1; border: 0; outline: 0; background: transparent; padding: 10px 0; font: inherit; font-size: 14px; color: var(--ink); }
.uh-search-form input::placeholder { color: var(--muted); }
.uh-search-form button { background: var(--teal-600); color: #fff; padding: 10px 24px; border-radius: var(--radius-pill); font-size: 14px; font-weight: 600; border: 0; cursor: pointer; font-family: inherit; }
.uh-search-form button:hover { background: var(--teal-700); }

.uh-actions { display: flex; align-items: center; gap: 4px; }
.uh-action { display: inline-flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: var(--radius); color: var(--ink); font-size: 14px; font-weight: 500; position: relative; transition: background .15s; text-decoration: none; }
.uh-action:hover { background: var(--teal-50); color: var(--teal-700); }
.uh-action svg { width: 22px; height: 22px; }
.uh-action .lbl-sm { font-size: 11px; color: var(--muted); }
.uh-action .lbl-strong { font-size: 13.5px; font-weight: 600; line-height: 1.2; }

.uh-cart { position: relative; }
.uh-badge { position: absolute; top: 4px; inset-inline-start: 4px; min-width: 19px; height: 19px; padding: 0 5px; background: var(--orange-500); color: #fff; border-radius: var(--radius-pill); font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 2px #fff; }

.uh-nav { background: #fff; border-bottom: 1px solid var(--line); }
.uh-nav-row { max-width: 1320px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; gap: 4px; height: 56px; }
.uh-nav-row > a { display: inline-flex; align-items: center; gap: 8px; padding: 16px; font-size: 14.5px; font-weight: 500; color: var(--ink-2); position: relative; height: 56px; transition: color .15s; text-decoration: none; }
.uh-nav-row > a svg { width: 17px; height: 17px; opacity: .7; }
.uh-nav-row > a:hover { color: var(--teal-700); }
.uh-nav-row > a.active { color: var(--teal-700); font-weight: 600; }
.uh-nav-row > a.active::after { content: ""; position: absolute; left: 16px; right: 16px; bottom: 0; height: 3px; background: var(--teal-600); border-radius: 3px 3px 0 0; }
.uh-nav-cta { margin-inline-start: auto; background: var(--green-50); color: var(--green-600); border: 1px solid rgba(39, 174, 96, 0.25); padding: 8px 16px !important; border-radius: var(--radius-pill); font-weight: 600 !important; font-size: 13.5px !important; height: auto !important; transition: all .15s; }
.uh-nav-cta::after { display: none !important; }
.uh-nav-cta:hover { background: var(--green-600) !important; color: #fff !important; border-color: var(--green-600); }
.uh-nav-cta svg { color: currentColor !important; opacity: 1 !important; }

/* ===== MOBILE HEADER ===== */
.mh { background: #fff; border-bottom: 1px solid var(--line); display: none; }
.mh-welcome { background: var(--teal-700); color: rgba(255,255,255,0.9); font-size: 11.5px; text-align: center; padding: 7px 14px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.mh-welcome svg { color: #f0c674; width: 13px; height: 13px; }
.mh-welcome img { width: 16px; height: 16px; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.9; }
.mh-bar { height: 60px; display: grid; grid-template-columns: 44px 1fr auto; align-items: center; padding: 0 14px; gap: 8px; }
.mh-burger { width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line); background: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; cursor: pointer; }
.mh-burger span { width: 17px; height: 2px; background: var(--ink); border-radius: 2px; }
.mh-logo { display: flex; align-items: center; gap: 8px; justify-self: start; text-decoration: none; }
.mh-logo .mark { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mh-logo .mark svg { width: 22px; height: 22px; }
.mh-logo .mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.mh-logo h1 { margin: 0; font-size: 14px; font-weight: 700; line-height: 1.1; color: var(--ink); }
.mh-logo p { margin: 1px 0 0; font-size: 9.5px; color: var(--teal-600); font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; }
.mh-icons { display: flex; align-items: center; gap: 2px; }
.mh-iconbtn { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--ink); position: relative; text-decoration: none; }
.mh-iconbtn:hover { background: var(--teal-50); }
.mh-iconbtn svg { width: 21px; height: 21px; }
.mh-iconbtn .b { position: absolute; top: 4px; inset-inline-start: 4px; min-width: 17px; height: 17px; padding: 0 4px; background: var(--orange-500); color: #fff; border-radius: var(--radius-pill); font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 2px #fff; }
.mh-search-block { padding: 0 14px 14px; }
.mh-search-form { display: flex; align-items: center; background: var(--teal-25); border: 1.5px solid var(--line); border-radius: var(--radius-pill); padding: 4px 4px 4px 12px; }
.mh-search-form > svg { width: 17px; height: 17px; color: var(--muted); margin-inline-end: 8px; flex-shrink: 0; }
.mh-search-form input { flex: 1; border: 0; outline: 0; background: transparent; padding: 8px 0; font: inherit; font-size: 13.5px; color: var(--ink); }
.mh-search-form input::placeholder { color: var(--muted); }
.mh-search-form button { background: var(--teal-600); color: #fff; width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 0; cursor: pointer; flex-shrink: 0; }
.mh-search-form button svg { width: 14px; height: 14px; color: #fff; margin: 0; }

/* Mobile drawer */
.mh-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 998; }
.mh-overlay.show, .mh-overlay.open { display: block; }
.mh-drawer { position: fixed; top: 0; inset-inline-start: -100%; bottom: 0; width: 84%; max-width: 340px; background: #fff; z-index: 999; overflow-y: auto; transition: inset-inline-start 0.3s ease; box-shadow: 4px 0 20px rgba(0,0,0,0.15); }
.mh-drawer.show, .mh-drawer.open { inset-inline-start: 0; }
.mh-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; border-bottom: 1px solid var(--line-2); }
.mh-drawer-head h3 { margin: 0; font-size: 14px; font-weight: 700; color: var(--teal-700); display: flex; align-items: center; gap: 8px; }
.mh-drawer-head h3 svg { width: 17px; height: 17px; color: var(--teal-600); }
.mh-drawer-close { width: 32px; height: 32px; border-radius: 8px; background: var(--teal-50); color: var(--teal-700); display: flex; align-items: center; justify-content: center; font-size: 18px; line-height: 1; border: 0; cursor: pointer; }
.mh-drawer-list { padding: 8px 10px 14px; list-style: none; margin: 0; }
.mh-drawer-list li { margin: 0; }
.mh-drawer-list a { display: flex; align-items: center; gap: 12px; padding: 11px 12px; font-size: 14px; color: var(--ink-2); border-radius: 10px; font-weight: 500; text-decoration: none; }
.mh-drawer-list a:hover, .mh-drawer-list a.active { background: var(--teal-25); color: var(--teal-700); font-weight: 600; }
.mh-drawer-list .ic { width: 32px; height: 32px; border-radius: 8px; background: var(--teal-25); color: var(--teal-700); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mh-drawer-list .ic svg { width: 16px; height: 16px; }
.mh-drawer-cta { margin: 14px 14px 4px; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px; background: var(--green-600); color: #fff !important; border-radius: 12px; font-weight: 700 !important; font-size: 14px !important; text-decoration: none; }
.mh-drawer-cta svg { width: 18px; height: 18px; color: #fff !important; }

/* ===== FOOTER ===== */
.uf { background: #102329; color: rgba(255,255,255,0.72); position: relative; }
.uf-top { max-width: 1320px; margin: 0 auto; padding: 56px 32px 40px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 48px; }
.uf-section h3 { margin: 0 0 20px; font-size: 13px; font-weight: 600; color: #fff; letter-spacing: 0.1em; text-transform: uppercase; }
.uf-section p { font-size: 14px; line-height: 1.8; margin: 0 0 18px; color: rgba(255,255,255,0.65); }
.uf-section ul { list-style: none; padding: 0; margin: 0; }
.uf-section ul li { margin-bottom: 10px; }
.uf-section ul li a { font-size: 14px; color: rgba(255,255,255,0.7); display: inline-flex; align-items: center; gap: 8px; transition: color .15s; text-decoration: none; }
.uf-section ul li a:hover { color: var(--teal-500); }
.uf-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.uf-brand .mark { width: 60px; height: 60px; background: #fff; border-radius: 12px; display: flex; align-items: center; justify-content: center; padding: 6px; flex-shrink: 0; }
.uf-brand .mark svg { width: 28px; height: 28px; }
.uf-brand .mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.uf-brand h4 { margin: 0; font-size: 18px; font-weight: 700; color: #fff; letter-spacing: -0.01em; }
.uf-brand span { font-size: 11px; color: var(--teal-500); letter-spacing: 0.1em; text-transform: uppercase; }
.uf-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 13.5px; color: rgba(255,255,255,0.7); }
.uf-contact-item .ic { width: 32px; height: 32px; border-radius: 8px; background: rgba(26, 123, 142, 0.18); color: var(--teal-500); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.uf-contact-item .ic svg { width: 16px; height: 16px; }
.uf-contact-item strong { color: #fff; font-weight: 600; display: block; margin-bottom: 2px; font-size: 12px; }
.uf-social { display: flex; gap: 10px; margin-top: 18px; }
.uf-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: all .15s; text-decoration: none; }
.uf-social a:hover { background: var(--teal-600); color: #fff; border-color: var(--teal-600); }
.uf-social a svg { width: 16px; height: 16px; }
.uf-payments { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.uf-pay { height: 30px; padding: 0 12px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.85); font-size: 11px; font-weight: 700; letter-spacing: 0.05em; }
.uf-pay-mada { color: #00B5A5; }
.uf-pay-visa { color: #1A1F71; background: #fff; border-color: #fff; }
.uf-pay-mc   { color: #EB001B; background: #fff; border-color: #fff; }
.uf-pay-apple { color: #fff; }
.uf-pay-tabby { color: #3BFFC9; }
.uf-pay-tamara { color: #FFD3B6; }
.uf-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 32px; max-width: 1320px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: rgba(255,255,255,0.5); }
.uf-bottom .links { display: flex; gap: 18px; }
.uf-bottom .links a { color: rgba(255,255,255,0.5); text-decoration: none; }
.uf-bottom .links a:hover { color: var(--teal-500); }
.uf-payments-section { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 32px 0; max-width: 1320px; margin: 0 auto; }
.uf-payments-label { font-size: 12px; color: rgba(255,255,255,0.5); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }

/* ===== Responsive ===== */
@media (max-width: 968px) {
  .uh-welcome, .uh-main, .uh-nav { display: none; }
  .mh { display: block; }
  .uf { margin-top: 30px; padding-top: 0; }
  .uf-top { grid-template-columns: 1fr; gap: 20px; padding: 24px 18px 14px; }
  .uf-section h3 { margin: 0 0 10px; font-size: 12px; }
  .uf-section p { font-size: 13px; line-height: 1.55; margin: 0 0 10px; }
  .uf-section ul li { margin-bottom: 7px; }
  .uf-section ul li a { font-size: 13px; }
  .uf-brand { margin-bottom: 10px; gap: 10px; }
  .uf-brand .mark { width: 40px; height: 40px; }
  .uf-brand .mark svg { width: 22px; height: 22px; }
  .uf-brand h4 { font-size: 15px; }
  .uf-brand span { font-size: 10px; }
  .uf-contact-item { margin-bottom: 8px; font-size: 12.5px; gap: 10px; }
  .uf-contact-item .ic { width: 28px; height: 28px; }
  .uf-contact-item .ic svg { width: 14px; height: 14px; }
  .uf-contact-item strong { font-size: 11px; margin-bottom: 1px; }
  .uf-social { gap: 8px; margin-top: 10px; }
  .uf-social a { width: 32px; height: 32px; }
  .uf-social a svg { width: 14px; height: 14px; }
  .uf-payments-section { padding: 14px 18px 0; }
  .uf-payments-label { font-size: 11px; margin-bottom: 8px; }
  .uf-pay { height: 26px; padding: 0 10px; font-size: 10px; }
  .uf-bottom { padding: 10px 18px 14px; flex-direction: column; text-align: center; gap: 6px; font-size: 11.5px; }
}
