@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800;900&family=Caveat:wght@600;700&family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;1,500;1,700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap");

:root {
  /* Brand Colors from Atlantis Trade Design */
  --main-color: #b42027;
  --main-hover: #d81820;
  --main-rgb: 237, 34, 43;
  --main-light: rgba(237, 34, 43, 0.08);
  --main-glow: rgba(237, 34, 43, 0.25);

  --dark-color: #181a1b;
  --dark-soft: #232528;
  --dark-theme: #111213;
  --dark-card: #1e2022;

  --light-color: #f8f9fa;
  --offwhite-color: #fcfcfc;
  --white-color: #ffffff;
  --black-color: #000000;

  --text-main: #181a1b;
  --text-body: #4a4e51;
  --text-muted: #71777d;
  --text-light-muted: #a3a8ad;
  --border-color: #eaecef;
  --border-subtle: #f0f2f5;

  /* Typography */
  --font-serif: "Playfair Display", "Times New Roman", Georgia, serif;
  --font-sans:
    "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  --font-ar: "Cairo", sans-serif;

  /* Radii */
  --radius-pill: 50px;
  --radius-xl: 32px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;

  /* Transitions */
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);

  /* Bridge brand tokens into Bootstrap */
  --bs-primary: var(--main-color);
  --bs-primary-rgb: var(--main-rgb);
  --bs-body-font-family: var(--font-sans);
  --bs-body-color: var(--text-main);
  --bs-body-bg: var(--white-color);
  --bs-secondary-color: var(--text-body);
  --bs-border-color: var(--border-color);
  --bs-link-color: var(--main-color);
  --bs-link-hover-color: var(--main-hover);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  font-family: var(--font-sans);
  background: var(--white-color);
  color: var(--text-main);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

[dir="rtl"] body {
  font-family: var(--font-ar), var(--font-sans);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
  border-radius: 4px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
}

.text-main {
  color: var(--main-color) !important;
}

.text-light-muted {
  color: var(--text-light-muted) !important;
}

.bg-main {
  background-color: var(--main-color) !important;
}

.bg-dark-theme {
  background-color: var(--dark-color) !important;
}

.fs-7 {
  font-size: 0.86rem !important;
}

.fs-8 {
  font-size: 0.78rem !important;
}

/* ##################################################
   #                   SECTION LABEL / TITLE        #
   ################################################## */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--main-hover);
  margin-bottom: 12px;
  font-family: var(--font-sans);

  &::before {
    content: "";
    display: inline-block;
    width: 22px;
    height: 2.5px;
    background: var(--main-color);
  }
}

.section-label-light {
  color: rgba(255, 255, 255, 0.85);
}

.section-title {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 650px;
}

/* ##################################################
   #                   BUTTONS (Bootstrap modifiers) #
   ################################################## */
.btn-brand {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: var(--main-color);
  --bs-btn-border-color: var(--main-color);
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: var(--main-hover);
  --bs-btn-hover-border-color: var(--main-hover);
  --bs-btn-focus-shadow-rgb: var(--main-rgb);
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: var(--main-hover);
  --bs-btn-active-border-color: var(--main-hover);
  --bs-btn-disabled-color: #ffffff;
  --bs-btn-disabled-bg: var(--main-color);
  --bs-btn-disabled-border-color: var(--main-color);
  --bs-btn-padding-x: 1.875rem;
  --bs-btn-padding-y: 0.8125rem;
  --bs-btn-font-size: 0.95rem;
  --bs-btn-font-weight: 600;
  --bs-btn-border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 6px 20px rgba(var(--main-rgb), 0.22);
  transition: var(--transition-smooth);

  i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
  }

  &:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(var(--main-rgb), 0.35);

    i {
      transform: translateX(4px);
    }
  }
}

[dir="rtl"] .btn-brand:hover i {
  transform: translateX(-4px);
}

.btn-outline-brand {
  --bs-btn-color: var(--text-main);
  --bs-btn-bg: var(--white-color);
  --bs-btn-border-color: var(--main-color);
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: var(--main-color);
  --bs-btn-hover-border-color: var(--main-color);
  --bs-btn-focus-shadow-rgb: var(--main-rgb);
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: var(--main-color);
  --bs-btn-active-border-color: var(--main-color);
  --bs-btn-disabled-color: var(--main-color);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: var(--main-color);
  --bs-btn-padding-x: 1.875rem;
  --bs-btn-padding-y: 0.8125rem;
  --bs-btn-font-size: 0.95rem;
  --bs-btn-font-weight: 600;
  --bs-btn-border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: var(--transition-smooth);

  &:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(var(--main-rgb), 0.25);
  }
}

/* View All expand control (keep custom — not a Bootstrap btn) */
.btn-view-all {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition-duration: 0.3s;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
  background-color: var(--main-color);
  text-decoration: none;
  color: #ffffff;

  .sign {
    width: 100%;
    transition-duration: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;

    i {
      font-size: 0.9rem;
      color: #ffffff;
    }
  }

  .text {
    position: absolute;
    right: 0%;
    width: 0%;
    opacity: 0;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-sans);
    white-space: nowrap;
    transition-duration: 0.3s;
  }

  &:hover {
    width: 125px;
    border-radius: 40px;
    transition-duration: 0.3s;
    color: #ffffff;

    .sign {
      width: 30%;
      transition-duration: 0.3s;
      padding-left: 14px;
    }

    .text {
      opacity: 1;
      width: 70%;
      transition-duration: 0.3s;
      padding-right: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
  }

  &:active {
    transform: translate(2px, 2px);
  }
}

/* ##################################################
   #                   LOADING                      #
   ################################################## */
.loading {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;

  .loader-logo-wrap {
    position: relative;
    width: 120px;
    height: 120px;

    .loader-logo {
      max-width: 78px;
      max-height: 78px;
      width: auto;
      height: auto;
      object-fit: contain;
      animation: pulseLogo 1.4s ease-in-out infinite;
      position: relative;
      z-index: 2;
    }

    .loader-ring {
      position: absolute;
      inset: 0;
      border-radius: 50%;
      border: 2.5px solid rgba(var(--main-rgb), 0.12);
      border-top-color: var(--main-color);
      border-right-color: var(--main-color);
      animation: spin 0.9s linear infinite;
      z-index: 1;
    }
  }

  .loader-bar {
    width: 110px;
    height: 3px;
    background: #f0f1f3;
    border-radius: 50px;
    overflow: hidden;

    span {
      display: block;
      width: 40%;
      height: 100%;
      border-radius: 50px;
      background: var(--main-color);
      animation: barAnim 1.1s ease-in-out infinite;
    }
  }

  .loader-text {
    margin: 0;
    font-family: var(--font-serif);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    text-transform: uppercase;
  }

  &.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@keyframes pulseLogo {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.88;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes barAnim {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(280%);
  }
}

/* ##################################################
   #                   NAVBAR                       #
   ################################################## */
.header {
  background: var(--white-color);
  transition: var(--transition-smooth);
  z-index: 1020;

  .header-topbar {
    background: #f6f7f9;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.84rem;
    color: var(--text-body);

    .topbar-divider {
      display: inline-block;
      width: 1px;
      height: 16px;
      background: var(--border-color);
    }

    .social-circle {
      width: 30px;
      height: 30px;
      border: 1px solid #d4d0cb;
      background: rgba(255, 255, 255, 0.6);
      color: #33383f;
      font-size: 0.9rem;
      transition: var(--transition-smooth);

      &:hover {
        background: #b91c1c;
        border-color: #b91c1c;
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(185, 28, 28, 0.25);
      }
    }
  }

  .navbar {
    .navbar-brand {
      .brand-logo {
        height: 60px;
        width: auto;
        object-fit: contain;
      }
    }

    .navbar-nav {
      .nav-link {
        font-size: 0.98rem;
        color: var(--text-main);
        padding: 8px 14px !important;
        position: relative;
        transition: var(--transition-smooth);
text-wrap: nowrap;
        &::after {
          content: "";
          position: absolute;
          bottom: 0;
          left: 14px;
          right: 14px;
          height: 2px;
          background: var(--main-color);
          transform: scaleX(0);
          transition: transform 0.3s ease;
        }

        &:hover,
        &.active {
          color: var(--main-color);

          &::after {
            transform: scaleX(1);
          }
        }
      }

      .nav-chevron {
        font-size: 0.75rem;
        transition: transform 0.3s ease;
      }

      .dropdown:hover .nav-chevron {
        transform: rotate(180deg);
      }

      .badge-mini {
        background: rgba(var(--main-rgb), 0.12);
        color: var(--main-color);
        font-size: 0.65rem;
        font-weight: 700;
        padding: 2px 7px;
        border-radius: 10px;
        text-transform: uppercase;
      }
    }

    .header-actions {
      .header-search-wrap {
        width: 250px;

        .header-search-input {
          width: 100%;
          background: #f4f5f7;
          border: 1px solid transparent;
          border-radius: var(--radius-pill);
          padding: 10px 38px 10px 18px;
          font-size: 0.85rem;
          color: var(--text-main);
          outline: none;
          transition: var(--transition-smooth);

          &:focus {
            background: #ffffff;
            border-color: var(--main-color);
            box-shadow: 0 0 0 3px rgba(var(--main-rgb), 0.1);
          }
        }

        .header-search-btn {
          position: absolute;
          right: 14px;
          top: 50%;
          transform: translateY(-50%);
          background: transparent;
          border: none;
          color: var(--text-muted);
          font-size: 0.85rem;
          cursor: pointer;
        }
      }
    }

    .btn-mobile-call {
      width: 40px;
      height: 40px;
      background: rgba(var(--main-rgb), 0.1);
      color: var(--main-color);
      font-size: 1rem;
    }
  }

  &.fixed {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index:99 !important;
    position:fixed;
top:0;
    left:0;
    right:0;
  }
}

/* ##################################################
   #                   OFFCANVAS                    #
   ################################################## */
.offcanvas#mobileMenu {
  background-color: #ffffff !important;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.12) !important;
  z-index: 1060 !important;
  width: 320px !important;
  max-width: 85vw !important;

  .social-circle {
    width: 30px;
    height: 30px;
    background: #232528;
    color: #ffffff;
    font-size: 0.8rem;
    transition: var(--transition-smooth);

    &:hover {
      background: var(--main-color);
      color: #ffffff;
      transform: translateY(-2px);
    }
  }
}

.header-search-wrap-mobile {
  width: 100%;

  .header-search-input {
    width: 100%;
    background: #f4f5f7;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    padding: 10px 38px 10px 18px;
    font-size: 0.85rem;
    color: var(--text-main);
    outline: none;
    transition: var(--transition-smooth);

    &:focus {
      background: #ffffff;
      border-color: var(--main-color);
      box-shadow: 0 0 0 3px rgba(var(--main-rgb), 0.1);
    }
  }

  .header-search-btn {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    cursor: pointer;
  }
}

/* ##################################################
   #                   HERO                         #
   ################################################## */
.hero {
  position: relative;

  overflow: hidden;
  background: #ffffff;

  .swiper,
  .swiper-slide {
    position: relative;
    width: 100%;

    height: calc(100vh - 132px);
  }

  .swiper-slide {
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    transition: transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
  }

  .swiper-slide-active .hero-bg {
    transform: scale(1.03);
  }

  .hero-facet {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.5);
  }

  .hero-content {
    position: relative;
    z-index: 5;
    width: 100%;
    padding-left: 6%;
    padding-right: 20px;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--white-color);
    margin-bottom: 16px;

    &::before {
      content: "";
      display: inline-block;
      width: 28px;
      height: 3px;
      background: var(--main-color);
      border-radius: 2px;
    }
  }

  h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 3.7vw, 3.8rem);
    font-weight: 700;
    line-height: 1.14;
    margin-bottom: 18px;
    color: var(--white-color);
    letter-spacing: -0.015em;

    .text-main {
      color: var(--main-color) !important;
    }
  }

  p {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    color: var(--white-color);
    max-width: 480px;
    margin-bottom: 28px;
    line-height: 1.65;
    font-weight: 400;
  }

  .hero-actions {
    margin-bottom: 36px;
  }

  .hero-features {
    .hero-feature-icon {
      color: var(--main-color);
      line-height: 1;

      svg {
        width: 22px;
        height: 22px;
        stroke: var(--main-color);
      }
    }

    .hero-feature-text {
      font-size: 0.92rem;
      font-weight: 700;
      color: #232528;
      letter-spacing: -0.01em;
    }
  }

  .hero-side-tags {
    position: absolute;
    top: 36px;
    right: 5%;
    z-index: 5;
    text-align: right;
    color: #ffffff;

    .tag-line {
      font-family: var(--font-sans);
      font-size: 0.9rem;
      letter-spacing: 0.22em;
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 4px;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    .hero-side-accent {
      display: block;
      width: 32px;
      height: 3px;
      background: var(--main-color);
      margin-top: 6px;
      border-radius: 2px;
      box-shadow: 0 2px 8px rgba(var(--main-rgb), 0.5);
    }
  }

  .hero-nav {
    position: absolute;
    bottom: 36px;
    right: 5%;
    z-index: 10;
    color: #ffffff;

    .hero-pagination {
      font-family: var(--font-sans);
      font-weight: 700;
      font-size: 1.15rem;
      letter-spacing: 0.12em;
      text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);

      .current {
        color: #ffffff;
        font-weight: 800;
      }

      .sep {
        opacity: 0.65;
        margin: 0 6px;
      }

      .total {
        opacity: 0.65;
      }
    }

    .hero-nav-btns {
      button {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        font-size: 0.88rem;
        transition: var(--transition-smooth);
        cursor: pointer;
      }

      .hero-btn-prev {
        border: 1.5px solid rgba(255, 255, 255, 0.35);
        background: rgba(18, 20, 22, 0.7);
        color: #ffffff;
        backdrop-filter: blur(8px);

        &:hover {
          background: var(--main-color);
          border-color: var(--main-color);
          transform: translateY(-2px);
          box-shadow: 0 6px 16px rgba(var(--main-rgb), 0.35);
        }
      }

      .hero-btn-next {
        border: 1.5px solid var(--main-color);
        background: var(--main-color);
        color: #ffffff;
        box-shadow: 0 6px 18px rgba(var(--main-rgb), 0.4);

        &:hover {
          background: var(--main-hover);
          border-color: var(--main-hover);
          transform: translateY(-2px);
          box-shadow: 0 10px 24px rgba(var(--main-rgb), 0.5);
        }
      }
    }
  }
}

/* ##################################################
   #                   HERO MOBILE                  #
   ################################################## */
.hero-mobile {
  position: relative;
  overflow: hidden;
  background: #111213;

  .swiper-slide {
    position: relative;
    height: 60vh;

  }

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .hero-content {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 5;
    width: 100%;
    padding: 2rem 1.25rem 2.25rem;
    color: #ffffff;
    background: linear-gradient(
      10deg,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.55) 45%,
      rgba(0, 0, 0, 0.05) 100%
    );
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;

    &::before {
      content: "";
      width: 22px;
      height: 2.5px;
      background: var(--main-color);
      border-radius: 2px;
    }
  }

  h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.55rem, 6vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 0.65rem;

    .text-main {
      color: var(--main-color) !important;
    }
  }

  p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 1.15rem;
    max-width: 34rem;
  }

  .hero-actions {
    .btn {
      font-size: 0.86rem;
      padding: 0.7rem 1.1rem;
    }

 
  }
}

/* ##################################################
   #                   CATEGORIES                   #
   ################################################## */
.categories-section {
  border-top: 1px solid #eaecef;
  border-bottom: 1px solid #eaecef;

  .category-card {
    position: relative;
    height: 340px;
    border-radius: 80px 0 0 0;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    cursor: pointer;
    display: block;

    .category-card-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .category-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.02) 20%,
        rgba(0, 0, 0, 0.35) 55%,
        rgba(0, 0, 0, 0.88) 100%
      );
      transition: opacity 0.3s ease;
    }

    .category-card-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 24px;
      z-index: 2;
      color: #ffffff;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;

      .category-num {
        font-family: var(--font-serif);
        font-size: 2.2rem;
        font-weight: 700;
        line-height: 1;
        color: #ffffff;
        margin-bottom: 4px;
      }

      .category-name {
        font-family: var(--font-serif);
        font-size: 1.35rem;
        font-weight: 700;
        color: #ffffff;
        line-height: 1.25;
        margin-bottom: 0;
      }
    }

    .category-card-arrow {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      font-size: 1.15rem;
      transition: transform 0.3s ease;
    }

    &:hover {
      transform: translateY(-5px);
      box-shadow: 0 16px 36px rgba(0, 0, 0, 0.15);

      .category-card-bg {
        transform: scale(1.08);
      }

      .category-card-arrow {
        transform: translateX(4px);
      }
    }
  }
}

[dir="rtl"] .categories-section {
  .category-card:hover .category-card-arrow {
    transform: translateX(-4px);
  }
}

.categories-section {
  .category-card-text {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    line-height: 1.55;
    max-width: 320px;
    margin-top: 0.5rem;
  }

  .category-card.category-card-lg {
    height: 380px;
    border-radius: 40px 0 0 0;

    .category-card-content {
      padding: 28px 30px;
    }

    .category-name {
      font-size: 1.85rem;
    }
  }
}

.category-hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;

  img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
  }

  .category-hero-num {
    position: absolute;
    left: 1.25rem;
    bottom: 1.1rem;
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    z-index: 2;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  }

  &::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(17, 18, 19, 0.55) 100%);
  }
}

/* ##################################################
   #                   PRODUCTS                     #
   ################################################## */
.popular-products-section {
  position: relative;
  z-index: 2;

  &::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.9) !important;

    z-index: -1;
  }

  .product-filter-btn {
    background: #f1f3f5;
    color: var(--text-main);
    border: none;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 8px 22px;
    border-radius: var(--radius-pill);
    transition: var(--transition-smooth);
    cursor: pointer;

    &:hover {
      background: #e9ecef;
    }

    &.active {
      background: var(--main-color);
      color: #ffffff;
      box-shadow: 0 4px 14px rgba(var(--main-rgb), 0.35);
    }
  }

  .product-card {
    background: #f8f9fa;
    border: 1px solid #eceeef;
    border-radius: 16px;
    padding: 18px;
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;

    .product-img-wrap {
      background: #ffffff;
      border: 1px solid #f0f2f4;
      border-radius: 12px;
      padding: 16px;
      height: 165px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 14px;
      overflow: hidden;

      img {
        max-height: 100%;
        max-width: 100%;
        object-fit: contain;
        transition: transform 0.4s ease;
      }
    }

    .product-name {
      font-family: var(--font-sans);
      font-size: 0.95rem;
      font-weight: 700;
      margin-bottom: 2px;
      color: var(--text-main);
    }

    .product-category-tag {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-bottom: 10px;
    }

    .product-swatches {
      display: flex;
      align-items: center;
      gap: 5px;
      margin-bottom: 12px;

      .swatch-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        display: inline-block;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
      }
    }

    .product-meta {
      font-size: 0.78rem;
      color: #8a9096;
      line-height: 1.45;
      margin-top: auto;
    }

    &:hover {
      border-color: rgba(var(--main-rgb), 0.35);
      transform: translateY(-6px);
      box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);

      .product-img-wrap img {
        transform: scale(1.08);
      }
    }
  }
}

/* ##################################################
   #                   HEALTHY PLATE                #
   ################################################## */
.healthy-plate-section {
  background: #111213;
  position: relative;
  overflow: hidden;

  .hp-split-container {
    display: flex;
    min-height: 520px;
    position: relative;
    align-items: stretch;
  }

  .hp-content-panel {
    flex: 0 0 50%;
    max-width: 50%;
    background: #111213;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 91% 100%, 0 100%);

    .hp-title {
      font-family: var(--font-serif);
      font-size: clamp(2.4rem, 3.6vw, 3.4rem);
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 6px;
    }

    .hp-slogan {
      font-family: var(--font-serif);
      font-size: clamp(1.2rem, 1.7vw, 1.55rem);
      font-weight: 700;
      color: var(--main-color);
      margin-bottom: 1.25rem;
    }

    .hp-desc {
      font-size: 0.95rem;
      color: #c8cbd0;
      line-height: 1.8;
      margin-bottom: 2rem;
      max-width: 500px;
    }

    .hp-features {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      margin-bottom: 2.25rem;

      .hp-feature-item {
        display: flex;
        align-items: center;
        gap: 12px;

        .hp-feature-icon {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          color: var(--main-color);
          flex-shrink: 0;
        }

        .hp-feature-text {
          font-size: 0.86rem;
          font-weight: 600;
          color: #ffffff;
          line-height: 1.35;
        }
      }
    }
  }

  .hp-image-panel {
    flex: 0 0 55%;
    max-width: 55%;
    margin-left: -5%;
    position: relative;
    min-height: 520px;
    overflow: hidden;
    z-index: 1;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
}

/* ##################################################
   #             ABOUT ATLANTIS (DESIGN 06 - 1:1)   #
   ################################################## */
.about-section-exact {
  position: relative;
  background: #f4f3f1;
  overflow-x: clip;
  scroll-margin-top: 80px;

  /* --- Top Story Wrap --- */

  /* Left Fine Dining Visual Column */
  .about-visual-col {
    position: relative;
    overflow: hidden;

    .about-visual-wrap {
      position: relative;
      width: 100%;
      height: 100%;

      .about-visual-img {
        width: 100%;
        height: 800px !important;
        object-fit: cover;
        display: block;

        @media (max-width: 991.98px) {
          
          
          
          
          
          
          
          min-height: 380px;
          max-height: 480px;
          position: relative;
          z-index: 2 !important;
          
          
          
          
          
          
          
        }
      }
    }
  }

  /* Right Content Column - Padding handled via Bootstrap: p-4 p-md-5 p-xl-5 */
  .about-content-col {
    background: #f4f3f1;
    position: relative;
    
    

    /* Subtle Architectural Facet Watermark in Top Right */
    .about-facet-watermark {
      position: absolute;
      top: -40px;
      right: -40px;
      width: 420px;
      height: 420px;
      background: linear-gradient(
        135deg,
        rgba(215, 210, 203, 0.45) 0%,
        rgba(244, 243, 241, 0) 70%
      );
      clip-path: polygon(45% 0%, 100% 0%, 100% 100%, 75% 100%, 0% 55%);
      pointer-events: none;
      z-index: 1;
            @media (max-width: 991.98px) {
          
          top: 0px;
            
       
          
          
          
          
          
        }
    }

    .about-content-inner {
      position: relative;
      z-index: 2;
      max-width: 820px;
    }

    .about-red-dash {
      width: 34px;
      height: 3px;
      background: #b91c1c;
      border-radius: 2px;
      display: inline-block;
    }

    .about-eyebrow {
      font-size: 0.76rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      color: var(--main-hover);
      text-transform: uppercase;
    }

    .about-headline {
      font-family: var(--font-serif);
      font-size: clamp(2.3rem, 3.4vw, 3.6rem);
      font-weight: 700;
      color: #14171a;
      letter-spacing: -0.02em;
      line-height: 1.08;
      margin-top: 14px;

      .text-main {
        color: #b91c1c;
      }
    }

    .about-subtext {
      font-size: 0.95rem;
      color: #555c63;
      line-height: 1.7;
    }

    /* Feature Items */
    .about-feature-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      transition: var(--transition-smooth);

      &:hover {
        .about-feature-icon {
          background: #f4d3d2;
          transform: scale(1.05);
        }

        .about-feature-title {
          color: #b91c1c;
        }
      }
    }

    .about-feature-icon {
      width: 48px;
      height: 48px;
      min-width: 48px;
      border-radius: 14px;
      background: #faeceb;
      color: #b91c1c;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      flex-shrink: 0;
      transition: var(--transition-smooth);
    }

    .about-feature-text {
      flex: 1;

      .about-feature-title {
        font-size: 0.98rem;
        font-weight: 700;
        color: #1a1c1e;
        transition: color 0.2s ease;
      }

      .about-feature-desc {
        font-size: 0.84rem;
        color: #6e747a;
        line-height: 1.45;
        margin: 0;
      }
    }

    /* CTA Button */
    .btn-about-story {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: var(--main-color);
      color: #ffffff;
      border: none;
      border-radius: 50px;
      padding: 13px 38px;
      font-size: 0.95rem;
      font-weight: 600;
      text-decoration: none;
      box-shadow: 0 8px 24px rgba(142, 27, 33, 0.35);
      transition: var(--transition-smooth);
      
      
      
      
      
      
      

      i {
        font-size: 0.85rem;
        transition: transform 0.3s ease;
      }

      &:hover {
        background: #6e1318;
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(142, 27, 33, 0.45);

        i {
          transform: translateX(4px);
        }
      }
    }
  }

  /* --- Bottom Slate Ribbon --- */
  .about-bottom-ribbon {
    background: #1c1a18;
    color: #ffffff;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.08);

    /* Stats Panel - padding handled via Bootstrap: p-4 p-md-5 */
    .about-stats-panel {
      position: relative;
    }

    .about-stat-col {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: relative;

      &:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 10%;
        height: 80%;
        width: 1px;
        background: rgba(255, 255, 255, 0.12);

        @media (max-width: 767.98px) {
          display: none;
        }
      }
    }

    .about-stat-icon-wrap {
      font-size: 1.4rem;
      color: rgba(255, 255, 255, 0.85);
      margin-bottom: 8px;
    }

    .about-stat-num {
      font-family: var(--font-serif);
      font-size: clamp(1.8rem, 2.3vw, 2.4rem);
      font-weight: 700;
      color: #ffffff;
      line-height: 1.1;
      margin-bottom: 4px;
    }

    .about-stat-label {
      font-size: 0.82rem;
      color: #a8a39e;
      line-height: 1.35;
      font-weight: 500;
    }

    .about-ribbon-media-panel {
      position: relative;
      overflow: hidden;
      height: 300px;

      .about-ribbon-media-wrap {
        position: relative;
        width: 100%;
        height: 100%;

        .about-ribbon-img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          object-position: center;
          display: block;
        }
      }
    }
  }
}

/* ##################################################
   #                   BRANDS                       #
   ################################################## */
.brands-section {
  background-color: #f8f9fa;
  background-image:
    radial-gradient(rgba(0, 0, 0, 0.04) 1.2px, transparent 1.2px),
    linear-gradient(180deg, #fafbfd 0%, #f3f5f8 100%);
  background-size:
    24px 24px,
    100% 100%;
  border-top: 1px solid #eaecef;
  border-bottom: 1px solid #eaecef;

  .brands-section-title {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--text-main);
  }

  .brand-slide-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    padding: 0 14px;

    opacity: 0.8;
    transition: var(--transition-smooth);

    img {
      height: 60px;
      width: auto;
      object-fit: contain;
    }

    &:hover {
      filter: grayscale(0%);
      opacity: 1;
      transform: translateY(-2px);
    }
  }

  .brands-nav-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #eaecef;
    background: #ffffff;
    color: var(--text-main);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    flex-shrink: 0;

    &:hover {
      background: var(--main-color);
      border-color: var(--main-color);
      color: #ffffff;
    }
  }
}

/* ##################################################
   #             CONTACT US (DESIGN 10 - 1:1)       #
   ################################################## */
.contact-section-exact {
  background: #f0efef;
  position: relative;
  overflow: hidden;

  /* Ambient shadows & Olive branch corner accents */
  .contact-top-shadows {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    max-height: 140px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.85;
  }

  .contact-tr-decor {
    position: absolute;
    top: 0;
    right: 0;
    width: 155px;
    max-width: 16%;
    pointer-events: none;
    z-index: 2;
    display: block;
  }

  .contact-br-decor {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 255px;
    max-width: 26%;
    pointer-events: none;
    z-index: 2;
    display: block;
  }

  /* Column 1: Fine Dining Visual Scene */
  .contact-visual-col {
    .contact-visual-wrap {
      width: 100%;
      height: 100%;

      .contact-visual-img {
        width: 100%;
        height: 800px !important;
        object-fit: cover;
      }
    }
  }

  /* Column 2: Center Contact Form */
  .contact-form-col {
    background: transparent;
    z-index: 3;

    .contact-form-inner {
      width: 100%;
      margin: 0 auto;
      position: relative;
      z-index: 3;
    }

    .contact-red-dash {
      width: 34px;
      height: 3px;
      background: #b91c1c;
      border-radius: 2px;
      display: inline-block;
    }

    .contact-eyebrow {
      font-size: 0.76rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      color: #4b5258;
      text-transform: uppercase;
    }

    .contact-headline {
      font-family: var(--font-serif);
      font-size: clamp(2.3rem, 3.2vw, 3.4rem);
      font-weight: 700;
      color: #14171a;
      letter-spacing: -0.02em;
      line-height: 1.08;
      margin-top: 12px;
      margin-bottom: 14px;

      .text-main {
        color: #b91c1c;
      }
    }

    .contact-subtext {
      font-size: 0.94rem;
      color: #555c63;
      line-height: 1.6;
      margin-bottom: 24px;
    }

    .exact-input-wrap {
      position: relative;
      display: flex;
      align-items: center;

      .exact-input-icon {
        position: absolute;
        left: 18px;
        color: #6e747a;
        font-size: 0.95rem;
        pointer-events: none;
        z-index: 2;
        transition: var(--transition-smooth);
      }

      .exact-input {
        background: #f7f6f5;
        border: 1px solid #dfdedb;
        border-radius: 12px;
        padding: 12px 18px 12px 46px;
        font-size: 0.9rem;
        color: #1a1c1e;
        transition: var(--transition-smooth);
        width: 100%;

        &:focus {
          background: #ffffff;
          border-color: #b91c1c;
          box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.12);
          outline: none;
        }

        &::placeholder {
          color: #787e85;
        }
      }

      &.select-wrap {
        .exact-select {
          appearance: none;
          -webkit-appearance: none;
          cursor: pointer;
          padding-right: 42px;
          color: #1a1c1e;

          &:invalid,
          option[value=""] {
            color: #787e85;
          }
        }

        .exact-select-arrow {
          position: absolute;
          right: 18px;
          color: #6e747a;
          font-size: 0.8rem;
          pointer-events: none;
        }
      }

      &.textarea-wrap {
        align-items: flex-start;

        .exact-input-icon {
          top: 14px;
        }

        textarea.exact-input {
          padding-top: 12px;
          resize: vertical;
          min-height: 96px;
        }
      }

      &:focus-within .exact-input-icon {
        color: #b91c1c;
      }
    }

  }

  /* Column 3: Right Contact Information */
  .contact-info-col {
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;

    border-left: 1px solid #dfdedb;
    z-index: 3;

    .contact-info-inner {
      width: 100%;
      position: relative;
      z-index: 3;
    }

    .contact-red-dash {
      width: 34px;
      height: 3px;
      background: #b91c1c;
      border-radius: 2px;
      display: inline-block;
    }

    .contact-eyebrow {
      font-size: 0.76rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      color: #4b5258;
      text-transform: uppercase;
    }

    .contact-info-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .contact-info-item {
      display: flex;
      align-items: center;
      gap: 16px;
      text-decoration: none;
      color: inherit;
      padding: 4px 0 14px 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      transition: var(--transition-smooth);

      &:last-child {
        border-bottom: none;
        padding-bottom: 0;
      }

      &:hover {
        .contact-info-arrow {
          color: #b91c1c;
          transform: translateX(4px);
        }

        .contact-info-icon {
          background: #f4d3d2;
          transform: scale(1.06);
        }

        .contact-info-title {
          color: #b91c1c;
        }
      }
    }

    .contact-info-icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: #f7dedd;
      color: #b91c1c;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
      transition: var(--transition-smooth);
    }

    .contact-info-body {
      flex: 1;

      .contact-info-title {
        font-size: 0.95rem;
        font-weight: 700;
        color: #1a1c1e;
        margin-bottom: 3px;
        line-height: 1.2;
      }

      .contact-info-desc {
        font-size: 0.84rem;
        color: #636a72;
        line-height: 1.45;
        margin: 0;

        a {
          color: inherit;
          text-decoration: none;
          transition: color 0.2s;

          &:hover {
            color: #b91c1c;
          }
        }
      }
    }

    .contact-info-arrow {
      font-size: 0.85rem;
      color: #8c939b;
      transition: var(--transition-smooth);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding-right: 4px;
      text-decoration: none;
    }

    .contact-social-icons {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .contact-social-btn {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1px solid #d4d0cb;
      background: rgba(255, 255, 255, 0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #33383f;
      font-size: 0.9rem;
      text-decoration: none;
      transition: var(--transition-smooth);

      &:hover {
        background: #b91c1c;
        border-color: #b91c1c;
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(185, 28, 28, 0.25);
      }
    }
  }
}

[dir="rtl"] .contact-section-exact {
  .contact-form-col {
    .exact-input-wrap {
      .exact-input-icon {
        left: auto;
        right: 18px;
      }

      .exact-input {
        padding: 13px 46px 13px 18px;
      }
    }

    .btn-brand:hover i {
      transform: translateX(-4px);
    }

    .contact-leaf-dec {
      left: auto;
      right: 0;
      transform: scaleX(-1);
    }
  }
}

/* ##################################################
   #                   FOOTER (DESIGN 11)           #
   ################################################## */
.footer-wrapper {
  background-color: #0c0d0e;
  color: #ffffff;

  .footer-col-divider-left {
    @media (min-width: 1200px) {
      border-left: 1px solid rgba(255, 255, 255, 0.08);
    }
  }

  .footer-brand-col {
    .footer-logo {
      max-height: 52px;
      width: auto;
      object-fit: contain;
    }

    .footer-desc {
      color: #9aa0a6;
      font-size: 0.92rem;
      line-height: 1.7;
      margin-bottom: 0;
      max-width: 320px;
    }

    .footer-red-bar {
      width: 36px;
      height: 3px;
      background: var(--main-color);
      margin: 22px 0 16px;
      border-radius: 2px;
    }

    .footer-handwritten-quote {
      font-family: "Caveat", cursive;
      font-size: 2.25rem;
      font-weight: 600;
      color: #8f959e;
      line-height: 1.15;
      letter-spacing: 0.01em;
      margin-bottom: 24px;
    }

    .footer-follow-block {
      .footer-follow-label {
        font-size: 0.74rem;
        font-weight: 800;
        letter-spacing: 0.14em;
        color: #8f949b;
        margin-bottom: 12px;
      }

      .footer-circle-social {
        width: 42px;
        height: 42px;
        border: 1px solid rgba(255, 255, 255, 0.22);
        background: transparent;
        color: #ffffff;
        font-size: 0.95rem;
        transition: var(--transition-smooth);

        &:hover {
          background: var(--main-color);
          border-color: var(--main-color);
          color: #ffffff;
          transform: translateY(-3px);
          box-shadow: 0 4px 14px rgba(var(--main-rgb), 0.4);
        }
      }
    }
  }

  .footer-col-title {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
  }

  .footer-nav-list {
    li {
      margin-bottom: 14px;

      a {
        color: #9aa0a6;
        font-size: 0.92rem;
        transition: var(--transition-smooth);
        display: inline-block;

        &:hover {
          color: #ffffff;
          transform: translateX(4px);
        }
      }
    }
  }

  .footer-branch-card {
    .branch-card-thumb-wrap {
      width: 100%;
      height: 86px;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.12);

      .branch-card-thumb,
      .branch-card-map-iframe {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border: 0;
        display: block;
        transition: transform 0.4s ease;
      }
    }

    &:hover .branch-card-thumb {
      transform: scale(1.05);
    }

    .branch-card-info {
      .branch-pin-icon {
        color: var(--main-color);
        font-size: 1.1rem;
        margin-top: 2px;
      }

      .branch-name {
        font-size: 0.92rem;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 2px;
      }

      .branch-addr {
        font-size: 0.76rem;
        color: #8c9198;
        line-height: 1.35;
      }

      .branch-action-arrow {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: #1f2124;
        color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.75rem;
        transition: var(--transition-smooth);
        flex-shrink: 0;

        &:hover {
          background: var(--main-color);
          transform: translateX(3px);
        }
      }
    }
  }

  .footer-contact-group {
    .footer-phone-stack {
      .phone-sub-list {
        margin-top: 4px;

        .phone-item {
          color: #8c9198;
          font-size: 0.88rem;
          margin-bottom: 5px;
          display: flex;
          align-items: center;
          gap: 6px;

          .bullet-dot {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.35);
            line-height: 1;
          }

          a {
            color: #9aa0a6;
            text-decoration: none;
            transition: var(--transition-smooth);

            &:hover {
              color: #ffffff;
            }
          }
        }
      }
    }

    .footer-wa-block {
      .footer-wa-icon-wrap {
        .phone-item {
          color: #8c9198;
          font-size: 0.88rem;
          margin-bottom: 5px;
          display: flex;
          align-items: center;
          gap: 6px;

          .bullet-dot {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.35);
            line-height: 1;
          }

          a {
            color: #9aa0a6;
            text-decoration: none;
            transition: var(--transition-smooth);

            &:hover {
              color: #ffffff;
            }
          }
        }
      }

      .footer-wa-pill {
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        border: 1.5px solid rgba(255, 255, 255, 0.7);
        border-radius: 50px;
        padding: 7px 18px;
        color: #ffffff;
        font-size: 0.82rem;
        font-weight: 600;
        background: transparent;
        transition: var(--transition-smooth);
        text-decoration: none;

        &:hover {
          background: #25d366;
          border-color: #25d366;
          color: #ffffff;
          transform: translateY(-2px);
          box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
        }
      }
    }

    .footer-mail-block {
      .footer-mail-icon-wrap {
        i {
          color: var(--main-color);
        }
      }

      .footer-mail-link {
        color: #9aa0a6;
        font-size: 0.88rem;
        text-decoration: none;
        transition: var(--transition-smooth);

        &:hover {
          color: #ffffff;
        }
      }
    }
  }

  .footer-hr {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 45px 0 35px;
    opacity: 1;
  }

  .footer-newsletter-wrap {
    .footer-red-bar-sm {
      width: 28px;
      height: 2.5px;
      background: var(--main-color);
      border-radius: 2px;
      display: inline-block;
    }

    .footer-newsletter-eyebrow {
      font-size: 0.74rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      color: #8c9198;
    }

    .footer-newsletter-title {
      font-family: var(--font-serif);
      font-size: 1.85rem;
      font-weight: 700;
      color: #ffffff;
      letter-spacing: -0.01em;
    }

    .newsletter-input-group {
      display: flex;
      align-items: center;
      background: #18191b;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 50px;
      padding: 4px 4px 4px 18px;
      width: 100%;
      max-width: 380px;
      transition: var(--transition-smooth);

      &:focus-within {
        border-color: var(--main-color);
        box-shadow: 0 0 0 3px rgba(var(--main-rgb), 0.15);
      }

      input {
        background: transparent;
        border: none;
        color: #ffffff;
        font-size: 0.88rem;
        flex-grow: 1;
        outline: none;

        &::placeholder {
          color: #767a80;
        }
      }

      .newsletter-btn {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: var(--main-color);
        color: #ffffff;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.85rem;
        cursor: pointer;
        transition: var(--transition-smooth);

        &:hover {
          background: var(--main-hover);
          transform: translateX(2px);
        }
      }
    }
  }

  .footer-trust-features {
    .trust-feat-item {
      .trust-feat-title {
        font-size: 0.95rem;
        font-weight: 700;
        color: #ffffff;
      }

      .trust-feat-sub {
        font-size: 0.76rem;
        color: #8c9198;
      }
    }

    .trust-feat-sep {
      width: 1px;
      height: 48px;
      background: rgba(255, 255, 255, 0.12);
    }
  }

  .footer-hr-subtle {
    border-color: rgba(255, 255, 255, 0.07);
    margin: 25px 0 20px;
    opacity: 1;
  }

  .footer-copyright {
    font-size: 0.8rem;
    color: #8c9198;
  }

  .footer-bottom-tagline {
    font-size: 0.8rem;
    color: #8c9198;

    .footer-red-bar-sm {
      width: 20px;
      height: 2.5px;
      background: var(--main-color);
      border-radius: 2px;
      display: inline-block;
    }
  }
}

[dir="rtl"] .footer-wrapper {
  .footer-col-divider-left {
    @media (min-width: 1200px) {
      border-left: none;
      border-right: 1px solid rgba(255, 255, 255, 0.08);
    }
  }

  .footer-nav-list li a:hover {
    transform: translateX(-4px);
  }

  .footer-branch-card .branch-card-info .branch-action-arrow:hover {
    transform: translateX(-3px);
  }

  .footer-newsletter-wrap .newsletter-input-group {
    padding: 4px 18px 4px 4px;

    .newsletter-btn:hover {
      transform: translateX(-2px);
    }
  }
}

.floating-contact-buttons {
  .float-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.25rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: var(--transition-smooth);

    &:hover {
      transform: scale(1.1) translateY(-2px);
      color: #ffffff;
    }
  }

  .float-whatsapp {
    background: #25d366;
  }

  .float-call {
    background: var(--main-color);
  }
}

.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark-soft);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 1000;

  &.show {
    opacity: 1;
    visibility: visible;
  }

  &:hover {
    background: var(--main-color);
    color: #ffffff;
    transform: translateY(-3px);
  }
}

/* ##################################################
   #                   PAGE HEADER                  #
   ################################################## */
.page-header {
  position: relative;
  overflow: hidden;
  padding-top: 8.5rem;
  padding-bottom: 3.5rem;
  text-align: left;
  background:
    linear-gradient(
      90deg,
      rgba(14, 15, 16, 0.88) 0%,
      rgba(14, 15, 16, 0.75) 55%,
      rgba(14, 15, 16, 0.6) 100%
    ),
    url("../images/hero/cta-table.jpg") center/cover no-repeat;
  color: #ffffff;

  &.text-center {
    text-align: left !important;
  }

  .container-fluid {
    text-align: left;
  }

  .page-header-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #e5e5e5;
    margin-bottom: 0.35rem;
    font-family: var(--font-sans);

    &::before {
      content: "";
      display: inline-block;
      width: 20px;
      height: 2px;
      background: var(--main-color);
    }
  }

  h1,
  .page-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.2vw, 2.75rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.45rem;
    line-height: 1.2;
  }

  .page-header-sub {
    display: none;
  }

  .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: flex-start !important;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 0;
    padding: 0;
    list-style: none;
    font-size: 0.86rem;

    .breadcrumb-item,
    .breadcrumb-item a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: var(--transition-smooth);
    }

    .breadcrumb-item a:hover {
      color: #ffffff;
    }

    .breadcrumb-item.active {
      color: rgba(255, 255, 255, 0.95);
      font-weight: 500;
    }

    .breadcrumb-item + .breadcrumb-item::before {
      content: ">";
      color: rgba(255, 255, 255, 0.45);
      font-size: 0.75rem;
      padding-right: 8px;
      padding-left: 0;
    }
  }
}

/* ##################################################
   #                   BRANCHES MAPS                #
   ################################################## */
.branches-maps-section {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;

  .branch-map-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    transition: var(--transition-smooth);

    &:hover {
      box-shadow: 0 18px 40px rgba(17, 18, 19, 0.1);
      transform: translateY(-4px);
    }
  }

  .branch-map-frame {
    position: relative;
    height: 280px;
    overflow: hidden;

    iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
      filter: grayscale(0.15) contrast(1.05);
    }
  }

  .branch-map-body {
    padding: 1.75rem 1.75rem 1.9rem;
  }

  .branch-map-title {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    margin-bottom: 0.35rem;
  }

  .branch-map-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--main-color);
    margin-bottom: 0.85rem;
  }

  .branch-map-text {
    color: var(--text-body);
    font-size: 0.98rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
  }

  .branch-map-meta {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-bottom: 1.35rem;

    span {
      display: flex;
      align-items: flex-start;
      gap: 0.65rem;
      color: var(--text-body);
      font-size: 0.92rem;

      i {
        color: var(--main-color);
        margin-top: 0.2rem;
      }
    }
  }
}

/* ##################################################
   #             EXACT PRODUCT DETAILS DESIGN       #
   ################################################## */
.pd-hero-exact {
  position: relative;
  overflow: hidden;
  padding-top: 8.5rem;
  padding-bottom: 3.5rem;
  background:
    linear-gradient(
      90deg,
      rgba(14, 15, 16, 0.88) 0%,
      rgba(14, 15, 16, 0.75) 55%,
      rgba(14, 15, 16, 0.6) 100%
    ),
    url("../images/hero/cta-table.jpg") center/cover no-repeat;
  color: #ffffff;

  .pd-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #e5e5e5;
    margin-bottom: 0.35rem;
  }

  .pd-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.2vw, 2.75rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.45rem;
  }

  @media (max-width: 575.98px) {
    padding-top: 7rem;
    padding-bottom: 2.5rem;
  }
}

.pd-red-dash {
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--main-color);
  vertical-align: middle;
  margin-right: 8px;
}

.pd-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;

  a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-smooth);

    &:hover {
      color: #ffffff;
    }
  }

  .sep {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
  }

  .current {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
  }
}

.pd-section-exact {
  background: #ffffff;
}

.pd-exact-gallery {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;

  @media (max-width: 991.98px) {
    flex-direction: column-reverse;
  }
}

.pd-exact-thumbs {
  width: 72px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;

  @media (max-width: 991.98px) {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 6px;
  }
}

.pd-thumb-btn {
  width: 68px;
  height: 68px;
  border-radius: 8px;
  border: 1.5px solid #e5e7eb;
  background: #ffffff;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
  }

  &.is-product img {
    object-fit: contain;
    padding: 6px;
  }

  &:hover,
  &.active {
    border-color: var(--main-color);
  }

  &.active {
    box-shadow: 0 0 0 1px var(--main-color);
  }
}

.pd-thumbs-down-arrow {
  text-align: center;
  color: #9ca3af;
  font-size: 0.8rem;
  padding: 2px 0;
  cursor: pointer;
  transition: color 0.2s ease;

  &:hover {
    color: var(--main-color);
  }

  @media (max-width: 991.98px) {
    display: none;
  }
}

.pd-exact-main-box {
  flex: 1;
  position: relative;
  background: #f7f7f8;
  border-radius: 14px;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.25rem;
  border: 1px solid #f0f0f2;

  img {
    max-width: 92%;
    max-height: 360px;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.25s ease;
    cursor: zoom-in;
  }

  @media (max-width: 991.98px) {
    width: 100%;
    min-height: 320px;
    padding: 1.5rem;

    img {
      max-height: 260px;
    }
  }
}

.pd-exact-img-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  cursor: zoom-in;
}

.pd-exact-zoom-btn {
  position: absolute;
  bottom: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4b5563;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;

  &:hover {
    background: var(--main-color);
    color: #ffffff;
    border-color: var(--main-color);
    transform: scale(1.06);
  }
}

.pd-exact-info {
  padding-left: 0.5rem;
}

.pd-dash-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--main-color);
  margin-bottom: 0.35rem;
}

.pd-exact-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 700;
  color: #111213;
  margin-bottom: 0.3rem;
  line-height: 1.2;
}

.pd-exact-subtitle {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1f2224;
  margin-bottom: 0.85rem;
}

.pd-exact-desc {
  color: #555b62;
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 1.4rem;
}

.pd-option-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #181a1b;
  margin-bottom: 0.65rem;
}

.pd-sizes-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1.35rem;
}

.pd-size-pill {
  min-width: 62px;
  padding: 6px 14px;
  border: 1.2px solid #e2e4e8;
  border-radius: 6px;
  background: #ffffff;
  color: #374151;
  font-size: 0.86rem;
  font-weight: 500;
  cursor: default;
  user-select: none;
  text-align: center;
  display: inline-block;

  &.active {
    border-color: var(--main-color);
    color: var(--main-color);
    font-weight: 600;
  }
}

.pd-colors-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 1.85rem;

  @media (max-width: 575.98px) {
    gap: 12px;
  }
}

.pd-color-choice {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: default;
  user-select: none;
  background: transparent;
  border: none;
  padding: 0;

  .pd-color-dot {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid #d1d5db;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
  }

  .pd-color-label {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
    transition: color 0.2s ease;
  }

  &.active {
    .pd-color-dot {
      outline: 2px solid var(--main-color);
      outline-offset: 2px;
    }

    .pd-color-label {
      color: var(--main-color);
      font-weight: 700;
    }
  }
}

.pd-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  border-top: 1px solid #f0f0f2;
  padding-top: 1.5rem;
  text-align: center;

  @media (max-width: 991.98px) {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  @media (max-width: 575.98px) {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

.pd-feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.pd-feature-icon {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;

  svg {
    width: 26px;
    height: 26px;
  }
}

.pd-feature-text {
  font-size: 0.78rem;
  font-weight: 600;
  color: #2d3135;
  line-height: 1.35;
}

.pd-section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 2.6vw, 2.3rem);
  font-weight: 700;
  color: #111213;
  margin-bottom: 1rem;
}

.pd-overview-img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  max-height: 420px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.06);
}

.pd-overview-check-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;

  li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    color: #374151;
    padding: 0.45rem 0;

    i {
      color: var(--main-color);
      font-size: 1.1rem;
      flex-shrink: 0;
    }
  }
}

.pd-specs-table-exact {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e9ecef;
  margin-top: 0.5rem;

  tr {
    border-bottom: 1px solid #e9ecef;

    &:last-child {
      border-bottom: 0;
    }
  }

  th,
  td {
    padding: 0.8rem 1.15rem;
    font-size: 0.88rem;
    vertical-align: middle;
  }

  th {
    width: 34%;
    font-weight: 600;
    color: #1f2224;
    background: #fafbfc;
    border-right: 1px solid #e9ecef;
  }

  td {
    color: #555b62;
  }

  @media (max-width: 575.98px) {
    th {
      width: 40%;
      font-size: 0.82rem;
      padding: 0.7rem 0.8rem;
    }

    td {
      font-size: 0.82rem;
      padding: 0.7rem 0.8rem;
    }
  }
}

.pd-stack-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.06);
}

.pd-nav-arrows {
  display: flex;
  gap: 8px;
}

.pd-nav-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1.5px solid #e5e7eb;
  background: #ffffff;
  color: #374151;
  font-size: 0.8rem;

  &.active,
  &.btn-primary-arrow {
    background: var(--main-color);
    color: #ffffff;
    border-color: var(--main-color);

    &:hover {
      background: var(--main-hover);
      color: #ffffff;
    }
  }

  &:hover {
    border-color: var(--main-color);
    color: var(--main-color);
  }

  &.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
  }
}

.pd-related-card {
  background: #ffffff;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  padding: 1.5rem 1.25rem 1.25rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;

  &:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);

    .pd-related-img-wrap img {
      transform: scale(1.05);
    }

    .pd-related-link {
      color: var(--main-color);

      i {
        transform: translateX(3px);
      }
    }
  }

  .pd-related-img-wrap {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;

    img {
      max-height: 140px;
      max-width: 100%;
      object-fit: contain;
      transition: transform 0.3s ease;
    }
  }

  .pd-related-name {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: #111213;
    margin-bottom: 0.5rem;
  }

  .pd-related-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 0.85rem;
  }

  .pd-related-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  }

  .pd-related-link {
    margin-top: auto;
    font-size: 0.84rem;
    font-weight: 600;
    color: #374151;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;

    i {
      color: var(--main-color);
      font-size: 0.75rem;
      transition: transform 0.2s ease;
    }
  }
}

.pd-cta-banner-exact {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  padding: 3.5rem 3rem;
  background:
    linear-gradient(
      90deg,
      rgba(14, 15, 16, 0.94) 0%,
      rgba(14, 15, 16, 0.82) 48%,
      rgba(14, 15, 16, 0.3) 100%
    ),
    url("../images/hero/cta-table.jpg") center/cover no-repeat;
  color: #ffffff;

  @media (max-width: 991.98px) {
    padding: 2.5rem 1.75rem;
  }
}

.pd-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 2.8vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 0.65rem;
}

.pd-cta-desc {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  max-width: 520px;
  margin-bottom: 1.6rem;
}

.btn-cta-quote-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #b82e2e 0%, #8e1c22 100%);
  color: #ffffff;
  padding: 11px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: 0 4px 18px rgba(184, 46, 46, 0.35);
  transition: var(--transition-smooth);

  &:hover {
    background: linear-gradient(135deg, #d33535 0%, #a71e25 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(184, 46, 46, 0.45);
  }
}

.fancybox__container {
  --fancybox-bg: rgba(14, 15, 16, 0.94);
  --fancybox-color: #ffffff;
  --fancybox-accent-color: var(--main-color);
  z-index: 10000;
}

.fancybox__toolbar {
  padding: 12px 18px;

  .f-button {
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: all 0.2s ease;

    &:hover {
      background: var(--main-color);
      color: #ffffff;
    }
  }
}

.fancybox__nav {
  .f-button {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.25s ease;

    &:hover {
      background: var(--main-color);
    }
  }
}

.fancybox__thumbs {
  .f-thumbs__slide.is-selected {
    border-color: var(--main-color) !important;
  }
}

.product-card-link {
  display: block;
  color: inherit;
  height: 100%;

  &:hover .product-card {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(17, 18, 19, 0.08);
  }
}

.env-card {
  position: relative;
  display: block;
  height: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;

  .env-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
  }

  .env-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(17, 18, 19, 0.15) 0%,
      rgba(17, 18, 19, 0.82) 100%
    );
  }

  .env-card-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.75rem;
    z-index: 2;
  }

  .env-card-title {
    color: #ffffff;
    font-size: 1.55rem;
    margin-bottom: 0.4rem;
  }

  &:hover .env-card-bg {
    transform: scale(1.06);
  }
}

.inner-cta-band {
  background: linear-gradient(
    110deg,
    var(--dark-theme) 0%,
    #1f2224 55%,
    rgba(167, 30, 37, 0.85) 100%
  );
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;

  h3 {
    color: #ffffff;
  }

  p {
    color: rgba(255, 255, 255, 0.78);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }
}

.max-w-700 {
  max-width: 700px;
}

.product-details-section {
  @media (max-width: 991.98px) {
    .pd-main-image {
      min-height: 320px;
      padding: 1.75rem;

      img {
        max-height: 260px;
      }
    }

    .pd-info {
      max-width: none;
    }
  }

  @media (max-width: 575.98px) {
    .pd-meta-grid {
      grid-template-columns: 1fr;
    }
  }
}

/* ==================================================
   #       PRODUCTS CATALOG & FILTER SIDEBAR EXACT   #
   ================================================== */
.products-catalog-section {
  background: #ffffff;
  padding: 3rem 0 5rem;
}

.products-sidebar {
  background: #ffffff;
  border-right: 1px solid #f0f2f5;
  padding-right: 1.5rem;

  .product-category-pills {
    flex-direction: column;
    gap: 6px;
    margin-bottom: 0;

    .nav-link {
      border-radius: 8px;
      text-align: start;
      padding: 8px 14px;
      font-size: 0.86rem;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
  }

  @media (max-width: 991.98px) {
    border-right: none;
    border-bottom: 1px solid #f0f2f5;
    padding-right: 0;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.filter-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--main-color);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 1.6rem;

  i {
    font-size: 1.05rem;
  }
}

.filter-group {
  margin-bottom: 1.4rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #f0f2f5;

  &:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  &.is-collapsed {
    .filter-chevron {
      transform: rotate(-90deg);
    }

    .filter-options-list {
      display: none;
    }
  }
}

.filter-group-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.92rem;
  font-weight: 700;
  color: #1f2224;
  margin-bottom: 0.85rem;
  cursor: pointer;
}

.filter-chevron {
  color: var(--main-color);
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

.filter-options-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.filter-checkbox-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.86rem;
  color: #4b5563;
  cursor: pointer;
  user-select: none;
  margin: 0;

  input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--main-color);
    border-radius: 4px;
    cursor: pointer;
    margin: 0;
  }

  &:hover {
    color: var(--main-color);
  }
}

.filter-color-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: #4b5563;
  cursor: pointer;

  &:hover {
    color: var(--main-color);
  }
}

.filter-color-circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #d1d5db;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.product-category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-bottom: none;
  margin-bottom: 1.5rem;

  .nav-item {
    margin: 0;
  }

  .nav-link {
    border: 1.2px solid #e5e7eb;
    border-radius: 50px;
    padding: 7px 20px;
    color: #4b5563;
    font-weight: 600;
    font-size: 0.86rem;
    background: #ffffff;
    transition: all 0.25s ease;
    cursor: pointer;

    &:hover {
      border-color: var(--main-color);
      color: var(--main-color);
    }

    &.active {
      background: var(--main-color);
      color: #ffffff;
      border-color: var(--main-color);
      box-shadow: 0 4px 12px rgba(167, 30, 37, 0.25);
    }
  }
}

.catalog-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 1.35rem;
  padding-bottom: 0.5rem;
}

.catalog-count-text {
  font-size: 0.88rem;
  color: #6b7280;
  font-weight: 500;
}

.catalog-sort-select {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 0.84rem;
  color: #374151;
  background: #ffffff;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s ease;

  &:focus {
    border-color: var(--main-color);
  }
}

.catalog-product-card {
  background: #ffffff;
  border: 1px solid #ebecef;
  border-radius: 12px;
  padding: 1.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;

  &:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    border-color: #d1d5db;

    .catalog-img-wrap img {
      transform: scale(1.05);
    }
  }

  .catalog-img-wrap {
    height: 155px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;

    img {
      max-height: 140px;
      max-width: 100%;
      object-fit: contain;
      transition: transform 0.3s ease;
    }
  }

  .catalog-product-name {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: #111213;
    margin-bottom: 0.2rem;
  }

  .catalog-product-subtitle {
    font-size: 0.78rem;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 0.55rem;
  }
}

.catalog-sizes-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 0.75rem;
}

.catalog-size-pill {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  padding: 2px 7px;
  font-size: 0.72rem;
  color: #4b5563;
  font-weight: 500;
}

.catalog-dots-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0.85rem;
}

.catalog-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.catalog-card-link {
  margin-top: auto;
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #1f2937;
  text-decoration: none;
  padding: 4px 0;
  position: relative;
  transition: color 0.25s ease, gap 0.25s ease;

  span {
    position: relative;
    padding-bottom: 2px;
    transition: color 0.25s ease;

    &::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 1.5px;
      background: var(--main-color);
      transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
  }

  i {
    font-size: 0.76rem;
    color: var(--main-color);
    transition: transform 0.25s ease;
  }

  &:hover {
    color: var(--main-color);
    gap: 10px;

    span {
      color: var(--main-color);

      &::after {
        width: 100%;
      }
    }

    i {
      transform: translateX(3px);
    }
  }
}

.catalog-product-card:hover .catalog-card-link {
  color: var(--main-color);
  gap: 10px;

  span {
    color: var(--main-color);

    &::after {
      width: 100%;
    }
  }

  i {
    transform: translateX(3px);
  }
}

[dir="rtl"] .catalog-card-link:hover i,
[dir="rtl"] .catalog-product-card:hover .catalog-card-link i {
  transform: translateX(-3px);
}

.catalog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 3rem;
}

.page-circle-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.2px solid #e5e7eb;
  background: #ffffff;
  color: #374151;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;

  &:hover:not(.is-disabled):not(.active) {
    border-color: var(--main-color);
    color: var(--main-color);
  }

  &.active {
    background: var(--main-color);
    color: #ffffff;
    border-color: var(--main-color);
    box-shadow: 0 3px 10px rgba(167, 30, 37, 0.28);
  }

  &.is-disabled {
    opacity: 0.45;
    cursor: default;
    pointer-events: none;
  }
}

/* ==================================================
   #       ENHANCED CATEGORY DETAILS SECTION         #
   ================================================== */
.cat-hero-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
  height: 100%;
  min-height: 380px;

  img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
  }

  &:hover img {
    transform: scale(1.04);
  }

  &::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 40%, rgba(14, 15, 16, 0.72) 100%);
  }
}

.cat-hero-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--main-color);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  z-index: 3;
}

.cat-hero-number {
  position: absolute;
  left: 1.5rem;
  bottom: 1.25rem;
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  z-index: 3;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

.cat-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 1.35rem 0;

  @media (max-width: 575.98px) {
    grid-template-columns: 1fr;
  }
}

.cat-feature-item {
  background: #f9fafb;
  border: 1px solid #f0f2f5;
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: border-color 0.2s ease, background 0.2s ease;

  &:hover {
    border-color: #e2e4e8;
    background: #ffffff;
  }

  i {
    color: var(--main-color);
    font-size: 0.82rem;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--main-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  span {
    font-size: 0.86rem;
    font-weight: 600;
    color: #2d3135;
  }
}

.cat-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 1.6rem;
  padding-bottom: 1.4rem;
}

.cat-stat-num {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 700;
  color: #111213;
  line-height: 1;
  margin-bottom: 4px;
}

.cat-stat-label {
  font-size: 0.75rem;
  color: #71777d;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cat-subnav-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.8rem;

  .nav-link {
    border: 1.2px solid #e5e7eb;
    border-radius: 50px;
    padding: 6px 18px;
    color: #4b5563;
    font-weight: 600;
    font-size: 0.85rem;
    background: #ffffff;
    transition: all 0.2s ease;
    cursor: pointer;

    &:hover {
      border-color: var(--main-color);
      color: var(--main-color);
    }

    &.active {
      background: var(--main-color);
      color: #ffffff;
      border-color: var(--main-color);
      box-shadow: 0 4px 12px rgba(167, 30, 37, 0.22);
    }
  }
}

/* ##################################################
   #             VISION & MISSION SECTIONS          #
   ################################################## */
.vision-section {
  background: #ffffff;
  position: relative;
  border-top: 1px solid #f0f0f2;
}

.mission-section {
  background: #fafafa;
  position: relative;
  border-top: 1px solid #f0f0f2;
}

.about-images {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);

  &:hover .about-image img {
    transform: scale(1.04);
  }
}

.about-image {
  overflow: hidden;
  border-radius: 20px;

  img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  }
}

.header-section {
  h2 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--main-color);
    margin-bottom: 0.65rem;
    font-family: var(--font-sans);

    &::before {
      content: "";
      display: inline-block;
      width: 20px;
      height: 2px;
      background: var(--main-color);
    }
  }

  h3 {
    font-family: var(--font-serif);
    font-size: clamp(1.85rem, 2.8vw, 2.45rem);
    font-weight: 700;
    color: #111213;
    line-height: 1.25;
    margin-bottom: 1.2rem;
  }

  ul li {
    display: flex;
    align-items: flex-start;
    font-size: 0.98rem;
    color: #374151;

    i {
      color: var(--main-color);
      font-size: 1rem;
      margin-top: 5px;
    }
  }

  p {
    color: #4b5563;
    line-height: 1.85;
    font-size: 0.98rem;
    margin-top: 1.25rem;
  }
}

/* ==================================================
   #          PRODUCTS MOBILE FILTER OFFCANVAS       #
   ================================================== */
.btn-filter-mobile {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1.5px solid #e5e7eb;
  color: #1f2937;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 7px 15px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
  cursor: pointer;

  i {
    color: var(--main-color);
    font-size: 0.95rem;
  }

  &:hover,
  &:focus {
    background: #fdf2f2;
    border-color: var(--main-color);
    color: var(--main-color);
  }
}

.products-filter-offcanvas {
  @media (max-width: 991.98px) {
    &.offcanvas-start {
      position: fixed !important;
      top: 0 !important;
      bottom: 0 !important;
      left: 0 !important;
      width: 320px !important;
      max-width: 86vw !important;
      background: #ffffff;
      z-index: 1050 !important;
      transform: translateX(-100%);
      visibility: hidden;
      transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out;

      &.show {
        transform: none !important;
        visibility: visible !important;
      }
    }

    .offcanvas-header {
      border-bottom: 1px solid #f0f2f5;
      padding: 1.15rem 1.25rem;
      background: #ffffff;
    }

    .offcanvas-title {
      font-size: 1.1rem;
      font-weight: 700;
      color: #111213;
    }

    .offcanvas-body {
      padding: 1.25rem;
      overflow-y: auto;
      flex-grow: 1;
      -webkit-overflow-scrolling: touch;
    }

    .products-sidebar {
      border-right: none !important;
      border-bottom: none !important;
      padding: 0 !important;
      margin: 0 !important;
    }

    .offcanvas-footer {
      padding: 1rem 1.25rem;
      border-top: 1px solid #f0f2f5;
      background: #ffffff;

      .btn-primary {
        background: var(--main-color);
        border-color: var(--main-color);
        font-weight: 600;
        border-radius: 50px;
        padding: 10px;
      }
    }
  }
}

.related-products-swiper {
  overflow: hidden;
  padding: 6px 2px 14px;

  .swiper-slide {
    height: auto;
    display: flex;
  }

  .catalog-product-card {
    width: 100%;
    height: 100%;
    margin-bottom: 0;
  }
}
