/* ============================================================
   GIFT HUB — Global Stylesheet
   Design: Luxury Gold & White, Dark mode support
   ============================================================ */

:root {
  /* Light Theme */
  --bg-primary: #fafaf8;
  --bg-gold: #f5e6c8;
  --bg-gold-deep: #e8d4a0;
  --bg-card: #ffffff;
  --bg-input: #ffffff;
  --bg-footer: #1a1208;

  --text-primary: #0d0d0d;
  --text-secondary: #4a4a4a;
  --text-muted: #888888;
  --text-on-gold: #3a2800;
  --text-on-dark: #f5e6c8;

  --accent-blue: #1a6cff;
  --accent-blue-hover: #0052d4;
  --accent-gold: #c9a227;
  --accent-gold-light: #f0c040;

  --status-success: #16a34a;
  --status-pending: #ea580c;
  --status-error: #dc2626;

  --border: rgba(0,0,0,0.08);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 6px 30px rgba(0,0,0,0.10);
  --shadow-lg: 0 16px 60px rgba(0,0,0,0.14);
  --shadow-card-hover: 0 24px 70px rgba(201,162,39,0.18);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-card: 20px;

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --font: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', system-ui, sans-serif;
}

[data-theme="dark"] {
  --bg-primary: #0f0e0a;
  --bg-gold: #1e1a0e;
  --bg-gold-deep: #2a2210;
  --bg-card: #1c1a12;
  --bg-input: #242018;
  --bg-footer: #050400;

  --text-primary: #f0e8d0;
  --text-secondary: #b8a880;
  --text-muted: #7a6a50;
  --text-on-gold: #f0e8d0;

  --border: rgba(255,255,255,0.08);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.3);
  --shadow-md: 0 6px 30px rgba(0,0,0,0.4);
  --shadow-lg: 0 16px 60px rgba(0,0,0,0.5);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  transition: background-color var(--transition), color var(--transition);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--accent-gold); border-radius: 3px; }

/* ── TYPOGRAPHY ── */
h1 { font-size: clamp(1.8rem, 5vw, 3rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; letter-spacing: -0.02em; }
h3 { font-size: 1.2rem; font-weight: 600; }
p { line-height: 1.65; color: var(--text-secondary); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius-sm); font-size: 0.95rem;
  font-weight: 600; cursor: pointer; border: none; transition: all var(--transition);
  text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: var(--accent-blue); color: #fff;
  box-shadow: 0 4px 18px rgba(26,108,255,0.3);
}
.btn-primary:hover { background: var(--accent-blue-hover); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(26,108,255,0.4); }
.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
  color: #1a0f00; font-weight: 700;
  box-shadow: 0 4px 18px rgba(201,162,39,0.35);
}
.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(201,162,39,0.5); }
.btn-outline {
  background: transparent; color: var(--text-primary);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--accent-blue); color: var(--accent-blue); }
.btn-danger { background: var(--status-error); color: #fff; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; border-radius: var(--radius-md); }
.btn-full { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* ── INPUTS ── */
.input-group { display: flex; flex-direction: column; gap: 6px; }
.input-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-secondary); }
.input-field {
  width: 100%; padding: 13px 16px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--border); background: var(--bg-input);
  color: var(--text-primary); font-size: 0.95rem; font-family: var(--font);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.input-field:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 4px rgba(26,108,255,0.12);
}
.input-field.error { border-color: var(--status-error); box-shadow: 0 0 0 4px rgba(220,38,38,0.1); }
.input-field.success { border-color: var(--status-success); }
.input-error-msg { font-size: 0.78rem; color: var(--status-error); }

/* ── CARDS ── */
.card {
  background: var(--bg-card); border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm); padding: 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
[data-theme="dark"] .navbar {
  background: rgba(15,14,10,0.92);
}
.navbar-brand {
  font-size: 1.4rem; font-weight: 800; color: var(--accent-gold);
  letter-spacing: -0.02em; text-decoration: none;
  display: flex; align-items: center; gap: 8px;
}
.navbar-brand span { color: var(--text-primary); }
.navbar-actions { display: flex; align-items: center; gap: 12px; }
.navbar-icon-btn {
  width: 40px; height: 40px; border-radius: 50%; border: none;
  background: var(--bg-gold); cursor: pointer; display: flex; align-items: center;
  justify-content: center; transition: all var(--transition); color: var(--text-primary);
  font-size: 1.1rem; position: relative; text-decoration: none;
}
.navbar-icon-btn:hover { background: var(--bg-gold-deep); transform: scale(1.05); }
.cart-badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--status-error); color: #fff;
  font-size: 0.65rem; font-weight: 700;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--bg-card);
}

/* ── HAMBURGER MENU ── */
.hamburger {
  width: 40px; height: 40px; cursor: pointer; border: none;
  background: transparent; display: flex; flex-direction: column;
  justify-content: center; align-items: center; gap: 5px; padding: 8px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-primary); border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── SIDE DRAWER ── */
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 1500; opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }
.drawer {
  position: fixed; top: 0; left: -320px; bottom: 0; width: 300px;
  background: var(--bg-card); z-index: 1600;
  transition: left var(--transition); padding: 0;
  box-shadow: var(--shadow-lg); display: flex; flex-direction: column;
}
.drawer.open { left: 0; }
.drawer-header {
  padding: 20px 24px; background: var(--bg-gold);
  display: flex; align-items: center; justify-content: space-between;
}
.drawer-close {
  width: 32px; height: 32px; border-radius: 50%; border: none;
  background: var(--bg-card); cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-primary); transition: all var(--transition);
}
.drawer-nav { padding: 16px; flex: 1; overflow-y: auto; }
.drawer-nav a {
  display: flex; align-items: center; gap: 12px; padding: 13px 16px;
  border-radius: var(--radius-sm); color: var(--text-primary);
  text-decoration: none; font-weight: 500; transition: all var(--transition);
  margin-bottom: 4px;
}
.drawer-nav a:hover, .drawer-nav a.active {
  background: var(--bg-gold); color: var(--accent-gold);
}
.drawer-nav a .nav-icon { font-size: 1.1rem; width: 24px; text-align: center; }
.drawer-footer {
  padding: 16px; border-top: 1px solid var(--border);
}
.drawer-divider { height: 1px; background: var(--border); margin: 8px 0; }

/* ── SERVICE CLIENT WIDGET ── */
.service-client {
  position: fixed; bottom: 24px; right: 20px; z-index: 900;
  display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
}
.service-client-toggle {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
  border: none; cursor: pointer; font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(201,162,39,0.4); transition: all var(--transition);
}
.service-client-toggle:hover { transform: scale(1.08); }
.service-client-menu {
  display: flex; flex-direction: column; gap: 8px; pointer-events: none;
  opacity: 0; transform: translateY(10px); transition: all var(--transition);
}
.service-client-menu.open { opacity: 1; transform: translateY(0); pointer-events: all; }
.service-btn {
  display: flex; align-items: center; gap: 10px; padding: 10px 16px;
  border-radius: var(--radius-sm); text-decoration: none; font-size: 0.85rem; font-weight: 600;
  box-shadow: var(--shadow-sm); white-space: nowrap; transition: all var(--transition);
}
.service-btn-whatsapp { background: #25d366; color: #fff; }
.service-btn-email { background: var(--accent-blue); color: #fff; }
.service-btn:hover { transform: translateX(-4px); box-shadow: var(--shadow-md); }

/* ── THEME TOGGLE ── */
.theme-toggle {
  width: 40px; height: 40px; border-radius: 50%; border: none;
  background: var(--bg-gold); cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); color: var(--text-primary);
}
.theme-toggle:hover { background: var(--bg-gold-deep); }

/* ── FOOTER ── */
.footer {
  background: var(--bg-footer); color: var(--text-on-dark);
  padding: 40px 24px 24px;
}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; max-width: 1100px; margin: 0 auto; }
.footer-brand { font-size: 1.5rem; font-weight: 800; color: var(--accent-gold); margin-bottom: 10px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.88rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--accent-gold); }
.footer-bottom { margin-top: 32px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); text-align: center; font-size: 0.8rem; color: var(--text-muted); max-width: 1100px; margin-left: auto; margin-right: auto; }
.footer-paypal-icon { cursor: pointer; font-size: 1.6rem; transition: transform var(--transition); display: inline-block; }
.footer-paypal-icon:hover { transform: scale(1.2); }

/* ── PAGE WRAPPER ── */
.page-wrapper { padding-top: 70px; min-height: 100vh; }

/* ── TOAST NOTIFICATIONS ── */
.toast-container { position: fixed; top: 80px; right: 20px; z-index: 9999; display: flex; flex-direction: column; gap: 8px; }
.toast {
  padding: 12px 20px; border-radius: var(--radius-sm);
  background: var(--bg-card); box-shadow: var(--shadow-md);
  font-size: 0.88rem; font-weight: 500; max-width: 320px;
  display: flex; align-items: center; gap: 10px;
  animation: toastIn 0.3s ease forwards;
  border-left: 4px solid var(--accent-blue);
}
.toast.success { border-left-color: var(--status-success); }
.toast.error { border-left-color: var(--status-error); }
.toast.warning { border-left-color: var(--status-pending); }
@keyframes toastIn { from { opacity: 0; transform: translateX(100%); } to { opacity: 1; transform: translateX(0); } }
@keyframes toastOut { from { opacity: 1; } to { opacity: 0; transform: translateX(100%); } }

/* ── SHAKE ANIMATION ── */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  15% { transform: translateX(-8px); }
  30% { transform: translateX(8px); }
  45% { transform: translateX(-6px); }
  60% { transform: translateX(6px); }
  75% { transform: translateX(-3px); }
  90% { transform: translateX(3px); }
}
.shake { animation: shake 0.45s ease; border-color: var(--status-error) !important; }

/* ── MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  z-index: 2000; display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none; transition: opacity var(--transition);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--bg-card); border-radius: var(--radius-lg);
  padding: 32px; max-width: 480px; width: 100%;
  box-shadow: var(--shadow-lg); transform: scale(0.9);
  transition: transform var(--transition);
}
.modal-overlay.open .modal { transform: scale(1); }
.modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.modal-close { background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--text-muted); }

/* ── STATUS BADGES ── */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 12px; border-radius: 100px; font-size: 0.78rem; font-weight: 600;
}
.badge-success { background: rgba(22,163,74,0.12); color: var(--status-success); }
.badge-pending { background: rgba(234,88,12,0.12); color: var(--status-pending); }
.badge-error { background: rgba(220,38,38,0.12); color: var(--status-error); }

/* ── LOADING SPINNER ── */
.spinner {
  width: 20px; height: 20px; border: 2px solid var(--border);
  border-top-color: var(--accent-blue); border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.4);
  z-index: 9000; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity var(--transition);
}
.loading-overlay.active { opacity: 1; pointer-events: all; }

/* ── SECTION LAYOUTS ── */
.section { padding: 60px 24px; }
.section-title { text-align: center; margin-bottom: 40px; }
.section-title p { margin-top: 10px; }
.container { max-width: 1100px; margin: 0 auto; }

/* ── PRODUCT GRID ── */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }

/* ── FORM STYLES ── */
.form-container { max-width: 500px; margin: 0 auto; padding: 40px 24px; }
.form-card { background: var(--bg-card); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-md); }
.form-title { text-align: center; margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-switch { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-secondary); cursor: pointer; }
.form-switch input[type=checkbox] { width: 18px; height: 18px; accent-color: var(--accent-blue); cursor: pointer; }

/* ── COUNTRY SELECTOR ── */
.country-selector { position: relative; }
.country-display {
  display: flex; align-items: center; gap: 10px; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  background: var(--bg-input); cursor: pointer; transition: border-color var(--transition);
}
.country-display:focus-within { border-color: var(--accent-blue); }
.country-dropdown {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0; z-index: 100;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  max-height: 280px; overflow: hidden; display: none;
}
.country-dropdown.open { display: flex; flex-direction: column; }
.country-search { padding: 10px; border-bottom: 1px solid var(--border); }
.country-search input { width: 100%; padding: 8px 12px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--bg-input); color: var(--text-primary); outline: none; font-size: 0.88rem; }
.country-list { overflow-y: auto; max-height: 220px; }
.country-option { display: flex; align-items: center; gap: 10px; padding: 10px 16px; cursor: pointer; font-size: 0.9rem; transition: background var(--transition); }
.country-option:hover { background: var(--bg-gold); }

/* ── OTP BOXES ── */
.otp-container { display: flex; gap: 10px; justify-content: center; }
.otp-box {
  width: 52px; height: 60px; border: 2px solid var(--border);
  border-radius: var(--radius-sm); font-size: 1.6rem; font-weight: 700;
  text-align: center; background: var(--bg-input); color: var(--text-primary);
  outline: none; transition: all var(--transition); caret-color: var(--accent-blue);
}
.otp-box:focus { border-color: var(--accent-blue); box-shadow: 0 0 0 4px rgba(26,108,255,0.12); }
.otp-box.filled { border-color: var(--accent-gold); background: rgba(201,162,39,0.06); }

/* ── PASSWORD STRENGTH ── */
.pwd-strength { margin-top: 8px; }
.pwd-bar { display: flex; gap: 4px; margin-bottom: 8px; }
.pwd-bar-segment { flex: 1; height: 4px; border-radius: 2px; background: var(--border); transition: background var(--transition); }
.pwd-bar-segment.weak { background: var(--status-error); }
.pwd-bar-segment.medium { background: var(--status-pending); }
.pwd-bar-segment.strong { background: var(--status-success); }
.pwd-criteria { display: flex; flex-direction: column; gap: 4px; }
.pwd-criterion { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--text-muted); }
.pwd-criterion.met { color: var(--status-success); }
.pwd-criterion.met::before { content: "✓"; }
.pwd-criterion:not(.met)::before { content: "○"; }

/* ── CART SIDEBAR ── */
.cart-sidebar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: var(--bg-card); border-top: 1px solid var(--border);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 16px 20px; box-shadow: 0 -8px 30px rgba(0,0,0,0.12);
  transform: translateY(100%); transition: transform var(--transition);
}
.cart-sidebar.visible { transform: translateY(0); }
.cart-sidebar-row { display: flex; align-items: center; justify-content: space-between; }
.cart-summary { display: flex; align-items: center; gap: 12px; }
.cart-icon-badge { position: relative; font-size: 1.4rem; }

/* ── PAYMENT NOTICE BOX ── */
.payment-notice {
  background: var(--bg-gold); border: 1.5px solid var(--accent-gold);
  border-radius: var(--radius-md); padding: 24px; text-align: center;
  margin: 20px 0; animation: fadeIn 0.3s ease;
}
.payment-notice .address {
  font-size: 1.05rem; font-weight: 700; color: var(--text-on-gold);
  word-break: break-all; margin: 12px 0;
}
.copy-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: var(--radius-sm);
  background: var(--accent-blue); color: #fff; border: none;
  cursor: pointer; font-size: 0.85rem; font-weight: 600;
  transition: all var(--transition);
}
.copy-btn:hover { background: var(--accent-blue-hover); }
.copy-success { color: var(--status-success); font-size: 0.8rem; opacity: 0; transition: opacity var(--transition); }
.copy-success.show { opacity: 1; }

/* ── PAYMENT METHOD GRID ── */
.payment-methods-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
.payment-method-btn {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 16px 12px; border-radius: var(--radius-md); border: 2px solid var(--border);
  background: var(--bg-card); cursor: pointer; transition: all var(--transition);
  font-size: 0.82rem; font-weight: 600; color: var(--text-secondary);
}
.payment-method-btn:hover { border-color: var(--accent-blue); color: var(--accent-blue); background: rgba(26,108,255,0.04); }
.payment-method-btn.selected { border-color: var(--accent-blue); background: rgba(26,108,255,0.08); color: var(--accent-blue); }
.payment-method-btn .pm-icon { font-size: 2rem; }

/* ── DRAG DROP ZONE ── */
.upload-zone {
  border: 2px dashed var(--border); border-radius: var(--radius-md);
  padding: 40px 20px; text-align: center; cursor: pointer;
  transition: all var(--transition); background: var(--bg-input);
}
.upload-zone.drag-over { border-color: var(--accent-blue); background: rgba(26,108,255,0.04); }
.upload-zone:hover { border-color: var(--accent-gold); }
.upload-preview { max-width: 100%; border-radius: var(--radius-sm); margin-top: 12px; }

/* ── DASHBOARD CARDS ── */
.order-card {
  background: var(--bg-card); border-radius: var(--radius-card);
  padding: 20px; box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--border);
  transition: all var(--transition);
}
.order-card.validated { border-left-color: var(--status-success); }
.order-card.pending { border-left-color: var(--status-pending); }
.order-card.rejected { border-left-color: var(--status-error); }

/* ── ADMIN TABLE ── */
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.admin-table th { background: var(--bg-gold); padding: 12px 16px; text-align: left; font-weight: 600; color: var(--text-on-gold); }
.admin-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); }
.admin-table tr:hover td { background: var(--bg-gold); }

/* ── ANIMATIONS ── */
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeIn 0.3s ease; }
.slide-up { animation: slideUp 0.4s ease; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .page-wrapper { padding-top: 65px; }
  .navbar { padding: 12px 16px; }
  .section { padding: 40px 16px; }
  .form-card { padding: 24px 18px; border-radius: var(--radius-md); }
  .form-row { grid-template-columns: 1fr; }
  .btn { min-height: 48px; }
  .input-field { min-height: 48px; }
  .otp-box { width: 46px; height: 54px; font-size: 1.4rem; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
  .drawer { width: 280px; }
  .modal { padding: 24px 18px; }
  .service-client { bottom: 80px; right: 14px; }
}
