/* ==========================================================================
   FASHION EXPRESS — Luxury Leather Manufacturing Homepage Stylesheet
   Color Palette: Primary Blue #1E2BCB | White #FFFFFF | Near Black #111111
   Dark Charcoal #222222 | Light BG #F7F8FA | Soft Border #E8E8E8
   ========================================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

/* --- Root CSS Variables --- */
:root {
  --primary-blue: #5D2C0E;
  --primary-blue-hover: #5D2C0E;
  --primary-blue-light: #EEF0FD;
  --color-white: #FFFFFF;
  --color-near-black: #111111;
  --color-charcoal: #222222;
  --color-body-text: #444444;
  --color-muted: #777777;
  --color-light-bg: #F7F8FA;
  --color-card-bg: #FFFFFF;
  --color-border: #E8E8E8;
  --color-border-hover: #5D2C0E;
  
  --font-heading: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  
  --container-max-width: 1280px;
  --header-height: 102px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-white);
  color: var(--color-body-text);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-near-black);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

p {
  color: var(--color-body-text);
  font-size: 1rem;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

ul {
  list-style: none;
}

/* --- Utility Classes --- */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 576px) {
  .container {
    padding: 0 1.25rem;
  }
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
}

.section-heading {
      font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-near-black);
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
}

@media (max-width: 768px) {
  .section-heading {
    font-size: 1.85rem;
  }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.8rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 0 !important;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-transform: none;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: var(--color-white);
  border-color: var(--primary-blue);
}

.btn-primary:hover {
  background-color: var(--primary-blue-hover);
  border-color: var(--primary-blue-hover);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(12, 4, 4, 0.22);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-near-black);
  border-color: var(--color-near-black);
}

.btn-outline:hover {
  background-color: var(--color-near-black);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn-outline-white:hover {
  background-color: var(--color-white);
  color: var(--primary-blue);
  transform: translateY(-2px);
}

.btn-whatsapp {
 background-color: transparent;
    color: var(--color-near-black);
    border-color: var(--color-near-black);
}

.btn-whatsapp:hover {
  background-color: var(--color-near-black);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-blue);
  transition: gap var(--transition-fast);
}

.btn-link:hover {
  gap: 0.75rem;
}

/* ==========================================================================
   4. HEADER / NAVIGATION & TOP BAR
   ========================================================================== */
.site-header {
  position: relative;
  width: 100%;
  background-color: var(--color-white);
  border-bottom: none;
  z-index: 1000;
  transition: all var(--transition-fast);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* --- Top Black Info Bar --- */
.top-bar {
  background-color: #000000;
  color: var(--color-white);
  padding: 0.45rem 0;
  border-bottom: none;
}

.top-bar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #CCCCCC;
  font-size: 0.82rem;
  font-weight: 500;
  transition: color var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.top-bar-item:hover {
  color: #FFFFFF;
}

.top-bar-icon {
  width: 14px;
  height: 14px;
  color: #E2E2E2;
  flex-shrink: 0;
}

.top-bar-divider {
  width: 1px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.25);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.8rem;
}

/* --- Language Selector Translator Dropdown --- */
.lang-selector-box {
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
}

.lang-select-dropdown {
  background-color: #ffffff;
  color: #111111;
  border: 1px solid #d0d0d0;
  border-radius: 0;
  padding: 3px 8px;
  font-size: 0.78rem;
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  outline: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
  transition: all var(--transition-fast);
}

.lang-select-dropdown:hover,
.lang-select-dropdown:focus {
  background-color: var(--primary-blue);
  color: var(--color-white);
  border-color: var(--primary-blue);
  box-shadow: 0 3px 10px rgba(93, 44, 14, 0.4);
}

.lang-select-dropdown option {
  background-color: #ffffff;
  color: #111111;
  padding: 6px;
  font-weight: 500;
}

/* Hide Google Translate toolbar overlay & top margin shift */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
#goog-gt-tt {
  display: none !important;
}

body {
  top: 0px !important;
}

.goog-text-highlight {
  background-color: transparent !important;
  box-shadow: none !important;
}

.top-bar-badge {
  background-color: var(--primary-blue);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.2rem 0.55rem;
  border-radius: 2px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.top-bar-text {
  font-weight: 500;
  color: #CCCCCC;
}

.header-main {
  height: 90px;
  display: flex;
  align-items: center;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
}

.brand-logo img {
  height: 65px;
  width: auto;
  object-fit: contain;
}

/* Desktop Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-near-black);
  padding: 1.5rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-link:hover, .nav-item:hover > .nav-link {
  color: #111111;
}

.nav-link svg {
  width: 12px;
  height: 12px;
  transition: transform var(--transition-fast);
}

.nav-item:hover > .nav-link svg {
  transform: rotate(180deg);
}

/* Mega Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: var(--color-white);
  min-width: 240px;
  border: 1px solid var(--color-border);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-top: 2px solid var(--primary-blue);
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  border-radius: 0 0 4px 4px;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-link {
  display: block;
  padding: 0.65rem 1.4rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-charcoal);
  transition: all var(--transition-fast);
}

.dropdown-link:hover {
 background: var(--primary-blue);
  color: #fff;
  padding-left: 1.7rem;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.whatsapp-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #25D366;
  color: var(--color-white);
  transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.whatsapp-icon-btn:hover {
  transform: scale(1.08);
  background-color: #1EBE5B;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--color-near-black);
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background-color: var(--color-white);
  z-index: 1001;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  transition: right var(--transition-normal);
  overflow-y: auto;
}

.mobile-nav-drawer.active {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.close-drawer-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-near-black);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-item {
  border-bottom: 1px solid var(--color-light-bg);
  padding-bottom: 0.75rem;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-near-black);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-submenu {
  display: none;
  padding-left: 1rem;
  margin-top: 0.5rem;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-submenu.active {
  display: flex;
}

.mobile-submenu a {
  font-size: 0.9rem;
  color:#222222;
  padding: 0.35rem 0;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Responsive Header */
@media (max-width: 1024px) {
  :root {
    --header-height: 90px;
  }

  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .header-actions .btn {
    display: none;
  }

  /* --- Top Bar Mobile & Tab Layout (Phone Left, Language Translator Right, Hide Email) --- */
  .top-bar {
    padding: 0.35rem 0;
  }

  .top-bar-container {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 0.5rem;
  }

  .top-bar-left {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    width: auto !important;
  }

  /* Hide email link and divider on mobile & tab screens */
  .top-bar-left .top-bar-item:first-child,
  .top-bar-divider {
    display: none !important;
  }

  .top-bar-right {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    width: auto !important;
    margin-top: 0 !important;
  }

  .top-bar-text {
    display: none !important;
  }

  .top-bar-item {
    font-size: 0.76rem;
    white-space: nowrap;
  }

  .lang-selector-box {
    margin-left: 0;
    display: flex;
  }

  .lang-select-dropdown {
    padding: 3px 8px;
    font-size: 0.75rem;
  }

  .header-main {
    height: 65px;
  }
}

/* ==========================================================================
   5. HERO SECTION — UNIQUE PREMIUM SLIDER
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--header-height));
  min-height: 600px;
  max-height: 880px;
  margin-top: 0;
  background-color: var(--color-near-black);
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.hero-slide.active .hero-bg-image {
  transform: scale(1);
}

/* Transparent overlay only for text legibility (NO gradient) */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 17, 17, 0.45);
}

.hero-content-wrapper {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-text-box {
  width: 700px;
  max-width: 700px;
  color: var(--color-white);
  padding: 2rem 0;
}

.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ee925a;
  margin-bottom: 1rem;
  display: block;
}

.hero-headline {
  font-size: 3.25rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.hero-description {
  font-size: 1.1rem;
  color: #DDDDDD;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Slider Controls & Progress Line */
.hero-controls {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  width: 100%;
  z-index: 20;
}

.hero-controls-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-counter {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.1em;
}

.hero-counter .current-slide {
  color: var(--primary-blue);
  font-size: 1.25rem;
}

.hero-progress-bar {
  flex-grow: 1;
  max-width: 280px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.25);
  margin: 0 2rem;
  position: relative;
  overflow: hidden;
}

.hero-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: var(--primary-blue);
  transition: width 0.1s linear;
}

.hero-arrows {
  display: flex;
  gap: 0.5rem;
}

.hero-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.hero-arrow-btn:hover {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
}

@media (max-width: 1024px) {
  .hero-text-box {
    width: 60%;
  }
  .hero-headline {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero-text-box {
    width: 100%;
  }
  .hero-headline {
    font-size: 2.1rem;
  }
  .hero-progress-bar {
    display: none;
  }
}

/* ==========================================================================
   6. QUICK TRUST STRIP
   ========================================================================== */
.trust-strip {
  background-color: var(--primary-blue);
  border-bottom: 1px solid var(--color-border);
  padding: 1.6rem 0;
}

.trust-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-icon {
  width: 28px;
  height: 28px;
  color: #fff;
  flex-shrink: 0;
}

.trust-text {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

@media (max-width: 992px) {
  .trust-flex {
    justify-content: flex-start;
  }
  .trust-item {
    flex: 1 1 40%;
  }
}

@media (max-width: 576px) {
  .trust-item {
    flex: 1 1 100%;
  }
}

/* ==========================================================================
   7. INTRODUCTION / COMPANY PROFILE
   ========================================================================== */
.intro-section {
padding: 60px 0;
  background-color: var(--color-white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.intro-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-body-text);
  margin-bottom: 2rem;
  text-align: justify;
}

.intro-image-wrap {
  position: relative;
}

.intro-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 2px;
}

.intro-accent-border {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary-blue);
  z-index: -1;
  border-radius: 2px;
}

@media (max-width: 992px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 0rem;
  }
  .intro-accent-border {
    display: none;
  }
  .intro-image-wrap img {
    height: 360px;
    display: none;
  }
}

/* ==========================================================================
   8. PRODUCT COLLECTION SECTION
   ========================================================================== */
.collection-section {
padding: 60px 0;

}

.collection-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
}

/* Masonry / Editorial Grid */

#products{
background-image: url("../images/section-bg.webp");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.products-masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.8rem;

}

.product-tile {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  background-color: var(--color-white);
  border: 6px solid #f7f4f4;
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--transition-fast), transform var(--transition-normal), box-shadow var(--transition-normal);
      box-shadow: 0px 4px 10px #00000044;
}

.product-tile:hover {
  border-color: #f7f4f4;
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06);
}

/* Editorial Grid Sizing */
.tile-large {
  grid-column: span 7;
}

.tile-medium {
  grid-column: span 5;
}

.tile-small {
  grid-column: span 4;
}

.product-image-box,
.tile-large .product-image-box {
  width: 100%;
  height: 380px;
  overflow: hidden;
  position: relative;
}

.product-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom: 2px solid #e8dfdf;
  transition: transform var(--transition-slow);
}

.product-tile:hover .product-image-box img {
  transform: scale(1.06);
}

.product-tile-content {
  padding: 1.5rem 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-light-bg);
}

.product-category-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-near-black);
}

.product-explore-link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: transform var(--transition-fast);
}

.product-tile:hover .product-explore-link {
  transform: translateX(4px);
}

.collection-cta-wrap {
  text-align: center;
  margin-top: 3.5rem;
}

@media (max-width: 992px) {
  .products-masonry {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .tile-large, .tile-medium, .tile-small {
    grid-column: span 1;
  }
  .product-image-box, .tile-large .product-image-box {
    height: 300px;
  }
}

@media (max-width: 640px) {
  .products-masonry {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .tile-large, .tile-medium, .tile-small {
    grid-column: span 1;
  }
  .product-image-box, .tile-large .product-image-box {
    height: 260px;
  }
}

/* ==========================================================================
   9. MANUFACTURING SECTION
   ========================================================================== */
.manufacturing-section {
padding: 60px 0;
}

.manufacturing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.manufacturing-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 2px;
}

.process-timeline {
  margin: 2.2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-border);
}

.timeline-step:last-child {
  border-bottom: none;
}

.step-num {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  background-color: var(--primary-blue);
  padding: 0.3rem 0.6rem;
  border-radius: 2px;
}

.step-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;

}

.step-info p {
  font-size: 0.9rem;
  color: var(--color-muted);
}

@media (max-width: 992px) {
  .manufacturing-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .manufacturing-image img {
    height: 380px;
  }
}

/* ==========================================================================
   10. OEM & PRIVATE LABEL FEATURE
   ========================================================================== */
.oem-section {
padding: 60px 0;
  background-image: url("../images/section-bg.webp");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}

.oem-box {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}

.oem-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-near-black);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.oem-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin: 1.8rem 0 2.2rem 0;
}

.oem-feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-near-black);
}

.oem-feature-item svg {
  width: 18px;
  height: 18px;
  color: var(--primary-blue);
}

.oem-image-wrap {
  position: relative;
}

.oem-image-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 992px) {
  .oem-box {
    grid-template-columns: 1fr;
    padding: 2.5rem;
  }
}

/* ==========================================================================
   11. WHY CHOOSE FASHION EXPRESS
   ========================================================================== */
.why-section {
padding: 60px 0;
 background-image: url("../images/section-bg.webp");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.why-col {
  padding-top: 1.5rem;
  border-top: 2px solid var(--color-border);
  transition: border-color var(--transition-fast);
}

.why-col:hover {
  border-color: var(--primary-blue);
}

.why-num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
}

.why-col h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.why-col p {
  font-size: 0.9rem;
  color: var(--color-muted);
}

@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   12. GLOBAL EXPORT SECTION — SOLID ROYAL BLUE
   ========================================================================== */
.export-section {
  padding: 7rem 0;
  background-color: var(--primary-blue); /* Solid Royal Blue ONLY */
  color: var(--color-white);
  position: relative;
}

.export-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.export-content h2 {
  color: var(--color-white);
  font-size: 3rem;
  margin-bottom: 1.25rem;
}

.export-content p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
  margin-bottom: 2.2rem;
}

.export-pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.export-pillar-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 1.4rem;
  border-radius: 2px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;

}

.export-pillar-item svg {
  width: 22px;
  height: 22px;
  color: var(--color-white);
}

.export-graphic {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.world-map-svg {
  width: 100%;
  max-width: 480px;
  opacity: 0.85;
}

@media (max-width: 992px) {
  .export-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   13. QUALITY ASSURANCE
   ========================================================================== */
.qa-section {
  padding: 5.5rem 0;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.qa-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

.qa-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.qa-step-item {
  text-align: center;
}

.qa-num-badge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem auto;
  background-color: var(--primary-blue-light);
}

.qa-step-name {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-near-black);
}

.qa-arrow {
  color: var(--color-muted);
  font-size: 1.25rem;
}

@media (max-width: 992px) {
  .qa-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .qa-flow {
    flex-direction: column;
    gap: 1.2rem;
  }
  .qa-arrow {
    transform: rotate(90deg);
  }
}

/* ==========================================================================
   14. COMPANY STATS
   ========================================================================== */
.stats-section {
  padding: 30px 0;
  background-color: var(--primary-blue);
  border-bottom: 1px solid var(--color-border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.04em;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 768px) {
  .stats-section {
    padding: 20px 0;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 1rem;
  }
  .stat-number {
    font-size: 26px;
    margin-bottom: 0.25rem;
  }
  .stat-label {
    font-size: 13px;
  }
}

/* ==========================================================================
   15. TESTIMONIALS (SINGLE EDITORIAL SHOWCASE)
   ========================================================================== */
.testimonial-section {
padding: 60px 0;
  background-image: url("../images/section-bg.webp");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}

.testimonial-box {
  max-width: 820px;
  margin: 3rem auto 0 auto;
  text-align: center;
  position: relative;
}

.quote-icon {
  font-size: 3rem;
  color: #010209;
  line-height: 1;
  font-family: serif;
  margin-top: -30px;
 
}

.testimonial-text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-near-black);
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-near-black);
}

.testimonial-company {
  font-size: 0.88rem;
  color: var(--primary-blue);
  font-weight: 600;
}

@media (max-width: 768px) {
  .testimonial-section {
    padding: 35px 0;
  }
  .testimonial-box {
    margin-top: 1.25rem;
  }
  .testimonial-text {
    font-size: 0.98rem !important;
    line-height: 1.55;
    margin-bottom: 1.2rem;
    text-align: center !important;
    hyphens: none !important;
    -webkit-hyphens: none !important;
    word-break: normal !important;
  }
  .testimonial-author {
    font-size: 0.95rem;
  }
  .testimonial-company {
    font-size: 0.82rem;
  }
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-border);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.testimonial-dot.active {
  background-color: var(--primary-blue);
  width: 28px;
  border-radius: 5px;
}

/* ==========================================================================
   16. GALLERY (ASYMMETRIC GRID)
   ========================================================================== */
.gallery-section {
  padding: 60px 0;
  background-color: var(--primary-blue);
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.gallery-section .section-label {
  color: rgba(255, 255, 255, 0.9) !important;
}

.gallery-section .section-heading {
  color: #ffffff !important;
}

.gallery-section .btn-outline {
  border-color: #ffffff !important;
  color: #ffffff !important;
}

.gallery-section .btn-outline:hover {
  background-color: #ffffff !important;
  color: var(--primary-blue) !important;
}

.gallery-section .home-gallery-dot {
  background-color: rgba(255, 255, 255, 0.4);
}

.gallery-section .home-gallery-dot.active {
  background-color: #ffffff;
}

.gallery-wrapper {
  display: grid;
  grid-template-areas:
    "title button"
    "grid  grid";
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  width: 100%;
}

.gallery-title-box {
  grid-area: title;
  max-width: 100%;
}

.gallery-action-box {
  grid-area: button;
}

/* --- Gallery Filter Bar Styles (Single Row Desktop / Justified Mobile) --- */
.gallery-filter-wrapper {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 100%;
  margin: 1.25rem auto 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.gallery-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 100%;
  flex-wrap: nowrap; /* Single row on Desktop */
  overflow-x: auto;
  padding: 4px;
  box-sizing: border-box;
  scrollbar-width: none;
}

.gallery-filter-bar::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  flex: 0 0 auto; /* Compact single-row pill sizing on Desktop */
  white-space: nowrap;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #333333;
  background: #f5f2eb;
  border: 1px solid rgba(93, 44, 14, 0.2);
  border-radius: 24px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
  user-select: none;
}

.filter-btn:hover {
  background: #e8e1d3;
  color: #5d2c0e;
  border-color: #5d2c0e;
}

.filter-btn.active {
  background: #5d2c0e;
  color: #ffffff;
  border-color: #5d2c0e;
  box-shadow: 0 4px 12px rgba(93, 44, 14, 0.25);
}

.gallery-item {
  transition: transform 0.35s ease, opacity 0.35s ease, box-shadow 0.35s ease;
}

.gallery-item.hidden-item {
  display: none !important;
}

.gallery-grid {
  grid-area: grid;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  width: 100%;
  box-sizing: border-box;
}

/* --- Home Page Gallery Slider Engine (Home Only) --- */
.home-gallery-slider-wrap {
  grid-area: grid;
  position: relative;
  width: 100% !important;
  max-width: 100% !important;
  margin-top: 3rem;
  display: flex;
  align-items: center;
  box-sizing: border-box !important;
}

.home-gallery-slider-wrap .home-gallery-slider-track-container {
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important;
  position: relative;
  border-radius: 0;
  box-sizing: border-box !important;
}

.home-gallery-slider-wrap .home-gallery-slider-track {
  display: flex !important;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

/* DESKTOP (>= 992px): 3 SLIDES IN VIEW */
.home-gallery-slider-wrap .home-gallery-slider-track .gallery-item {
  flex: 0 0 calc((100% - 3rem) / 3) !important;
  min-width: calc((100% - 3rem) / 3) !important;
  max-width: calc((100% - 3rem) / 3) !important;
  width: calc((100% - 3rem) / 3) !important;
  flex-shrink: 0 !important;
  box-sizing: border-box !important;
  height: 340px;
  background-color: #ffffff !important;
  border: 4px solid #f7f4f4 !important;
  position: relative;
}

.home-gallery-slider-wrap .home-gallery-slider-track .gallery-item img {
  width: 100% !important;
  height: calc(100% - 44px) !important;
  object-fit: contain !important;
  background: #ffffff !important;
  padding: 12px 16px !important;
  box-sizing: border-box !important;
}

.home-gallery-slider-wrap .home-gallery-slider-track .gallery-item .gallery-item-title {
  padding: 10px 16px !important;
  font-size: 0.90rem !important;
  text-align: center !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  box-sizing: border-box !important;
}

/* TABLET (768px - 991px): 2 SLIDES IN VIEW */
@media (max-width: 991px) and (min-width: 768px) {
  .home-gallery-slider-wrap .home-gallery-slider-track {
    gap: 1.5rem !important;
  }
  .home-gallery-slider-wrap .home-gallery-slider-track .gallery-item {
    flex: 0 0 calc((100% - 1.5rem) / 2) !important;
    min-width: calc((100% - 1.5rem) / 2) !important;
    max-width: calc((100% - 1.5rem) / 2) !important;
    width: calc((100% - 1.5rem) / 2) !important;
    height: 300px !important;
  }
}

/* MOBILE (< 768px): 1 SLIDE IN VIEW */
@media (max-width: 767px) {
  .home-gallery-slider-wrap .home-gallery-slider-track {
    gap: 0px !important;
  }
  .home-gallery-slider-wrap .home-gallery-slider-track .gallery-item {
    flex: 0 0 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    height: 280px !important;
  }
  .home-gallery-slider-wrap .home-gallery-slider-track .gallery-item img {
    padding: 10px 14px !important;
  }
}

/* Slider Nav Buttons */
.home-gallery-slider-wrap .slider-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  background: var(--color-white);
  color: var(--color-dark);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transition: all var(--transition-fast);
}

.home-gallery-slider-wrap .slider-nav-btn:hover {
  background: var(--primary-blue);
  color: var(--color-white);
  border-color: var(--primary-blue);
  box-shadow: 0 8px 24px rgba(43, 76, 237, 0.35);
}

.home-gallery-slider-wrap .slider-prev-btn {
  left: -22px;
}

.home-gallery-slider-wrap .slider-next-btn {
  right: -22px;
}

@media (max-width: 991px) {
  .home-gallery-slider-wrap .slider-prev-btn {
    left: 6px !important;
  }
  .home-gallery-slider-wrap .slider-next-btn {
    right: 6px !important;
  }
  .home-gallery-slider-wrap .slider-nav-btn {
    width: 38px !important;
    height: 38px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25) !important;
  }
}

/* Dots Indicator */
.home-gallery-dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 1.8rem;
  width: 100%;
}

.home-gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.home-gallery-dot.active {
  width: 28px;
  border-radius: 12px;
  background-color: #ffffff;
}

.gallery-item,
.gallery-item.tall {
  position: relative;
  height: 340px;
  overflow: hidden;
  border-radius: 0 !important;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
  border: 6px solid #f7f4f4;
  background-color: #ffffff;
  box-shadow: 0px 4px 15px rgb(0 0 0 / 31%);
}

.gallery-item img {
  width: 100%;
  height: calc(100% - 40px);
  object-fit: contain; /* Full image visible, no cropping on mobile or desktop */
  background: #ffffff;
  padding: 8px;
  box-sizing: border-box;
  transition: transform var(--transition-slow);
  border-radius: 0 !important;
}

.gallery-item-title {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  background-color: var(--primary-blue) !important;
  color: #ffffff !important;
  font-family: var(--font-heading) !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  text-align: center !important;
  padding: 10px 8px !important;
  z-index: 15 !important;
  box-sizing: border-box !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  letter-spacing: 0.01em !important;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 40px);
  z-index: 10;
  background: rgba(15, 17, 26, 0.65);
  backdrop-filter: blur(2px);
  opacity: 0;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center;
  color: var(--color-white);
  padding: 0 !important;
  transition: opacity var(--transition-fast);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item .gallery-overlay span,
.gallery-item .gallery-overlay button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  background: var(--primary-blue);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 0 !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition-fast);
}

.gallery-item:hover .gallery-overlay span,
.gallery-item:hover .gallery-overlay button {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .gallery-filter-wrapper {
    max-width: 900px;
  }
  .gallery-filter-bar {
    flex-wrap: wrap; /* Justified wrapping on Mobile & Tablet */
    justify-content: space-between;
    gap: 10px 8px;
  }
  .filter-btn {
    flex: 1 1 auto; /* Expands buttons to justify across mobile & tablet rows */
    text-align: center;
    padding: 7px 12px;
    font-size: 0.78rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 1.5rem;
  }
  .gallery-item, .gallery-item.tall {
    height: 290px;
  }
}

@media (max-width: 768px) {
  .gallery-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }
  .gallery-title-box {
    width: 100%;
    text-align: center;
    order: 1;
  }
  .home-gallery-slider-wrap {
    width: 100%;
    order: 2;
    margin-top: 0.5rem;
  }
  .home-gallery-dots {
    order: 3;
    margin-top: 0.5rem;
  }
  .gallery-action-box {
    width: 100%;
    order: 4; /* Places View Full Gallery button AFTER slider dots on mobile */
    display: flex;
    justify-content: center;
    margin-top: 0.75rem;
  }
  .gallery-action-box .btn {
    display: inline-flex;
    padding: 10px 24px;
    font-size: 0.88rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.25rem;
    order: 2;
  }
  .gallery-item, .gallery-item.tall {
    height: 250px;
  }
  .gallery-filter-bar {
    gap: 8px 6px;
  }
  .filter-btn {
    padding: 6px 10px;
    font-size: 0.74rem;
  }
}

@media (max-width: 480px) {
  .gallery-section {
    padding: 2.5rem 0;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .gallery-item, .gallery-item.tall {
    height: 260px;
  }
  .gallery-filter-bar {
    gap: 6px 4px;
            margin-top: -40px;
  }
  .filter-btn {
    padding: 5px 9px;
    font-size: 0.72rem;
  }
}

/* ==========================================================================
   17. FINAL CTA
   ========================================================================== */
.cta-section {
  padding: 40px 0;
  text-align: center;
  background-image: url("../images/section-bg.webp");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
  
}

.cta-box {

  margin: 0 auto;
}

.cta-heading {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 1.45rem;
}

.cta-subtext {
  font-size: 1.15rem;
  color: var(--color-muted);
  margin-bottom: 2.5rem;
  display: none !important;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cta-heading {
    font-size: 24px;
  }
  .cta-subtext {
    font-size: 15px;
  }
}

/* ==========================================================================
   18. FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--color-near-black);
  color: var(--color-white);
  padding: 5rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand img {
  height: 60px;
  width: auto;
  margin-bottom: 1.25rem;
 
}

.footer-brand p {
  color: #cecece;
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: justify;
}

.footer-col h5 {
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.4rem;
  letter-spacing: 0.02em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
 color: #cecece;
  font-size: 0.88rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-white);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #cecece;
  font-size: 0.88rem;
  margin-bottom: 0.85rem;
  line-height: 1.45;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: #ffffff;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item strong {
  color: #ffffff;
  font-weight: 600;
}

.footer-contact-item a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-contact-item a:hover {
  color: #ffffff;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #cecece;
}

.keyword{
  font-size: 13px;
  color: #888888bd;
  font-family: var(--font-heading);
}

@media (max-width: 768px) {
  .site-footer {
    padding: 3.5rem 0 2rem 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
    text-align: center;
  }
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-brand img {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-brand p {
    text-align: center !important;
  }
  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-links {
    align-items: center;
  }
  .footer-contact-item {
    justify-content: center;
    text-align: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.85rem;
    text-align: center;
  }
  .keyword{
  font-size: 10px;
  }
}

/* ==========================================================================
   MODAL DIALOGS (QUOTE & QUICK VIEW)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(17, 17, 17, 0.75);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background-color: var(--color-white);
  width: 100%;
  max-width: 640px;
  border-radius: 4px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  transform: translateY(20px);
  transition: transform var(--transition-fast);
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-header {
  padding: 1.75rem 2rem;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-near-black);
}

.close-modal-btn {
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--color-muted);
  line-height: 1;
}

.close-modal-btn:hover {
  color: var(--color-near-black);
}

.modal-body {
  padding: 2rem;
  max-height: 75vh;
  overflow-y: auto;
}

/* Inquiry Form */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-near-black);
  margin-bottom: 0.5rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  font-size: 0.95rem;
  color: var(--color-near-black);
  transition: border-color var(--transition-fast);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   FLOATING STICKY WHATSAPP CTA BUTTON
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 54px;
  height: 54px;
  background-color: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 1000;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1EBE5B;
  color: #FFFFFF;
}

.whatsapp-float-tooltip {
  position: absolute;
  right: 68px;
  background-color: var(--color-near-black);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateX(6px);
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-float:hover .whatsapp-float-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@media (max-width: 768px) {
  p, .intro-content p, .footer-brand p {
    text-align: justify !important;
    text-justify: inter-word;
    -webkit-hyphens: auto !important;
    -ms-hyphens: auto !important;
    hyphens: auto !important;
    word-break: break-word !important;
  }
}

/* ==========================================================================
   FLOATING BACK TO TOP BUTTON
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 94px;
  right: 28px;
  width: 48px;
  height: 48px;
  background-color: var(--primary-blue);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  z-index: 999;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--color-near-black);
  color: #FFFFFF;
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.back-to-top svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  transition: transform 0.2s ease;
}

.back-to-top:hover svg {
  transform: translateY(-2px);
}

.back-to-top-tooltip {
  position: absolute;
  right: 62px;
  background-color: var(--color-near-black);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateX(6px);
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.back-to-top:hover .back-to-top-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@media (max-width: 576px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
  }
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
  .whatsapp-float-tooltip {
    display: none;
  }
  .back-to-top {
    bottom: 78px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
  .back-to-top svg {
    width: 20px;
    height: 20px;
  }
  .back-to-top-tooltip {
    display: none;
  }
}

/* ==========================================================================
   STANDALONE GALLERY LIGHTBOX MODAL
   ========================================================================== */
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
}

.gallery-modal.show {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.25s ease-out;
}

@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}

.gallery-modal-content {
  margin: 0;
  display: block;
  max-width: 88vw;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  animation: zoomInImage 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes zoomInImage {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.gallery-modal-caption {
  position: relative;
  bottom: auto;
  margin-top: 14px;
  margin-bottom: 0;
  text-align: center;
  color: #FFFFFF;
  font-family: var(--font-heading);
  background: var(--primary-blue);
  padding: 0.8rem 1.6rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  max-width: 90vw;
}

.modal-caption-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.2rem;
  letter-spacing: -0.01em;
}

.modal-caption-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  width: 100%;
}

.modal-caption-row {
  font-size: 0.9rem;
  font-weight: 500;
  color: #ffffff;
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  align-items: center;
}

.modal-caption-row .label {
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.82rem;
}

.modal-caption-row .value {
  color: #ffffff;
  font-weight: 600;
}

.gallery-modal-close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: #FFFFFF;
  font-size: 42px;
  font-weight: bold;
  cursor: pointer;
  z-index: 100000;
  transition: all 0.2s ease;
  line-height: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.gallery-modal-close:hover {
  color: #FFFFFF;
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .gallery-modal-content {
    max-width: 94vw;
    max-height: 70vh;
  }
  .gallery-modal-caption {
    font-size: 1rem;
  }
  .gallery-modal-close {
    top: 16px;
    right: 16px;
    font-size: 34px;
    width: 40px;
    height: 40px;
  }
}

/* ==========================================================================
   INNER PAGE HERO & CONTACT US STYLES
   ========================================================================== */
.page-banner {
  position: relative;
  background-color: var(--primary-blue);
  background-image: url('../images/page-banner.webp');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  min-height: 260px;
  height: auto;
  display: flex;
  align-items: center;
  padding: 40px 0;
  text-align: left;
  margin-top: 0;
}

.page-banner .container {
  width: 100%;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.page-banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 100%;
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  text-align: left;
  margin-left: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}

.breadcrumb a {
  color: #ffffff;
  transition: color var(--transition-fast);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}

.breadcrumb a:hover {
  color: var(--color-white);
  text-decoration: underline;
}

.breadcrumb-separator {
  opacity: 0.7;
}

.page-banner-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-white);
  margin-top: 0;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
  text-align: left;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

.page-banner-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  text-align: left;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}

@media (max-width: 992px) {
  .page-banner {
    margin-top: 0 !important;
    padding: 30px 0 !important;
    min-height: 170px !important;
    height: auto !important;
    background-size: cover !important;
    background-position: right center !important;
  }
  .page-banner-content {
    text-align: left !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
    width: 100% !important;
  }
  .page-banner-title {
    font-size: 1.8rem !important;
    margin-top: 0 !important;
    margin-bottom: 0.35rem !important;
    text-align: left !important;
  }
  .page-banner-subtitle {
    font-size: 0.95rem !important;
    text-align: left !important;
  }
  .breadcrumb {
    justify-content: flex-start !important;
    text-align: left !important;
    margin-left: 0 !important;
    font-size: 0.78rem !important;
    gap: 0.3rem !important;
  }
  .breadcrumb a {
    font-size: 0.78rem !important;
  }
}

@media (max-width: 768px) {
  .page-banner {
    margin-top: 0 !important;
    padding: 25px 0 !important;
    min-height: 140px !important;
    height: auto !important;
    background-size: cover !important;
    background-position: right center !important;
  }
  .page-banner-title {
    font-size: 1.35rem !important;
    margin-top: 0 !important;
    margin-bottom: 0.2rem !important;
    text-align: left !important;
  }
  .page-banner-subtitle {
    font-size: 0.85rem !important;
    text-align: left !important;
  }
  .breadcrumb {
    font-size: 0.72rem !important;
  }
  .breadcrumb a {
    font-size: 0.72rem !important;
  }
}

@media (max-width: 480px) {
  .page-banner {
    margin-top: 0 !important;
    padding: 20px 0 !important;
    min-height: 130px !important;
    height: auto !important;
    background-size: cover !important;
    background-position: right center !important;
  }
  .page-banner-title {
    font-size: 1.15rem !important;
    margin-top: 10px !important;
    margin-bottom: 0.15rem !important;
  }
  .breadcrumb {
    font-size: 0.68rem !important;
    gap: 0.2rem !important;
  }
  .breadcrumb a {
    font-size: 0.68rem !important;
  }
}

/* --- Principles Section (Mission, Vision & Core Values) --- */
.principles-section {

padding: 60px 0;
 background-image: url("../images/section-bg.webp");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}

.principles-section .section-header {
  margin-bottom: 3.5rem;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.principle-card {
  padding: 2.25rem;
  background-color: var(--color-white);
  border-radius: 8px;
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.principle-icon {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background-color: var(--primary-blue);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.principle-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-near-black);
  margin-bottom: 0.75rem;
}

.principle-desc {
  font-size: 0.95rem;
  color: var(--color-body-text);
  line-height: 1.65;
}

/* --- Contact Info Cards Section --- */
.contact-info-section {
  padding: 5rem 0 3rem 0;
  background-color: var(--color-light-bg);
}

.contact-cards-grid {
display: flex;
flex-direction: column;
gap: 15px;
}

.contact-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 20px;
  transition: all var(--transition-fast);
  display: flex;
   gap: 10px;
  align-items: flex-start;
  
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-blue);
  
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  flex-shrink: 0;
  background-color: var(--primary-blue);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.contact-card:hover .contact-card-icon {
  background-color: var(--primary-blue);
  color: var(--color-white);
}

.contact-card-icon svg {
  width: 26px;
  height: 26px;
}

.contact-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-near-black);
  margin-bottom: 0.35rem;
}

.contact-person-badge {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  background-color: rgba(93, 44, 14, 0.06);
  border: 1px solid rgba(93, 44, 14, 0.15);
  border-left: 3px solid var(--primary-blue);
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 10px;
  font-size: 0.85rem;
  color: var(--color-near-black);
  font-family: var(--font-heading);
}

.contact-person-badge .role-label {
  font-weight: 700;
  color: var(--primary-blue);
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.5px;
}

.contact-person-badge .person-name {
  font-weight: 700;
  color: #111111;
  letter-spacing: 0.2px;
}

.contact-person-badge .person-divider {
  color: rgba(93, 44, 14, 0.35);
  font-size: 0.8rem;
  font-weight: 300;
}

.contact-person-badge .person-phone {
  color: var(--primary-blue);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  transition: color var(--transition-fast);
}

.contact-person-badge .person-phone:hover {
  color: var(--color-near-black);
  text-decoration: underline;
}

.contact-card-text {
  font-size: 0.92rem;
  color: var(--color-body-text);
  line-height: 1.5;
  margin-bottom: 12px;
}

.contact-card-text a {
  color: var(--color-body-text);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-card-text a:hover {
  color: var(--primary-blue);
  text-decoration: none;
}

.contact-card-link {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
}

.contact-card-link:hover {
  color: var(--primary-blue-hover);
  gap: 0.6rem;
}

@media (max-width: 1024px) {
  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .contact-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Main Contact & Form Section --- */
.contact-form-section {
      padding: 60px 0 10px;
  background-color: var(--color-white);
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-form-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.contact-form-header {
  margin-bottom: 2rem;
}

.contact-form-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-near-black);
  margin-bottom: 0.5rem;
}

.contact-form-subtitle {
  font-size: 0.95rem;
  color: var(--color-muted);
}

.form-checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-checkbox {
  width: 18px;
  height: 18px;
  accent-color: var(--primary-blue);
  cursor: pointer;
}

.form-checkbox-label {
  font-size: 0.88rem;
  color: var(--color-body-text);
  cursor: pointer;
}

.form-alert {
  padding: 1rem 1.25rem;
  border-radius: 4px;
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
  display: none;
}

.form-alert-success {
  background-color: #E6F4EA;
  color: #137333;
  border: 1px solid #CEEAD6;
}

/* Factory Info Panel */
.factory-info-card {
  background: linear-gradient(145deg, #111111 0%, #1c1c24 100%);
  color: var(--color-white);
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.factory-info-card::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(30, 43, 203, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.factory-info-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.factory-info-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.factory-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.factory-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.factory-feature-icon {
  width: 38px;
  height: 38px;
  background-color: rgba(30, 43, 203, 0.25);
  border: 1px solid rgba(30, 43, 203, 0.5);
  color: #5C6BF2;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.factory-feature-icon svg {
  width: 20px;
  height: 20px;
}

.factory-feature-content h6 {
  color: var(--color-white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.factory-feature-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  line-height: 1.4;
}

.whatsapp-direct-box {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.whatsapp-direct-box-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-whatsapp-direct {
  background-color: #25D366;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.85rem 1.25rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn-whatsapp-direct:hover {
  background-color: #1EBE5B;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

@media (max-width: 992px) {
  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 576px) {
  .contact-form-card, .factory-info-card {
    padding: 1.5rem;
  }
}

/* --- Interactive Map Section --- */
.map-section {
  padding: 60px 0px;
  text-align: center;
  background-image: url("../images/section-bg.webp");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}

.maps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.map-container-box {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 6px solid #ffffff;
  position: relative;
}

@media (max-width: 992px) {
  .maps-grid {
    grid-template-columns: 1fr;
  }
}

.map-iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

.map-overlay-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background-color: var(--color-white);
  padding: 1.25rem 1.5rem;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-left: 4px solid var(--primary-blue);
  max-width: 340px;
  z-index: 10;
}

.map-overlay-badge h5 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-near-black);
  margin-bottom: 0.3rem;
}

.map-overlay-badge p {
  font-size: 0.85rem;
  color: var(--color-body-text);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .map-iframe {
    height: 350px;
  }
  .map-overlay-badge {
    position: static;
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
    border-top: 1px solid var(--color-border);
  }
}






 

/* ==========================================================================
   GALLERY PAGE STYLES
   ========================================================================== */
.gallery-section {
  padding:60px 0px;
 
}

.gallery-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.gallery-filter-btn {
  padding: 0.65rem 1.35rem;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 30px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-body-text);
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.gallery-filter-btn:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.gallery-filter-btn.active {
  background-color: var(--primary-blue);
  color: var(--color-white);
  border-color: var(--primary-blue);
  box-shadow: 0 4px 14px rgba(30, 43, 203, 0.25);
}



.gallery-card {
  background-color: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.gallery-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-blue);
  box-shadow: 0 16px 32px rgba(30, 43, 203, 0.12);
}

.gallery-card.hidden {
  display: none !important;
}

.gallery-image-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background-color: #111;
  cursor: pointer;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover .gallery-image {
  transform: scale(1.08);
}

.gallery-card .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 17, 17, 0.88) 0%, rgba(17, 17, 17, 0.2) 60%, rgba(17, 17, 17, 0) 100%);
  opacity: 0;
  transition: opacity var(--transition-fast);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-badge {
  align-self: flex-start;
  background-color: var(--primary-blue);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gallery-overlay-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.6rem;
}

.gallery-action-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.95);
  border: none;
  color: var(--color-near-black);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.gallery-action-btn:hover {
  background-color: var(--primary-blue);
  color: var(--color-white);
  transform: scale(1.1);
}

.gallery-content {
  padding: 1.25rem 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gallery-category-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.gallery-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-near-black);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.gallery-desc {
  font-size: 0.88rem;
  color: var(--color-body-text);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.gallery-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--color-border);
  padding-top: 0.85rem;
  margin-top: auto;
}

.gallery-tag {
  font-size: 0.8rem;
  color: var(--color-muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.gallery-link-btn {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-blue);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap var(--transition-fast);
}

.gallery-link-btn:hover {
  gap: 0.6rem;
  color: var(--primary-blue-hover);
}

/* Lightbox Modal custom enhancements */
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.92);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}

.gallery-modal.show {
  display: flex;
}

.gallery-modal-content {
  max-width: 90vw;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  margin: 0;
}

.gallery-modal-close {
  position: absolute;
  top: 25px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s ease;
  line-height: 1;
}

.gallery-modal-close:hover {
  color: var(--primary-blue-light);
}

.gallery-modal-caption {
  position: relative;
  bottom: auto;
  margin-top: 14px;
  margin-bottom: 0;
  text-align: center;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--primary-blue);
  padding: 0.8rem 1.6rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* ==========================================================================
   MANUFACTURING PAGE STYLES
   ========================================================================== */
.mfg-intro-section {
  padding: 60px 0;
  background-color: var(--color-white);
}

.mfg-intro-header {
  margin-bottom: 3.5rem;
}

.mfg-intro-desc {
  margin-top: 15px;
  text-align: justify;
}

.mfg-intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.mfg-intro-card {
padding: 2rem;
    background-color: #fefefe;
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--primary-blue);
    border-radius: 0 !important;
    transition: transform var(--transition-fast);
}

.mfg-intro-card:hover {
  transform: translateY(-4px);
}

.mfg-intro-icon {
  width: 48px;
  height: 48px;
  background-color: var(--primary-blue);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border-radius: 0 !important;
}

.mfg-intro-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-near-black);
  margin-bottom: 0.65rem;
}

/* ==========================================================================
   EXPORT PAGE STYLES (NO INLINE CSS)
   ========================================================================== */
.exports-capabilities-section {
  padding: 60px 0;
  background-color: var(--color-white);
}

.exports-capabilities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.exports-image-box {
  position: relative;
  border-radius: 0 !important;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border: 6px solid #e8dfdf;
  height: 583px;
  background-color: #111;
  cursor: pointer;
}

.exports-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.exports-image-box:hover img {
  transform: scale(1.06);
}

.exports-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.exports-spec-card {
  padding: 1.2rem;
  background-color: var(--color-light-bg);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--primary-blue);
  border-radius: 0 !important;
}

.exports-spec-label {
  font-size: 0.8rem;
  color: var(--color-muted);
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.exports-spec-value {
  font-size: 0.95rem;
  color: var(--color-near-black);
  font-weight: 700;
}

.exports-markets-section {
  padding: 60px 0;
  background-color: var(--color-light-bg);
  border-top: 1px solid var(--color-border);
}

.exports-markets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.exports-market-card {
  padding: 2rem;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 0 !important;
  transition: transform var(--transition-fast);
}

.exports-market-card:hover {
  transform: translateY(-4px);
}

.exports-market-icon {
  width: 48px;
  height: 48px;
  background-color:  var(--primary-blue);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border-radius: 0 !important;
}

.exports-market-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-near-black);
  margin-bottom: 0.65rem;
}

.exports-market-desc {
  font-size: 0.9rem;
  color: var(--color-body-text);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .exports-capabilities-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .exports-image-box {
    height: 300px;
  }
}

.mfg-process-section {
  padding: 60px 0px;
background-image: url("../images/section-bg.webp");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}

.mfg-section-heading{
    font-size:24px !important;
    font-weight: 800;
    color: var(--color-near-black);
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
}

.mfg-process-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 4.5rem;
}

.mfg-process-row:nth-child(even) {
  direction: rtl;
}

.mfg-process-row:nth-child(even) .mfg-process-content {
  direction: ltr;
}

.mfg-process-row:last-child {
  margin-bottom: 0;
}

.mfg-process-img-box {
  position: relative;
  border-radius: 0 !important;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border: 6px solid #e8dfdf;
  height: 360px;
  background-color: #111;
  cursor: pointer;
}

.mfg-process-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mfg-process-img-box:hover img {
  transform: scale(1.06);
}





.mfg-specs-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  list-style: none;
      margin-top: 15px;
}

.mfg-specs-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-near-black);
}

.mfg-specs-item svg {
  color: var(--primary-blue);
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .mfg-process-row, .mfg-process-row:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 2rem;
    direction: ltr;
  }
  .mfg-process-img-box {
    height: 280px;
  }
 
  .mfg-specs-list {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   PRODUCT PAGE SIDEBAR & LAYOUT REDESIGN STYLES
   ========================================================================== */

   .product-section{
    padding: 60px 0px;
   }
.product-page-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: start;

}

/* Product Sidebar */
.product-sidebar {
  position: static;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 0 !important;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.product-sidebar-header {
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-border);
}

.product-sidebar-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-near-black);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.product-sidebar-title svg {
  color: var(--primary-blue);
}

.sidebar-category-nav {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.sidebar-category-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-radius: 0 !important;
  color: var(--color-charcoal);
  font-weight: 600;
  font-size: 0.92rem;
  transition: all var(--transition-fast);
  text-decoration: none;
  background: transparent;
  border: 1px solid transparent;
}

.sidebar-category-link-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sidebar-category-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  transition: color var(--transition-fast);
}

.sidebar-category-link:hover {
  background: var(--primary-blue-light);
  color: var(--primary-blue);
  border-color: rgba(30, 43, 203, 0.15);
  transform: translateX(4px);
}

.sidebar-category-link:hover .sidebar-category-icon {
  color: var(--primary-blue);
}

.sidebar-category-link.active {
  background: var(--primary-blue);
  color: var(--color-white);
 
}

.sidebar-category-link.active .sidebar-category-icon {
  color: var(--color-white);
}



/* Right Content Main Area (No card background wrapper) */
.product-main-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Featured Top Hero Product Section (2-Column Grid: Left Image, Right Details) */
.featured-product-box {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.25rem;
  align-items: start;
  background: transparent;
  border: none;
  border-radius: 0 !important;
  padding: 0;
  box-shadow: none;
}

.featured-product-image-container {
  width: 100%;
  height: 300px;
  border-radius: 0 !important;
  overflow: hidden;
  position: relative;
  background: #0f111a;
  margin-bottom: 0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.featured-product-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 0 !important;
}

.featured-product-image-container:hover img {
  transform: scale(1.05);
}


.featured-product-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.featured-product-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--color-near-black);
  line-height: 1.25;
}

.featured-product-desc {
  font-size: 0.98rem;
  color: var(--color-body-text);
  line-height: 1.65;
  text-align: justify;
}

.featured-specs-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.featured-spec-item {
  padding: 0.85rem;
  background: var(--color-light-bg);
  border-radius: 0 !important;
  border-left: 3px solid var(--primary-blue);
}

.featured-spec-item label {
  font-size: 0.75rem;
  color: var(--color-muted);
  display: block;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.featured-spec-item strong {
  font-size: 0.9rem;
  color: var(--color-near-black);
  font-weight: 700;
}

/* Product Cards Grid Section */
.products-catalog-section {
  padding: 60px 0px;
 background-image: url("../images/section-bg.webp");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}

.products-catalog-header {
  border-bottom: 2px solid var(--color-light-bg);
  padding-bottom: 1rem;
}

.products-catalog-header h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-near-black);
}

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

.product-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 0 !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  border-color: rgba(30, 43, 203, 0.2);
}

.product-card-img-wrap {
  width: 100%;
  height: 230px;
  position: relative;
  overflow: hidden;
  background: #111;
  cursor: pointer;
  border-radius: 0 !important;
}

.product-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 0 !important;
}

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



.product-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.product-card-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-near-black);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.product-card-desc {
  font-size: 0.85rem;
  color: var(--color-body-text);
  line-height: 1.5;
  margin-bottom: 0.85rem;
}

.product-card-meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  background: var(--color-bg-light, #f8f9fa);
  padding: 0.65rem 0.85rem;
  border-radius: 6px;
  margin-bottom: 1.25rem;
  font-size: 0.82rem;
  border-left: 3px solid var(--primary-blue, #1e2bcb);
}

.product-card-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-card-meta-label {
  font-weight: 700;
  color: var(--color-muted-text, #666);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.product-card-meta-value {
  font-weight: 600;
  color: var(--color-near-black, #111);
}

.btn-view-details {
  width: 100%;
  font-size: 0.85rem;
  padding: 0.65rem 1rem;
  border-radius: 0 !important;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}



/* Media Queries for Responsiveness */
@media (max-width: 1100px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .product-page-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0rem 0;
  }

  .product-sidebar {
    position: static;
    padding: 1.25rem;
  }

  .sidebar-category-link:hover {
    transform: none;
  }

  .featured-product-box {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .featured-product-image-container {
    height: 340px;
  }
}

@media (max-width: 640px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .featured-specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-product-image-container {
    height: 260px;
  }

  .featured-product-title {
    font-size: 1.4rem;
  }
}

/* ==========================================================================
   FACTORY TECHNICAL SPECIFICATIONS TABLE STYLES
   ========================================================================== */
.spec-table-container {
  margin: 0 auto;
  overflow-x: auto;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.spec-table thead tr {
  background-color: var(--primary-blue);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  text-align: left;
}

.spec-table th {
  padding: 1rem 1.25rem;
}

.spec-table tbody {
  font-size: 0.9rem;
  color: var(--color-body-text);
}

.spec-table tbody tr {
  border-bottom: 1px solid var(--color-border);
}

.spec-table tbody tr:last-child {
  border-bottom: none;
}

.spec-table tbody tr.row-alt {
  background-color: var(--color-light-bg);
}

.spec-table td {
  padding: 1rem 1.25rem;
}

.spec-table td.spec-param {
  font-weight: 700;
  color: var(--color-near-black);
}

/* ==========================================================================
   GLOBAL 0PX BORDER RADIUS OVERRIDE (SHARP SQUARE CORNERS FOR ALL CARDS & BUTTONS)
   ========================================================================== */
.btn,
.btn-primary,
.btn-secondary,
.btn-view-details,
.btn-large,
.gallery-action-btn,
.gallery-filter-btn,
.product-card,
.product-card-img-wrap,
.product-card-img-wrap img,
.product-sidebar,
.sidebar-category-link,
.featured-product-box,
.featured-product-image-container,
.featured-product-image-container img,
.featured-badge,
.product-model-badge,
.featured-spec-item,
.modal-container,
.modal-overlay,
.form-input,
.form-select,
.form-textarea {
  border-radius: 0 !important;
}

*, p, span, div, h1, h2, h3, h4, h5, h6, li, a {
  -webkit-hyphens: none !important;
  -moz-hyphens: none !important;
  -ms-hyphens: none !important;
  hyphens: none !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
}
