/* ============================================================
   Flowent Store FSE — Custom CSS
   Version: 1.0.0
   ============================================================ */

/* ──────────────────────────────────────────────
   1. CSS CUSTOM PROPERTIES
   ────────────────────────────────────────────── */
:root {
  --flowent-primary:         #e37526;
  --flowent-accent:          #00ffd9;
  --flowent-bg:              #000000;
  --flowent-text:            #ffffff;
  --flowent-blue:            #009acb;
  --flowent-orange2:         #ff9600;
  --flowent-red:             #bf0035;
  --flowent-light-blue:      #558eff;
  --flowent-btn-radius:      4px;
  --flowent-card-radius:     12px;
  --flowent-section-spacing: 80px;
  --flowent-header-height:   72px;
  --flowent-transition:      0.3s ease;
  --flowent-font-en:         'Chakra Petch', sans-serif;
  --flowent-font-ar:         'Bahij TheSansArabic', 'Chakra Petch', sans-serif;
  --flowent-max-width:       1200px;
  --flowent-wide-width:      1440px;
}

/* ──────────────────────────────────────────────
   2. BASE RESET
   ────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--flowent-bg);
  color: var(--flowent-text);
  font-family: var(--flowent-font-en);
  line-height: 1.6;
}

html[dir="rtl"] body {
  font-family: var(--flowent-font-ar);
}

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

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

a:hover {
  color: var(--flowent-accent);
}

/* ──────────────────────────────────────────────
   3. HEADER STYLES
   ────────────────────────────────────────────── */
.flowent-site-header {
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 100;
}

.flowent-header-sticky .flowent-site-header,
.flowent-header-sticky header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.flowent-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: var(--flowent-header-height);
  max-width: var(--flowent-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.flowent-site-logo a,
.flowent-store-logo-link {
  display: flex;
  align-items: center;
}

.flowent-site-logo img,
.flowent-store-logo {
  height: 44px;
  width: auto;
}

/* ──────────────────────────────────────────────
   4. NAVIGATION
   ────────────────────────────────────────────── */
.flowent-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.flowent-nav a {
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: color var(--flowent-transition);
  text-decoration: none;
}

.flowent-nav a:hover {
  color: var(--flowent-primary);
}

/* ──────────────────────────────────────────────
   5. MOBILE HAMBURGER
   ────────────────────────────────────────────── */
.flowent-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
  z-index: 200;
}

.flowent-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--flowent-transition), opacity var(--flowent-transition);
}

.flowent-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.flowent-hamburger.is-open span:nth-child(2) { opacity: 0; }
.flowent-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.flowent-mobile-menu {
  display: none;
  flex-direction: column;
  background: #111;
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.flowent-mobile-menu.is-open {
  display: flex;
}

.flowent-mobile-menu a {
  padding: 0.75rem 0;
  color: #fff;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
}

.flowent-mobile-menu a:last-child {
  border-bottom: none;
}

/* ──────────────────────────────────────────────
   6. LANGUAGE SWITCHER
   ────────────────────────────────────────────── */
.flowent-lang-switcher {
  position: relative;
  display: inline-block;
}

.flowent-lang-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  font-family: var(--flowent-font-en);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 10px;
  min-height: 36px;
  transition: border-color var(--flowent-transition), background var(--flowent-transition);
}

.flowent-lang-trigger:hover {
  border-color: var(--flowent-primary);
  background: rgba(227,117,38,0.08);
}

.flowent-lang-arrow {
  transition: transform var(--flowent-transition);
}

.flowent-lang-switcher.is-open .flowent-lang-arrow {
  transform: rotate(180deg);
}

.flowent-lang-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  min-width: 160px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 6px;
  display: none;
  z-index: 500;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

html[dir="rtl"] .flowent-lang-dropdown {
  right: auto;
  left: 0;
}

.flowent-lang-switcher.is-open .flowent-lang-dropdown {
  display: block;
}

.flowent-lang-hover-bridge {
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

.flowent-lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: none;
  border: none;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  font-family: var(--flowent-font-en);
  font-size: 0.9rem;
  padding: 8px 10px;
  text-align: left;
  min-height: 44px;
  transition: background var(--flowent-transition);
}

html[dir="rtl"] .flowent-lang-option {
  text-align: right;
}

.flowent-lang-option:hover {
  background: rgba(227,117,38,0.15);
}

.flowent-lang-option.is-active {
  color: var(--flowent-primary);
}

/* ──────────────────────────────────────────────
   7. CART WIDGET & BADGE
   ────────────────────────────────────────────── */
.flowent-cart-widget {
  position: relative;
  display: inline-flex;
}

.flowent-cart-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  transition: background var(--flowent-transition), color var(--flowent-transition);
  position: relative;
}

.flowent-cart-icon:hover {
  background: rgba(227,117,38,0.15);
  color: var(--flowent-primary);
}

.flowent-cart-icon svg {
  width: 20px;
  height: 20px;
}

.flowent-cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--flowent-primary);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
}

/* ──────────────────────────────────────────────
   8. HERO SECTION
   ────────────────────────────────────────────── */
.flowent-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: var(--flowent-section-spacing) 1.5rem;
  background: #000;
  overflow: hidden;
}

.flowent-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(227,117,38,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(0,255,217,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.flowent-hero-content {
  position: relative;
  max-width: var(--flowent-max-width);
  margin: 0 auto;
  width: 100%;
}

.flowent-hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--flowent-accent);
  margin-bottom: 1.5rem;
}

.flowent-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 1.5rem;
  color: #fff;
}

.flowent-hero-body {
  font-size: 1.1rem;
  max-width: 600px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.flowent-hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ──────────────────────────────────────────────
   9. BUTTONS
   ────────────────────────────────────────────── */
.flowent-btn,
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0.75rem 1.75rem;
  border-radius: var(--flowent-btn-radius);
  font-family: var(--flowent-font-en);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background var(--flowent-transition), color var(--flowent-transition), transform var(--flowent-transition);
  text-decoration: none;
  border: 2px solid transparent;
}

.flowent-btn-primary {
  background: var(--flowent-primary);
  color: #fff;
  border-color: var(--flowent-primary);
}

.flowent-btn-primary:hover {
  background: #c8651f;
  border-color: #c8651f;
  transform: translateY(-2px);
  color: #fff;
}

.flowent-btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}

.flowent-btn-outline:hover {
  border-color: var(--flowent-accent);
  color: var(--flowent-accent);
  transform: translateY(-2px);
}

/* ──────────────────────────────────────────────
   10. CARDS
   ────────────────────────────────────────────── */
.flowent-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--flowent-card-radius);
  padding: 2rem;
  transition: transform var(--flowent-transition), box-shadow var(--flowent-transition), border-color var(--flowent-transition);
  position: relative;
  overflow: hidden;
}

.flowent-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  border-color: rgba(227,117,38,0.3);
}

/* ──────────────────────────────────────────────
   11. SECTION UTILITIES
   ────────────────────────────────────────────── */
.flowent-section {
  padding: var(--flowent-section-spacing) 1.5rem;
}

.flowent-section-inner {
  max-width: var(--flowent-max-width);
  margin: 0 auto;
}

.flowent-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--flowent-primary);
  margin-bottom: 1rem;
  display: block;
}

.flowent-section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 1rem;
}

.flowent-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.flowent-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.flowent-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: start;
}

/* Category cards on homepage */
.flowent-category-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.flowent-category-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--flowent-card-radius);
  padding: 2rem 1.5rem;
  text-align: center;
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: transform var(--flowent-transition), border-color var(--flowent-transition);
}

.flowent-category-card:hover {
  transform: translateY(-4px);
  border-color: var(--flowent-primary);
  color: #fff;
}

.flowent-category-card-icon {
  font-size: 2rem;
  line-height: 1;
}

.flowent-category-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}

.flowent-category-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

/* ──────────────────────────────────────────────
   12. FOOTER
   ────────────────────────────────────────────── */
.flowent-footer {
  background: #080808;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 1.5rem 2rem;
}

.flowent-footer-inner {
  max-width: var(--flowent-max-width);
  margin: 0 auto;
}

.flowent-footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.flowent-footer-brand .flowent-footer-logo {
  height: 40px;
  margin-bottom: 1rem;
}

.flowent-footer-slogan {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

.flowent-footer-col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin: 0 0 1rem;
}

.flowent-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.flowent-footer-col li + li {
  margin-top: 0.6rem;
}

.flowent-footer-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--flowent-transition);
  text-decoration: none;
}

.flowent-footer-col a:hover {
  color: var(--flowent-primary);
}

.flowent-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
  gap: 1rem;
}

.flowent-footer-copyright {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
}

.flowent-footer-copyright-ar {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.25);
  font-family: var(--flowent-font-ar);
}

/* ──────────────────────────────────────────────
   13. MOTION CLASSES
   ────────────────────────────────────────────── */
.flowent-motion-off *,
.flowent-motion-off *::before,
.flowent-motion-off *::after {
  transition: none !important;
  animation: none !important;
}

.flowent-motion-subtle * {
  transition-duration: 200ms !important;
}

.flowent-motion-normal * {
  transition-duration: 400ms !important;
}

/* ──────────────────────────────────────────────
   14. RTL OVERRIDES
   ────────────────────────────────────────────── */
html[dir="rtl"] {
  text-align: right;
}

html[dir="rtl"] .flowent-header-inner {
  flex-direction: row-reverse;
}

html[dir="rtl"] .flowent-nav {
  flex-direction: row-reverse;
}

html[dir="rtl"] .flowent-hero-ctas {
  flex-direction: row-reverse;
}

html[dir="rtl"] .flowent-footer-top {
  direction: rtl;
}

html[dir="rtl"] .flowent-footer-bottom {
  flex-direction: row-reverse;
}

html[dir="rtl"] .flowent-card {
  text-align: right;
}

html[dir="rtl"] .flowent-mobile-menu a {
  text-align: right;
}

html[dir="rtl"] .flowent-cart-count {
  right: auto;
  left: -6px;
}

/* ──────────────────────────────────────────────
   15. BILINGUAL SECTION
   ────────────────────────────────────────────── */
.flowent-bilingual-en {
  display: block;
}

.flowent-bilingual-ar {
  display: none;
  font-family: var(--flowent-font-ar);
  text-align: right;
  direction: rtl;
}

html[dir="rtl"] .flowent-bilingual-en {
  display: none;
}

html[dir="rtl"] .flowent-bilingual-ar {
  display: block;
}

/* ──────────────────────────────────────────────
   16. WOOCOMMERCE OVERRIDES
   ────────────────────────────────────────────── */

/* Product cards */
.woocommerce ul.products {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.woocommerce ul.products li.product {
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--flowent-card-radius);
  padding: 1.5rem;
  transition: transform var(--flowent-transition), box-shadow var(--flowent-transition), border-color var(--flowent-transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  border-color: rgba(227,117,38,0.25);
}

.woocommerce ul.products li.product a img {
  border-radius: 8px;
  margin-bottom: 1rem;
  width: 100%;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--flowent-font-en);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
}

.woocommerce ul.products li.product .price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--flowent-primary);
  margin: 0 0 1rem;
}

.woocommerce ul.products li.product .price del {
  color: rgba(255,255,255,0.3);
  font-size: 0.85rem;
}

/* WC Buttons */
.woocommerce .button,
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button {
  background: var(--flowent-primary) !important;
  color: #fff !important;
  border: 2px solid var(--flowent-primary) !important;
  border-radius: var(--flowent-btn-radius) !important;
  font-family: var(--flowent-font-en) !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  padding: 0.65rem 1.5rem !important;
  min-height: 44px !important;
  transition: background var(--flowent-transition), transform var(--flowent-transition) !important;
  cursor: pointer !important;
}

.woocommerce .button:hover,
.woocommerce button.button:hover,
.woocommerce a.button:hover {
  background: #c8651f !important;
  border-color: #c8651f !important;
  transform: translateY(-1px) !important;
  color: #fff !important;
}

/* Sale badge */
.woocommerce span.onsale {
  background: var(--flowent-primary);
  color: #fff;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 10px;
  top: 12px;
  left: 12px;
  min-height: unset;
  min-width: unset;
  line-height: 1.6;
}

/* Notices */
.woocommerce-message,
.woocommerce-info {
  background: #111 !important;
  border-top-color: var(--flowent-primary) !important;
  color: rgba(255,255,255,0.85) !important;
}

.woocommerce-message::before,
.woocommerce-info::before {
  color: var(--flowent-primary) !important;
}

/* Empty cart */
.woocommerce-cart .woocommerce-cart-form {
  background: transparent;
}

.woocommerce-cart .cart-empty {
  text-align: center;
  padding: 4rem 1.5rem;
  color: rgba(255,255,255,0.7);
}

/* Product filter sidebar */
.flowent-shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
}

.flowent-shop-sidebar {
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--flowent-card-radius);
  padding: 1.5rem;
}

.flowent-shop-sidebar h3 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.flowent-filter-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 0.5rem 0;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  font-size: 0.95rem;
}

.flowent-filter-accordion-header::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--flowent-primary);
}

.flowent-filter-accordion-header.is-open::after {
  content: '-';
}

.flowent-filter-accordion-body {
  display: none;
  padding: 0.5rem 0 1rem;
}

.flowent-filter-accordion-body.is-open {
  display: block;
}

.widget_product_categories ul,
.widget_layered_nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.widget_product_categories li,
.widget_layered_nav li {
  padding: 0.3rem 0;
}

.widget_product_categories a,
.widget_layered_nav a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.widget_product_categories a:hover,
.widget_layered_nav a:hover {
  color: var(--flowent-primary);
}

/* Mini cart overlay */
.flowent-mini-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--flowent-transition);
}

.flowent-mini-cart-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.flowent-mini-cart-panel {
  position: fixed;
  top: 0;
  right: -380px;
  width: 380px;
  max-width: 90vw;
  height: 100vh;
  background: #111;
  border-left: 1px solid rgba(255,255,255,0.08);
  z-index: 999;
  padding: 1.5rem;
  overflow-y: auto;
  transition: right var(--flowent-transition);
}

.flowent-mini-cart-panel.is-open {
  right: 0;
}

html[dir="rtl"] .flowent-mini-cart-panel {
  right: auto;
  left: -380px;
  border-left: none;
  border-right: 1px solid rgba(255,255,255,0.08);
}

html[dir="rtl"] .flowent-mini-cart-panel.is-open {
  left: 0;
}

.flowent-mini-cart-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  margin-bottom: 1.5rem;
  display: block;
  margin-left: auto;
}

.flowent-mini-cart-close:hover {
  color: #fff;
}

/* WC input fields */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  border-radius: 6px !important;
  color: #fff !important;
  font-family: var(--flowent-font-en) !important;
  padding: 0.75rem 1rem !important;
}

.woocommerce form .form-row label {
  color: rgba(255,255,255,0.8) !important;
}

/* WC order table */
.woocommerce table.shop_table {
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--flowent-card-radius);
  color: rgba(255,255,255,0.85);
}

.woocommerce table.shop_table th {
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.woocommerce table.shop_table td {
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* Contact form */
.flowent-contact-form {
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--flowent-card-radius);
  padding: 2.5rem;
}

.flowent-form-group {
  margin-bottom: 1.5rem;
}

.flowent-form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: rgba(255,255,255,0.8);
}

.flowent-form-group input,
.flowent-form-group textarea,
.flowent-form-group select {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  color: #fff;
  font-family: var(--flowent-font-en);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  transition: border-color var(--flowent-transition);
  min-height: 44px;
}

.flowent-form-group input:focus,
.flowent-form-group textarea:focus,
.flowent-form-group select:focus {
  outline: none;
  border-color: var(--flowent-primary);
}

.flowent-form-group textarea {
  resize: vertical;
  min-height: 140px;
}

/* 404 */
.flowent-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}

.flowent-404-code {
  font-size: 8rem;
  font-weight: 700;
  color: var(--flowent-primary);
  line-height: 1;
  margin: 0;
  opacity: 0.25;
}

/* Breadcrumb */
.flowent-breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.flowent-breadcrumb a {
  color: rgba(255,255,255,0.4);
}

.flowent-breadcrumb a:hover {
  color: var(--flowent-primary);
}

html[dir="rtl"] .flowent-breadcrumb {
  flex-direction: row-reverse;
}

/* Page title hiding */
.flowent-hide-page-title .wp-block-post-title,
.flowent-hide-page-title .entry-title,
.flowent-hide-page-title h1.page-title {
  display: none !important;
}

/* ──────────────────────────────────────────────
   17. PRODUCT SINGLE PAGE
   ────────────────────────────────────────────── */
.woocommerce div.product .product_title {
  color: #fff;
  font-family: var(--flowent-font-en);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--flowent-primary) !important;
  font-size: 1.75rem;
  font-weight: 700;
}

.woocommerce div.product .woocommerce-product-details__short-description {
  color: rgba(255,255,255,0.75);
}

/* ──────────────────────────────────────────────
   18. WP BLOCK OVERRIDES
   ────────────────────────────────────────────── */
.wp-block-button__link {
  background: var(--flowent-primary);
  color: #fff;
  border-radius: var(--flowent-btn-radius);
  min-height: 44px;
}

.wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent;
  color: var(--flowent-primary);
  border: 2px solid var(--flowent-primary);
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: var(--flowent-primary);
  color: #fff;
}

/* ──────────────────────────────────────────────
   19. RESPONSIVE
   ────────────────────────────────────────────── */

/* 1440px */
@media (max-width: 1440px) {
  .flowent-grid-4,
  .flowent-category-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 1024px */
@media (max-width: 1024px) {
  .flowent-footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .flowent-grid-3,
  .flowent-grid-4,
  .flowent-category-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .flowent-shop-layout {
    grid-template-columns: 240px 1fr;
  }

  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 768px */
@media (max-width: 768px) {
  .flowent-nav {
    display: none;
  }

  .flowent-hamburger {
    display: flex;
  }

  .flowent-grid-2,
  .flowent-grid-3,
  .flowent-grid-4,
  .flowent-category-cards {
    grid-template-columns: 1fr;
  }

  .flowent-footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .flowent-footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .flowent-shop-layout {
    grid-template-columns: 1fr;
  }

  .flowent-shop-sidebar {
    order: -1;
  }

  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 430px */
@media (max-width: 430px) {
  .flowent-hero-ctas {
    flex-direction: column;
  }

  .flowent-hero-ctas .flowent-btn {
    width: 100%;
  }

  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }
}

/* 375px */
@media (max-width: 375px) {
  :root {
    --flowent-section-spacing: 48px;
  }

  .flowent-header-inner {
    padding: 0 1rem;
  }
}

/* ──────────────────────────────────────────────
   20. PRINT
   ────────────────────────────────────────────── */
@media print {
  :root {
    --flowent-bg: #fff;
    --flowent-text: #000;
  }

  .flowent-hamburger,
  .flowent-lang-switcher,
  .flowent-cart-widget {
    display: none !important;
  }
}


/* ============================================================
   FLOWENT FIX PACK — stable header/footer + mobile overlay
   Prevents wp:navigation from pulling old WordPress menus.
   ============================================================ */
.flowent-static-header {
  width: 100%;
  background: #000 !important;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative;
  z-index: 9999;
}
.flowent-static-header .flowent-header-inner {
  width: 100%;
  min-height: 176px;
  margin: 0;
  padding: 42px 118px;
  display: grid !important;
  grid-template-columns: 360px minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 72px;
  box-sizing: border-box;
  max-width: none;
  height: auto;
}
.flowent-static-header .flowent-logo-link {display:flex;align-items:center;min-width:0;}
.flowent-static-header .flowent-logo {width:360px;max-width:100%;height:auto;display:block;}
.flowent-static-header .flowent-desktop-nav {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:42px;
  white-space:nowrap;
  min-width:0;
}
.flowent-static-header .flowent-desktop-nav a,
.flowent-static-header .flowent-nav-dropdown-trigger {
  color:#fff;
  text-decoration:none;
  font-family:var(--flowent-font-en, var(--wp--preset--font-family--chakra-petch, 'Chakra Petch', sans-serif));
  font-size:23px;
  font-weight:600;
  line-height:1;
  letter-spacing:-.02em;
  transition:color .2s ease, opacity .2s ease;
}
.flowent-static-header .flowent-desktop-nav a:hover,
.flowent-static-header .flowent-nav-dropdown-trigger:hover {color:var(--flowent-accent,#00ffd9);}
.flowent-static-header .flowent-header-actions{display:flex;align-items:center;justify-content:flex-end;gap:18px;}
.flowent-nav-dropdown{position:relative;display:flex;align-items:center;}
.flowent-nav-dropdown-panel{
  position:absolute;
  top:calc(100% + 18px);
  left:50%;
  transform:translateX(-50%);
  min-width:320px;
  padding:10px;
  border-radius:14px;
  background:#070707;
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 24px 70px rgba(0,0,0,.55);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .18s ease, visibility .18s ease;
}
.flowent-nav-dropdown-panel::before{content:'';position:absolute;left:0;right:0;top:-22px;height:22px;}
.flowent-nav-dropdown:hover .flowent-nav-dropdown-panel,
.flowent-nav-dropdown:focus-within .flowent-nav-dropdown-panel{opacity:1;visibility:visible;pointer-events:auto;}
.flowent-nav-dropdown-panel a{display:block!important;padding:14px 16px;border-radius:10px;font-size:16px!important;line-height:1.25!important;}
.flowent-nav-dropdown-panel a:hover{background:rgba(255,255,255,.08);}
.flowent-static-header .flowent-lang-trigger{
  height:58px;
  padding:0 18px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.03);
  color:#fff;
  display:inline-flex;
  align-items:center;
  gap:10px;
  cursor:pointer;
  font-family:var(--flowent-font-en, var(--wp--preset--font-family--chakra-petch, 'Chakra Petch', sans-serif));
  font-size:21px;
  font-weight:600;
  min-height:58px;
}
.flowent-static-header .flowent-lang-arrow{font-size:24px;line-height:1;transform:translateY(-2px);}
.flowent-static-header .flowent-lang-dropdown{top:calc(100% + 12px);border-radius:12px;background:#070707;}
.flowent-static-header .flowent-hamburger{
  display:none;
  width:46px;height:46px;border:1px solid rgba(255,255,255,.25);border-radius:999px;background:transparent;
  padding:0;align-items:center;justify-content:center;flex-direction:column;gap:5px;cursor:pointer;
}
.flowent-static-header .flowent-hamburger span{width:19px;height:2px;background:#fff;display:block;border-radius:2px;}
.flowent-static-header .flowent-cart-icon{position:relative;width:58px;height:58px;border:1px solid rgba(255,255,255,.22);border-radius:10px;display:inline-flex;align-items:center;justify-content:center;color:#fff;text-decoration:none;background:rgba(255,255,255,.03);}
.flowent-static-header .flowent-cart-icon svg{width:25px;height:25px;}
.flowent-cart-count{position:absolute;top:7px;right:7px;min-width:18px;height:18px;padding:0 5px;border-radius:999px;background:var(--flowent-primary,#e37526);color:#fff;font-size:11px;line-height:18px;text-align:center;font-weight:700;}
.flowent-mobile-menu{
  position:fixed;
  inset:0;
  z-index:10000;
  display:flex;
  flex-direction:column;
  gap:0;
  background:#000;
  padding:28px;
  transform:translateX(100%);
  opacity:0;
  pointer-events:none;
  transition:transform .28s ease, opacity .28s ease;
  overflow:auto;
}
.flowent-mobile-menu.is-open{transform:translateX(0);opacity:1;pointer-events:auto;display:flex;}
.flowent-mobile-menu-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:22px;color:rgba(255,255,255,.45);font-weight:700;letter-spacing:.14em;text-transform:uppercase;font-size:12px;}
.flowent-mobile-close{width:44px;height:44px;border-radius:999px;border:1px solid rgba(255,255,255,.18);background:transparent;color:#fff;font-size:30px;line-height:1;cursor:pointer;}
.flowent-mobile-menu a{display:block;padding:18px 0;color:#fff!important;text-decoration:none;font-size:clamp(24px,6vw,44px);font-weight:700;border-bottom:1px solid rgba(255,255,255,.08);font-family:var(--flowent-font-en, var(--wp--preset--font-family--chakra-petch, 'Chakra Petch', sans-serif));}
.flowent-mobile-menu a:hover{color:var(--flowent-accent,#00ffd9)!important;}
.flowent-footer{background:#000;color:#fff;border-top:1px solid rgba(255,255,255,.08);}
.flowent-footer-inner{max-width:1440px;margin:0 auto;padding:64px 48px 34px;box-sizing:border-box;}
.flowent-footer-grid{display:grid;grid-template-columns:1.4fr repeat(3,1fr);gap:42px;align-items:start;}
.flowent-footer-logo{width:180px;height:auto;display:block;margin-bottom:18px;}
.flowent-footer p{color:rgba(255,255,255,.58);margin:.4rem 0;}
.flowent-footer-ar{font-family:var(--flowent-font-ar, var(--wp--preset--font-family--bahij-thesansarabic, sans-serif));}
.flowent-footer-col{display:flex;flex-direction:column;gap:12px;}
.flowent-footer-col h4{margin:0 0 10px;color:rgba(255,255,255,.42);font-size:13px;letter-spacing:.13em;text-transform:uppercase;}
.flowent-footer a{color:#fff;text-decoration:none;}
.flowent-footer a:hover{color:var(--flowent-accent,#00ffd9);}
.flowent-footer-bottom{margin-top:52px;padding-top:22px;border-top:1px solid rgba(255,255,255,.08);display:flex;justify-content:space-between;gap:20px;flex-wrap:wrap;color:rgba(255,255,255,.35);font-size:14px;}
@media (max-width: 1500px){
  .flowent-static-header .flowent-header-inner{padding:36px 70px;grid-template-columns:300px minmax(0,1fr) auto;column-gap:48px;}
  .flowent-static-header .flowent-logo{width:300px;}
  .flowent-static-header .flowent-desktop-nav{gap:28px;}
  .flowent-static-header .flowent-desktop-nav a,.flowent-static-header .flowent-nav-dropdown-trigger{font-size:19px;}
}
@media (max-width: 1180px){
  .flowent-static-header .flowent-header-inner{min-height:112px;padding:24px;grid-template-columns:220px 1fr;column-gap:24px;}
  .flowent-static-header .flowent-logo{width:220px;}
  .flowent-static-header .flowent-desktop-nav{display:none;}
  .flowent-static-header .flowent-hamburger{display:flex;}
  .flowent-footer-grid{grid-template-columns:1fr 1fr;}
}
@media (max-width: 680px){
  .flowent-static-header .flowent-header-inner{grid-template-columns:180px 1fr;padding:20px;}
  .flowent-static-header .flowent-logo{width:180px;}
  .flowent-static-header .flowent-lang-trigger{display:none;}
  .flowent-static-header .flowent-cart-icon{width:46px;height:46px;}
  .flowent-footer-inner{padding:48px 24px 28px;}
  .flowent-footer-grid{grid-template-columns:1fr;}
  .flowent-footer-bottom{flex-direction:column;}
}
html[dir="rtl"] .flowent-static-header .flowent-desktop-nav,
body.rtl .flowent-static-header .flowent-desktop-nav{font-family:var(--flowent-font-ar, sans-serif);}


/* ============================================================
   FLOWENT RUN/BUILD GENERATED PAGES
   ============================================================ */
.flowent-generated-page{background:#000;color:#fff;min-height:60vh;font-family:var(--flowent-font-en,'Chakra Petch',sans-serif);}
.flowent-generated-page-ar{font-family:var(--flowent-font-ar,'Bahij TheSansArabic',sans-serif);text-align:right;}
.flowent-generated-hero{padding:clamp(72px,9vw,150px) clamp(22px,6vw,96px);max-width:1440px;margin:0 auto;position:relative;overflow:hidden;}
.flowent-generated-hero:before{content:'';position:absolute;inset:auto -20% 0 auto;width:62vw;height:62vw;background:radial-gradient(circle,rgba(0,255,217,.16),transparent 60%);pointer-events:none;}
.flowent-generated-kicker{color:var(--flowent-accent,#00ffd9);font-weight:800;letter-spacing:.18em;text-transform:uppercase;font-size:13px;margin-bottom:18px;}
.flowent-generated-hero h1{position:relative;font-size:clamp(44px,8vw,118px);line-height:.92;margin:0 0 28px;letter-spacing:-.06em;max-width:1100px;color:#fff;}
.flowent-generated-lead{position:relative;color:rgba(255,255,255,.72);font-size:clamp(18px,2.1vw,28px);line-height:1.45;max-width:880px;margin:0;}
.flowent-generated-actions{position:relative;display:flex;gap:14px;flex-wrap:wrap;margin-top:34px;}
.flowent-generated-button,.flowent-generated-inline-link{display:inline-flex;align-items:center;justify-content:center;min-height:48px;padding:0 22px;border-radius:var(--flowent-btn-radius,6px);background:var(--flowent-primary,#e37526);color:#fff!important;text-decoration:none;font-weight:800;letter-spacing:.01em;border:1px solid transparent;}
.flowent-generated-button.is-secondary{background:transparent;border-color:rgba(255,255,255,.24);}
.flowent-generated-button:hover,.flowent-generated-inline-link:hover{background:var(--flowent-accent,#00ffd9);color:#00110f!important;}
.flowent-generated-section{max-width:1440px;margin:0 auto;padding:clamp(44px,7vw,96px) clamp(22px,6vw,96px);}
.flowent-generated-section-head{max-width:820px;margin-bottom:32px;}
.flowent-generated-section-head h2,.flowent-generated-copy h2{font-size:clamp(30px,4.4vw,62px);line-height:1;margin:0 0 16px;color:#fff;letter-spacing:-.04em;}
.flowent-generated-section-head p,.flowent-generated-copy p{font-size:clamp(17px,1.6vw,22px);line-height:1.7;color:rgba(255,255,255,.68);margin:0;max-width:980px;}
.flowent-generated-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px;}
.flowent-generated-card{background:linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.035));border:1px solid rgba(255,255,255,.10);border-radius:var(--flowent-card-radius,16px);padding:30px;min-height:240px;}
.flowent-generated-card h2{font-size:clamp(24px,2.4vw,36px);line-height:1.05;margin:0 0 14px;color:#fff;letter-spacing:-.035em;}
.flowent-generated-card p{color:rgba(255,255,255,.65);line-height:1.7;margin:0 0 18px;}
.flowent-generated-card a{color:var(--flowent-accent,#00ffd9);font-weight:800;text-decoration:none;}
.flowent-generated-copy{border-top:1px solid rgba(255,255,255,.08);}
.flowent-generated-form{display:grid;gap:18px;max-width:760px;background:rgba(255,255,255,.045);border:1px solid rgba(255,255,255,.1);border-radius:var(--flowent-card-radius,16px);padding:30px;}
.flowent-generated-form label{display:grid;gap:8px;font-weight:700;color:rgba(255,255,255,.82);}
.flowent-generated-form input,.flowent-generated-form textarea{width:100%;border:1px solid rgba(255,255,255,.16);background:#050505;color:#fff;border-radius:10px;padding:14px 16px;font:inherit;}
.flowent-generated-form button{justify-self:start;min-height:48px;padding:0 26px;border:0;border-radius:var(--flowent-btn-radius,6px);background:var(--flowent-primary,#e37526);color:#fff;font-weight:800;cursor:pointer;}
.flowent-generated-shortcode{background:rgba(255,255,255,.03);border-top:1px solid rgba(255,255,255,.08);border-bottom:1px solid rgba(255,255,255,.08);}
.flowent-generated-page-ar .flowent-generated-form button{justify-self:end;}
@media(max-width:980px){.flowent-generated-grid{grid-template-columns:1fr}.flowent-generated-card{min-height:auto}.flowent-generated-hero,.flowent-generated-section{padding-left:22px;padding-right:22px}}


/* ============================================================
   FLOWENT POLISH PACK — product visuals + WooCommerce account layout
   ============================================================ */
.flowent-product-grid-fixed{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px;align-items:stretch;}
.flowent-product-card{display:flex;flex-direction:column;min-height:100%;overflow:hidden;border-radius:clamp(18px,1.4vw,28px);background:linear-gradient(180deg,rgba(255,255,255,.09),rgba(255,255,255,.035));border:1px solid rgba(255,255,255,.12);box-shadow:0 22px 70px rgba(0,0,0,.32);transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease;}
.flowent-product-card:hover{transform:translateY(-6px);border-color:rgba(0,255,217,.38);box-shadow:0 32px 90px rgba(0,0,0,.48);}
.flowent-product-media{position:relative;min-height:190px;display:flex;align-items:center;justify-content:center;overflow:hidden;background:radial-gradient(circle at 22% 18%,rgba(0,255,217,.26),transparent 34%),radial-gradient(circle at 78% 72%,rgba(227,117,38,.28),transparent 34%),linear-gradient(135deg,rgba(255,255,255,.08),rgba(255,255,255,.02));border-bottom:1px solid rgba(255,255,255,.10);}
.flowent-product-media:before{content:'';position:absolute;inset:22px;border:1px solid rgba(255,255,255,.12);border-radius:22px;transform:skew(-8deg);}
.flowent-product-media img{position:absolute;width:62px;height:62px;object-fit:contain;opacity:.18;right:26px;bottom:22px;filter:drop-shadow(0 0 28px rgba(0,255,217,.26));}
.flowent-product-media strong{position:relative;font-size:clamp(48px,5vw,76px);line-height:1;color:#fff;letter-spacing:-.08em;text-shadow:0 0 34px rgba(0,255,217,.18);}
.flowent-product-card-body{display:flex;flex-direction:column;gap:14px;padding:28px;flex:1;}
.flowent-product-type{color:var(--flowent-accent,#00ffd9);font-size:12px;font-weight:900;letter-spacing:.16em;text-transform:uppercase;}
.flowent-product-card h2{margin:0;color:#fff;font-size:clamp(28px,3vw,46px);line-height:.94;letter-spacing:-.055em;}
.flowent-product-card p{margin:0;color:rgba(255,255,255,.69);font-size:16px;line-height:1.7;}
.flowent-product-points{display:grid;gap:8px;margin:4px 0 12px;padding:0;list-style:none;}
.flowent-product-points li{position:relative;padding-inline-start:18px;color:rgba(255,255,255,.78);font-size:14px;line-height:1.5;}
.flowent-product-points li:before{content:'';position:absolute;inset-inline-start:0;top:.65em;width:7px;height:7px;border-radius:999px;background:var(--flowent-primary,#e37526);box-shadow:0 0 18px rgba(227,117,38,.55);}
.flowent-product-card .flowent-generated-inline-link{margin-top:auto;align-self:flex-start;}
.flowent-generated-page-ar .flowent-product-card .flowent-generated-inline-link{align-self:flex-end;}
.flowent-wc-area{max-width:1440px!important;margin:0 auto!important;padding:clamp(42px,7vw,96px) clamp(22px,6vw,96px)!important;background:#000!important;color:#fff!important;box-sizing:border-box;}
.flowent-wc-area .woocommerce,.woocommerce-account .woocommerce,.woocommerce-cart .woocommerce,.woocommerce-checkout .woocommerce{width:100%;max-width:1180px;margin:0 auto;color:#fff;}
.woocommerce-account .woocommerce{display:grid;grid-template-columns:280px minmax(0,1fr);gap:28px;align-items:start;}
.woocommerce-account .woocommerce:before,.woocommerce-account .woocommerce:after{display:none!important;content:none!important;}
.woocommerce-MyAccount-navigation{float:none!important;width:auto!important;margin:0!important;background:linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.035));border:1px solid rgba(255,255,255,.11);border-radius:18px;padding:12px;position:sticky;top:110px;}
.woocommerce-MyAccount-navigation ul{list-style:none!important;margin:0!important;padding:0!important;display:grid;gap:6px;}
.woocommerce-MyAccount-navigation li{margin:0!important;padding:0!important;}
.woocommerce-MyAccount-navigation a{display:flex;align-items:center;min-height:44px;padding:10px 12px;border-radius:12px;color:rgba(255,255,255,.76)!important;text-decoration:none!important;font-weight:800;background:transparent;}
.woocommerce-MyAccount-navigation li.is-active a,.woocommerce-MyAccount-navigation a:hover{background:rgba(227,117,38,.16);color:#fff!important;}
.woocommerce-MyAccount-content{float:none!important;width:auto!important;min-height:320px;background:linear-gradient(180deg,rgba(255,255,255,.065),rgba(255,255,255,.025));border:1px solid rgba(255,255,255,.10);border-radius:18px;padding:28px;color:rgba(255,255,255,.78);}
.woocommerce-MyAccount-content p,.woocommerce-MyAccount-content mark,.woocommerce-MyAccount-content address{color:rgba(255,255,255,.78);}
.woocommerce-MyAccount-content strong{color:#fff;}
.woocommerce-MyAccount-content a{color:var(--flowent-primary,#e37526);font-weight:800;}
.woocommerce form.login,.woocommerce form.register,.woocommerce form.checkout,.woocommerce-cart-form,.woocommerce-checkout-review-order,.woocommerce .cart-collaterals .cart_totals{background:linear-gradient(180deg,rgba(255,255,255,.065),rgba(255,255,255,.025));border:1px solid rgba(255,255,255,.10)!important;border-radius:18px!important;padding:28px!important;color:#fff;}
.woocommerce input.input-text,.woocommerce textarea,.woocommerce select{min-height:46px;background:#050505!important;border:1px solid rgba(255,255,255,.16)!important;border-radius:12px!important;color:#fff!important;}
@media(max-width:1100px){.flowent-product-grid-fixed{grid-template-columns:repeat(2,minmax(0,1fr));}.woocommerce-account .woocommerce{grid-template-columns:1fr}.woocommerce-MyAccount-navigation{position:static}}
@media(max-width:680px){.flowent-product-grid-fixed{grid-template-columns:1fr}.flowent-product-media{min-height:160px}.flowent-product-card-body{padding:22px}.flowent-wc-area{padding-left:20px!important;padding-right:20px!important}.woocommerce-MyAccount-content{padding:20px}}

/* ============================================================
   FLOWENT FINAL HEADER LOCK — carry forward Omar's approved edit
   Source of truth: static header only. Do not replace with wp:navigation.
   ============================================================ */
.flowent-static-header .flowent-header-inner {
  min-height: 112px !important;
  padding: 22px 48px !important;
  grid-template-columns: 240px minmax(0, 1fr) auto !important;
  column-gap: 42px !important;
}
.flowent-static-header .flowent-logo {
  width: 240px !important;
  max-width: 240px !important;
}
.flowent-static-header .flowent-desktop-nav {
  gap: 28px !important;
}
.flowent-static-header .flowent-desktop-nav a,
.flowent-static-header .flowent-nav-dropdown-trigger {
  font-size: 16px !important;
  font-weight: 600 !important;
}
.flowent-static-header .flowent-lang-trigger {
  height: 48px !important;
  min-height: 48px !important;
  padding: 0 14px !important;
  font-size: 16px !important;
}
.flowent-static-header .flowent-lang-flag {
  font-size: 18px !important;
}
.flowent-static-header .flowent-lang-arrow {
  font-size: 18px !important;
}
.flowent-static-header .flowent-cart-icon {
  width: 48px !important;
  height: 48px !important;
}
.flowent-static-header .flowent-cart-icon svg {
  width: 22px !important;
  height: 22px !important;
}
@media (max-width: 1180px) {
  .flowent-static-header .flowent-header-inner {
    min-height: 96px !important;
    padding: 18px 24px !important;
    grid-template-columns: 190px 1fr !important;
    column-gap: 22px !important;
  }
  .flowent-static-header .flowent-logo {
    width: 190px !important;
    max-width: 190px !important;
  }
  .flowent-static-header .flowent-desktop-nav {
    display: none !important;
  }
  .flowent-static-header .flowent-hamburger {
    display: flex !important;
  }
}
@media (max-width: 680px) {
  .flowent-static-header .flowent-header-inner {
    min-height: 86px !important;
    padding: 16px 18px !important;
    grid-template-columns: 160px 1fr !important;
  }
  .flowent-static-header .flowent-logo {
    width: 160px !important;
    max-width: 160px !important;
  }
  .flowent-static-header .flowent-lang-trigger {
    display: none !important;
  }
}
