/* 
   Premium CSS Stylesheet for Vinaigre du Maroc
   Industry: Food Manufacturing / Vinegar Production / Export
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  /* ===== Brand Color System (matching logo) ===== */
  --brand-burgundy: #581825;
  --brand-burgundy-light: #731e2e;
  --brand-gold: #b5944b;
  --brand-gold-light: #c5a86d;
  --brand-cream: #fdfcf7;

  /* ===== Semantic Design Tokens ===== */
  --color-primary: #581825;       /* Burgundy - hero bg, buttons, headers */
  --color-primary-light: #731e2e; /* Burgundy hover */
  --color-accent: #b5944b;        /* Gold - accents, underlines, highlights */
  --color-accent-light: #c5a86d;  /* Gold hover */
  --warm-white: #fafafa;
  --cream-bg: #fdfcf7;
  --slate-dark: #291a1d;
  --slate-light: #594a4c;
  --soft-gold: #b5944b;
  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 30px rgba(88, 24, 37, 0.05);
  --shadow-lg: 0 20px 45px rgba(88, 24, 37, 0.10);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 30px;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

/* Custom classes */
.mobile-menu-title {
  color: var(--color-accent) !important;
}

/* ===== Bootstrap Color Overrides (eradicate green) ===== */
.bg-success {
  background-color: var(--color-primary) !important;
}
.text-success {
  color: var(--color-accent) !important;
}
.border-success {
  border-color: var(--color-accent) !important;
}
.btn-success {
  background-color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  color: #fff !important;
}
.btn-success:hover {
  background-color: var(--color-primary-light) !important;
  border-color: var(--color-primary-light) !important;
}
.alert-success {
  background-color: var(--warm-white) !important;
  border-color: var(--color-accent) !important;
  color: var(--color-primary) !important;
}
.text-brand-burgundy { color: var(--color-primary) !important; }
.text-brand-gold { color: var(--color-accent) !important; }

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--slate-dark);
  background-color: #ffffff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.inner-page {
  padding-top: 80px;
}

@media (max-width: 1024px) {
  body.inner-page {
    padding-top: 70px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.3;
}

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

/* Custom Selection */
::selection {
  background-color: var(--color-primary);
  color: #ffffff;
}

/* Base Layout utilities */
.section-padding {
  padding: 6.5rem 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 3.5rem 0;
  }
}

.bg-warm-light {
  background-color: var(--warm-white);
}

.bg-glass {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Title Decoration */
.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  text-align: center;
  position: relative;
  margin-bottom: 3.5rem;
  font-weight: 700;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-accent);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.eyebrow {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--soft-gold);
  margin-bottom: 0.5rem;
}

/* Buttons */
.btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  border-radius: 50px;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  z-index: 2;
}

.btn-premium-primary {
  background-color: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(88, 24, 37, 0.25);
}

.btn-premium-primary:hover {
  background-color: var(--color-primary-light);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(88, 24, 37, 0.4);
}

.btn-premium-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-premium-secondary:hover {
  background-color: var(--color-primary);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(88, 24, 37, 0.25);
}

.btn-premium-accent {
  background-color: var(--color-accent);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(181, 148, 75, 0.3);
}

.btn-premium-accent:hover {
  background-color: var(--color-accent-light);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(181, 148, 75, 0.4);
}

/* =====================================================
   Navigation & Hero styles are now inline in base.html
   and home.html (CapersMed architecture).
   Legacy class stubs kept for backward compatibility.
   ===================================================== */

/* Legacy header stubs (now handled by inline <style> in base.html) */
.header-premium { display: none; }
.nav-container-premium { display: none; }
.mobile-header-bar { display: none; }

/* Legacy hero stubs (now handled by inline <style> in home.html) */
.hero-export { display: none; }

/* ===== Shared Page Hero (all inner pages) ===== */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 4rem 2rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(88,24,37,0.92) 0%, rgba(61,15,26,0.88) 40%, rgba(40,10,18,0.82) 100%);
  z-index: 1;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(181,148,75,0.12) 0%, transparent 70%);
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  animation: heroFadeUp 0.8s ease-out;
}
.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.page-hero-content .hero-accent {
  color: var(--soft-gold, #d4af37);
}
.page-hero-content p {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
}
.page-hero-content .hero-divider {
  width: 60px;
  height: 3px;
  background: var(--soft-gold, #d4af37);
  margin: 1.2rem auto;
  border-radius: 2px;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
  .page-hero { min-height: 45vh; padding: 3rem 1.5rem; }
}

/* Badge - still used across pages */
.badge-moroccan {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-accent);
  color: #ffffff;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
}

/* Card Premium Design */
.card-premium {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(88, 24, 37, 0.06);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-premium:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--soft-gold);
}

.card-premium-img-wrap {
  height: 250px;
  background-color: var(--warm-white);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-premium-img-wrap img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  transition: var(--transition);
}

.card-premium:hover .card-premium-img-wrap img {
  transform: scale(1.08);
}

.card-premium-placeholder {
  font-size: 4rem;
  color: rgba(88, 24, 37, 0.15);
}

.card-premium-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-premium-category {
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--soft-gold);
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.card-premium-title {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}

.card-premium-text {
  font-size: 0.9rem;
  color: var(--slate-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.card-premium-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 1rem;
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-arrow-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.btn-arrow-link:hover {
  color: var(--color-primary);
}

.btn-arrow-link:hover .arrow-icon {
  transform: translateX(3px);
}

.arrow-icon {
  transition: var(--transition);
}

/* Quality and Certification badging */
.badge-certified {
  background-color: rgba(88, 24, 37, 0.06);
  color: var(--color-primary);
  border: 1px solid rgba(88, 24, 37, 0.15);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Mega Menu / Custom Dropdown overrides */
.dropdown-menu-premium {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(88, 24, 37, 0.08);
  box-shadow: var(--shadow-md);
  padding: 1rem;
  min-width: 250px;
}

/* Glassmorphism Sections */
.glass-section {
  background: rgba(250, 250, 250, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(88, 24, 37, 0.05);
  border-radius: var(--radius-md);
}

/* B2B Technical Table styling */
.table-premium {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.table-premium th {
  background-color: var(--color-primary);
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
  padding: 1rem 1.25rem;
}

.table-premium td {
  padding: 1rem 1.25rem;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
}

.table-premium tr:last-child td {
  border-bottom: none;
}

.table-premium tr:nth-child(even) td {
  background-color: var(--warm-white);
}

.form-card-premium {
  border-radius: var(--radius-md);
  border: 1px solid rgba(88, 24, 37, 0.06);
  background: #ffffff;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .form-card-premium {
    padding: 3rem;
  }
}

.form-label-premium {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--slate-dark);
  margin-bottom: 0.5rem;
}

.form-control:focus, .form-select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.25rem rgba(88, 24, 37, 0.15);
}

/* Certifications Showcase styling */
.cert-item-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}

.cert-logo-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.cert-logo-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

.cert-logo-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.cert-logo-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-primary);
  margin: 0;
}

/* Footer Styling */
.footer-premium {
  background-color: var(--slate-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 5rem 0 2rem;
  font-size: 0.9rem;
  border-top: 3px solid var(--soft-gold);
  overflow: hidden;
}

.footer-title {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--soft-gold);
  padding-left: 5px;
}

.footer-social-wrap {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social-icon:hover {
  background-color: var(--color-accent);
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  margin-top: 3.5rem;
}

/* WhatsApp Floating Button */
.whatsapp-float-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #25d366;
  color: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: var(--transition);
  font-size: 1.8rem;
}

.whatsapp-float-btn:hover {
  transform: scale(1.1) rotate(5deg);
  background-color: #20ba5a;
  color: #ffffff;
}

/* Why Choose Us cards */
.choose-card {
  padding: 2.25rem;
  background: #ffffff;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(88, 24, 37, 0.05);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.choose-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.choose-icon-wrapper {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(88, 24, 37, 0.06);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

/* Packaging Format Display Cards */
.pkg-card {
  background: #ffffff;
  border: 1px solid rgba(88, 24, 37, 0.06);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.pkg-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--soft-gold);
}

.pkg-icon {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.pkg-title {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.pkg-desc {
  font-size: 0.85rem;
  color: var(--slate-light);
  line-height: 1.5;
}

/* FAQ Accordion overrides */
.faq-accordion .accordion-item {
  border: 1px solid rgba(88, 24, 37, 0.08);
  margin-bottom: 1rem;
  border-radius: var(--radius-sm) !important;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  font-weight: 600;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  padding: 1.25rem 1.5rem;
  background-color: #ffffff;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background-color: rgba(88, 24, 37, 0.03);
  color: var(--color-primary);
  box-shadow: none;
}

/* ==========================================================
   Arabic RTL Layout Support — Comprehensive Overrides
   ========================================================== */

/* ---- Base RTL Typography ---- */
html[dir="rtl"] {
  font-family: 'Noto Sans Arabic', 'Segoe UI', 'Inter', system-ui, sans-serif;
  direction: rtl;
}

html[dir="rtl"] body {
  text-align: right;
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] h5,
html[dir="rtl"] h6 {
  font-family: 'Noto Sans Arabic', 'Playfair Display', Georgia, serif;
  text-align: right !important;
}

html[dir="rtl"] .eyebrow,
html[dir="rtl"] .section-title {
  text-align: right !important;
}

/* Centered text stays centered in RTL */
html[dir="rtl"] .text-center,
html[dir="rtl"] .text-center h1,
html[dir="rtl"] .text-center h2,
html[dir="rtl"] .text-center h3,
html[dir="rtl"] .text-center h4,
html[dir="rtl"] .text-center p,
html[dir="rtl"] .text-center .eyebrow,
html[dir="rtl"] .text-center .section-title {
  text-align: center !important;
}

html[dir="rtl"] .section-title::after {
  margin: 1rem auto 0;
}

/* ---- Desktop Navigation RTL (CapersMed-style) ---- */
html[dir="rtl"] .nav-container {
  flex-direction: row-reverse;
}

html[dir="rtl"] .nav-left {
  justify-content: flex-start;
  flex-direction: row-reverse;
}

html[dir="rtl"] .nav-right {
  justify-content: flex-end;
  flex-direction: row-reverse;
}

html[dir="rtl"] .nav-left a::after,
html[dir="rtl"] .nav-right a::after {
  left: 50%;
  right: auto;
}

html[dir="rtl"] .nav-lang {
  border-left: none;
  border-right: 1px solid #eee;
  padding-left: 0;
  padding-right: 1rem;
  margin-left: 0;
  margin-right: 1rem;
}

/* ---- Dropdown RTL ---- */
html[dir="rtl"] .nav-dropdown-list {
  left: auto;
  right: 50%;
  transform: translateX(50%) translateY(15px);
}

html[dir="rtl"] .nav-dropdown-wrap:hover .nav-dropdown-list {
  transform: translateX(50%) translateY(5px);
}

html[dir="rtl"] .nav-dropdown-list li a {
  text-align: right;
}

/* ---- Mobile Overlay RTL ---- */
html[dir="rtl"] .mobile-nav-overlay {
  left: auto;
  right: 100%;
  transition: right .4s cubic-bezier(.77,.2,.05,1);
}

html[dir="rtl"] .mobile-nav-overlay.open {
  right: 0;
  left: auto;
}

html[dir="rtl"] .mobile-nav-links a {
  text-align: center;
}

/* ---- Hero Section RTL ---- */
html[dir="rtl"] .hero-content {
  text-align: center;
}

html[dir="rtl"] .hero-content h1,
html[dir="rtl"] .hero-content p {
  text-align: center;
}

/* ---- Buttons RTL ---- */
html[dir="rtl"] .btn-premium {
  flex-direction: row-reverse;
}

html[dir="rtl"] .btn-arrow-link {
  flex-direction: row-reverse;
}

html[dir="rtl"] .btn-arrow-link .arrow-icon {
  transform: rotate(180deg);
}

html[dir="rtl"] .btn-arrow-link:hover .arrow-icon {
  transform: rotate(180deg) translateX(-3px);
}

/* ---- Cards RTL ---- */
html[dir="rtl"] .card-premium-body {
  text-align: right;
}

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

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

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

html[dir="rtl"] .choose-icon-wrapper {
  margin-left: auto;
  margin-right: 0;
}

/* ---- Package Cards RTL ---- */
html[dir="rtl"] .pkg-card {
  text-align: right;
}

/* ---- Certification Cards RTL ---- */
html[dir="rtl"] .cert-logo-card {
  text-align: right;
}

/* ---- Tables RTL ---- */
html[dir="rtl"] .table-premium th,
html[dir="rtl"] .table-premium td {
  text-align: right;
}

/* ---- Forms RTL ---- */
html[dir="rtl"] .form-label-premium {
  text-align: right;
}

html[dir="rtl"] .form-control,
html[dir="rtl"] .form-select,
html[dir="rtl"] textarea.form-control {
  text-align: right;
  direction: rtl;
}

/* ---- Footer RTL ---- */
html[dir="rtl"] .footer-premium {
  text-align: right;
}

html[dir="rtl"] .footer-links a:hover {
  padding-left: 0;
  padding-right: 5px;
}

html[dir="rtl"] .footer-social-wrap {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

html[dir="rtl"] .footer-bottom {
  text-align: center;
}

/* ---- Footer contact icons — flip me-2 to ms-2 ---- */
html[dir="rtl"] .footer-premium .me-2 {
  margin-right: 0 !important;
  margin-left: 0.5rem !important;
}

/* ---- FAQ Accordion RTL ---- */
html[dir="rtl"] .faq-accordion .accordion-button {
  text-align: right;
  flex-direction: row-reverse;
}

html[dir="rtl"] .faq-accordion .accordion-button::after {
  margin-left: 0;
  margin-right: auto;
}

html[dir="rtl"] .faq-accordion .accordion-body {
  text-align: right;
}

/* ---- Badge RTL ---- */
html[dir="rtl"] .badge-certified {
  direction: rtl;
}

/* ---- WhatsApp Button RTL ---- */
html[dir="rtl"] .whatsapp-float-btn {
  right: auto;
  left: 2rem;
}

/* ---- Bootstrap icon margin flip ---- */
html[dir="rtl"] .bi.me-1 {
  margin-right: 0 !important;
  margin-left: 0.25rem !important;
}
html[dir="rtl"] .bi.me-2 {
  margin-right: 0 !important;
  margin-left: 0.5rem !important;
}
html[dir="rtl"] .bi.me-3 {
  margin-right: 0 !important;
  margin-left: 1rem !important;
}
html[dir="rtl"] .ms-1 {
  margin-left: 0 !important;
  margin-right: 0.25rem !important;
}
html[dir="rtl"] .ms-2 {
  margin-left: 0 !important;
  margin-right: 0.5rem !important;
}
