/* ==========================================================================
   VODAPITNAVENG - MYWATERSHOP THEMED DESIGN SYSTEM
   Inspired by mywatershop.com.ua UI/UX
   Light-Blue Aqua, Modern E-commerce Store for Hungary
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Outfit:wght@500;600;700;800;900&display=swap');

:root {
  /* MyWaterShop Signature Aqua Palette */
  --mws-primary: #0088d6;          /* Vibrant Aqua Ocean */
  --mws-primary-dark: #006bb3;     /* Deep Brand Blue */
  --mws-primary-light: #e6f4fc;    /* Light Aqua Surface */
  --mws-cyan: #00b4d8;             /* Bright Cyan Accent */
  --mws-cyan-soft: #caf0f8;
  --mws-secondary: #0f3b68;        /* Corporate Navy */

  --mws-sale-red: #ff3b30;         /* Promo badges */
  --mws-green-eco: #10b981;        /* In stock / Eco badge */
  --mws-star-gold: #ffb800;        /* Rating stars */

  /* Neutral Backgrounds */
  --bg-page: #f6fbfe;              /* Pristine icy fresh tint */
  --bg-card: #ffffff;
  --bg-surface: #f0f7fd;
  --bg-dark: #0b1f33;              /* MyWaterShop deep navy footer */
  --bg-dark-card: #132b47;

  /* Typography */
  --text-title: #0a2540;           /* High contrast navy */
  --text-body: #334e68;            /* Slate reading color */
  --text-muted: #627d98;           /* Subtitles */
  --text-light: #9fb3c8;

  /* Borders & Shadows */
  --border-card: #e2f0fb;
  --border-focus: #0088d6;
  --shadow-card: 0 4px 16px rgba(0, 136, 214, 0.08);
  --shadow-hover: 0 12px 32px rgba(0, 136, 214, 0.16);
  --shadow-button: 0 4px 14px rgba(0, 136, 214, 0.28);

  /* Geometry */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  --transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);

  --font-base: 'Plus Jakarta Sans', sans-serif;
  --font-head: 'Outfit', 'Plus Jakarta Sans', sans-serif;
}

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

body {
  font-family: var(--font-base);
  background-color: var(--bg-page);
  color: var(--text-body);
  line-height: 1.55;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

a {
  color: var(--mws-primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--mws-primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  outline: none;
}

button {
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--text-title);
  font-weight: 700;
  line-height: 1.25;
}

.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   TOP BAR & CITY SELECTOR (MyWaterShop style)
   ========================================================================== */
.mws-topbar {
  background: #ffffff;
  border-bottom: 1px solid var(--border-card);
  font-size: 0.825rem;
  padding: 6px 0;
  color: var(--text-muted);
}

.mws-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.mws-city-picker {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-body);
  font-weight: 600;
}

.mws-city-picker select {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-pill);
  padding: 3px 10px;
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--mws-primary);
  cursor: pointer;
}

.mws-client-switch {
  display: flex;
  background: var(--bg-surface);
  border-radius: var(--radius-pill);
  padding: 2px;
  border: 1px solid var(--border-card);
}

.mws-client-tab {
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  border: none;
  background: transparent;
  transition: var(--transition);
}

.mws-client-tab.active {
  background: var(--mws-primary);
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 136, 214, 0.25);
}

.mws-topbar-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.mws-topbar-link {
  color: var(--text-muted);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mws-topbar-link:hover {
  color: var(--mws-primary);
}

/* ==========================================================================
   MAIN SITE HEADER (MyWaterShop style)
   ========================================================================== */
.site-header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 136, 214, 0.06);
}

.header-main {
  padding: 14px 0;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Brand Logo */
.mws-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.mws-logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #00b4d8 0%, #0088d6 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.4rem;
  box-shadow: 0 6px 16px rgba(0, 136, 214, 0.3);
}

.mws-brand-title {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--mws-secondary);
  line-height: 1;
  letter-spacing: -0.5px;
}

.mws-brand-title span {
  color: var(--mws-primary);
}

.mws-brand-sub {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Header Search */
.header-search {
  flex: 1;
  max-width: 460px;
}

.search-form {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input {
  width: 100%;
  height: 44px;
  padding: 0 46px 0 18px;
  background: var(--bg-surface);
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-pill);
  color: var(--text-body);
  font-size: 0.9rem;
  transition: var(--transition);
}

.search-input:focus {
  background: #ffffff;
  border-color: var(--mws-primary);
  box-shadow: 0 0 0 4px rgba(0, 136, 214, 0.12);
}

.search-btn {
  position: absolute;
  right: 6px;
  width: 34px;
  height: 34px;
  background: var(--mws-primary);
  color: #ffffff;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
}

.search-btn:hover {
  background: var(--mws-primary-dark);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-phone-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border-radius: var(--radius-md);
  text-decoration: none;
}

.header-phone-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--mws-primary-light);
  color: var(--mws-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.header-phone-number {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-title);
  display: block;
}

.header-phone-sub {
  font-size: 0.72rem;
  color: var(--mws-primary);
  font-weight: 700;
}

.btn-fast-order {
  background: linear-gradient(135deg, #0088d6 0%, #00b4d8 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-button);
  transition: var(--transition);
}

.btn-fast-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 136, 214, 0.4);
}

.header-cart-btn {
  background: var(--mws-primary-light);
  color: var(--mws-primary-dark);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  position: relative;
}

.header-cart-btn:hover {
  background: var(--mws-primary);
  color: #ffffff;
}

.header-cart-badge {
  background: var(--mws-sale-red);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-toggle {
  display: none;
  font-size: 1.4rem;
  color: var(--text-title);
  border: none;
  background: none;
  padding: 6px;
}

/* Category Navigation Bar */
.mws-nav-bar {
  background: #ffffff;
  border-top: 1px solid var(--border-card);
  border-bottom: 1px solid var(--border-card);
}

.mws-nav-list {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}

.mws-nav-list::-webkit-scrollbar {
  display: none;
}

.mws-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-body);
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
}

.mws-nav-link:hover, .mws-nav-link.active {
  color: var(--mws-primary);
  border-bottom-color: var(--mws-primary);
  background: var(--mws-primary-light);
}

.mws-nav-link.promo-tab {
  color: var(--mws-sale-red);
}

/* ==========================================================================
   BUTTONS & BADGES
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  text-decoration: none;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #0088d6 0%, #00a2ff 100%);
  color: #ffffff;
  box-shadow: var(--shadow-button);
}

.btn-primary:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 136, 214, 0.4);
}

.btn-secondary {
  background: #ffffff;
  color: var(--mws-primary);
  border: 2px solid var(--mws-primary);
}

.btn-secondary:hover {
  background: var(--mws-primary-light);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 15px 32px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.badge-discount {
  background: #fee2e2;
  color: var(--mws-sale-red);
  border: 1px solid #fca5a5;
}

.badge-bestseller {
  background: #fef3c7;
  color: #d97706;
  border: 1px solid #fde68a;
}

.badge-eco {
  background: #dcfce7;
  color: #16a34a;
  border: 1px solid #bbf7d0;
}

.badge-volume {
  background: var(--mws-primary-light);
  color: var(--mws-primary);
  border: 1px solid #bde4fa;
}

/* ==========================================================================
   MYWATERSHOP HERO & STARTER PACK PROMOTION
   ========================================================================== */
.mws-hero {
  background: linear-gradient(180deg, #e6f4fc 0%, #f0f7fd 60%, var(--bg-page) 100%);
  padding: 40px 0 50px;
  position: relative;
  overflow: hidden;
}

.mws-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.mws-starter-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 2px solid #bae6fd;
  padding: 24px;
  box-shadow: var(--shadow-hover);
  position: relative;
}

.mws-starter-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: linear-gradient(135deg, #ff3b30 0%, #ff6b6b 100%);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 0.8rem;
  box-shadow: 0 4px 12px rgba(255, 59, 48, 0.3);
}

.starter-pack-details {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 16px 0;
}

.starter-pack-img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* ==========================================================================
   CIRCULAR CATEGORIES (MyWaterShop style)
   ========================================================================== */
.mws-categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin: 30px 0 40px;
}

.mws-cat-pill {
  background: #ffffff;
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 18px 10px;
  text-align: center;
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-card);
}

.mws-cat-pill:hover, .mws-cat-pill.active {
  transform: translateY(-4px);
  border-color: var(--mws-primary);
  box-shadow: var(--shadow-hover);
}

.mws-cat-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--mws-primary-light);
  color: var(--mws-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 10px;
  transition: var(--transition);
}

.mws-cat-pill:hover .mws-cat-icon {
  background: var(--mws-primary);
  color: #ffffff;
}

.mws-cat-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-title);
}

.mws-cat-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ==========================================================================
   PRODUCT CARDS (MyWaterShop E-Commerce Style)
   ========================================================================== */
.section {
  padding: 50px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 36px;
}

.section-subtitle {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--mws-primary);
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: inline-block;
}

.section-title {
  font-size: 2.1rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.section-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.mws-product-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.mws-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: #bae6fd;
}

.mws-product-thumb {
  position: relative;
  background: #f0f7fd;
  height: 230px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mws-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.mws-product-card:hover .mws-product-thumb img {
  transform: scale(1.06);
}

.mws-badges-wrap {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 2;
}

.mws-volume-tag {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--mws-primary-dark);
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.mws-card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.mws-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.mws-card-cat {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
}

.mws-card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  color: var(--mws-star-gold);
}

.mws-card-rating span {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.mws-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
}

.mws-card-title a {
  color: var(--text-title);
}

.mws-card-title a:hover {
  color: var(--mws-primary);
}

.mws-specs-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
}

.mws-chip {
  background: var(--bg-surface);
  font-size: 0.72rem;
  color: var(--text-muted);
  padding: 3px 8px;
  border-radius: var(--radius-xs);
  font-weight: 600;
}

.mws-pricing-row {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-top: 10px;
  border-top: 1px solid var(--border-card);
}

.mws-current-price {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--mws-primary-dark);
}

.mws-old-price {
  font-size: 0.92rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-left: 6px;
}

.mws-card-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.btn-mws-add {
  background: var(--mws-primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition);
}

.btn-mws-add:hover {
  background: var(--mws-primary-dark);
}

.btn-mws-quick {
  background: var(--mws-primary-light);
  color: var(--mws-primary-dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-card);
  transition: var(--transition);
}

.btn-mws-quick:hover {
  background: var(--mws-cyan);
  color: #ffffff;
  border-color: var(--mws-cyan);
}

/* ==========================================================================
   HOW BOTTLE EXCHANGE WORKS (MyWaterShop Signature Feature)
   ========================================================================== */
.mws-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.mws-step-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-card);
  padding: 24px 20px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-card);
}

.mws-step-number {
  position: absolute;
  top: -12px;
  left: 20px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--mws-primary);
  color: #ffffff;
  font-weight: 900;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mws-step-icon {
  font-size: 2.2rem;
  color: var(--mws-primary);
  margin-bottom: 14px;
}

.mws-step-card h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.mws-step-card p {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   FOOTER (MyWaterShop style)
   ========================================================================== */
.site-footer {
  background: var(--bg-dark);
  color: #cbd5e1;
  margin-top: auto;
  padding-top: 50px;
  font-size: 0.9rem;
}

.footer-top {
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--mws-cyan);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links a {
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
}

.footer-links a:hover {
  color: #38bdf8;
  transform: translateX(4px);
}

.footer-bottom {
  padding: 20px 0;
  font-size: 0.825rem;
  color: #64748b;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-policy-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-policy-links a {
  color: #94a3b8;
}

.footer-policy-links a:hover {
  color: #38bdf8;
}

/* ==========================================================================
   MODAL (1-Click Order)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 31, 51, 0.65);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-container {
  background: #ffffff;
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-hover);
  position: relative;
  animation: modalScale 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalScale {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 1.2rem;
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
  border: none;
  transition: var(--transition);
}

.modal-close:hover {
  background: #fee2e2;
  color: var(--mws-sale-red);
}

.modal-product-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-surface);
  padding: 12px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.modal-product-img {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

/* Forms */
.simple-order-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-title);
}

.form-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.form-input-icon {
  position: absolute;
  left: 16px;
  color: var(--mws-primary);
  font-size: 1rem;
}

.form-input {
  width: 100%;
  padding: 14px 16px 14px 44px;
  background: var(--bg-surface);
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--text-title);
  transition: var(--transition);
}

.form-input:focus {
  background: #ffffff;
  border-color: var(--mws-primary);
  box-shadow: 0 0 0 4px rgba(0, 136, 214, 0.15);
}

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.4;
}

.form-checkbox-label input[type="checkbox"] {
  margin-top: 2px;
  accent-color: var(--mws-primary);
  width: 16px;
  height: 16px;
}

/* Responsive */
@media (max-width: 992px) {
  .mws-hero-grid {
    grid-template-columns: 1fr;
  }
  .mws-categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .mws-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .header-search {
    display: none;
  }
}

@media (max-width: 768px) {
  .mws-topbar-links {
    display: none;
  }
  .mws-nav-bar {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .mws-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mws-steps-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .header-phone-box {
    display: none;
  }
}
