/*
Theme Name: Mega Aquarium
Theme URI: https://mega-aquarium.local
Author: Cursor
Description: Custom WooCommerce-ready aquarium storefront theme.
Version: 1.0.0
Requires at least: 6.7
Tested up to: 6.9
Requires PHP: 8.0
Text Domain: mega-aquarium
*/

:root {
  --ma-font-sans:
    "Be Vietnam Pro", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  /* added: fire + water palette */
  --primary-red: #e53935;
  --primary-orange: #ff6a00;
  --primary-gold: #ffc107;
  --blue: #00bfff;
  --aqua: #00e5ff;
  --deep-blue: #0d47a1;
  --dark: #0b0f1a;
  --dark-soft: #1a1f2e;
  --text-light: #aab3c5;
  --text-white: #ffffff;
  /* added: gradients and glow */
  --gradient-fire: linear-gradient(90deg, #ff6a00, #e53935);
  --gradient-water: linear-gradient(135deg, #00e5ff, #0d47a1);
  --gradient-mixed: linear-gradient(90deg, #ff6a00, #e53935, #00bfff);
  --glow-fire-sm: 0 0 12px rgba(255, 106, 0, 0.28);
  --glow-fire-md: 0 0 22px rgba(229, 57, 53, 0.32);
  --glow-water-sm: 0 0 12px rgba(0, 229, 255, 0.22);
  --glow-water-md: 0 0 22px rgba(0, 191, 255, 0.28);
  --glass-bg: rgba(26, 31, 46, 0.62);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glow-border: rgba(0, 229, 255, 0.18);
  /* updated: existing theme tokens aligned to new palette */
  --ma-color-bg: #0b0f1a;
  --ma-color-bg-soft: #1a1f2e;
  --ma-color-surface: #171f31;
  --ma-color-surface-2: #221a28;
  --ma-color-surface-3: #2d1d24;
  --ma-color-border: rgba(102, 163, 255, 0.18);
  --ma-color-text: #f5f8fc;
  --ma-color-text-muted: #b8c4df;
  --ma-color-primary: var(--primary-red);
  --ma-color-primary-strong: var(--primary-orange);
  --ma-color-accent: var(--primary-gold);
  --ma-color-accent-strong: var(--aqua);
  --ma-color-sale: #ff4d4f;
  --ma-shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.28);
  --ma-shadow-md: 0 16px 40px rgba(0, 0, 0, 0.2);
  --ma-shadow-sm: 0 10px 24px rgba(0, 0, 0, 0.18);
  --ma-radius-xl: 10px;
  --ma-radius-lg: 8px;
  --ma-radius-md: 6px;
  --ma-radius-sm: 4px;
  --ma-container: 1440px;
  --ma-gutter: 20px;
  --ma-speed: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--ma-font-sans);
  color: var(--ma-color-text);
  background:
    radial-gradient(
      circle at top left,
      rgba(229, 57, 53, 0.28),
      transparent 28%
    ),
    radial-gradient(
      circle at top right,
      rgba(53, 182, 255, 0.24),
      transparent 34%
    ),
    radial-gradient(
      circle at center,
      rgba(245, 195, 93, 0.14),
      transparent 40%
    ),
    linear-gradient(180deg, #080d18 0%, #111827 44%, #0b1220 100%);
  min-height: 100vh;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ma-site-shell {
  overflow: clip;
}

.ma-container {
  width: min(100% - (var(--ma-gutter) * 2), var(--ma-container));
  margin-inline: auto;
}

.ma-header__main,
.ma-header__nav-row,
.ma-footer__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ma-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 18, 32, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ma-header__main {
  min-height: 88px;
}

.ma-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.ma-brand__mark {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: conic-gradient(
    from 220deg,
    #d62828 0deg,
    #f5c35d 120deg,
    #35b6ff 245deg,
    #08111f 360deg
  );
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.03),
    var(--ma-shadow-sm);
  position: relative;
  flex: none;
}

.ma-brand .custom-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 80px !important;
  height: 80px !important;
}

.ma-brand .custom-logo,
.ma-brand .custom-logo-link img,
.ma-brand img.custom-logo {
  width: 80px !important;
  height: 80px !important;
  max-width: 80px !important;
  min-width: 80px !important;
  max-height: 80px !important;
  min-height: 80px !important;
  flex: 0 0 80px !important;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.22));
}

.wc-block-cart .wp-block-woocommerce-cart-order-summary-block {
  border-bottom: 0 !important;
}

.ma-brand__mark::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: linear-gradient(
    160deg,
    rgba(6, 15, 25, 0.94),
    rgba(8, 26, 43, 0.92)
  );
}

.ma-brand__letters {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
  font-size: 18px;
}

.ma-brand__text {
  min-width: 0;
  display: block;
}

.ma-brand__title {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 36px);
  line-height: 1;
  font-weight: 800;
}

.ma-brand__tagline {
  margin: 6px 0 0;
  color: var(--ma-color-text-muted);
  font-size: 15px;
}

.ma-header__hotlines {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ma-header__hotline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
}

.ma-header__hotline i {
  color: var(--ma-color-accent);
  font-size: 14px;
}

.ma-header__hotline-number {
  color: var(--ma-color-text);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.ma-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 90;
}

.ma-action-btn,
.ma-search__toggle,
.ma-slider__arrow,
.ma-mobile-menu__toggle {
  border: 1px solid var(--ma-color-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ma-color-text);
  border-radius: 999px;
  cursor: pointer;
  transition:
    transform var(--ma-speed),
    background var(--ma-speed),
    border-color var(--ma-speed);
}

.ma-action-btn,
.ma-search__toggle {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ma-action-btn i,
.ma-search__toggle i {
  display: block;
  font-size: 18px;
  line-height: 1;
}

.ma-cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff5b57, #b71c1c);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(183, 28, 28, 0.38);
}

.ma-action-btn:hover,
.ma-search__toggle:hover,
.ma-slider__arrow:hover,
.ma-mobile-menu__toggle:hover {
  background: rgba(229, 57, 53, 0.12);
  border-color: rgba(245, 195, 93, 0.45);
  transform: translateY(-1px);
  color: var(--aqua);
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.32);
}

.ma-header__nav-wrap {
  padding: 10px 0 18px;
  position: relative;
  z-index: 60;
  overflow: visible;
}

.ma-header__nav-row {
  gap: 24px;
  position: relative;
  z-index: 60;
  overflow: visible;
}

.ma-mobile-menu__toggle {
  display: none;
  padding: 12px 18px;
  gap: 10px;
  font-weight: 700;
}

.ma-header__nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 60;
  overflow: visible;
}

.ma-header__nav--desktop {
  display: flex;
}

.ma-mobile-nav {
  display: none;
}

.ma-header__nav a {
  color: var(--ma-color-text-muted);
  font-size: 15px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 999px;
  transition:
    color var(--ma-speed),
    background var(--ma-speed);
}

.ma-header__nav a:hover,
.ma-header__nav a.is-active {
  color: var(--ma-color-text);
}

.ma-header__mega {
  position: relative;
  z-index: 61;
}

.ma-header__mega-trigger {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ma-color-text-muted);
  font-size: 15px;
  font-weight: 600;
  transition:
    color var(--ma-speed),
    background var(--ma-speed);
}

.ma-header__mega:hover .ma-header__mega-trigger,
.ma-header__mega.is-open .ma-header__mega-trigger {
  color: var(--ma-color-text);
}

.ma-header__mega-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 760px;
  padding: 18px;
  border-radius: var(--ma-radius-lg);
  border: 1px solid var(--ma-color-border);
  background: linear-gradient(
    180deg,
    rgba(24, 32, 51, 0.98),
    rgba(20, 16, 30, 0.98)
  );
  box-shadow: var(--ma-shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity var(--ma-speed),
    transform var(--ma-speed),
    visibility var(--ma-speed);
  z-index: 80;
}

.ma-header__mega:hover .ma-header__mega-panel,
.ma-header__mega.is-open .ma-header__mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ma-header__mega-grid {
  position: relative;
  min-height: 520px;
}

.ma-header__mobile-cats {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ma-header__mega-cats {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 280px;
}

.ma-header__mega-item {
  position: static;
}

.ma-header__mega-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 8px;
  color: var(--ma-color-text);
  font-weight: 600;
}

.ma-header__mega-link i {
  font-size: 14px;
}

.ma-header__mega-item:hover > .ma-header__mega-link,
.ma-header__mega-item.is-active > .ma-header__mega-link {
  background: linear-gradient(
    90deg,
    rgba(255, 86, 79, 0.18),
    rgba(47, 156, 247, 0.12)
  );
}

.ma-header__mega-subpanel {
  position: absolute;
  left: 298px;
  top: 0;
  width: 420px;
  max-width: calc(100% - 298px);
  height: 100%;
  padding: 6px 0 6px 18px;
  display: none;
  z-index: 81;
  overflow-y: auto;
}

.ma-header__mega-item:hover > .ma-header__mega-subpanel,
.ma-header__mega-item.is-active > .ma-header__mega-subpanel {
  display: block;
}

.ma-header__mega-subgrid {
  display: grid;
  gap: 8px;
}

.ma-header__mega-sublink {
  display: block;
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--ma-color-text-muted);
  background: rgba(255, 255, 255, 0.03);
  transition:
    background var(--ma-speed),
    color var(--ma-speed);
}

.ma-header__mega-sublink:hover {
  color: var(--ma-color-text);
  background: linear-gradient(
    90deg,
    rgba(255, 86, 79, 0.14),
    rgba(47, 156, 247, 0.12)
  );
}

.ma-search {
  position: relative;
  z-index: 91;
}

.ma-search__panel {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: min(680px, calc(100vw - 32px));
  padding: 20px;
  border-radius: var(--ma-radius-lg);
  background: linear-gradient(
    180deg,
    rgba(23, 31, 52, 0.98),
    rgba(18, 15, 31, 0.98)
  );
  border: 1px solid var(--ma-color-border);
  box-shadow: var(--ma-shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity var(--ma-speed),
    transform var(--ma-speed),
    visibility var(--ma-speed);
  z-index: 95;
}

.ma-search.is-open .ma-search__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ma-search__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 200px auto;
  gap: 12px;
}

.ma-input,
.ma-select {
  width: 100%;
  min-height: 52px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ma-color-text);
  padding: 0 16px;
}

.ma-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.ma-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 46px;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.78) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.78) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 22px,
    calc(100% - 16px) 22px;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
}

.ma-select:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background-color: rgba(255, 255, 255, 0.08);
}

.ma-select:focus,
.ma-input:focus {
  outline: none;
  border-color: rgba(245, 195, 93, 0.45);
  box-shadow: 0 0 0 3px rgba(245, 195, 93, 0.12);
}

.ma-select option {
  color: #f5f8fc;
  background: #1a2134;
}

.ma-search__submit,
.ma-button,
.ma-hero__cta {
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  color: #fff5ef;
  background: linear-gradient(
    135deg,
    var(--ma-color-primary),
    var(--ma-color-accent)
  );
  padding: 0 22px;
  box-shadow: var(--ma-shadow-sm);
  transition:
    transform var(--ma-speed),
    filter var(--ma-speed);
}

.ma-search__submit:hover,
.ma-button:hover,
.ma-hero__cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.ma-main {
  padding: 28px 0 72px;
}

.ma-hero {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}

.ma-category-menu,
.ma-slider,
.ma-support,
.ma-section,
.ma-footer__card {
  border: 1px solid var(--ma-color-border);
  background: linear-gradient(
    180deg,
    rgba(25, 33, 52, 0.94),
    rgba(19, 17, 34, 0.97)
  );
  border-radius: var(--ma-radius-xl);
  box-shadow: var(--ma-shadow-md);
}

.ma-category-menu {
  overflow: visible;
  position: relative;
  height: 100%;
  z-index: 20;
}

.ma-category-menu__title {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 60px;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  background: linear-gradient(135deg, #c62828, #f5c35d 55%, #35b6ff);
}

.ma-category-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ma-category-menu__item {
  position: relative;
}

.ma-category-menu__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 14px;
  height: 100%;
}

.ma-category-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px;
  color: var(--ma-color-text);
  font-weight: 600;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    background var(--ma-speed),
    color var(--ma-speed);
}

.ma-category-menu__link:hover,
.ma-category-menu__item.is-active > .ma-category-menu__link {
  background: linear-gradient(
    90deg,
    rgba(255, 86, 79, 0.18),
    rgba(47, 156, 247, 0.12)
  );
}

.ma-category-menu__link svg:last-child {
  transition: transform var(--ma-speed);
  transform: none !important;
}

.ma-category-menu__panel {
  position: absolute;
  left: 100%;
  top: 0;
  width: min(700px, calc(100vw - 400px));
  padding: 24px;
  border-radius: var(--ma-radius-lg);
  border: 1px solid var(--ma-color-border);
  background: linear-gradient(
    180deg,
    rgba(24, 32, 51, 0.98),
    rgba(20, 16, 30, 0.98)
  );
  box-shadow: var(--ma-shadow-lg);
  display: none;
  z-index: 40;
}

.ma-category-menu__item.is-active .ma-category-menu__panel,
.ma-category-menu__item:hover .ma-category-menu__panel {
  display: block;
}

.ma-category-menu__panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
}

.ma-category-menu__sub-link {
  display: block;
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--ma-color-text-muted);
  background: rgba(255, 255, 255, 0.03);
  transition:
    background var(--ma-speed),
    color var(--ma-speed),
    transform var(--ma-speed);
}

.ma-category-menu__sub-link:hover {
  color: var(--ma-color-text);
  background: linear-gradient(
    90deg,
    rgba(255, 86, 79, 0.14),
    rgba(47, 156, 247, 0.12)
  );
  transform: translateX(2px);
}

.ma-hero__content {
  display: grid;
  gap: 20px;
  height: 100%;
}

.ma-slider {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  height: 100%;
}

.ma-slider__track {
  display: flex;
  height: 100%;
  transition: transform 500ms ease;
}

.ma-slide {
  min-width: 100%;
  height: 100%;
  padding: 0;
}

.ma-slide__visual {
  position: relative;
  height: 100%;
}

.ma-slide__image-wrap {
  position: relative;
  height: 100%;
  min-height: 736px;
  border-radius: 10px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at top left,
      rgba(229, 57, 53, 0.42),
      transparent 34%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(53, 182, 255, 0.38),
      transparent 40%
    ),
    radial-gradient(circle at center, rgba(245, 195, 93, 0.1), transparent 45%),
    linear-gradient(160deg, rgba(35, 13, 18, 0.98), rgba(11, 20, 38, 0.98));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.ma-slide__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ma-slide__stats {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 10px;
}

.ma-slide__stat {
  min-width: 164px;
  padding: 14px 16px;
  border-radius: 8px;
  background: rgba(17, 21, 37, 0.82);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ma-slide__stat-label {
  display: block;
  color: var(--ma-color-text-muted);
  font-size: 12px;
}

.ma-slide__stat-value {
  display: block;
  margin-top: 6px;
  font-size: 18px;
  font-weight: 700;
}

.ma-slider__controls {
  position: absolute;
  left: 38px;
  right: 38px;
  bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ma-slider__dots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ma-slider__dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
}

.ma-slider__dot.is-active {
  width: 36px;
  background: linear-gradient(
    135deg,
    var(--ma-color-accent),
    var(--ma-color-accent-strong)
  );
}

.ma-slider__nav {
  display: flex;
  gap: 12px;
}

.ma-slider__arrow {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
}

.ma-slider__arrow i {
  display: block;
  font-size: 18px;
  line-height: 1;
}

.ma-slider__arrow:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

.ma-home-sections {
  margin-top: 36px;
  display: grid;
  gap: 26px;
}

.ma-featured {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.ma-featured__card {
  padding: 24px;
  border-radius: var(--ma-radius-lg);
  border: 1px solid var(--ma-color-border);
  background: linear-gradient(
    180deg,
    rgba(31, 33, 56, 0.94),
    rgba(20, 18, 36, 0.97)
  );
  box-shadow: var(--ma-shadow-md);
}

.ma-featured__card h3,
.ma-section__title,
.ma-footer__title {
  margin: 0;
}

.ma-featured__card p,
.ma-section__meta,
.ma-section__desc,
.ma-footer__text {
  margin: 10px 0 0;
  color: var(--ma-color-text-muted);
}

.ma-section {
  padding: 24px;
}

.ma-section__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 26px;
}

.ma-section__title {
  font-size: clamp(24px, 2vw, 30px);
}

.ma-section__title a {
  color: inherit;
  text-decoration: none;
}

.ma-section__meta {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ma-section__subcats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.ma-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--ma-color-text-muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    background var(--ma-speed),
    color var(--ma-speed);
}

.ma-chip:hover {
  color: var(--ma-color-text);
  background: linear-gradient(
    90deg,
    rgba(255, 86, 79, 0.16),
    rgba(47, 156, 247, 0.12)
  );
}

.ma-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.ma-product-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 10px;
  background: linear-gradient(
    180deg,
    rgba(255, 86, 79, 0.07),
    rgba(47, 156, 247, 0.05)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 100%;
}

.ma-product-card__thumb {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 86, 79, 0.24),
      transparent 34%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(47, 156, 247, 0.28),
      transparent 36%
    ),
    linear-gradient(160deg, rgba(24, 24, 42, 0.98), rgba(12, 20, 36, 0.98));
  overflow: hidden;
  display: grid;
  place-items: center;
}

.ma-product-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ma-product-card__thumb-fallback {
  width: 74%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  border: 1px dashed rgba(255, 255, 255, 0.08);
}

.ma-product-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ma-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ma-color-accent);
  font-size: 12px;
  font-weight: 700;
}

.ma-badge--sale {
  color: #fff;
  background: rgba(255, 86, 79, 0.84);
}

.ma-product-card__title {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
}

.ma-product-card__price {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 800;
  color: var(--ma-color-accent);
}

.ma-product-card__old-price {
  color: var(--ma-color-text-muted);
  font-size: 14px;
  font-weight: 500;
  text-decoration: line-through;
}

.ma-product-card__meta {
  margin: 0;
  color: var(--ma-color-text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.ma-empty-category {
  margin: 18px 0 0;
  padding: 18px 20px;
  border-radius: 8px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  color: var(--ma-color-text-muted);
  background: rgba(255, 255, 255, 0.03);
}

.ma-footer {
  padding: 24px 0 28px;
  background: #232323;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ma-footer__card {
  padding: 28px 20px 18px;
}

.ma-footer__card--centered {
  text-align: center;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.ma-footer__eyebrow {
  margin: 0 0 16px;
  color: #f0a13a;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.35;
}

.ma-footer__line,
.ma-footer__note,
.ma-footer__hotline {
  margin: 0 0 12px;
  color: #c9c9c9;
  font-size: 16px;
  line-height: 1.7;
}

.ma-footer__label {
  color: #a9a9a9;
  font-weight: 500;
}

.ma-footer__hotline {
  font-size: 24px;
  color: #f3f3f3;
}

.ma-footer__hotline a {
  color: #f35b39;
  font-weight: 800;
}

.ma-footer__note {
  font-style: italic;
  color: #d8d8d8;
}

.ma-footer__line a {
  color: #d8d8d8;
}

.ma-footer__line a:hover,
.ma-footer__hotline a:hover {
  color: #f0a13a;
}

.ma-copyright {
  margin-top: 10px;
  color: #a9a9a9;
  font-size: 15px;
  text-align: center;
}

.ma-shop-shell {
  padding: 28px;
}

.ma-page-shell {
  padding: 28px;
}

.ma-page-content {
  display: grid;
  gap: 24px;
  margin-top: 20px;
}

.ma-page-prose {
  display: grid;
  gap: 16px;
  color: var(--ma-color-text-muted);
  line-height: 1.8;
}

.ma-page-prose h2 {
  margin: 8px 0 0;
  color: var(--ma-color-text);
  font-size: clamp(22px, 2.4vw, 28px);
}

.ma-page-prose p,
.ma-page-prose ul {
  margin: 0;
}

.ma-page-prose ul {
  padding-left: 20px;
}

.ma-page-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 8px;
}

.ma-page-contact-card {
  padding: 10px 20px 20px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
}

.ma-contact-map {
  --ma-map-crop: 56px;
  margin-top: 20px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  position: relative;
  height: 440px;
}

.ma-contact-map iframe {
  position: absolute;
  top: calc(-1 * var(--ma-map-crop));
  left: 0;
  width: 100%;
  height: calc(440px + var(--ma-map-crop));
  border: 0;
  display: block;
}


.ma-woo-breadcrumb {
  margin-bottom: 18px;
  color: var(--ma-color-text-muted);
  font-size: 14px;
}

.ma-woo-breadcrumb__sep {
  margin: 0 8px;
  opacity: 0.5;
}

.ma-shop-hero {
  margin-bottom: 0;
  text-align: center;
}

.ma-shop-hero .ma-section__title {
  margin: 0;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.08;
}

.ma-shop-filters {
  margin-bottom: 24px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
}

.ma-shop-filters__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
}

.ma-shop-filters__grid--search {
  grid-template-columns:
    minmax(320px, 1.6fr) minmax(170px, 0.75fr) minmax(170px, 0.75fr)
    auto;
  grid-template-areas: "keyword category sort actions";
}

.ma-shop-filters__field--keyword {
  grid-area: keyword;
}

.ma-shop-filters__field--category {
  grid-area: category;
}

.ma-shop-filters__field--sort {
  grid-area: sort;
}

.ma-shop-filters__actions--search {
  grid-area: actions;
  justify-content: flex-start;
}

.ma-shop-filters__field {
  display: grid;
  gap: 8px;
}

.ma-shop-filters__label {
  color: var(--ma-color-text-muted);
  font-size: 13px;
  font-weight: 700;
}

.ma-shop-filters__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.ma-shop-filters__reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--ma-color-text-muted);
  background: rgba(255, 255, 255, 0.03);
}

.ma-shop-filters__reset:hover {
  color: var(--ma-color-text);
  background: rgba(255, 255, 255, 0.06);
}

.ma-search-results-count {
  margin: 0 0 18px;
  color: var(--ma-color-text-muted);
}

.ma-search-empty {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}

.ma-search-empty h2 {
  margin-top: 0;
  margin-bottom: 10px;
}

.ma-shop-main .products {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  justify-items: stretch;
  align-items: start;
}

.ma-shop-main .products > li {
  width: 100% !important;
  margin: 0 !important;
  justify-self: stretch;
}

.ma-shop-main .products::before,
.ma-shop-main .products::after,
.ma-shop-main .products > li::before,
.ma-shop-main .products > li::after {
  content: none !important;
  display: none !important;
}

.ma-woo-card {
  margin: 0 !important;
  width: auto !important;
  float: none !important;
}

.ma-woo-card__link {
  display: block;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  transition:
    transform var(--ma-speed),
    box-shadow var(--ma-speed),
    border-color var(--ma-speed);
}

.ma-woo-card:hover .ma-woo-card__link {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
  border-color: rgba(245, 195, 93, 0.2);
}

.ma-woo-card__thumb {
  aspect-ratio: 1 / 0.82;
  overflow: hidden;
  display: grid;
  place-items: center;
  position: relative;
}

.ma-woo-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.ma-woo-card:hover .ma-woo-card__thumb img {
  transform: scale(1.08);
}

.ma-woo-card__body {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.ma-woo-card__cats {
  margin: 0;
  color: var(--ma-color-text-muted);
  font-size: 13px;
}

.ma-woo-card__title {
  margin: 0 !important;
  font-size: 16px !important;
  line-height: 1.45;
  color: var(--ma-color-text) !important;
}

.ma-woo-card__price {
  color: var(--ma-color-accent);
  font-size: 16px;
  font-weight: 800;
}

.ma-woo-card__price ins {
  background: transparent;
}

.ma-woo-card__meta {
  margin: 0;
  color: var(--ma-color-text-muted);
  font-size: 14px;
}

.ma-single-product-shell .product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  gap: 28px;
  align-items: start;
}

.ma-single-product-shell .woocommerce-product-gallery,
.ma-single-product-shell .summary {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
}

.ma-single-product-shell .woocommerce-product-gallery,
.ma-product-gallery {
  padding: 20px;
  border-radius: 14px;
  border: 1px solid var(--ma-color-border);
  background: linear-gradient(
    180deg,
    rgba(16, 35, 55, 0.92),
    rgba(8, 21, 35, 0.96)
  );
}

.ma-single-product-shell .summary {
  padding: 24px;
  border-radius: 14px;
  border: 1px solid var(--ma-color-border);
  background: linear-gradient(
    180deg,
    rgba(16, 35, 55, 0.92),
    rgba(8, 21, 35, 0.96)
  );
}

.ma-single-product-shell .product_title {
  margin-top: 0;
  font-size: clamp(18px, 2.2vw, 24px);
}

.ma-single-product-shell .price {
  color: var(--ma-color-accent) !important;
  font-size: 20px !important;
  font-weight: 800 !important;
}

.ma-single-product-shell .woocommerce-product-details__short-description,
.ma-single-product-shell .product_meta,
.ma-single-product-shell .woocommerce-tabs,
.ma-single-product-shell .related {
  color: var(--ma-color-text-muted);
}

.ma-single-product-shell .product_meta {
  display: none;
}

.ma-product-gallery__main {
  border-radius: 10px;
  overflow: hidden;
}

.ma-product-gallery__main-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.ma-product-gallery__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.ma-product-gallery__thumb {
  width: 88px !important;
  max-width: 88px !important;
  min-width: 88px !important;
  height: 68px !important;
  max-height: 68px !important;
  min-height: 68px !important;
  padding: 0;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.72;
  transition:
    opacity var(--ma-speed),
    transform var(--ma-speed),
    border-color var(--ma-speed);
}

.ma-product-gallery__thumb img {
  width: 88px !important;
  height: 68px !important;
  max-width: 88px !important;
  min-width: 88px !important;
  max-height: 68px !important;
  min-height: 68px !important;
  object-fit: cover;
  display: block;
}

.ma-product-gallery__thumb:hover,
.ma-product-gallery__thumb.is-active {
  opacity: 1;
  transform: translateY(-2px);
  border-color: rgba(245, 195, 93, 0.34);
}

.ma-single-product-shell .flex-control-thumbs {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 14px 0 0;
  display: none !important;
}

.ma-single-product-shell .flex-control-thumbs li {
  margin: 0;
  width: 88px !important;
  max-width: 88px !important;
  flex: 0 0 88px !important;
}

.ma-single-product-shell .flex-control-thumbs img {
  width: 88px !important;
  height: 68px !important;
  max-width: 88px !important;
  min-width: 88px !important;
  max-height: 68px !important;
  min-height: 68px !important;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  opacity: 0.7;
  transition:
    opacity var(--ma-speed),
    transform var(--ma-speed),
    border-color var(--ma-speed);
}

.ma-single-product-shell .flex-control-thumbs li.is-active img,
.ma-single-product-shell .flex-control-thumbs img:hover,
.ma-single-product-shell .flex-control-thumbs img.is-active {
  opacity: 1;
  transform: translateY(-2px);
  border-color: rgba(245, 195, 93, 0.34);
}

.ma-variable-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.ma-variable-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 12px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  position: relative;
  transition:
    border-color var(--ma-speed),
    background var(--ma-speed),
    transform var(--ma-speed);
}

.ma-variable-row:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 195, 93, 0.28);
}

.ma-variable-row:has(.ma-variable-row__input:checked) {
  border-color: rgba(245, 195, 93, 0.4);
  background: linear-gradient(
    180deg,
    rgba(255, 86, 79, 0.12),
    rgba(47, 156, 247, 0.08)
  );
}

.ma-variable-row.is-disabled {
  opacity: 0.52;
  cursor: not-allowed;
}

.ma-variable-row__input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.ma-variable-row__title {
  color: var(--ma-color-text);
  font-weight: 700;
  font-size: 14px;
}

.ma-variable-list__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
}

.ma-variable-list-form .quantity .qty {
  max-width: 120px;
}

.ma-variable-list-form .single_add_to_cart_button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.ma-single-product-shell .woocommerce-tabs ul.tabs {
  display: none;
}

.ma-single-product-shell .woocommerce-tabs {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 28px;
  padding: 24px;
  border-radius: 14px;
  border: 1px solid var(--ma-color-border);
  background: linear-gradient(
    180deg,
    rgba(16, 35, 55, 0.92),
    rgba(8, 21, 35, 0.96)
  );
}

.ma-single-product-shell .woocommerce-Tabs-panel {
  margin: 0;
  width: 100%;
}

.ma-single-product-shell .related.products > h2 {
  margin-bottom: 18px;
}

.ma-related-products {
  grid-column: 1 / -1;
  margin-top: 28px;
}

.ma-related-products__title {
  margin: 0 0 18px;
  font-size: clamp(20px, 2.2vw, 28px);
}

.ma-related-products__empty {
  margin: 0;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--ma-color-text-muted);
}

.woocommerce-notices-wrapper {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  margin: 0 !important;
  padding: 16px 18px !important;
  border-radius: 10px !important;
  border: 1px solid var(--ma-color-border) !important;
  background: rgba(255, 255, 255, 0.05) !important;
  color: var(--ma-color-text) !important;
}

.woocommerce-message,
.woocommerce-info {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.woocommerce-message::before,
.woocommerce-message::after,
.woocommerce-info::before,
.woocommerce-info::after {
  content: none !important;
  display: none !important;
}

.woocommerce-message .button,
.woocommerce-info .button {
  flex: 0 0 auto;
  order: 2;
}

.woocommerce-cart-form,
.woocommerce-checkout {
  display: grid;
  gap: 24px;
}

.shop_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--ma-color-border);
  background: linear-gradient(
    180deg,
    rgba(16, 35, 55, 0.92),
    rgba(8, 21, 35, 0.96)
  );
}

.shop_table th,
.shop_table td {
  border-color: rgba(255, 255, 255, 0.08) !important;
  color: var(--ma-color-text);
}

.shop_table thead th {
  padding: 18px 16px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--ma-color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
}

.shop_table tbody td {
  padding: 18px 16px;
  vertical-align: middle;
}

.shop_table td.product-thumbnail img {
  width: 82px;
  border-radius: 8px;
}

.shop_table td.product-name a,
.product-name a,
.product-thumbnail a {
  color: var(--ma-color-text);
}

.shop_table td.product-name dl.variation {
  margin-top: 8px;
  color: var(--ma-color-text-muted);
}

.shop_table .product-remove a.remove {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 86, 79, 0.16);
  color: #fff !important;
}

.shop_table .product-remove a.remove:hover {
  background: rgba(255, 86, 79, 0.3);
}

.shop_table .quantity .qty,
.woocommerce form .form-row .input-text,
.woocommerce form .form-row select,
.woocommerce-cart .coupon .input-text {
  min-height: 48px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ma-color-text);
  padding: 0 14px;
}

.woocommerce form .form-row textarea.input-text {
  min-height: 120px;
  padding: 14px;
}

.shop_table .actions {
  background: rgba(255, 255, 255, 0.03);
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout #payment #place_order,
.woocommerce-message .button,
.woocommerce-info .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 0 !important;
  padding: 0 18px !important;
  border-radius: 8px !important;
  background: linear-gradient(
    135deg,
    var(--ma-color-accent),
    var(--ma-color-accent-strong)
  ) !important;
  color: #07131f !important;
  font-weight: 700 !important;
  box-shadow: var(--ma-shadow-sm);
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce-checkout #payment #place_order:hover,
.woocommerce-message .button:hover,
.woocommerce-info .button:hover {
  filter: brightness(1.05);
}

.woocommerce button.button:disabled,
.woocommerce button.button:disabled[disabled],
.woocommerce input.button:disabled,
.woocommerce input.button:disabled[disabled],
.woocommerce #respond input#submit:disabled,
.woocommerce #respond input#submit:disabled[disabled] {
  opacity: 0.5;
}

.woocommerce-cart .coupon {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cart-collaterals {
  display: grid;
  justify-content: end;
}

.cart_totals,
.woocommerce-checkout-review-order,
#customer_details .col-1,
#customer_details .col-2,
.woocommerce-checkout #payment {
  border-radius: 10px;
  border: 1px solid var(--ma-color-border);
  background: linear-gradient(
    180deg,
    rgba(16, 35, 55, 0.92),
    rgba(8, 21, 35, 0.96)
  );
  padding: 22px;
}

.cart_totals h2,
#order_review_heading,
.woocommerce-billing-fields > h3,
.woocommerce-shipping-fields > h3,
.woocommerce-additional-fields > h3 {
  margin-top: 0;
  margin-bottom: 18px;
  font-size: 24px;
}

.woocommerce-checkout .col2-set {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.woocommerce-checkout #payment {
  margin-top: 20px;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td,
.cart_totals table th,
.cart_totals table td {
  padding: 14px 0;
}

.woocommerce-checkout #payment div.payment_box {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--ma-color-text);
}

.woocommerce-checkout #payment ul.payment_methods {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.woocommerce form .form-row label {
  margin-bottom: 8px;
  color: var(--ma-color-text-muted);
  font-weight: 600;
}

.woocommerce form .show-password-input,
.woocommerce form .show-password-input::after {
  color: var(--ma-color-text-muted);
}

.wc-block-cart,
.wc-block-checkout,
.is-large.wc-block-cart,
.is-large.wc-block-checkout {
  color: var(--ma-color-text);
}

.wc-block-components-notice-banner,
.wc-block-components-notice-banner.is-info,
.wc-block-components-notice-banner.is-error,
.wc-block-components-notice-banner.is-success {
  border-radius: 8px;
  border-color: var(--ma-color-border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ma-color-text);
}

.wc-block-components-main,
.wc-block-components-sidebar,
.wc-block-cart__submit-container,
.wc-block-checkout__sidebar,
.wc-block-components-order-summary,
.wc-block-checkout__actions_row,
.wc-block-checkout__shipping-fields,
.wc-block-checkout__contact-fields,
.wc-block-checkout__billing-fields,
.wc-block-checkout__order-notes,
.wc-block-checkout__totals,
.wc-block-cart-items-block,
.wc-block-woocommerce-cart-totals-block {
  color: var(--ma-color-text);
}

.wc-block-cart .wc-block-components-product-metadata,
.wc-block-checkout .wc-block-components-product-metadata,
.wc-block-components-totals-item__description,
.wc-block-components-shipping-address,
.wc-block-components-checkout-step__description {
  color: var(--ma-color-text-muted);
}

.wc-block-components-sidebar-layout .wc-block-components-main,
.wc-block-components-sidebar-layout .wc-block-components-sidebar {
  background: transparent;
}

.wc-block-cart .wc-block-cart-items,
.wc-block-checkout .wc-block-components-order-summary,
.wc-block-checkout .wc-block-checkout__main,
.wc-block-checkout .wc-block-checkout__sidebar,
.wc-block-components-order-summary,
.wc-block-components-totals-wrapper,
.wc-block-woocommerce-cart-totals-block,
.wc-block-checkout__payment-method,
.wc-block-checkout__contact-fields,
.wc-block-checkout__shipping-fields,
.wc-block-checkout__billing-fields,
.wc-block-checkout__order-notes,
.wc-block-checkout__actions_row {
  border-radius: 10px;
  border: 1px solid var(--ma-color-border);
  background: linear-gradient(
    180deg,
    rgba(16, 35, 55, 0.92),
    rgba(8, 21, 35, 0.96)
  );
  box-shadow: var(--ma-shadow-md);
}

.wc-block-checkout .wc-block-checkout__main,
.wc-block-checkout .wc-block-checkout__sidebar {
  padding: 18px;
}

.wc-block-checkout .wc-block-checkout__actions_row {
  padding: 18px;
}

.wc-block-cart .wc-block-cart-items {
  padding: 10px;
}

.wc-block-woocommerce-cart-totals-block,
.wc-block-components-totals-wrapper {
  padding: 18px;
}

.wc-block-woocommerce-cart-totals-block .wc-block-components-panel,
.wc-block-woocommerce-cart-totals-block
  .wp-block-woocommerce-cart-order-summary-block {
  padding: 0;
}

.wc-block-checkout .wc-block-components-order-summary,
.wc-block-checkout .wc-block-components-totals-wrapper,
.wc-block-checkout .wc-block-components-panel,
.wc-block-checkout .wc-block-components-order-summary-item,
.wc-block-checkout .wc-block-components-totals-item {
  border: 0 !important;
  box-shadow: none !important;
}

.wp-block-woocommerce-checkout-order-summary-totals-block {
  display: none !important;
}

.wc-block-components-order-summary {
  padding: 18px;
}

.wc-block-components-sidebar .wc-block-components-panel,
.wc-block-checkout .wc-block-components-panel {
  border-color: rgba(255, 255, 255, 0.08);
}

.wc-block-cart-items__row,
.wc-block-components-order-summary-item {
  border-color: rgba(255, 255, 255, 0.08) !important;
}

.wc-block-components-product-name,
.wc-block-components-order-summary-item__description
  .wc-block-components-product-name {
  color: var(--ma-color-text);
  font-weight: 700;
}

.wc-block-components-form .wc-block-components-text-input input,
.wc-block-components-form .wc-block-components-text-input select,
.wc-block-components-form .wc-block-components-text-input textarea,
.wc-block-components-quantity-selector input,
.wc-block-components-combobox .wc-block-components-combobox-control input,
.wc-block-components-textarea,
.wc-block-components-address-form__address_2-toggle {
  min-height: 48px;
  border-radius: 10px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  background: rgba(255, 255, 255, 0.05) !important;
  color: var(--ma-color-text) !important;
}

.wc-block-components-form .wc-block-components-text-input textarea {
  min-height: 120px;
  padding-top: 14px;
}

.wc-block-components-text-input label,
.wc-block-components-checkbox label,
.wc-block-components-radio-control__option-layout,
.wc-block-components-checkout-step__heading {
  color: var(--ma-color-text-muted);
}

.wc-block-components-button,
.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button {
  min-height: 50px !important;
  border: 0 !important;
  border-radius: 10px !important;
  background: linear-gradient(
    135deg,
    var(--ma-color-accent),
    var(--ma-color-accent-strong)
  ) !important;
  color: #07131f !important;
  font-weight: 700 !important;
  box-shadow: var(--ma-shadow-sm);
}

.wc-block-components-button:hover,
.wc-block-cart__submit-button:hover,
.wc-block-components-checkout-place-order-button:hover {
  filter: brightness(1.05);
}

.wc-block-components-quantity-selector {
  border-radius: 10px;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.wc-block-components-quantity-selector::after {
  display: none;
}

.wc-block-components-address-form__country.wc-block-components-country-input,
.wc-block-components-address-form__address_2-toggle {
  display: none !important;
}

.wc-block-components-totals-coupon__form,
.wc-block-components-panel__button,
.wc-block-components-order-summary__button-text {
  color: var(--ma-color-text);
}

.wc-block-components-totals-item__value,
.wc-block-components-formatted-money-amount,
.wc-block-components-product-price,
.wc-block-components-order-summary-item__total-price {
  color: var(--ma-color-accent);
  font-weight: 800;
}

.wc-block-components-shipping-rates-control__package {
  border-color: rgba(255, 255, 255, 0.08);
}

.wc-block-components-radio-control__input:checked::before {
  background: var(--ma-color-accent);
}

.wc-block-components-sidebar .wc-block-cart__totals-title,
.wc-block-checkout__sidebar h2,
.wc-block-components-title {
  color: var(--ma-color-text);
}

.wc-block-cart .wc-block-cart__submit-container,
.wc-block-checkout .wc-block-checkout__actions_row {
  margin-top: 18px;
}

@media (max-width: 1180px) {
  .ma-hero {
    grid-template-columns: 1fr;
  }

  .ma-category-menu__panel {
    position: static;
    width: 100%;
    margin-top: 12px;
    display: none;
  }

  .ma-category-menu {
    overflow: hidden;
  }

  .ma-category-menu__item.is-active .ma-category-menu__panel,
  .ma-category-menu__item:hover .ma-category-menu__panel {
    display: block;
  }

  .ma-slide {
    padding: 0;
  }

  .ma-slide__visual {
    order: 0;
  }

  .ma-support__grid,
  .ma-featured,
  .ma-products,
  .ma-footer__grid,
  .ma-shop-main .products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ma-single-product-shell .product {
    grid-template-columns: 1fr;
  }

  .woocommerce-checkout .col2-set {
    grid-template-columns: 1fr;
  }

  .wc-block-components-sidebar-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  :root {
    --ma-gutter: 14px;
  }

  body.home .ma-main {
    padding-top: 0;
  }

  .ma-products {
    margin-top: 0;
  }

  .ma-section__title {
    margin-bottom: 0;
  }

  .ma-section__header {
    margin-bottom: 0;
  }

  .wp-block-woocommerce-cart-items-block {
    margin: 16px 0 !important;
  }

  .ma-header__nav-wrap--desktop,
  .ma-header__nav--desktop {
    display: none;
  }

  .ma-category-menu {
    display: none;
  }

  .ma-section__subcats {
    display: none;
  }

  .ma-topbar__inner,
  .ma-header__main,
  .ma-header__nav-row {
    flex-wrap: wrap;
  }

  .ma-mobile-nav__toggle {
    box-shadow: none !important;
    filter: none !important;
  }

  .ma-header__main {
    min-height: 76px;
    padding: 14px 0;
    align-items: center;
    justify-content: space-between;
  }

  .ma-header__hotline {
    display: none;
  }

  .ma-mobile-menu__toggle {
    display: inline-flex;
    width: 46px;
    height: 46px;
    padding: 0;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex: 0 0 46px;
  }

  .ma-mobile-menu__toggle svg {
    display: block;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    transform: translateX(-1px) translateY(-1px);
  }

  .ma-mobile-menu__toggle span,
  .ma-brand__text {
    display: none;
  }

  .ma-header__nav-row {
    align-items: stretch;
    gap: 0;
  }

  .ma-header__mega {
    display: none;
  }

  .ma-mobile-nav {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 120;
    pointer-events: none;
  }

  .ma-mobile-nav.is-open {
    pointer-events: auto;
  }

  .ma-mobile-nav__overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 10, 20, 0.56);
    opacity: 0;
    transition: opacity var(--ma-speed);
  }

  .ma-mobile-nav__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(320px, 86vw);
    height: 100dvh;
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: linear-gradient(
      180deg,
      rgba(13, 18, 32, 0.98),
      rgba(9, 14, 26, 0.98)
    );
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -18px 0 40px rgba(0, 0, 0, 0.28);
    transform: translateX(100%);
    transition: transform var(--ma-speed);
    overflow: hidden;
  }

  .ma-mobile-nav__close {
    position: absolute;
    top: 18px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--ma-color-text);
    cursor: pointer;
  }

  .ma-mobile-nav__close i {
    font-size: 18px;
    line-height: 1;
  }

  .ma-mobile-nav.is-open .ma-mobile-nav__overlay {
    opacity: 1;
  }

  .ma-mobile-nav.is-open .ma-mobile-nav__panel {
    transform: translateX(0);
  }

  .ma-mobile-nav__section {
    width: 100%;
  }

  .ma-mobile-nav__group {
    width: 100%;
  }

  .ma-mobile-nav__toggle,
  .ma-mobile-nav__link,
  .ma-mobile-nav__category {
    display: block;
    width: 100%;
    padding: 14px 0;
    color: var(--ma-color-text);
    font-size: 15px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .ma-mobile-nav__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: transparent;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    cursor: pointer;
  }

  .ma-mobile-nav__toggle i {
    font-size: 14px;
    transition: transform var(--ma-speed);
  }

  .ma-mobile-nav__group.is-open .ma-mobile-nav__toggle i {
    transform: rotate(180deg);
  }

  .ma-mobile-nav__link.is-active {
    color: var(--ma-color-primary-2);
  }

  .ma-mobile-nav__categories {
    display: none;
    max-height: 400px;
    overflow-y: auto;
    padding-left: 14px;
    padding-right: 4px;
  }

  .ma-mobile-nav__group.is-open .ma-mobile-nav__categories {
    display: block;
  }

  .ma-search__panel {
    position: fixed;
    top: 88px;
    left: 14px;
    right: 14px;
    width: auto;
  }

  .ma-search__grid {
    grid-template-columns: 1fr;
  }

  .ma-main.ma-shop-main {
    padding-top: 14px;
  }

  .ma-section__title,
  .ma-shop-hero .ma-section__title {
    font-size: 28px !important;
  }

  .ma-single-product-shell .product_title {
    font-size: 24px !important;
  }

  .ma-search__submit {
    flex: 1;
    width: 100%;
  }

  .ma-shop-filters__grid {
    grid-template-columns: 1fr;
  }

  .ma-shop-filters__grid--search {
    grid-template-areas:
      "keyword"
      "category"
      "sort"
      "actions";
    grid-template-columns: 1fr;
  }

  .ma-shop-filters__field--sort,
  .ma-shop-filters__actions--search {
    grid-area: auto;
  }

  .ma-category-menu__panel-grid,
  .ma-featured,
  .ma-products,
  .ma-footer__grid {
    grid-template-columns: 1fr;
  }

  .ma-shop-main .products {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ma-woo-card__body {
    gap: 8px;
    padding: 10px;
  }

  .ma-woo-card__title {
    font-size: 14px !important;
    line-height: 1.35;
  }

  .ma-woo-card__price {
    font-size: 14px;
  }

  .ma-woo-card__meta {
    font-size: 12px;
  }

  .ma-slider {
    min-height: 320px;
    margin-inline: calc(var(--ma-gutter) * -1);
    border-radius: 0;
  }

  .ma-slider__controls {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    margin: 0;
    z-index: 4;
  }

  .ma-slide__image-wrap {
    min-height: 320px;
    border-radius: 0;
  }

  .ma-slider__nav {
    display: flex;
    gap: 8px;
  }

  .ma-slider__arrow {
    width: 42px;
    height: 42px;
    display: inline-flex;
    opacity: 1;
    visibility: visible;
    background: rgba(8, 17, 31, 0.56);
    border-color: rgba(255, 255, 255, 0.28);
  }

  .ma-slider__arrow i {
    font-size: 14px;
  }

  .ma-slide__stats {
    position: static;
    margin-top: 16px;
  }

  .ma-shop-shell {
    padding: 18px;
  }

  .woocommerce-notices-wrapper {
    display: none !important;
  }

  .ma-product-gallery,
  .ma-single-product-shell .summary,
  .ma-single-product-shell .woocommerce-tabs,
  .ma-related-products,
  .ma-related-products__empty {
    padding: 16px !important;
  }

  .ma-product-gallery {
    padding: 8px !important;
  }

  .ma-single-product-shell .woocommerce-Tabs-panel--description > h2 {
    margin: 0;
  }

  .ma-product-gallery__thumb {
    width: 66px !important;
    max-width: 66px !important;
    min-width: 66px !important;
    height: 51px !important;
    max-height: 51px !important;
    min-height: 51px !important;
  }

  .ma-product-gallery__thumb img {
    width: 66px !important;
    height: 51px !important;
    max-width: 66px !important;
    min-width: 66px !important;
    max-height: 51px !important;
    min-height: 51px !important;
  }

  .ma-product-gallery__main-image {
    height: 110% !important;
    min-height: 360px;
  }

  .ma-variable-row {
    gap: 8px;
    min-width: calc(50% - 6px);
    max-width: none;
  }

  .shop_table thead {
    display: none;
  }

  .shop_table tbody tr {
    display: grid;
    gap: 10px;
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .shop_table tbody td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 0;
    border: 0 !important;
  }

  .shop_table tbody td::before {
    content: attr(data-title);
    color: var(--ma-color-text-muted);
    font-weight: 600;
  }

  .shop_table tbody td.product-remove::before,
  .shop_table tbody td.product-thumbnail::before {
    content: "";
  }

  .cart-collaterals {
    justify-content: stretch;
  }
}

@media (max-width: 560px) {
  .ma-page-contact-grid {
    grid-template-columns: 1fr;
  }

  .ma-brand__mark {
    width: 48px;
    height: 48px;
  }

  .ma-brand .custom-logo-link {
    width: 60px !important;
    height: 60px !important;
  }

  .ma-brand .custom-logo,
  .ma-brand .custom-logo-link img,
  .ma-brand img.custom-logo {
    width: 60px !important;
    height: 60px !important;
    max-width: 60px !important;
    min-width: 60px !important;
    max-height: 60px !important;
    min-height: 60px !important;
    flex: 0 0 60px !important;
  }

  .ma-brand__title {
    font-size: 22px;
  }

  .ma-brand__tagline {
    font-size: 12px;
  }

  .ma-action-btn,
  .ma-search__toggle {
    width: 42px;
    height: 42px;
  }

  .ma-section,
  .ma-featured__card,
  .ma-footer__card {
    padding: 10px;
  }

  .ma-slide {
    padding: 0;
  }

  .ma-slider__controls {
    margin-inline: 18px;
  }

  .wc-block-components-checkout-order-summary__content {
    border: none !important;
  }

  .checkout-order-summary-block-fill-wrapper {
    display: none !important;
  }

  .ma-section__title {
    margin-bottom: 16px !important;
  }
}

/* added: Fire + Water premium theme overrides */
body {
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 106, 0, 0.16),
      transparent 28%
    ),
    radial-gradient(
      circle at top center,
      rgba(229, 57, 53, 0.16),
      transparent 24%
    ),
    radial-gradient(
      circle at top right,
      rgba(0, 229, 255, 0.14),
      transparent 30%
    ),
    linear-gradient(180deg, var(--dark) 0%, #101624 42%, #090d17 100%);
}

a,
button,
input,
select,
textarea,
.ma-button,
.ma-search__submit,
.ma-hero__cta {
  /* added: smooth transitions */
  transition: 0.3s ease;
}

/* updated: aqua link hover */
a {
  transition:
    color 0.3s ease,
    text-shadow 0.3s ease,
    transform 0.3s ease;
}

a:hover {
  color: var(--aqua);
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.32);
}

/* updated: dark modern header/menu */
.ma-header {
  background: rgba(11, 15, 26, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.24);
}

/* updated: glowing menu hover */
.ma-nav-menu a,
.ma-header a,
.ma-topbar a {
  transition:
    color 0.3s ease,
    text-shadow 0.3s ease;
}

.ma-nav-menu a:hover,
.ma-header a:hover,
.ma-topbar a:hover {
  color: var(--aqua);
  text-shadow:
    0 0 8px rgba(0, 229, 255, 0.35),
    0 0 14px rgba(13, 71, 161, 0.22);
}

/* added: alternating dark section tones */
.ma-section:nth-of-type(odd) {
  background-color: rgba(11, 15, 26, 0.56);
}

.ma-section:nth-of-type(even) {
  background-color: rgba(26, 31, 46, 0.44);
}

.ma-featured__card:hover,
.ma-footer__card:hover,
.ma-category-menu:hover,
.ma-slide:hover,
.ma-products__item:hover,
.product:hover,
.woocommerce ul.products li.product:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: var(--glow-border);
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.34),
    0 0 18px rgba(0, 191, 255, 0.12),
    0 0 18px rgba(255, 106, 0, 0.1);
}

.wp-block-woocommerce-checkout-order-summary-block {
  border: none !important;
}

/* updated: premium button gradient + neon glow */
.ma-search__submit,
.ma-button,
.ma-hero__cta,
button,
input[type="submit"],
.wp-block-button__link {
  color: var(--text-white);
  background: var(--gradient-mixed);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    var(--glow-fire-sm),
    var(--glow-water-sm),
    0 10px 24px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease;
}

.ma-search__submit:hover,
.ma-button:hover,
.ma-hero__cta:hover,
button:hover,
input[type="submit"]:hover,
.wp-block-button__link:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    var(--glow-fire-md),
    var(--glow-water-md),
    0 16px 30px rgba(0, 0, 0, 0.28);
  filter: brightness(1.06);
}

/* updated: logo-inspired fire + water ring */
.ma-brand__mark {
  background: conic-gradient(
    from 220deg,
    var(--primary-orange) 0deg,
    var(--primary-red) 100deg,
    var(--primary-gold) 170deg,
    var(--aqua) 255deg,
    var(--deep-blue) 320deg,
    #08111f 360deg
  );
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.03),
    0 0 20px rgba(255, 106, 0, 0.2),
    0 0 20px rgba(0, 191, 255, 0.16);
}

/* updated: highlighted category menu */
.ma-category-menu__title {
  background: var(--gradient-mixed);
  box-shadow:
    inset 0 -1px 0 rgba(255, 255, 255, 0.08),
    0 0 18px rgba(255, 106, 0, 0.15);
}

/* updated: stronger badge emphasis */
.ma-cart-badge,
.onsale {
  color: var(--text-white);
  background: var(--gradient-fire);
  box-shadow: var(--glow-fire-sm);
}

/* updated: fire + water hero glow */
.ma-slide {
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 106, 0, 0.26),
      transparent 34%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(0, 229, 255, 0.22),
      transparent 40%
    ),
    linear-gradient(160deg, rgba(30, 16, 18, 0.96), rgba(11, 20, 38, 0.98));
}

.ma-featured__card a:hover,
.ma-footer a:hover,
.woocommerce a:hover {
  color: var(--aqua);
}

/* updated: readable dark form controls */
input,
textarea,
select {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(0, 229, 255, 0.45);
  box-shadow:
    0 0 0 3px rgba(0, 229, 255, 0.08),
    0 0 14px rgba(0, 191, 255, 0.16);
}

/* added: full premium fire + water refinements */
.ma-brand .custom-logo,
.ma-brand .custom-logo-link img,
.ma-brand img.custom-logo {
  filter: drop-shadow(0 10px 18px rgba(255, 106, 0, 0.14))
    drop-shadow(0 12px 20px rgba(0, 191, 255, 0.12));
}

.ma-brand__title,
.ma-section__title,
.ma-shop-hero .ma-section__title,
.ma-related-products__title,
.ma-footer__title {
  color: var(--text-white);
  text-shadow: 0 0 14px rgba(0, 191, 255, 0.08);
}

.ma-header__hotline {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 0 18px rgba(0, 191, 255, 0.06);
}

.ma-action-btn,
.ma-search__toggle,
.ma-slider__arrow,
.ma-mobile-menu__toggle {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 0 12px rgba(0, 191, 255, 0.06);
}

.ma-header__nav a,
.ma-header__mega-trigger {
  border: 1px solid transparent;
}

.ma-header__nav a:hover,
.ma-header__nav a.is-active,
.ma-header__mega:hover .ma-header__mega-trigger,
.ma-header__mega.is-open .ma-header__mega-trigger {
  color: var(--text-white);
  border-color: rgba(0, 229, 255, 0.14);
  background: linear-gradient(
    90deg,
    rgba(255, 106, 0, 0.16),
    rgba(0, 191, 255, 0.1)
  );
  box-shadow:
    0 0 12px rgba(0, 229, 255, 0.1),
    0 0 12px rgba(255, 106, 0, 0.08);
}

.ma-header__mega-panel,
.ma-category-menu__panel,
.ma-search__panel,
.ma-mobile-nav__panel {
  background: linear-gradient(
    180deg,
    rgba(17, 22, 35, 0.96),
    rgba(11, 15, 26, 0.98)
  );
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: rgba(0, 191, 255, 0.12);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.34),
    0 0 22px rgba(0, 191, 255, 0.08),
    0 0 16px rgba(255, 106, 0, 0.08);
}

.ma-header__mega-link,
.ma-category-menu__link,
.ma-mobile-nav__toggle,
.ma-mobile-nav__link,
.ma-mobile-nav__category {
  transition:
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.ma-header__mega-item:hover > .ma-header__mega-link,
.ma-header__mega-item.is-active > .ma-header__mega-link,
.ma-category-menu__link:hover,
.ma-category-menu__item.is-active > .ma-category-menu__link {
  color: var(--text-white);
  background: linear-gradient(
    90deg,
    rgba(255, 106, 0, 0.18),
    rgba(0, 191, 255, 0.12)
  );
}

.ma-header__mega-sublink,
.ma-category-menu__sub-link {
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.ma-header__mega-sublink:hover,
.ma-category-menu__sub-link:hover {
  border-color: rgba(0, 229, 255, 0.14);
  box-shadow: 0 0 14px rgba(0, 191, 255, 0.08);
}

.ma-select,
.ma-input,
.shop_table .quantity .qty,
.woocommerce form .form-row .input-text,
.woocommerce form .form-row select,
.woocommerce-cart .coupon .input-text,
.wc-block-components-form .wc-block-components-text-input input,
.wc-block-components-form .wc-block-components-text-input select,
.wc-block-components-form .wc-block-components-text-input textarea,
.wc-block-components-quantity-selector input,
.wc-block-components-combobox .wc-block-components-combobox-control input,
.wc-block-components-textarea {
  background: rgba(255, 255, 255, 0.045) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: var(--text-white) !important;
}

.ma-select:focus,
.ma-input:focus,
.woocommerce form .form-row .input-text:focus,
.woocommerce form .form-row select:focus,
.woocommerce-cart .coupon .input-text:focus,
.wc-block-components-form .wc-block-components-text-input input:focus,
.wc-block-components-form .wc-block-components-text-input select:focus,
.wc-block-components-form .wc-block-components-text-input textarea:focus,
.wc-block-components-quantity-selector input:focus,
.wc-block-components-combobox .wc-block-components-combobox-control input:focus,
.wc-block-components-textarea:focus {
  border-color: rgba(0, 229, 255, 0.34) !important;
  box-shadow:
    0 0 0 3px rgba(0, 229, 255, 0.08),
    0 0 18px rgba(0, 191, 255, 0.14) !important;
}

.ma-search__submit,
.ma-button,
.ma-hero__cta,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout #payment #place_order,
.woocommerce-message .button,
.woocommerce-info .button,
.wc-block-components-button,
.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button {
  position: relative;
  overflow: hidden;
  color: var(--text-white) !important;
  border-radius: 10px !important;
  border: 0 !important;
  background: linear-gradient(
    135deg,
    #ff6a00 0%,
    #e53935 55%,
    #00bfff 100%
  ) !important;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.24),
    0 0 10px rgba(0, 191, 255, 0.14) !important;
}

.ma-search__submit::before,
.ma-button::before,
.ma-hero__cta::before,
.woocommerce a.button::before,
.woocommerce button.button::before,
.woocommerce input.button::before,
.woocommerce #respond input#submit::before,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button::before,
.woocommerce-checkout #payment #place_order::before,
.wc-block-components-button::before,
.wc-block-cart__submit-button::before,
.wc-block-components-checkout-place-order-button::before {
  display: none;
}

.ma-search__submit:hover::before,
.ma-button:hover::before,
.ma-hero__cta:hover::before,
.woocommerce a.button:hover::before,
.woocommerce button.button:hover::before,
.woocommerce input.button:hover::before,
.woocommerce #respond input#submit:hover::before,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover::before,
.woocommerce-checkout #payment #place_order:hover::before,
.wc-block-components-button:hover::before,
.wc-block-cart__submit-button:hover::before,
.wc-block-components-checkout-place-order-button:hover::before {
  display: none;
}

.ma-slide__image-wrap,
.ma-product-card__thumb,
.ma-woo-card__thumb,
.ma-product-gallery__main,
.ma-contact-map,
.ma-shop-filters,
.ma-page-contact-card,
.ma-search-empty,
.ma-empty-category,
.ma-related-products__empty {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 18px rgba(0, 191, 255, 0.06),
    0 0 18px rgba(255, 106, 0, 0.05);
}

.ma-slide__stat,
.ma-badge,
.ma-chip,
.ma-variable-row,
.ma-shop-filters__reset {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.ma-chip:hover,
.ma-variable-row:hover,
.ma-shop-filters__reset:hover {
  color: var(--text-white);
  border-color: rgba(0, 229, 255, 0.14);
  background: linear-gradient(
    90deg,
    rgba(255, 106, 0, 0.14),
    rgba(0, 191, 255, 0.1)
  );
  box-shadow:
    0 0 12px rgba(0, 191, 255, 0.08),
    0 0 12px rgba(255, 106, 0, 0.06);
}

.ma-product-card,
.ma-woo-card__link,
.ma-single-product-shell .woocommerce-product-gallery,
.ma-product-gallery,
.ma-single-product-shell .summary,
.ma-single-product-shell .woocommerce-tabs,
.shop_table,
.cart_totals,
.woocommerce-checkout-review-order,
#customer_details .col-1,
#customer_details .col-2,
.woocommerce-checkout #payment,
.wc-block-cart .wc-block-cart-items,
.wc-block-checkout .wc-block-components-order-summary,
.wc-block-checkout .wc-block-checkout__main,
.wc-block-checkout .wc-block-checkout__sidebar,
.wc-block-components-order-summary,
.wc-block-components-totals-wrapper,
.wc-block-woocommerce-cart-totals-block,
.wc-block-checkout__payment-method,
.wc-block-checkout__contact-fields,
.wc-block-checkout__shipping-fields,
.wc-block-checkout__billing-fields,
.wc-block-checkout__order-notes,
.wc-block-checkout__actions_row {
  border-color: rgba(0, 191, 255, 0.12) !important;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.26),
    0 0 18px rgba(0, 191, 255, 0.06),
    0 0 12px rgba(255, 106, 0, 0.05) !important;
}

.ma-product-card,
.ma-woo-card__link {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.woocommerce ul.products li.product {
  border-radius: 10px !important;
  overflow: hidden;
}

.wc-block-components-totals-wrapper {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.ma-product-card:hover,
.ma-woo-card:hover .ma-woo-card__link {
  transform: translateY(-4px);
  border-color: rgba(0, 229, 255, 0.16) !important;
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.3),
    0 0 18px rgba(0, 191, 255, 0.1),
    0 0 16px rgba(255, 106, 0, 0.08) !important;
}

.ma-product-card__title,
.ma-woo-card__title,
.woocommerce-loop-product__title,
.product_title {
  color: var(--text-white) !important;
}

.ma-product-card__price,
.ma-woo-card__price,
.price,
.amount,
.woocommerce-Price-amount,
.wc-block-components-totals-item__value,
.wc-block-components-formatted-money-amount,
.wc-block-components-product-price,
.wc-block-components-order-summary-item__total-price {
  color: var(--primary-gold) !important;
  text-shadow: 0 0 12px rgba(255, 193, 7, 0.14);
}

.ma-badge,
.ma-badge--sale,
.onsale {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ma-badge--sale,
.onsale {
  background: var(--gradient-fire) !important;
  box-shadow:
    0 0 14px rgba(255, 106, 0, 0.2),
    0 0 12px rgba(229, 57, 53, 0.18);
}

.shop_table thead th,
.woocommerce-checkout-review-order-table th,
.cart_totals table th {
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.04);
}

.shop_table .product-remove a.remove {
  background: linear-gradient(
    135deg,
    rgba(229, 57, 53, 0.82),
    rgba(255, 106, 0, 0.72)
  );
  box-shadow: 0 0 12px rgba(229, 57, 53, 0.18);
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.wc-block-components-notice-banner,
.wc-block-components-notice-banner.is-info,
.wc-block-components-notice-banner.is-error,
.wc-block-components-notice-banner.is-success {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: rgba(0, 191, 255, 0.12) !important;
  box-shadow:
    0 0 14px rgba(0, 191, 255, 0.06),
    0 0 12px rgba(255, 106, 0, 0.05);
}

.ma-footer {
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 106, 0, 0.1),
      transparent 26%
    ),
    radial-gradient(
      circle at top right,
      rgba(0, 229, 255, 0.08),
      transparent 24%
    ),
    linear-gradient(180deg, rgba(11, 15, 26, 0.98), rgba(9, 13, 22, 1));
}

.ma-footer__eyebrow {
  color: var(--primary-gold);
  text-shadow: 0 0 12px rgba(255, 193, 7, 0.12);
}

.ma-footer__line,
.ma-footer__note,
.ma-footer__hotline,
.ma-copyright {
  color: var(--text-light);
}

.ma-footer__hotline a,
.ma-footer__line a {
  color: var(--text-white);
}

.ma-footer__line a:hover,
.ma-footer__hotline a:hover {
  color: var(--aqua);
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.24);
}

/* updated: full width footer without rounded card */
.ma-footer {
  padding: 0;
}

.ma-footer .ma-container {
  width: 100%;
  max-width: none;
  margin: 0;
}

.ma-footer__grid {
  gap: 0;
}

.ma-footer__card,
.ma-footer__card:hover,
.ma-footer__card--centered {
  width: 100%;
  border-radius: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}

.ma-footer__card {
  padding: 28px 24px 22px;
}

@media (max-width: 860px) {
  .ma-mobile-nav__panel {
    background: linear-gradient(
      180deg,
      rgba(14, 19, 31, 0.98),
      rgba(9, 13, 22, 0.99)
    );
    border-left-color: rgba(0, 191, 255, 0.12);
  }

  .ma-header__main,
  .ma-header {
    backdrop-filter: blur(14px);
  }

  .ma-slider__arrow {
    box-shadow:
      0 0 12px rgba(0, 191, 255, 0.08),
      0 0 12px rgba(255, 106, 0, 0.06);
  }
}

/* added: floating zalo + phone buttons */
.ma-float-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 115;
  display: grid;
  gap: 12px;
}

.ma-float-actions__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  min-height: 54px;
  width: 56px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  background: rgba(26, 31, 46, 0.92);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.03);
  overflow: visible;
  isolation: isolate;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.ma-float-actions__btn:hover {
  transform: translateY(-2px);
  color: #ffffff;
}

.ma-float-actions__btn--zalo {
  border-color: rgba(0, 229, 255, 0.22);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.28),
    0 0 18px rgba(0, 229, 255, 0.14);
}

.ma-float-actions__btn--phone {
  border-color: rgba(255, 106, 0, 0.22);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.28),
    0 0 18px rgba(229, 57, 53, 0.14);
}

.ma-float-actions__icon {
  position: relative;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex: 0 0 40px;
}

.ma-float-actions__btn--zalo .ma-float-actions__icon {
  background: linear-gradient(135deg, #00e5ff, #00bfff);
}

.ma-float-actions__btn--phone .ma-float-actions__icon {
  background: linear-gradient(135deg, #ff6a00, #e53935);
}

.ma-float-actions__icon img {
  width: 20px;
  height: 20px;
  display: block;
}

.ma-float-actions__icon i {
  font-size: 16px;
  line-height: 1;
}

.ma-float-actions__waves,
.ma-float-actions__waves::before,
.ma-float-actions__waves::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.ma-float-actions__btn--zalo .ma-float-actions__waves {
  border: 2px solid rgba(0, 229, 255, 0.28);
  animation: ma-float-wave-zalo 2.2s ease-out infinite;
}

.ma-float-actions__btn--zalo .ma-float-actions__waves::before {
  border: 2px solid rgba(0, 191, 255, 0.22);
  animation: ma-float-wave-zalo 2.2s ease-out 0.7s infinite;
}

.ma-float-actions__btn--zalo .ma-float-actions__waves::after {
  border: 2px solid rgba(0, 229, 255, 0.16);
  animation: ma-float-wave-zalo 2.2s ease-out 1.4s infinite;
}

.ma-float-actions__btn--phone .ma-float-actions__waves {
  border: 2px solid rgba(229, 57, 53, 0.28);
  animation: ma-float-wave-phone 2.2s ease-out infinite;
}

.ma-float-actions__btn--phone .ma-float-actions__waves::before {
  border: 2px solid rgba(255, 106, 0, 0.22);
  animation: ma-float-wave-phone 2.2s ease-out 0.7s infinite;
}

.ma-float-actions__btn--phone .ma-float-actions__waves::after {
  border: 2px solid rgba(229, 57, 53, 0.16);
  animation: ma-float-wave-phone 2.2s ease-out 1.4s infinite;
}

@keyframes ma-float-wave-zalo {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  8% {
    opacity: 0.45;
  }
  28% {
    opacity: 0;
    transform: scale(1.85);
  }
  100% {
    opacity: 0;
    transform: scale(1.85);
  }
}

@keyframes ma-float-wave-phone {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  8% {
    opacity: 0.45;
  }
  28% {
    opacity: 0;
    transform: scale(1.85);
  }
  100% {
    opacity: 0;
    transform: scale(1.85);
  }
}

@media (max-width: 860px) {
  .ma-float-actions {
    right: 12px;
    bottom: 12px;
    gap: 10px;
  }

  .ma-float-actions__btn {
    min-width: 54px;
    width: 54px;
    min-height: 54px;
    padding: 0;
    justify-content: center;
  }
}

/* added: global entrance animations */
@keyframes ma-fade-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ma-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes ma-scale-in {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.ma-header,
.ma-topbar,
.ma-mobile-nav__panel,
.ma-search__panel,
.ma-header__mega-panel,
.ma-category-menu__panel {
  animation: ma-fade-in 0.35s ease both;
}

.ma-hero,
.ma-section,
.ma-featured,
.ma-products,
.ma-shop-filters,
.ma-footer,
.ma-page-content,
.ma-page-contact-grid,
.ma-related-products,
.woocommerce-notices-wrapper,
.cart_totals,
.woocommerce-checkout-review-order,
#customer_details .col-1,
#customer_details .col-2,
.woocommerce-checkout #payment {
  animation: ma-fade-up 0.55s ease both;
}

.ma-category-menu,
.ma-slider,
.ma-featured__card,
.ma-product-card,
.ma-woo-card,
.ma-woo-card__link,
.product,
.woocommerce ul.products li.product,
.ma-page-contact-card,
.ma-contact-map,
.ma-product-gallery,
.ma-single-product-shell .summary,
.ma-single-product-shell .woocommerce-tabs,
.ma-footer__card {
  animation: ma-fade-up 0.65s ease both;
}

.ma-brand,
.ma-header__actions,
.ma-section__header,
.ma-slide__stats,
.ma-float-actions__btn {
  animation: ma-scale-in 0.45s ease both;
}

.ma-featured__card:nth-child(1),
.ma-product-card:nth-child(1),
.ma-products > *:nth-child(1),
.ma-featured > *:nth-child(1),
.ma-shop-main .products > li:nth-child(1) {
  animation-delay: 0.04s;
}

.ma-featured__card:nth-child(2),
.ma-product-card:nth-child(2),
.ma-products > *:nth-child(2),
.ma-featured > *:nth-child(2),
.ma-shop-main .products > li:nth-child(2) {
  animation-delay: 0.08s;
}

.ma-featured__card:nth-child(3),
.ma-product-card:nth-child(3),
.ma-products > *:nth-child(3),
.ma-featured > *:nth-child(3),
.ma-shop-main .products > li:nth-child(3) {
  animation-delay: 0.12s;
}

.ma-featured__card:nth-child(4),
.ma-product-card:nth-child(4),
.ma-products > *:nth-child(4),
.ma-featured > *:nth-child(4),
.ma-shop-main .products > li:nth-child(4) {
  animation-delay: 0.16s;
}

.ma-slide__stat:nth-child(1),
.ma-float-actions__btn:nth-child(1) {
  animation-delay: 0.08s;
}

.ma-slide__stat:nth-child(2),
.ma-float-actions__btn:nth-child(2) {
  animation-delay: 0.16s;
}

@media (prefers-reduced-motion: reduce) {
  .ma-header,
  .ma-topbar,
  .ma-mobile-nav__panel,
  .ma-search__panel,
  .ma-header__mega-panel,
  .ma-category-menu__panel,
  .ma-hero,
  .ma-section,
  .ma-featured,
  .ma-products,
  .ma-shop-filters,
  .ma-footer,
  .ma-page-content,
  .ma-page-contact-grid,
  .ma-related-products,
  .woocommerce-notices-wrapper,
  .cart_totals,
  .woocommerce-checkout-review-order,
  #customer_details .col-1,
  #customer_details .col-2,
  .woocommerce-checkout #payment,
  .ma-category-menu,
  .ma-slider,
  .ma-featured__card,
  .ma-product-card,
  .ma-woo-card,
  .ma-woo-card__link,
  .product,
  .woocommerce ul.products li.product,
  .ma-page-contact-card,
  .ma-contact-map,
  .ma-product-gallery,
  .ma-single-product-shell .summary,
  .ma-single-product-shell .woocommerce-tabs,
  .ma-footer__card,
  .ma-brand,
  .ma-header__actions,
  .ma-section__header,
  .ma-slide__stats,
  .ma-float-actions__btn {
    animation: none !important;
  }
}
