/* ==========================================================================
   CLOVER 7 - TOP MENU BAR & NAVIGATION STYLES (Fail-Safe Pure CSS)
   Supports Desktop Dropdowns, Mobile Hamburger Drawer, 9-Dots Quick Info Panel,
   and Search Overlay across all screen sizes.
   ========================================================================== */

/* ── 0. Header Layout & Alignment (Logo Left, Menu & Icons Right) ────── */
.top_panel .elementor-container {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: nowrap !important;
}

.top_panel .elementor-column.sc_layouts_column_align_left {
  display: flex !important;
  align-items: center !important;
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: 260px !important;
}

.top_panel .elementor-column.sc_layouts_column_align_right {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  flex: 1 1 auto !important;
  width: auto !important;
}

.top_panel .elementor-column.sc_layouts_column_align_right > .elementor-widget-wrap {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-end !important;
  flex-wrap: nowrap !important;
  gap: 20px !important;
  width: 100% !important;
}

.top_panel .sc_layouts_item {
  display: inline-flex !important;
  align-items: center !important;
  flex: 0 0 auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* 9-Dots Quick Info Button in Header */
.elementor-element-af8a954,
.elementor-element-af8a954 .elementor-widget-container,
.elementor-element-af8a954 .elementor-icon-wrapper {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.elementor-element-af8a954 a.elementor-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 38px !important;
  height: 38px !important;
  border-radius: 8px !important;
  transition: background-color 0.2s ease, transform 0.2s ease !important;
  cursor: pointer !important;
}

.elementor-element-af8a954 a.elementor-icon:hover {
  background-color: rgba(7, 94, 84, 0.08) !important;
  transform: scale(1.08) !important;
}

/* ── 1. Desktop Top Bar & Dropdown Menus ───────────────────────────────── */
.sc_layouts_menu_nav {
  display: flex !important;
  align-items: center !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 14px !important;
}

.sc_layouts_menu_nav > li {
  position: relative !important;
  display: inline-block !important;
  margin: 0 !important;
  padding: 8px 0 !important;
}

.sc_layouts_menu_nav > li > a {
  display: inline-flex !important;
  align-items: center !important;
  text-decoration: none !important;
  color: #1e293b !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  letter-spacing: 0.1px !important;
  transition: color 0.2s ease, transform 0.2s ease !important;
}

.sc_layouts_menu_nav > li > a:hover,
.sc_layouts_menu_nav > li.current-menu-item > a,
.sc_layouts_menu_nav > li.current-menu-parent > a {
  color: #075E54 !important;
}

/* Subtle chevron for items with dropdowns */
.sc_layouts_menu_nav > li.menu-item-has-children > a::after {
  content: "" !important;
  display: inline-block !important;
  width: 5px !important;
  height: 5px !important;
  border-right: 2px solid currentColor !important;
  border-bottom: 2px solid currentColor !important;
  transform: rotate(45deg) translateY(-2px) !important;
  margin-left: 7px !important;
  transition: transform 0.2s ease !important;
}

.sc_layouts_menu_nav > li.menu-item-has-children:hover > a::after,
.sc_layouts_menu_nav > li.menu-item-has-children.open > a::after {
  transform: rotate(225deg) translateY(-1px) !important;
}

/* Submenu Dropdown Container */
.sc_layouts_menu_nav ul.sub-menu {
  display: block !important;
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  min-width: 250px !important;
  background: #ffffff !important;
  border-radius: 12px !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12), 0 4px 10px rgba(0, 0, 0, 0.04) !important;
  padding: 8px 0 !important;
  margin: 0 !important;
  list-style: none !important;
  z-index: 999999 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(12px) !important;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease !important;
}

/* Open Submenu on Hover, Focus, or Class */
.sc_layouts_menu_nav > li.menu-item-has-children:hover > ul.sub-menu,
.sc_layouts_menu_nav > li.menu-item-has-children:focus-within > ul.sub-menu,
.sc_layouts_menu_nav > li.menu-item-has-children.sfHover > ul.sub-menu,
.sc_layouts_menu_nav > li.menu-item-has-children.open > ul.sub-menu {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}

.sc_layouts_menu_nav ul.sub-menu li {
  display: block !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.sc_layouts_menu_nav ul.sub-menu li a {
  display: block !important;
  padding: 10px 22px !important;
  color: #334155 !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  border-left: 3px solid transparent !important;
}

.sc_layouts_menu_nav ul.sub-menu li a:hover {
  background-color: #f0fdf4 !important;
  color: #075E54 !important;
  border-left-color: #25D366 !important;
  padding-left: 26px !important;
}

/* ── 2. Mobile Menu Hamburger & Drawer ─────────────────────────────────── */
.sc_layouts_menu_mobile_button_burger,
.sc_layouts_menu_mobile_button,
.menu_mobile_button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
}

.sc_layouts_menu_mobile_button_burger a,
.sc_layouts_menu_mobile_button a,
.menu_mobile_button a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 8px !important;
  background: rgba(30, 77, 59, 0.08) !important;
  border: 1.5px solid rgba(30, 77, 59, 0.25) !important;
  cursor: pointer !important;
  text-decoration: none !important;
  position: relative !important;
  transition: all 0.2s ease !important;
  padding: 0 !important;
}

.sc_layouts_menu_mobile_button_burger a:hover,
.sc_layouts_menu_mobile_button a:hover {
  background: #1E4D3B !important;
  border-color: #1E4D3B !important;
}

/* Crisp pure CSS 3-bar hamburger icon */
.sc_layouts_menu_mobile_button_burger a::before,
.sc_layouts_menu_mobile_button a::before,
.menu_mobile_button a::before {
  content: "" !important;
  display: block !important;
  width: 20px !important;
  height: 2px !important;
  background: #1E4D3B !important;
  border-radius: 2px !important;
  box-shadow: 0 -6px 0 #1E4D3B, 0 6px 0 #1E4D3B !important;
  transition: all 0.2s ease !important;
}

.sc_layouts_menu_mobile_button_burger a:hover::before,
.sc_layouts_menu_mobile_button a:hover::before {
  background: #ffffff !important;
  box-shadow: 0 -6px 0 #ffffff, 0 6px 0 #ffffff !important;
}

/* Hide any inner icon span or missing font tofu glyph */
.sc_layouts_menu_mobile_button_burger a span,
.sc_layouts_menu_mobile_button a span,
.menu_mobile_button a span {
  display: none !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
  font-size: 0 !important;
}

/* Mobile Drawer Overlay */
.menu_mobile_overlay {
  display: none !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: rgba(15, 23, 42, 0.7) !important;
  backdrop-filter: blur(4px) !important;
  z-index: 999990 !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
}

.menu_mobile_overlay.opened {
  display: block !important;
  opacity: 1 !important;
}

/* Mobile Drawer */
.menu_mobile {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 320px !important;
  max-width: 88vw !important;
  background: #0f172a !important;
  color: #ffffff !important;
  z-index: 999995 !important;
  transform: translateX(100%) !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.4) !important;
  overflow-y: auto !important;
  display: block !important;
  padding: 24px 20px !important;
}

.menu_mobile.opened {
  transform: translateX(0) !important;
}

.menu_mobile_header_wrap {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding-bottom: 20px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  margin-bottom: 20px !important;
}

.menu_mobile_header_wrap .logo_image,
.menu_mobile_header_wrap img {
  max-height: 38px !important;
  width: auto !important;
  filter: brightness(0) invert(1) !important;
}

.menu_mobile_close {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;
  cursor: pointer !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  position: relative !important;
}

.menu_mobile_close::before {
  content: "✕" !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  color: #ffffff !important;
}

.menu_mobile_close span {
  display: none !important;
}

.menu_mobile_close:hover {
  background: rgba(255, 255, 255, 0.25) !important;
  color: #25D366 !important;
  transform: scale(1.06) !important;
}

/* Mobile Nav Area Links */
.menu_mobile_nav_area ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.menu_mobile_nav_area > ul > li {
  margin-bottom: 8px !important;
}

.menu_mobile_nav_area > ul > li > a {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 12px 14px !important;
  color: #f1f5f9 !important;
  text-decoration: none !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  transition: all 0.2s ease !important;
}

.menu_mobile_nav_area > ul > li > a:hover,
.menu_mobile_nav_area > ul > li.current-menu-item > a {
  background: rgba(37, 211, 102, 0.15) !important;
  color: #25D366 !important;
}

/* Mobile Accordion Sub-menu */
.menu_mobile_nav_area .sub-menu {
  display: none !important;
  padding: 6px 0 6px 16px !important;
  margin: 4px 0 10px !important;
  border-left: 2px solid rgba(37, 211, 102, 0.4) !important;
}

.menu_mobile_nav_area .menu-item-has-children.sub-open > .sub-menu {
  display: block !important;
}

.menu_mobile_nav_area .sub-menu li a {
  display: block !important;
  padding: 8px 12px !important;
  color: #94a3b8 !important;
  font-size: 14px !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.menu_mobile_nav_area .sub-menu li a:hover {
  color: #25D366 !important;
}

/* Mobile Toggle Arrow Button */
.clover-mobile-toggle-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 32px !important;
  height: 32px !important;
  margin-left: auto !important;
  border-radius: 4px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
  border: none !important;
  cursor: pointer !important;
  font-size: 16px !important;
  transition: transform 0.25s ease !important;
}

.menu-item-has-children.sub-open > a .clover-mobile-toggle-btn,
.menu-item-has-children.sub-open > .clover-mobile-toggle-btn {
  transform: rotate(180deg) !important;
  color: #25D366 !important;
}

/* ── 3. 9-Dots Quick Info Side Panel (#popup-2) ────────────────────────── */
#popup-2.sc_layouts_panel {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 380px !important;
  max-width: 90vw !important;
  background: #ffffff !important;
  color: #0f172a !important;
  z-index: 1000002 !important;
  transform: translateX(100%) !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.25) !important;
  overflow-y: auto !important;
  display: block !important;
}

#popup-2.sc_layouts_panel.opened {
  transform: translateX(0) !important;
}

.clover-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(3px);
  z-index: 1000001;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.clover-popup-overlay.opened {
  display: block;
  opacity: 1;
}

/* ── 4. Search Modal Overlay ───────────────────────────────────────────── */
.search_modern .search_wrap {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  background: rgba(15, 23, 42, 0.95) !important;
  backdrop-filter: blur(8px) !important;
  padding: 40px 20px !important;
  z-index: 1000005 !important;
  display: none !important;
  opacity: 0 !important;
  transform: translateY(-20px) !important;
  transition: all 0.3s ease !important;
}

.search_modern.search_opened .search_wrap {
  display: block !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.search_modern .search_header_wrap {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  max-width: 720px !important;
  margin: 0 auto 24px !important;
}

.search_modern .search_close {
  color: #ffffff !important;
  font-size: 32px !important;
  cursor: pointer !important;
  line-height: 1 !important;
}

.search_modern .search_form {
  max-width: 720px !important;
  margin: 0 auto !important;
  position: relative !important;
}

.search_modern .search_field {
  width: 100% !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border: 2px solid #25D366 !important;
  border-radius: 50px !important;
  padding: 16px 60px 16px 24px !important;
  color: #ffffff !important;
  font-size: 18px !important;
  outline: none !important;
}

.search_modern .search_field::placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}

.search_modern .search_submit {
  position: absolute !important;
  right: 8px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: #25D366 !important;
  border: none !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* ==========================================================================
   CLOVER 7 - INTERACTIVE ACCORDIONS, FORMS & ENHANCEMENTS
   ========================================================================== */

/* ── 6. FAQ Accordion Styles ────────────────────────────────────────── */
.elementor-toggle .elementor-toggle-item {
  border-bottom: 1px solid #e2e8f0;
  transition: background-color 0.2s ease;
}

.elementor-toggle .elementor-tab-title {
  cursor: pointer !important;
  user-select: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 22px 0 !important;
  margin: 0 !important;
  transition: color 0.2s ease !important;
}

.elementor-toggle .elementor-tab-title a.elementor-toggle-title {
  font-size: 19px !important;
  font-weight: 600 !important;
  color: #1e293b !important;
  text-decoration: none !important;
  flex: 1 !important;
  transition: color 0.2s ease !important;
  cursor: pointer !important;
}

.elementor-toggle .elementor-tab-title:hover a.elementor-toggle-title,
.elementor-toggle .elementor-tab-title.elementor-active a.elementor-toggle-title {
  color: #075E54 !important;
}

.elementor-toggle .elementor-toggle-icon {
  margin-left: 16px !important;
  font-size: 16px !important;
  color: #075E54 !important;
  transition: transform 0.25s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  background: rgba(7, 94, 84, 0.08) !important;
}

.elementor-toggle .elementor-tab-title .elementor-toggle-icon-closed {
  display: inline-block !important;
}

.elementor-toggle .elementor-tab-title .elementor-toggle-icon-opened {
  display: none !important;
}

.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-closed {
  display: none !important;
}

.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-opened {
  display: inline-block !important;
}

.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon {
  background: #075E54 !important;
  color: #ffffff !important;
  transform: rotate(180deg) !important;
}

.elementor-toggle .elementor-tab-content {
  display: none;
  padding: 0 0 24px 0 !important;
  color: #475569 !important;
  font-size: 16px !important;
  line-height: 1.75 !important;
}

.elementor-toggle .elementor-tab-content.elementor-active {
  display: block !important;
  animation: cloverFaqFade 0.28s ease-out !important;
}

@keyframes cloverFaqFade {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── 7. Interactive Contact Form & Alerts ────────────────────────────── */
.clover-form-success {
  background: linear-gradient(135deg, #075E54 0%, #128C7E 100%) !important;
  color: #ffffff !important;
  padding: 40px 30px !important;
  border-radius: 16px !important;
  text-align: center !important;
  box-shadow: 0 12px 35px rgba(7, 94, 84, 0.2) !important;
  animation: cloverSuccessPop 0.35s ease-out !important;
  margin: 20px 0 !important;
}

@keyframes cloverSuccessPop {
  0% { opacity: 0; transform: scale(0.96); }
  100% { opacity: 1; transform: scale(1); }
}

.clover-form-success .success-icon {
  width: 64px !important;
  height: 64px !important;
  background: #25D366 !important;
  color: #ffffff !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 32px !important;
  margin: 0 auto 18px auto !important;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4) !important;
}

.clover-form-success h3 {
  color: #ffffff !important;
  font-size: 26px !important;
  font-weight: 700 !important;
  margin: 0 0 10px 0 !important;
}

.clover-form-success p {
  color: #e2e8f0 !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
  max-width: 540px !important;
  margin: 0 auto 24px auto !important;
}

.clover-form-success .btn-wrap {
  display: flex !important;
  gap: 14px !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
}

.clover-form-success .btn-whatsapp {
  background: #25D366 !important;
  color: #ffffff !important;
  padding: 13px 26px !important;
  border-radius: 30px !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.clover-form-success .btn-whatsapp:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6) !important;
}

.clover-form-success .btn-reset {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  padding: 13px 22px !important;
  border-radius: 30px !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  cursor: pointer !important;
  transition: background-color 0.2s ease !important;
}

.clover-form-success .btn-reset:hover {
  background: rgba(255, 255, 255, 0.25) !important;
}

/* Input validation error state */
.clover-field-error {
  border-color: #ef4444 !important;
  background-color: #fef2f2 !important;
}
.clover-error-msg {
  color: #ef4444 !important;
  font-size: 13px !important;
  margin-top: 4px !important;
  display: block !important;
}

/* ── Strict Responsive Header Visibility Rules ────────────────────────── */
/* Visually hide accessibility skip links while keeping them accessible */
.fabric_skip_link,
.skip_to_content_link,
.skip_to_footer_link {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Desktop viewport (>= 1025px): Strictly hide mobile header & burger bar */
@media (min-width: 1025px) {
  .sc_layouts_hide_on_desktop,
  .sc_layouts_hide_on_wide,
  .sc_layouts_hide_on_notebook,
  .sc_layouts_hide_on_tablet,
  .elementor-section.sc_layouts_hide_on_desktop,
  .elementor-element.sc_layouts_hide_on_desktop {
    display: none !important;
  }
}

/* Mobile & Tablet viewports (<= 1024px): Strictly hide desktop menu bar */
@media (max-width: 1024px) {
  .sc_layouts_hide_on_mobile,
  .elementor-section.sc_layouts_hide_on_mobile,
  .elementor-element.sc_layouts_hide_on_mobile {
    display: none !important;
  }
  .sc_layouts_hide_on_desktop {
    display: block !important;
  }
}

/* === MYM KNITWEAR PERFECT CLONE ENHANCEMENTS === */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,500;0,6..72,600;1,6..72,400&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* Top Panel Clean Background & Overlays */
.top_panel, .top_panel_default, header.top_panel {
  background: #ffffff !important;
  border-bottom: 1px solid rgba(223, 221, 211, 0.6) !important;
}

.search_modern .search_wrap:not(.opened):not(.search_opened),
.search_modern .search_overlay:not(.opened):not(.search_opened),
.search_wrap:not(.opened):not(.search_opened),
.search_overlay:not(.opened):not(.search_opened),
.menu_mobile_overlay:not(.opened),
.menu_mobile:not(.opened) {
  display: none !important;
  visibility: hidden !important;
}

@media (min-width: 1025px) {
  .menu_mobile,
  .menu_mobile_overlay {
    display: none !important;
    visibility: hidden !important;
  }
}

body, .page_wrap {
  background-color: #F6F5ED !important;
}

/* Menu Navigation - Perfectly Spaced on One Line */
.sc_layouts_menu_nav {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 26px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.sc_layouts_menu_nav > li {
  display: inline-flex !important;
  align-items: center !important;
  white-space: nowrap !important;
  margin: 0 !important;
}

.sc_layouts_menu_nav > li > a {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: #18191A !important;
  text-decoration: none !important;
  padding: 8px 0 !important;
  transition: color 0.2s ease !important;
}

.sc_layouts_menu_nav > li > a:hover,
.sc_layouts_menu_nav > li.current-menu-item > a {
  color: #1E4D3B !important;
}

/* Headings Typography - Exact Mym Knitwear Editorial Serif */
h1, .elementor-heading-title, .sc_item_title_text, .sc_item_title {
  font-family: "span", "Newsreader", "Playfair Display", Georgia, serif !important;
}

.elementor-element-aebb55a .elementor-heading-title {
  font-family: "span", "Newsreader", "Playfair Display", Georgia, serif !important;
  font-weight: 400 !important;
  line-height: 1.08 !important;
  letter-spacing: -0.02em !important;
}

/* Hero Section Layout (Title Left, Buttons Right) */
.elementor-element-1106f57 > .elementor-container {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
}

.elementor-element-c398c48 {
  flex: 1 1 58% !important;
  max-width: 65% !important;
}

.elementor-element-5819ac1 {
  flex: 0 0 auto !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  margin-bottom: 20px !important;
}

.elementor-element-5819ac1 .elementor-widget-wrap {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

/* Action Buttons (About Us & Our Services) */
.sc_button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 16px 36px !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  border-radius: 0 !important;
  transition: all 0.25s ease !important;
  letter-spacing: 0.02em !important;
  min-width: 180px !important;
  text-align: center !important;
}

.sc_button.sc_button_bordered,
.sc_button_bordered {
  border: 1.5px solid #1E4D3B !important;
  background-color: transparent !important;
  color: #1E4D3B !important;
}

.sc_button.sc_button_bordered:hover {
  background-color: #1E4D3B !important;
  color: #ffffff !important;
}

.sc_button.sc_button_default,
.sc_button_default {
  background-color: #1E4D3B !important;
  color: #ffffff !important;
  border: 1.5px solid #1E4D3B !important;
}

.sc_button.sc_button_default:hover {
  background-color: #0c2b20 !important;
  border-color: #0c2b20 !important;
  color: #ffffff !important;
}

/* ── Floating Actions: WhatsApp & Scroll to Top - No Overlapping ───────── */
.scroll_to_top {
  right: 90px !important;
  bottom: 24px !important;
  z-index: 9998 !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.sticky-wa, #whatsappFloat {
  right: 20px !important;
  bottom: 20px !important;
  width: 58px !important;
  height: 58px !important;
  z-index: 9999 !important;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45) !important;
}

/* ==========================================================================
   COMPREHENSIVE MOBILE VIEWPORT OPTIMIZATIONS (<= 767px)
   ========================================================================== */
@media (max-width: 767px) {
  /* Prevent horizontal overflow globally */
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    position: relative !important;
  }

  /* Compact sticky/main header */
  .top_panel .elementor-container,
  .top_panel_default .elementor-container {
    padding-left: 14px !important;
    padding-right: 14px !important;
    height: 64px !important;
    min-height: 64px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .sc_layouts_logo img,
  .top_panel .logo_image {
    max-height: 38px !important;
    width: auto !important;
  }

  /* Hero Section: Full width title & side-by-side action buttons */
  .elementor-element-1106f57 {
    padding: 24px 16px 16px 16px !important;
  }

  .elementor-element-1106f57 > .elementor-container {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
    width: 100% !important;
  }

  .elementor-element-c398c48 {
    flex: 1 1 100% !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .elementor-element-aebb55a .elementor-heading-title {
    font-size: clamp(28px, 7.5vw, 36px) !important;
    line-height: 1.15 !important;
    letter-spacing: -0.02em !important;
    margin: 0 !important;
  }

  .elementor-element-5819ac1 {
    flex: 1 1 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 8px 0 16px 0 !important;
  }

  .elementor-element-5819ac1 .elementor-widget-wrap {
    flex-direction: row !important;
    display: flex !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .elementor-element-5819ac1 .sc_item_button {
    flex: 1 1 calc(50% - 6px) !important;
    width: auto !important;
  }

  .elementor-element-5819ac1 .sc_button {
    width: 100% !important;
    min-width: 0 !important;
    padding: 13px 14px !important;
    font-size: 14px !important;
    text-align: center !important;
    min-height: 48px !important;
  }

  /* Hero background photo banner */
  .elementor-element-8501e61 {
    min-height: 360px !important;
    background-position: center top !important;
    background-size: cover !important;
  }

  /* Spacers on mobile: Collapse enormous desktop gaps */
  .sc_height_huge .elementor-spacer-inner,
  .elementor-spacer-inner {
    height: 24px !important;
  }

  /* Section 821ec0a: Textile Workers and Intro */
  .elementor-element-821ec0a {
    padding: 24px 16px !important;
  }

  .elementor-element-821ec0a > .elementor-container {
    flex-direction: column !important;
    gap: 20px !important;
  }

  .elementor-element-203820d1,
  .elementor-element-54cf4c49 {
    width: 100% !important;
    max-width: 100% !important;
    flex: 1 1 100% !important;
  }

  .elementor-element-7a5bd08a img {
    border-radius: 12px !important;
    width: 100% !important;
    max-height: 280px !important;
    object-fit: cover !important;
  }

  .elementor-element-54cf4c49 .sc_item_title_text {
    font-size: clamp(24px, 6.5vw, 30px) !important;
    line-height: 1.2 !important;
  }

  .elementor-element-54cf4c49 p {
    font-size: 15px !important;
    line-height: 1.6 !important;
  }

  /* Counters / Statistics */
  .sc_skills_columns {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 16px 0 !important;
  }

  .sc_skills_column.trx_addons_column-1_2-mobile {
    width: 50% !important;
    padding: 10px !important;
  }

  .sc_skills_total {
    font-size: 34px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    color: #1E4D3B !important;
  }

  .sc_skills_item_title {
    font-size: 13px !important;
    margin-top: 6px !important;
  }

  /* Service Cards: 1 column full-width */
  .sc_services_columns_wrap {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
  }

  .sc_services_columns_wrap > div,
  .sc_services_columns_wrap .trx_addons_column-1_2 {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    margin: 0 !important;
  }

  .sc_services_item_thumb img {
    height: 220px !important;
    width: 100% !important;
    object-fit: cover !important;
    border-radius: 12px 12px 0 0 !important;
  }

  .sc_services_item {
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
    background: #ffffff !important;
  }

  .sc_services_item_header {
    padding: 16px 18px !important;
  }

  .sc_services_item_title {
    font-size: 19px !important;
    line-height: 1.3 !important;
  }

  /* Video banner section */
  .elementor-element-8533664 {
    min-height: 240px !important;
    padding: 40px 16px !important;
  }

  /* Floating Actions on Mobile */
  .scroll_to_top {
    right: 76px !important;
    bottom: 18px !important;
    width: 44px !important;
    height: 44px !important;
    font-size: 18px !important;
  }
  .sticky-wa, #whatsappFloat {
    right: 16px !important;
    bottom: 16px !important;
    width: 50px !important;
    height: 50px !important;
  }

  /* Footer on mobile */
  footer.footer_wrap,
  .footer_wrap .elementor-container {
    padding: 24px 16px !important;
    text-align: center !important;
  }
}




