/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #c8102e;
  --primary-dark: #a00c24;
  --primary-light: #ff1a3d;
  --secondary: #1a1a1a;
  --text: #1f2937;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --bg: #f9fafb;
  --white: #ffffff;
  --shadow: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.15);
  --radius: 8px;
  --radius-lg: 12px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--secondary);
  color: #9ca3af;
  font-size: 12px;
  padding: 6px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ===== NAVBAR ===== */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 20px;
}
.logo img { height: 48px; object-fit: contain; }
.logo-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: -0.5px;
}
.logo-text span { color: var(--primary); }

.nav-search {
  flex: 1;
  max-width: 480px;
  display: flex;
  border: 2px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.nav-search:focus-within { border-color: var(--primary); }
.nav-search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 8px 14px;
  font-size: 14px;
  font-family: inherit;
}
.nav-search button {
  background: var(--primary);
  border: none;
  padding: 8px 16px;
  color: white;
  cursor: pointer;
  transition: background 0.2s;
}
.nav-search button:hover { background: var(--primary-dark); }

.nav-main-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 24px;
}
.nav-main-links .nav-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  position: relative;
  padding: 4px 0;
}
.nav-main-links .nav-link:hover,
.nav-main-links .nav-link.active {
  color: var(--primary);
}
.nav-main-links .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}
.nav-main-links .nav-link:hover::after,
.nav-main-links .nav-link.active::after {
  width: 100%;
}

.nav-actions { display: flex; align-items: center; gap: 16px; margin-left: auto; }

.btn-whatsapp {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #25d366;
  color: white;
  padding: 7px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s;
}
.btn-whatsapp:hover { background: #1ebe5e; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 8px 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.mobile-menu a:hover { background: var(--bg); color: var(--primary); }

/* ===== CATEGORY STRIP ===== */
.cat-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-strip::-webkit-scrollbar { display: none; }
.cat-strip-inner {
  display: flex;
  gap: 4px;
  padding: 10px 20px;
  white-space: nowrap;
}
.cat-btn {
  padding: 6px 16px;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  background: transparent;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-muted);
  white-space: nowrap;
}
.cat-btn:hover, .cat-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

/* ===== MAIN CONTENT ===== */
.main-content { padding: 24px 0; }
.main-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  align-items: start;
}

/* ===== SIDEBAR ===== */
.sidebar {
  position: sticky;
  top: 76px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-section {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}
.sidebar-section h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  user-select: none;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.sidebar-section h3 svg { transition: transform 0.2s; }
.sidebar-section h3.collapsed svg { transform: rotate(-90deg); }

.sidebar-list {
  display: none;
  flex-direction: column;
}
.sidebar-list.open { display: flex; }
.sidebar-list li a {
  display: flex;
  align-items: center;
  padding: 9px 16px;
  font-size: 13px;
  color: var(--text-muted);
  transition: all 0.15s;
  border-bottom: 1px solid var(--border);
}
.sidebar-list li:last-child a { border-bottom: none; }
.sidebar-list li a:hover, .sidebar-list li a.active {
  color: var(--primary);
  background: #fff5f6;
  padding-left: 20px;
}

/* Category Tree Styles */
.cat-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  font-size: 10px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.cat-toggle:hover {
  color: var(--primary);
}
.cat-toggle.expanded {
  transform: rotate(0deg);
}
.cat-spacer {
  display: inline-block;
  width: 16px;
  margin-right: 6px;
}
.subcategory-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.subcategory-list li a {
  font-size: 12px;
  padding: 6px 16px 6px 32px;
}
.subcategory-list li a:hover,
.subcategory-list li a.active {
  padding-left: 36px;
}
.badge {
  font-size: 11px;
  background: var(--bg);
  color: var(--text-muted);
  padding: 1px 7px;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.sidebar-contact {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
}
.sidebar-contact.open { display: flex; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}
.contact-item:hover { opacity: 0.85; }
.whatsapp-btn { background: #25d366; color: white; }
.email-btn { background: var(--primary); color: white; }

/* ===== PRODUCT AREA ===== */
.product-area { min-width: 0; }

.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding: 10px 14px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.result-count { font-size: 14px; color: var(--text-muted); }
.result-count strong { color: var(--text); }
.toolbar-right { display: flex; align-items: center; gap: 10px; }

.toolbar-right select {
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 13px;
  font-family: inherit;
  background: var(--white);
  cursor: pointer;
  outline: none;
}

.view-toggle { display: flex; gap: 2px; }
.view-btn {
  background: transparent;
  border: 1px solid var(--border);
  padding: 6px 8px;
  border-radius: 5px;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.15s;
}
.view-btn:hover, .view-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.product-grid.list-view {
  grid-template-columns: 1fr;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
}
.product-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f3f4f6;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }

/* Product label overlaid on image */
.product-label-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(200, 16, 46, 0.88);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  text-align: center;
  letter-spacing: 0.3px;
  backdrop-filter: blur(2px);
}

.product-info { padding: 12px; }
.product-number {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: 'Courier New', monospace;
}
.product-name {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}
.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-brand {
  font-size: 11px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 2px 8px;
  border-radius: 4px;
}
.add-cart-btn {
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 6px 10px;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
}
.add-cart-btn:hover { background: var(--primary-dark); }

/* List view card */
.product-grid.list-view .product-card {
  display: flex;
  flex-direction: row;
}
.product-grid.list-view .product-img-wrap {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  aspect-ratio: unset;
}
.product-grid.list-view .product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-grid.list-view .product-name {
  -webkit-line-clamp: 1;
}

/* ===== PAGINATION ===== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.page-btn {
  min-width: 36px;
  height: 36px;
  border: 1.5px solid var(--border);
  background: var(--white);
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
}
.page-btn:hover { border-color: var(--primary); color: var(--primary); }
.page-btn.active { background: var(--primary); border-color: var(--primary); color: white; }
.page-btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* ===== MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(3px);
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.25s ease;
}
@keyframes modalIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.15s;
  color: var(--text);
}
.modal-close:hover { background: #fee2e2; color: var(--primary); }
.modal-content { padding: 28px; }

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.modal-img {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 1;
}
.modal-img img { width: 100%; height: 100%; object-fit: cover; }
.modal-details h2 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: 'Courier New', monospace;
  color: var(--primary);
}
.modal-details .modal-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.6;
}
.modal-specs { margin-bottom: 16px; }
.spec-row {
  display: flex;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.spec-row:last-child { border-bottom: none; }
.spec-label {
  font-weight: 600;
  min-width: 110px;
  color: var(--text);
}
.spec-value { color: var(--text-muted); }
.modal-actions { display: flex; gap: 10px; margin-top: 16px; }
.modal-btn {
  flex: 1;
  padding: 10px;
  border-radius: 7px;
  border: none;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.modal-btn:hover { opacity: 0.87; }
.modal-btn-primary { background: var(--primary); color: white; }
.modal-btn-secondary { background: #25d366; color: white; }

/* ===== MODAL SHARE BAR ===== */
.modal-img-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.modal-share-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  padding: 10px 12px;
  background: #f8f9fb;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.share-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  margin-right: 2px;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}
.share-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.share-fb  { background: #1877F2; }
.share-ig  { background: linear-gradient(45deg,#f09433,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888); }
.share-yt  { background: #FF0000; }
.share-li  { background: #0A66C2; }

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
  position: relative;
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 11px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s;
}
.lang-btn:hover { border-color: var(--primary); }
.lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  min-width: 140px;
  z-index: 200;
  overflow: hidden;
  display: none;
}
.lang-dropdown.open { display: block; }
.lang-option {
  display: block;
  width: 100%;
  padding: 9px 14px;
  text-align: left;
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: background 0.15s;
}
.lang-option:hover { background: var(--bg); }
.lang-option.active { color: var(--primary); font-weight: 700; }


/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25d366;
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.5);
  z-index: 200;
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ===== FOOTER ===== */
.footer { background: #111827; color: #9ca3af; margin-top: 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding: 48px 20px;
}
.footer-logo {
  font-size: 20px;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.footer-brand p { font-size: 13px; line-height: 1.7; margin-bottom: 14px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--primary); color: white; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: white; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 13px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--primary); }
.footer-col ul li { font-size: 13px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 20px;
  font-size: 12px;
  text-align: center;
}

/* ===== NO RESULTS ===== */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}
.no-results svg { color: #d1d5db; margin-bottom: 12px; }
.no-results h3 { font-size: 16px; color: var(--text); margin-bottom: 6px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 992px) {
  .main-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1100px) {
  .nav-main-links { display: none; }
}
@media (max-width: 768px) {
  .nav-actions { display: none; }
  .hamburger { display: flex; }
  .top-bar .container { flex-direction: column; gap: 2px; text-align: center; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .modal-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cat-strip-inner { padding: 8px 16px; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-search { max-width: 180px; }
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
}
.page-header h1 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
}
.page-header p {
  font-size: 16px;
  opacity: 0.9;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 60px 0;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  transition: background 0.2s;
}
.faq-question:hover {
  background: var(--bg);
}
.faq-question h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}
.faq-toggle {
  font-size: 24px;
  font-weight: 300;
  color: var(--primary);
  transition: transform 0.3s;
}
.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 500px;
}
.faq-answer p {
  padding: 0 24px 20px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 60px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}
.info-icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.info-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.info-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.contact-form h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.2s;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.btn-primary {
  background: var(--primary);
  color: white;
}
.btn-primary:hover {
  background: var(--primary-dark);
}

/* Map Section */
.map-section {
  padding: 40px 0 60px;
  text-align: center;
}
.map-section h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text);
}
.map-placeholder {
  background: var(--bg);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 60px 20px;
  color: var(--text-muted);
}
.map-placeholder p:first-child {
  font-size: 48px;
  margin-bottom: 12px;
}

/* ===== FOOTER (Additional) ===== */
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding: 48px 20px;
}
.footer-section h3,
.footer-section h4 {
  color: white;
  margin-bottom: 16px;
}
.footer-section h3 {
  font-size: 20px;
  font-weight: 800;
}
.footer-section h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-section p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 8px;
}
.footer-section ul li {
  margin-bottom: 8px;
}
.footer-section ul li a {
  font-size: 14px;
  transition: color 0.2s;
}
.footer-section ul li a:hover {
  color: var(--primary);
}

/* Responsive for FAQ & Contact */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-info {
    order: 2;
  }
  .contact-form-wrapper {
    order: 1;
  }
}
@media (max-width: 768px) {
  .page-header h1 {
    font-size: 28px;
  }
  .contact-info {
    grid-template-columns: 1fr;
  }
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ===== ABOUT US PAGE ===== */
.page-content {
  padding: 60px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-image {
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.about-text {
  text-align: center;
}

.about-text h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
}

.about-text p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Why Choose Us Section */
.why-choose-section {
  padding: 80px 0;
  text-align: center;
}

.why-choose-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--text);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--primary);
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* About Page Responsive */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image {
    order: -1;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .stat-number {
    font-size: 24px;
  }
}

/* ===== INQUIRY FORM MODAL ===== */
.inquiry-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
}

.inquiry-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  animation: inquiryModalIn 0.3s ease;
}

@keyframes inquiryModalIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.inquiry-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-light);
}

.inquiry-modal-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.inquiry-modal-close {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-muted);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
}

.inquiry-modal-close:hover {
  background: var(--border);
  color: var(--text);
}

.inquiry-modal-body {
  padding: 24px;
  overflow-y: auto;
  max-height: calc(90vh - 140px);
}

.inquiry-product-info {
  background: var(--primary-light);
  padding: 12px 16px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.inquiry-product-oe {
  font-weight: 700;
  color: var(--primary);
  font-family: monospace;
  font-size: 15px;
}

.inquiry-form-group {
  margin-bottom: 16px;
}

.inquiry-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.inquiry-input,
.inquiry-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: all 0.2s;
}

.inquiry-input:focus,
.inquiry-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.1);
}

.inquiry-textarea {
  resize: vertical;
  min-height: 80px;
}

.inquiry-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  background: var(--bg-light);
}

.inquiry-btn {
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.inquiry-btn-primary {
  background: var(--primary);
  color: white;
}

.inquiry-btn-primary:hover {
  background: #a00d24;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.inquiry-btn-secondary {
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--border);
}

.inquiry-btn-secondary:hover {
  background: var(--bg-light);
  border-color: var(--text-muted);
}

/* Inquiry Success Toast */
.inquiry-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--success);
  color: white;
  padding: 14px 24px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 14px;
  box-shadow: var(--shadow-lg);
  z-index: 10001;
  opacity: 0;
  transition: all 0.3s ease;
}

.inquiry-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Responsive */
@media (max-width: 576px) {
  .inquiry-modal-overlay {
    padding: 0;
    align-items: flex-end;
  }
  
  .inquiry-modal {
    max-width: 100%;
    max-height: 85vh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  
  .inquiry-modal-body {
    max-height: calc(85vh - 140px);
  }
}

/* ===== HOME PAGE STYLES ===== */

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  z-index: 0;
}

.hero-bg.has-image {
  background: none;
}

.hero-bg.has-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(15, 52, 96, 0.75) 100%);
  z-index: 1;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 16, 46, 0.15) 0%, rgba(26, 26, 46, 0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  padding: 80px 20px;
}

.hero-text {
  color: white;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.hero-btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 14px rgba(200, 16, 46, 0.4);
}

.hero-btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 16, 46, 0.5);
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-features {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
}

.hero-feature svg {
  color: var(--primary);
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
}

.hero-stat {
  text-align: center;
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat:last-child {
  border-bottom: none;
}

.hero-stat-number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Section Common Styles */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
}

/* Home Categories Section */
.home-categories-section {
  padding: 80px 0;
  background: var(--bg);
}

.home-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.home-cat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}

.home-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.home-cat-icon {
  width: 80px;
  height: 80px;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary);
  transition: all 0.3s;
}

.home-cat-card:hover .home-cat-icon {
  background: var(--primary);
  color: white;
}

.home-cat-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.home-cat-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.home-cat-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  transition: color 0.2s;
}

.home-cat-card:hover .home-cat-link {
  color: var(--primary-dark);
}

/* Home Brands Section */
.home-brands-section {
  padding: 80px 0;
  background: var(--white);
}

.home-brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.home-brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.3s;
}

.home-brand-item:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.home-brand-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 1px;
  margin-bottom: 4px;
  transition: color 0.3s;
}

.home-brand-item:hover .home-brand-name {
  color: white;
}

.home-brand-count {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.3s;
}

.home-brand-item:hover .home-brand-count {
  color: rgba(255, 255, 255, 0.8);
}

/* Home About Section */
.home-about-section {
  padding: 80px 0;
  background: var(--bg);
}

.home-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.home-about-image {
  display: flex;
  justify-content: center;
}

.home-about-img-placeholder {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-lg);
}

.home-about-content {
  padding: 20px 0;
}

.home-about-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 20px;
}

.home-about-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.home-about-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.home-about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}

.home-about-feature svg {
  color: var(--primary);
  flex-shrink: 0;
}

.home-about-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  margin-top: 8px;
}

.home-about-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Home Why Section */
.home-why-section {
  padding: 80px 0;
  background: var(--white);
}

.home-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.home-why-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
}

.home-why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.home-why-icon {
  width: 64px;
  height: 64px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
}

.home-why-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.home-why-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Home CTA Section */
.home-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.home-cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.home-cta-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}

.home-cta-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 32px;
}

.home-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.home-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.home-cta-btn-primary {
  background: white;
  color: var(--primary);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.home-cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.home-cta-btn-whatsapp {
  background: #25d366;
  color: white;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.home-cta-btn-whatsapp:hover {
  background: #1ebe5e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Home Page Responsive */
@media (max-width: 1200px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-features {
    justify-content: center;
  }
  
  .hero-stats {
    flex-direction: row;
    justify-content: center;
  }
  
  .hero-stat {
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    flex: 1;
  }
  
  .hero-stat:last-child {
    border-right: none;
  }
  
  .home-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .home-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 36px;
  }
  
  .home-about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .home-about-image {
    order: -1;
  }
  
  .home-brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
  }
  
  .hero-content {
    padding: 60px 20px;
  }
  
  .hero-title {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .hero-stats {
    flex-direction: column;
  }
  
  .hero-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .hero-stat:last-child {
    border-bottom: none;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .home-categories-grid {
    grid-template-columns: 1fr;
  }
  
  .home-why-grid {
    grid-template-columns: 1fr;
  }
  
  .home-cta-content h2 {
    font-size: 28px;
  }
  
  .home-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .home-cta-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* ===== RTL (Right-to-Left) Support for Arabic ===== */
body.rtl {
  direction: rtl;
}

body.rtl .nav-inner {
  flex-direction: row-reverse;
}

body.rtl .nav-main-links {
  flex-direction: row-reverse;
}

body.rtl .nav-search {
  flex-direction: row-reverse;
}

body.rtl .nav-search input {
  text-align: right;
}

body.rtl .cat-strip-inner {
  direction: rtl;
}

body.rtl .main-grid {
  direction: rtl;
}

body.rtl .sidebar {
  direction: rtl;
}

body.rtl .sidebar-list li a {
  flex-direction: row-reverse;
}

body.rtl .toolbar {
  flex-direction: row-reverse;
}

body.rtl .toolbar-right {
  flex-direction: row-reverse;
}

body.rtl .product-card {
  direction: rtl;
  text-align: right;
}

body.rtl .product-footer {
  flex-direction: row-reverse;
}

body.rtl .modal-grid {
  direction: rtl;
}

body.rtl .modal-details {
  text-align: right;
}

body.rtl .spec-row {
  flex-direction: row-reverse;
}

body.rtl .modal-actions {
  flex-direction: row-reverse;
}

body.rtl .modal-share-bar {
  flex-direction: row-reverse;
}

body.rtl .lang-dropdown {
  right: auto;
  left: 0;
}

body.rtl .lang-option {
  text-align: right;
}

body.rtl .footer-grid {
  direction: rtl;
}

body.rtl .footer-col ul li {
  text-align: right;
}

body.rtl .whatsapp-float {
  right: auto;
  left: 24px;
}

body.rtl .inquiry-modal-header {
  flex-direction: row-reverse;
}

body.rtl .inquiry-product-info {
  flex-direction: row-reverse;
}

body.rtl .inquiry-modal-footer {
  flex-direction: row-reverse;
}

body.rtl .inquiry-input,
body.rtl .inquiry-textarea {
  text-align: right;
}

/* Pagination RTL */
body.rtl .pagination {
  flex-direction: row-reverse;
}

/* Mobile menu RTL */
body.rtl .mobile-menu {
  direction: rtl;
  text-align: right;
}

body.rtl .hamburger {
  margin-left: 0;
  margin-right: auto;
}

/* Category tree RTL */
body.rtl .cat-toggle {
  margin-right: 0;
  margin-left: 8px;
}

body.rtl .cat-spacer {
  margin-right: 0;
  margin-left: 8px;
}

/* Form elements RTL */
body.rtl .form-group input,
body.rtl .form-group select,
body.rtl .form-group textarea {
  text-align: right;
}

/* Contact page RTL */
body.rtl .contact-info {
  direction: rtl;
}

body.rtl .info-card {
  text-align: right;
}

/* FAQ RTL */
body.rtl .faq-question {
  flex-direction: row-reverse;
}

body.rtl .faq-question h3 {
  text-align: right;
}

body.rtl .faq-answer p {
  text-align: right;
}

/* About page RTL */
body.rtl .about-grid {
  direction: rtl;
}

body.rtl .about-text {
  text-align: right;
}

body.rtl .features-grid {
  direction: rtl;
}

body.rtl .feature-card {
  text-align: right;
}
