/* =========================================================
   CUSTOM LE — MAIN STYLESHEET
   Theme: White · Black · Red sportswear manufacturer site
   (Same class names as the old black & gold stylesheet, so
   about.php / services.php / products.php / portfolio.php /
   contact.php / faqs.php etc. keep working unchanged.)
   ========================================================= */

:root {
  --cl-white: #ffffff;
  --cl-off: #f7f5f2;
  /* card / alt-section background   (was --cl-black-2) */
  --cl-off-2: #efebe6;
  /* hover / deeper alt background   (was --cl-black-3) */
  --cl-ink: #15120e;
  /* near-black — text AND dark accent blocks */
  --cl-gold: #d71920;
  /* kept the variable name "gold" so nothing else breaks — it is red now */
  --cl-gold-light: #e6484e;
  --cl-gold-dark: #a30f16;
  --cl-gray: #58524c;
  --cl-gray-dark: #8a847d;
  --cl-muted-inv: #c9c3bc;
  /* muted text on dark accent blocks (footer/top-bar/trusted-strip) */
  --cl-border: #cdc5bc;
  --cl-radius: 6px;
  --cl-font-head: 'Poppins', sans-serif;
  --cl-font-body: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  background-color: var(--cl-white);
  color: var(--cl-gray);
  font-family: var(--cl-font-body);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--cl-font-head);
  font-weight: 700;
  color: var(--cl-ink);
}

a {
  text-decoration: none;
  transition: all .25s ease;
}

img {
  max-width: 100%;
}

.text-gold {
  color: var(--cl-gold) !important;
}

.bg-black {
  background-color: var(--cl-ink) !important;
}

.bg-black-2 {
  background-color: var(--cl-off) !important;
}

.bg-black-3 {
  background-color: var(--cl-off-2) !important;
}

.border-gold {
  border-color: var(--cl-gold) !important;
}

.section-pad {
  padding: 30px 0;
}

.section-pad-sm {
  padding: 20px 0;
}

/* -------- Buttons -------- */
.btn-gold {
  background-color: var(--cl-gold);
  color: #ffffff;
  border: 1px solid var(--cl-gold);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--cl-radius);
  letter-spacing: .5px;
  text-transform: uppercase;
  font-size: .85rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-gold:hover {
  background-color: var(--cl-gold-dark);
  color: #ffffff;
  border-color: var(--cl-gold-dark);
}


.btn-outline-gold {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  background: var(--cl-gold);
  color: #fff;
  border: 2px solid var(--cl-gold);
  font-weight: 700;
  padding: 13px 35px;
  letter-spacing: .8px;
  text-transform: uppercase;
  font-size: .85rem;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  clip-path: polygon(22px 0,
      100% 0,
      calc(100% - 22px) 100%,
      0 100%);

  transition: transform 0.3s ease;
}













/* =========================================
   PARALLEL SECTION
========================================= */

.parallel-section {
  position: relative;
  width: 100%;
  min-height: 650px;

  background-image: url('../images/bg-banner.jpeg');
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;

  overflow: hidden;
}


/* =========================================
   DARK OVERLAY
   LEFT = IMAGE
   RIGHT = DARK CONTENT AREA
========================================= */

.parallel-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(90deg,
      rgba(0, 0, 0, 0.05) 0%,
      rgba(0, 0, 0, 0.08) 35%,
      rgba(0, 0, 0, 0.30) 55%,
      rgba(5, 5, 5, 0.72) 72%,
      rgba(5, 5, 5, 0.91) 100%);
}


/* =========================================
   CONTENT
========================================= */

.parallel-section .container-fluid {
  position: relative;
  z-index: 2;
}

.parallel-content {
  padding: 85px 55px 80px 35px;
}


/* =========================================
   EYEBROW
========================================= */

.parallel-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;

  margin-bottom: 20px;

  color: #fff;

  font-size: 14px;
  font-weight: 600;

  letter-spacing: 2px;
  text-transform: uppercase;
}

.parallel-eyebrow::before {
  content: "";

  width: 35px;
  height: 2px;

  background: #d71920;
}

.parallel-eyebrow span {
  color: #d71920;
}


/* =========================================
   TITLE
========================================= */

.parallel-title {
  margin: 0;

  color: #fff;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(3rem, 4.5vw, 5rem);
  font-weight: 400;

  line-height: 1.02;
  letter-spacing: -2px;
}

.parallel-title span {
  color: #d71920;
}


/* =========================================
   INTRO
========================================= */

.parallel-intro {
  max-width: 520px;

  margin: 28px 0 0;

  color: rgba(255, 255, 255, 0.78);

  font-size: 16px;
  line-height: 1.8;
}


/* =========================================
   DIVIDER
========================================= */

.parallel-divider {
  width: 55px;
  height: 2px;

  margin: 28px 0;

  background: #d71920;
}


/* =========================================
   FEATURES
========================================= */

.parallel-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.parallel-feature {
  display: flex;
  align-items: center;
  gap: 15px;
}

.parallel-icon {
  width: 45px;
  height: 45px;
  min-width: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #d71920;

  background: rgba(215, 25, 32, 0.10);

  border: 1px solid rgba(215, 25, 32, 0.35);

  border-radius: 50%;

  font-size: 16px;
}

.parallel-feature h5 {
  margin: 0 0 4px;

  color: #fff;

  font-size: 15px;
  font-weight: 700;
}

.parallel-feature p {
  margin: 0;

  color: rgba(255, 255, 255, 0.55);

  font-size: 12px;
  line-height: 1.5;
}


/* =========================================
   BUTTON
========================================= */

.parallel-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  margin-top: 35px;

  padding: 13px 24px;

  color: #fff;

  background: transparent;

  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 3px;

  text-decoration: none;

  font-size: 13px;
  font-weight: 600;

  letter-spacing: 0.5px;

  transition: all 0.3s ease;
}

.parallel-btn i {
  transition: transform 0.3s ease;
}

.parallel-btn:hover {
  color: #fff;

  background: #d71920;
  border-color: #d71920;
}

.parallel-btn:hover i {
  transform: translateX(5px);
}


/* =========================================
   DESKTOP
========================================= */

@media (min-width: 992px) {

  .parallel-content {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    padding-left: 45px;

  }



}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

  .parallel-section {
    min-height: 700px;

  }

  .parallel-overlay {
    background:
      linear-gradient(90deg,
        rgba(0, 0, 0, 0.30) 0%,
        rgba(0, 0, 0, 0.70) 55%,
        rgba(0, 0, 0, 0.92) 100%);
  }

  .parallel-content {
    display: none;
  }

  .parallel-title {
    font-size: 3.2rem;
  }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

  .parallel-section {
    min-height: 230px;

    background-position: 55% center;
  }

  .parallel-overlay {
    background:
      linear-gradient(180deg,
        rgba(0, 0, 0, 0.10) 0%,
        rgba(0, 0, 0, 0.65) 42%,
        rgba(0, 0, 0, 0.96) 100%);
  }

  .parallel-content {
    display: none;
  }

  .parallel-title {
    font-size: 2.65rem;
    letter-spacing: -1px;
  }

  .parallel-intro {
    font-size: 14px;
    line-height: 1.7;
  }

  .parallel-feature p {
    font-size: 11px;
  }

  .parallel-btn {
    margin-top: 28px;
  }
}
















.client-logo {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo img {
  width: 100%;
  max-width: 180px;
  height: 80px;
  object-fit: contain;
  display: block;
}

/* Mobile */
@media (max-width: 767px) {
  .client-logo img {
    max-width: 150px;
    height: 75px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .client-logo img {
    max-width: 150px;
    height: 65px;
  }
}


/* Mobile */
@media (max-width: 767px) {
  .stat-item {
    padding: 0 5px;
  }

  .stat-item h3 {
    font-size: 1.1rem;
    margin-bottom: 3px;
  }

  .stat-item>span {
    font-size: 0.65rem;
    line-height: 1.2;
    display: block;
  }

  .stat-item h3 .fa-star {
    font-size: 0.65rem !important;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .stat-item {
    padding: 0 3px;
  }

  .stat-item h3 {
    font-size: 0.95rem;
  }

  .stat-item>span {
    font-size: 0.58rem;
  }

  .stat-item h3 .fa-star {
    font-size: 0.55rem !important;
  }
}






/* Shine */
.btn-outline-gold::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 45%;
  height: 100%;

  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.55),
      transparent);

  transform: skewX(-20deg);
  transition: none;

  z-index: 1;
  pointer-events: none;
}

/* Right → Left shine */
.btn-outline-gold:hover::before {
  left: 130%;
  transition: left 0.8s ease;
}

.btn-outline-gold:hover {
  background-color: var(--cl-gold);
  color: #ffffff;
}

/* -------- Section Titles -------- */
.section-title {
  text-align: center;
  margin-bottom: 45px;
}

.section-title .eyebrow {
  color: var(--cl-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .8rem;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.section-title h2 {
  font-size: 2.1rem;
  text-transform: uppercase;
  margin: 0;
}

.section-title p {
  color: var(--cl-gray);
  max-width: 620px;
  margin: 14px auto 0;
}

/* =========================================================
   TOP BAR — kept as a black accent strip, not the site theme
   ========================================================= */
.top-bar {
  background: var(--cl-ink);
  font-size: .78rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--cl-gold);
  color: var(--cl-muted-inv);
}

.top-bar i {
  color: var(--cl-gold);
  margin-right: 6px;
}

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar-custom {
  background-color: var(--cl-white);
  padding: 0;
  border-bottom: 1px solid var(--cl-border);
}

.navbar-custom .navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-custom .logo-img {
  width: 190px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.navbar-custom .logo-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Mobile */
@media (max-width: 767px) {
  .navbar-custom .logo-img {
    width: 130px;
  }
}

.navbar-custom .logo-icon {
  width: 46px;
  height: 46px;
  border: 2px solid var(--cl-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--cl-font-head);
  font-weight: 700;
  color: var(--cl-gold);
  font-size: 1.1rem;
}

.navbar-custom .brand-text {
  line-height: 1.1;
}

.navbar-custom .brand-text strong {
  font-family: var(--cl-font-head);
  color: var(--cl-ink);
  font-size: 1.25rem;
  display: block;
  letter-spacing: 1px;
}

.navbar-custom .brand-text span {
  color: var(--cl-gray-dark);
  font-size: .62rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.navbar-custom .nav-link {
  color: var(--cl-ink) !important;
  font-weight: 500;
  font-size: .82rem;
  margin: 0 4px;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.navbar-custom .nav-link.active,
.navbar-custom .nav-link:hover {
  color: var(--cl-gold) !important;
}

.navbar-custom .dropdown-menu {
  background-color: var(--cl-white);
  border: 1px solid var(--cl-border);
  border-radius: 0 !important;
  box-shadow: 0 14px 30px rgba(21, 18, 14, .10);
  transition: opacity .2s ease;
}

.navbar-custom .dropdown-item {
  color: var(--cl-gray);
  font-size: .86rem;
  padding: .5rem 1.2rem;
}

.navbar-custom .dropdown-item:hover {
  background: var(--cl-off);
  color: var(--cl-gold);
}

.navbar-custom .cart-icon {
  position: relative;
  color: var(--cl-ink);
  font-size: 1.2rem;
}

.navbar-custom .cart-icon .badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--cl-gold);
  color: #fff;
  font-size: .6rem;
  padding: 3px 6px;
  border-radius: 50%;
}

/* Multi-level category dropdown (used by header.php's category tree) */
.dropdown-submenu {
  position: relative;
  border-radius: 0 !important;
}

.dropdown-submenu>.dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
  display: none;
}

.dropdown-submenu:hover>.dropdown-menu {
  display: block;
}

.dropdown-submenu>a.dropdown-toggle::after {
  transform: rotate(-90deg);
  margin-left: 8px;
}

@media (min-width: 992px) {
  .navbar-custom .nav-item.dropdown:hover>.dropdown-menu {
    display: block;
    margin-top: 0;
  }

  .navbar-custom .nav-item.dropdown:hover>.nav-link {
    color: var(--cl-gold);
  }
}

@media (max-width: 991.98px) {
  .dropdown-submenu>.dropdown-menu {
    position: static !important;
    display: none;
    left: 0;
    margin-top: 0;
    border: none;
    box-shadow: none;
    padding-left: 1rem;
  }

  .dropdown-submenu.show>.dropdown-menu {
    display: block;
  }
}

/* Flash alerts */
.alert {
  border-radius: 0;
  border-left: 4px solid;
}

.alert-success {
  border-color: var(--cl-gold);
  background: var(--cl-off);
  color: var(--cl-ink);
}

.alert-danger {
  border-color: var(--cl-ink);
  background: var(--cl-off);
  color: var(--cl-ink);
}

/* =========================================================
   FULL WIDTH HERO — kept dark/photographic (a photo overlay,
   not the site's background theme) so hero copy stays legible.
   ========================================================= */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-slider,
.hero-slider .owl-stage-outer,
.hero-slider .owl-stage,
.hero-slider .owl-item {
  width: 100%;
}

.hero-slide {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--cl-ink);
}

/* .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(21, 18, 14, .90) 0%,
      rgba(21, 18, 14, .74) 38%,
      rgba(21, 18, 14, .40) 70%,
      rgba(21, 18, 14, .18) 100%);
} */

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 110px 0 130px;
}

.hero-content .eyebrow {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--cl-gold-light);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-content h1 {
  margin: 0 0 25px;
  color: #fff;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.hero-content h1 span {
  color: var(--cl-gold-light);
}

.hero-content p {
  max-width: 650px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions .btn {
  min-height: 52px;
  padding: 14px 25px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.hero-actions .btn-gold {
  background: var(--cl-gold);
  border: 1px solid var(--cl-gold);
  color: #fff;
}

.hero-actions .btn-gold:hover {
  background: #fff;
  border-color: #fff;
  color: var(--cl-ink);
}

.hero-actions .btn-outline-gold {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .7);
  color: #fff;
}

.hero-actions .btn-outline-gold:hover {
  background: var(--cl-gold);
  border-color: var(--cl-gold);
  color: #fff;
}

.hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 45px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.hero-meta div {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-right: 28px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.hero-meta i {
  color: var(--cl-gold-light);
  font-size: 16px;
}

/* Hero owl nav — prev/next on the edges, dots centered at bottom */
.hero .hero-slider .owl-nav {
  position: absolute !important;
  top: 50% !important;
  left: 0 !important;
  right: 0 !important;
  bottom: auto !important;
  transform: translateY(-50%) !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 0 30px;
  z-index: 5;
  pointer-events: none;
}

.hero .hero-slider .owl-nav button.owl-prev,
.hero .hero-slider .owl-nav button.owl-next {
  position: static !important;
  pointer-events: auto;
  width: 46px !important;
  height: 46px !important;
  margin: 0 !important;
  border: 1px solid rgba(255, 255, 255, .5) !important;
  border-radius: 50% !important;
  background: rgba(0, 0, 0, .35) !important;
  color: #fff !important;
  font-size: 1rem !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s ease;
}

.hero .hero-slider .owl-nav button:hover {
  background: var(--cl-gold) !important;
  border-color: var(--cl-gold) !important;
  color: #fff !important;
}

.hero .hero-slider .owl-dots {
  position: absolute !important;
  left: 50% !important;
  right: auto !important;
  bottom: 42px !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  justify-content: center;
  gap: 5px;
  margin-top: 0 !important;
  z-index: 5;
}

.hero .hero-slider .owl-dot {
  margin: 0 !important;
}

.hero .hero-slider .owl-dot span {
  width: 18px !important;
  height: 8px !important;
  margin: 0 4px !important;
  background: rgba(255, 255, 255, .35) !important;
  border: #ffffff 2px solid !important;
  transition: .3s ease;
}

.hero .hero-slider .owl-dot.active span {
  width: 28px !important;
  border-radius: 10px !important;
  background: var(--cl-gold) !important;
  border-color: var(--cl-gold) !important;
}

@media(max-width:991px) {
  .hero-slide {
    min-height: 620px;
  }

  .hero-content {
    max-width: 650px;
    padding: 100px 0 120px;
  }

  .hero-content h1 {
    font-size: clamp(40px, 7vw, 62px);
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-meta {
    gap: 15px 0;
  }

  .hero-meta div {
    margin-right: 22px;
  }

  .hero .hero-slider .owl-nav {
    padding: 0 18px;
  }

  .hero .hero-slider .owl-dots {
    bottom: 35px !important;
  }
}

@media(max-width:767px) {
  .hero-slide {
    min-height: 210px;
    object-fit: cover;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(21, 18, 14, .88), rgba(21, 18, 14, .64));
  }

  .hero-content {
    padding: 85px 0 115px;
  }

  .hero-content .eyebrow {
    font-size: 11px;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
  }

  .hero-content h1 {
    font-size: 38px;
    line-height: 1.04;
    letter-spacing: -1px;
    margin-bottom: 20px;
  }

  .hero-content p {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 25px;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn {
    min-height: 48px;
    padding: 12px 18px;
    font-size: 12px;
  }

  .hero-meta {
    margin-top: 30px;
    padding-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .hero-meta div {
    margin: 0;
    font-size: 11px;
  }

  .hero-meta i {
    font-size: 14px;
  }

  .hero .hero-slider .owl-nav {
    padding: 0 10px;
  }

  .hero .hero-slider .owl-nav button.owl-prev,
  .hero .hero-slider .owl-nav button.owl-next {
    width: 38px !important;
    height: 38px !important;
  }

  .hero .hero-slider .owl-dots {
    left: 50% !important;
    bottom: 20px !important;
    transform: translateX(-50%) !important;
  }
}

/* =========================================================
   SPORTS STRIP
   ========================================================= */
.sports-strip {
  background: var(--cl-off);
  padding: 34px 0;
  border-bottom: 1px solid var(--cl-border);
}

.sports-strip .title {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--cl-gray);
  font-size: .82rem;
  margin-bottom: 26px;
}

.sports-item {
  text-align: center;
  color: var(--cl-gray);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sports-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 5px;

  transition: .25s ease;
}

/* 
.sports-item img {
    transition: transform 0.4s ease, opacity 0.4s ease, filter 0.4s ease;
} */


.sports-item img {
  transition: transform 0.8s ease;
}

.sports-item:hover img {
  opacity: 1;
  filter: drop-shadow(0 0 0 var(--cl-gold));
  transform: rotateY(180deg);
  font-weight: bolder;
}

.sports-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--cl-border);
}

.sports-item span {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.sports-item:hover span {
  color: var(--cl-gold);
}

/* =========================================================
   PRODUCT CATEGORIES
   ========================================================= */
.category-card {
  background: var(--cl-white);
  border: 1px solid var(--cl-border);
  border-radius: var(--cl-radius);
  overflow: hidden;
  text-align: center;
  transition: all .3s ease;
  height: 100%;
}

.category-card:hover {
  border-color: var(--cl-gold);
  box-shadow: 0 14px 30px rgba(21, 18, 14, .08);
}

.category-card .img-box {
  height: 300px;
  overflow: hidden;
  background: var(--cl-off);

}

.category-card .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s;

}

.category-card:hover .img-box img {
  transform: scale(1.08);
}

.category-card .cap {
  padding: 16px 10px;
}

.category-card .cap h6 {
  text-transform: uppercase;
  margin-bottom: 4px;
  font-size: .92rem;
  color: var(--cl-ink);
}

.category-card .cap p {
  color: var(--cl-gray-dark);
  font-size: .76rem;
  margin: 0;
}




.product-card {
  background: var(--cl-white);
  border: 1px solid var(--cl-border);
  border-radius: var(--cl-radius);
  overflow: hidden;
  text-align: center;
  transition: all .3s ease;
  height: 100%;
}

.product-card:hover {
  border-color: var(--cl-gold);
  box-shadow: 0 14px 30px rgba(21, 18, 14, .08);
}

.product-card .img-box {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: #ffffff;
}

.product-card .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
  padding: 20px;
}



/* Mobile Responsive */
@media (max-width: 767px) {
  .product-card .img-box {
    height: 220px;
  }

  .product-card .img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .product-card .img-box {
    height: 200px;
  }

  .product-card .img-box img {
    padding: 5px;
  }
}


/* Shine */
.product-card .img-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 130%;
  width: 45%;
  height: 100%;

  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, .55),
      transparent);

  transform: skewX(-20deg);
  z-index: 2;
  pointer-events: none;
}

/* Right → Left shine */
.product-card:hover .img-box::before {
  left: -80%;
  transition: left .8s ease;
}

.product-card:hover .img-box img {
  transform: scale(1.05);
}

.product-card .cap {
  padding: 16px 10px;
}

.product-card .cap h6 {
  text-transform: uppercase;
  margin-bottom: 4px;
  font-size: .92rem;
  color: var(--cl-ink);
}

.product-card .cap p {
  color: var(--cl-gray-dark);
  font-size: .76rem;
  margin: 0;
}


/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why-strip {
  background: var(--cl-white);
  border-top: 1px solid var(--cl-border);
  border-bottom: 1px solid var(--cl-border);
}

.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 10px;
}

.why-item img {
  width: 66px;
  height: 66px;
  padding: 15px;
  margin-bottom: 12px;
  background: var(--cl-ink);
  border-radius: 50%;
  filter: invert(1) brightness(2);
  transition: background-color .25s ease;
}

.why-item:hover img {
  background: var(--cl-gold);
}

.why-item h6 {
  text-transform: uppercase;
  font-size: .88rem;
  margin-bottom: 4px;
  color: var(--cl-ink);
}

.why-item p {
  color: var(--cl-gray-dark);
  font-size: .76rem;
  margin: 0;
}

/* =========================================================
   ABOUT US  (new homepage section)
   ========================================================= */
.about-section .about-media {
  position: relative;
  border-radius: var(--cl-radius);
  overflow: hidden;
  border: 1px solid var(--cl-border);
}

/* Image */
.about-section .about-media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* Shine */
.about-section .about-media::before {
  content: "";
  position: absolute;
  top: 0;
  left: 130%;
  width: 45%;
  height: 100%;

  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.5),
      transparent);

  transform: skewX(-20deg);
  z-index: 2;
  pointer-events: none;
}

/* Right → Left */
.about-section .about-media:hover::before {
  left: -80%;
  transition: left 0.8s ease;
}

/* Badge */
.about-section .about-badge {
  position: absolute;
  left: 10px;
  bottom: 20px;
  background: var(--cl-gold);
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--cl-radius);
  text-align: center;
  line-height: 1.1;
  z-index: 999;
}

.about-section .about-badge strong {
  display: block;
  font-family: var(--cl-font-head);
  font-size: 1.6rem;
}

.about-section .about-badge span {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-section .eyebrow {
  color: var(--cl-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .8rem;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.about-section h2 {
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-section p {
  color: var(--cl-gray);
  margin-bottom: 18px;
}

.about-section .about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin-bottom: 24px;
  list-style: none;
  padding: 0;
}

.about-section .about-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--cl-ink);
  font-weight: 500;
}

.about-section .about-points li i {
  color: var(--cl-gold);
}

/* =========================================================
   PARALLEL PROCESS SECTION  (new — alternating left/right rows)
   ========================================================= */
.process-strip {
  background: var(--cl-off);
}

.process-row {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 34px 0;
  border-bottom: 1px solid var(--cl-border);
}

.process-row:last-child {
  border-bottom: none;
}

.process-row:nth-child(even) {
  flex-direction: row-reverse;
}

.process-row .process-media {
  flex: 0 0 40%;
  max-width: 40%;
}

.process-row .process-media img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--cl-radius);
  border: 1px solid var(--cl-border);
}

.process-row .process-copy {
  flex: 1;
}

.process-row .step-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--cl-gold);
  color: var(--cl-gold);
  font-family: var(--cl-font-head);
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 14px;
}

.process-row h4 {
  text-transform: uppercase;
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.process-row p {
  color: var(--cl-gray);
  margin: 0;
}

@media (max-width: 767px) {

  .process-row,
  .process-row:nth-child(even) {
    flex-direction: column;
    gap: 20px;
  }

  .process-row .process-media {
    max-width: 100%;
    flex: none;
    width: 100%;
  }
}

/* =========================================================
   BANNER (promo strips used on listing / product pages)
   ========================================================= */
.promo-banner {
  background: var(--cl-off);
  border: 1px solid var(--cl-border);
  border-left: 4px solid var(--cl-gold);
  border-radius: var(--cl-radius);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.promo-banner h3 {
  text-transform: uppercase;
  margin-bottom: 8px;
}

.promo-banner p {
  color: var(--cl-gray);
  max-width: 420px;
  margin-bottom: 14px;
}

.promo-banner img {
  max-height: 150px;
}

/* =========================================================
   PORTFOLIO PREVIEW (homepage grid — reuses .portfolio-item)
   ========================================================= */

/* Gallery Slider */
.gallery-item {
  padding: 5px;
}

.gallery-img {
  position: relative;
  overflow: hidden;
  border-radius: var(--cl-radius);
  border: 1px solid var(--cl-border);
  height: 300px;
}

.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.gallery-img:hover img {
  transform: scale(1.08);
}

/* Shine Effect */
.gallery-img .shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.35) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  transition: left 0.6s ease;
  z-index: 2;
  pointer-events: none;
}

.gallery-img:hover .shine {
  left: 120%;
}

/* Overlay */
.gallery-img .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(21, 18, 14, 0.9), transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 3;
}

.gallery-img:hover .overlay {
  opacity: 1;
}

.gallery-img .overlay h6 {
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

/* Owl Nav Style (optional – if needed) */
.gallery-slider .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  background: rgba(0, 0, 0, 0.6) !important;
  color: #fff !important;
  border-radius: 50%;
  font-size: 16px;
  transition: 0.3s;
}

.gallery-slider .owl-nav button:hover {
  background: var(--cl-gold) !important;
  color: #111 !important;
}

.gallery-slider .owl-nav .owl-prev {
  left: -10px;
}

.gallery-slider .owl-nav .owl-next {
  right: -10px;
}

/* =========================================================
   DESIGN STUDIO / SERVICES SECTION
   ========================================================= */


.services-section {
  background-color: #15120e;
}

.service-card {
  background: #fff;
  border: 1px solid var(--cl-border);
  border-radius: var(--cl-radius);
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
  border-color: var(--cl-gold);
}

.service-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.06);
}

.service-body {
  padding: 22px 20px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-title {
  color: var(--cl-ink);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-desc {
  color: #666;
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 16px;
  flex-grow: 1;
}

.service-link {
  color: var(--cl-gold);
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}




/* =========================================================
   TRUSTED BY / STATS  (kept as a black accent block)
   ========================================================= */
.trusted-strip {
  background: #ffffff;
  color: var(--cl-muted-inv);
  padding: 26px 0;
  border-top: 1px solid var(--cl-border);
  border-bottom: 1px solid var(--cl-border);
}

.trusted-strip h6 {
  color: var(--cl-gold);
}

.trusted-strip .border-end {
  border-color: rgba(34, 12, 12, 0.15) !important;
}

.trusted-logos {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  color: var(--cl-muted-inv);
  font-weight: 700;
  text-transform: uppercase;
  font-size: .9rem;
}

.stat-item {
  text-align: center;
}

.stat-item h3 {
  color: var(--cl-gold-light);
  font-size: 1.9rem;
  margin-bottom: 2px;
}

.stat-item h3 span {
  color: var(--cl-gold-light);
  font-size: 1.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-item>span {
  color: var(--cl-ink);
  font-size: .8rem;
}

/* =========================================================
   CTA STRIP (Your Team Your Brand — photo section, not theme)
   ========================================================= */
.cta-strip {
  background: url('../images/bg.jpeg') center right/cover no-repeat;
  background-color: var(--cl-ink);
  position: relative;
  padding: 90px 0;
  min-height: 400px;
  overflow: hidden;
}

.cta-strip .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(21, 18, 14, .95) 0%, rgba(21, 18, 14, .82) 32%, rgba(21, 18, 14, .35) 68%, rgba(21, 18, 14, .1) 100%);
}

.cta-strip .content {
  position: relative;
  z-index: 2;
}

.cta-strip h2 {
  color: #fff;
  font-size: 2.8rem;
  line-height: 1.15;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-strip .text-gold {
  color: var(--cl-gold-light);
}

.cta-strip p {
  font-size: 17px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, .75);
}

.cta-strip .btn-gold {
  background: var(--cl-gold);
  border: 1px solid var(--cl-gold);
  color: #fff;
  padding: 13px 25px;
  font-weight: 600;
  text-transform: uppercase;
}

.cta-strip .btn-gold:hover {
  background: #fff;
  border-color: #fff;
  color: var(--cl-ink);
}

@media(max-width:767px) {
  .cta-strip {
    min-height: 450px;
    padding: 70px 0;
    background-position: center right;
  }

  .cta-strip .overlay {
    background: linear-gradient(90deg, rgba(21, 18, 14, .94), rgba(21, 18, 14, .7));
  }

  .cta-strip h2 {
    font-size: 2rem;
  }
}

/* =========================================================
   FOOTER  (kept as a black accent block)
   ========================================================= */
.site-footer {
  background: var(--cl-ink);
  color: var(--cl-muted-inv);
  border-top: 4px solid var(--cl-gold);
  padding-top: 55px;
}

.site-footer h6 {
  text-transform: uppercase;
  color: #fff;
  font-size: .85rem;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer ul li {
  margin-bottom: 10px;
}

.site-footer ul li a {
  color: var(--cl-muted-inv);
  font-size: .88rem;
}

.site-footer ul li a:hover {
  color: var(--cl-gold-light);
  padding-left: 4px;
}

.site-footer p {
  color: var(--cl-muted-inv);
  font-size: .85rem;
}

.site-footer .social-icons a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-right: 8px;
}

.site-footer .social-icons a:hover {
  background: var(--cl-gold);
  border-color: var(--cl-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 16px 0;
  margin-top: 40px;
  font-size: .8rem;
  color: var(--cl-muted-inv);
}

.footer-bottom a {
  color: var(--cl-gold-light);
}

.footer-bottom a:hover {
  color: #fff;
}

/* =========================================================
   INNER PAGE HEADER (page banner for about/products/etc.)
   ========================================================= */
.page-header {
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.65)),
    url('../images/bg-banner.jpeg') center center / cover no-repeat;

  padding: 80px 0;
  text-align: center;
  border-bottom: 1px solid var(--cl-border);
}

.page-header h1 {
  text-transform: uppercase;
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.page-header .breadcrumb {
  justify-content: center;
  background: transparent;
  margin: 0;
  padding: 0;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  color: var(--cl-gray);
  font-size: .85rem;
}

.page-header .breadcrumb-item.active {
  color: var(--cl-gold);
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
  color: var(--cl-gray-dark);
}

/* =========================================================
   GENERIC CARD (services / portfolio / about)
   ========================================================= */
.cl-card {
  background: var(--cl-off);
  border: 1px solid var(--cl-border);
  border-radius: var(--cl-radius);
  padding: 30px 24px;
  height: 100%;
  transition: .3s;
}

.cl-card:hover {
  border-color: var(--cl-gold);
  background: var(--cl-white);
  box-shadow: 0 14px 30px rgba(21, 18, 14, .08);
}

.cl-card i {
  font-size: 2rem;
  color: var(--cl-gold);
  margin-bottom: 16px;
  display: block;
}

.cl-card h5 {
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 1rem;
}

.cl-card p {
  color: var(--cl-gray-dark);
  font-size: .86rem;
  margin: 0;
}

/* Team / About */
.team-card {
  text-align: center;
}

.team-card img {
  border-radius: var(--cl-radius);
  border: 1px solid var(--cl-border);
  margin-bottom: 16px;
}

.team-card h6 {
  text-transform: uppercase;
  margin-bottom: 2px;
}

.team-card span {
  color: var(--cl-gold);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Contact */
.contact-info-card {
  background: var(--cl-off);
  border: 1px solid var(--cl-border);
  border-radius: var(--cl-radius);
  padding: 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-info-card i {
  font-size: 1.4rem;
  color: var(--cl-gold);
}

.contact-info-card h6 {
  text-transform: uppercase;
  font-size: .9rem;
  margin-bottom: 4px;
}

.contact-info-card p {
  color: var(--cl-gray-dark);
  margin: 0;
  font-size: .86rem;
}

.form-control-dark {
  background: var(--cl-white);
  border: 1px solid var(--cl-border);
  color: var(--cl-ink);
  padding: 12px 16px;
  border-radius: var(--cl-radius);
}

.form-control-dark:focus {
  background: var(--cl-white);
  color: var(--cl-ink);
  border-color: var(--cl-gold);
  box-shadow: 0 0 0 .2rem rgba(215, 25, 32, .12);
}

.form-control-dark::placeholder {
  color: var(--cl-gray-dark);
}

.map-frame {
  border-radius: var(--cl-radius);
  overflow: hidden;
  border: 1px solid var(--cl-border);
  filter: grayscale(.2);
}

/* Product single / listing filters */
.filter-btn {
  background: var(--cl-white);
  border: 1px solid var(--cl-border);
  color: var(--cl-gray);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin: 4px;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--cl-gold);
  color: #fff;
  border-color: var(--cl-gold);
}

/* =========================================================
   OWL CAROUSEL CUSTOM ARROWS/DOTS (generic — categories,
   client logos, testimonials. Hero has its own rules above.)
   ========================================================= */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  background: var(--cl-white) !important;
  border: 1px solid var(--cl-gold) !important;
  border-radius: 50%;
  color: var(--cl-gold) !important;
  font-size: 1.2rem !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(21, 18, 14, .08);
}

.owl-carousel .owl-nav button:hover {
  background: var(--cl-gold) !important;
  color: #fff !important;
}

.owl-carousel .owl-nav button.owl-prev {
  left: -10px;
}

.owl-carousel .owl-nav button.owl-next {
  right: -10px;
}

.owl-carousel .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.owl-carousel .owl-dot span {
  background: var(--cl-border) !important;
  width: 9px;
  height: 9px;
  margin: 0 4px;
}

.owl-carousel .owl-dot.active span {
  background: var(--cl-gold) !important;
}

.testimonial-card {
  background: var(--cl-white);
  border: 1px solid var(--cl-border);
  border-radius: var(--cl-radius);
  padding: 30px;
  margin: 10px 6px 30px;
}

.testimonial-card i.quote {
  color: var(--cl-gold);
  font-size: 1.6rem;
}

.testimonial-card p {
  color: var(--cl-ink);
  font-size: .9rem;
  margin: 14px 0;
}

.testimonial-card .who {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card .who img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card .who strong {
  display: block;
  font-size: .88rem;
  color: var(--cl-ink);
}

.testimonial-card .who span {
  color: var(--cl-gray-dark);
  font-size: .72rem;
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  background: var(--cl-gold);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 14px rgba(21, 18, 14, .25);
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}

.back-to-top:hover {
  background: var(--cl-gold-dark);
  color: #fff;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--cl-white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .35s ease, visibility .35s ease;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.preloader .spinner {
  width: 52px;
  height: 52px;
  border: 3px solid var(--cl-border);
  border-top-color: var(--cl-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .hero h1 {
    font-size: 2.3rem;
  }

  .hero-img-wrap {
    margin-top: 30px;
  }

  .promo-banner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .section-title h2 {
    font-size: 1.6rem;
  }

  .cta-strip h2 {
    font-size: 1.7rem;
  }
}

/* =========================================================
   CMS ADDITIONS — product single, faqs, pagination, badges
   ========================================================= */
.badge-gold {
  background: var(--cl-gold);
  color: #fff;
  font-weight: 600;
  font-size: .68rem;
  padding: 4px 10px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.badge-soldout {
  background: var(--cl-border);
  color: var(--cl-gray-dark);
  font-size: .68rem;
  padding: 4px 10px;
  border-radius: 30px;
  text-transform: uppercase;
}

.price-tag {
  color: var(--cl-gold);
  font-family: var(--cl-font-head);
  font-weight: 700;
  font-size: 1.6rem;
}

.product-gallery-main {
  border-radius: var(--cl-radius);
  overflow: hidden;
  text-align: left;
}

.product-gallery-main img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.breadcrumb-plain {
  color: var(--cl-gray-dark);
  font-size: .85rem;
  margin-bottom: 20px;
}

.breadcrumb-plain a {
  color: var(--cl-gray);
}

.breadcrumb-plain a:hover {
  color: var(--cl-gold);
}

/* FAQ accordion */
.accordion-item {
  background: var(--cl-white);
  border: 1px solid var(--cl-border);
  margin-bottom: 12px;
  border-radius: var(--cl-radius) !important;
  overflow: hidden;
}

.accordion-button {
  background: var(--cl-white);
  color: var(--cl-ink);
  font-weight: 600;
  text-transform: uppercase;
  font-size: .92rem;
  letter-spacing: .4px;
}

.accordion-button:not(.collapsed) {
  background: var(--cl-off);
  color: var(--cl-gold);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--cl-border);
}

.accordion-body {
  color: var(--cl-gray);
  font-size: .92rem;
}

/* Pagination */
.pagination .page-link {
  background: var(--cl-white);
  border: 1px solid var(--cl-border);
  color: var(--cl-gray);
  margin: 0 3px;
  border-radius: var(--cl-radius) !important;
}

.pagination .page-item.active .page-link {
  background: var(--cl-gold);
  border-color: var(--cl-gold);
  color: #fff;
}

.pagination .page-link:hover {
  background: var(--cl-off);
  color: var(--cl-gold);
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--cl-gray-dark);
}

.empty-state i {
  font-size: 2.6rem;
  color: var(--cl-gold);
  margin-bottom: 16px;
  display: block;
}

.category-toggle {
  background: var(--cl-white);
  border: 1px solid var(--cl-border);
  color: var(--cl-gray);
  padding: 8px 10px;
  border-radius: 30px;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin: 4px;
}

.category-toggle.active,
.category-toggle:hover {
  background: var(--cl-gold);
  color: #fff;
  border-color: var(--cl-gold);
}

.title-design {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
  color: var(--cl-ink);
}

.title-design::before,
.title-design::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--cl-border), transparent);
}