.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

#top-bar {
  background-color: #010919;
  padding: 10px 24px;
  font-size: 16px;
  font-weight: 500;
  font-style: italic;
}

#top-bar .contact-info {
  display: flex;
  align-items: center;
  gap: 5px;
}

#top-bar .contact-info .fa-phone {
  color: var(--clr-red);
}

#top-bar .contact-info a {
  font-weight: 500;
	font-style: italic;
}

#top-bar .top-nav {
  display: flex;
  gap: 24px;
}

#top-bar .top-nav .link-text:hover,
#top-bar .top-nav .social-icon:hover {
  color: var(--clr-yellow);
}

#header {
  padding: 30px 0;
  width: 100%;
  position: absolute;
  z-index: 10;
}

#header .logo {
  width: 170px;
  display: flex;
  align-items: center;
}

#header .home-link {
    display: none;
}

.nav-wrapper {
  background: #FFFDFA;
  border-radius: 50px;
  padding: 0 15px;
  height: 42px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  position: relative;
}

.nav-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #000f8d4f, #000f8d69);
  z-index: -1;
  border-radius: 50px;
}

.menu-main-menu-container {
  display: flex;
  align-items: center;
}

.menu {
  display: flex;
  gap: 15px;
}

.menu-item {
  position: relative;
}

.menu-item a {
  color: var(--clr-primary);
  font-size: 16px;
  transition: var(--transition-base);
  padding: 6px 12px;
  border-radius: 50px;
  font-family: "Montserrat", sans-serif;
  border: 1px solid transparent;
}

.menu-item a:hover {
  border-color: var(--clr-secondary);
}

.menu-item a.active {
  border-color: var(--clr-secondary);    
  background-color: var(--clr-secondary);    
}

.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  min-width: 220px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 100;
  border-radius: 10px;
}

.menu-item:hover .sub-menu {
  display: block;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.search-box {
  background: #fff;
  border-radius: 50px;
  padding: 0 18px;
  display: flex;
  width: 190px;
  height: 42px;
}

.search-input {
  width: 100%;
  font-size: 14px;
  color: var(--clr-black);
}

.search-btn {
  background: transparent;
  color: var(--clr-primary);
  font-size: 14px;
}

.cart-wrapper {
  background: var(--clr-primary);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  position: relative;
  transition: var(--transition-base);
}

.cart-wrapper:hover {
  background: var(--clr-secondary);
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--clr-secondary);
  font-size: 11px;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}


/*////////////////// HERO HOME SECTION ////////////////////*/
#hero-home {
  position: relative;
  min-height: 600px;
}

#hero-home .background-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #004b8d57, #004b8d26);
    opacity: .38;
}

#hero-home .content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
}

#hero-home .hero-text-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 220px;
}

#hero-home .hero-heading {
  line-height: 1.2;
}

#hero-home .hero-text-area p {
  font-size: clamp(18px, 2vw, 20px);
  margin-bottom: 45px;
  font-weight: 400;
}

#hero-home .btns {
  display: flex;
  gap: 25px;
  align-items: center;
  flex-wrap: wrap;
}

.bottom-shadow {
  position: absolute;
  bottom: -28px;
  left: -20%;
  z-index: 8;
  height: 150px;
  width: 140%;
  background: linear-gradient(
    to bottom,
    transparent,
    #101828,
    var(--clr-black)
  );
  filter: blur(20px);
}

.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}

.mobile-nav-toggle .cross {
  display: none;
}


/*////////////////// CATEGORIES HOME SECTION ////////////////////*/
#categories {
  padding-bottom: 80px;
}

#categories .content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#categories .section-heading {
  margin-bottom: 40px;
}

#categories .category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  width: 100%;
  margin-bottom: 40px;
}

#categories .category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition-base);
}

#categories .category-item figure {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 3px 6px #00000050;
  transition: .3s linear;
}

#categories .category-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#categories .category-item:hover figure {
  box-shadow: 3px 10px 13px #000000;
  transform: scale(1.06);
}

#categories .category-item h5 {
  font-size: 18px;
  font-weight: 500;
  text-shadow: 0 3px 6px #00000016;
  transition: var(--transition-base);
}

#categories .category-item:hover h5 {
  color: var(--clr-yellow);
}


/*////////////////// QUALITY PRODUCTS  SECTION ////////////////////*/
#quality-products {
  padding: 100px 0;
}

#quality-products .quality-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

#quality-products .quality-content {
  background-color: var(--clr-primary);
  padding: 30px 60px;
  width: 75%;
  z-index: 1;
}

#quality-products .section-heading {
  margin-bottom: 20px;
  font-size: 32px;
	max-width: 90%;
}

#quality-products .section-desc {
  color: #ffffff;
  font-size: 17px;
  margin-bottom: 30px;
  max-width: 90%;
}

#quality-products .btns {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
	max-width: 90%;
}

#quality-products .quality-images {
  position: absolute;
  right: 0;
  width: 40%;
  height: 120%;
  z-index: 2;
}

#quality-products .img-box {
  position: absolute;
  box-shadow: 3px 6px 13px #00000050;
}

#quality-products .top-img {
  width: 60%;
  top: -5%;
  left: 14%;
  z-index: 3;
  height: 165px;
}

#quality-products .mid-img {
  width: 81%;
  top: 3%;
  right: -5%;
  z-index: 2;
  height: 100%;
}

#quality-products .bottom-img {
  width: 53%;
  bottom: -14%;
  left: 18%;
  z-index: 4;
  height: 190px;
}


/*////////////////// PEAK PERFORMANCE SECTION ////////////////////*/
#peak-performance {
  overflow: hidden;
}

#peak-performance .pics-wrapper {
  position: relative;
}

#peak-performance .peak-pic-back {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 104vw;
  position: relative;
  left: -2vw;
  z-index: 10;	
}

#peak-performance .peak-pic-back li {
  width: 23%;
  height: 450px;
  margin: 14px;
}

#peak-performance .peak-pic-back li img {
  width: 100%;
}

#peak-performance .peak-pic-front {
  display: flex;
  justify-content: space-between;
  gap: calc(8% / 3);
  width: 80vw;
  max-width: 90%;
  margin: 60px auto 20px;
  position: relative;
  z-index: 10;
  transition: .3s linear;
}

#peak-performance .peak-pic-front::after {
	content: '';
	position: absolute;
	top: 30%;
	left: 50%;
	transform: translatex(-50%);
	width: 94vw;
	height: 200%;
	background-color: var(--clr-primary);
	z-index: -1;
}

#peak-performance .peak-pic-front li {
  width: 24%;
  position: relative;
  background-color: #ffffff;
  box-shadow: 0 3px 6px #00000050;
}

#peak-performance .peak-pic-front li img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
}

#peak-performance .peak-pic-front .content-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #004b8d99;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: .3s linear;
}

#peak-performance .peak-pic-front .content-wrapper h3 {
  font-size: 1.4vw;
  text-align: center;
  line-height: 1.2;
}

#peak-performance .peak-pic-front .content-wrapper p {
  width: 100%;
  font-size: 1vw;
  line-height: 1.2;
  flex: 1;
  margin-bottom: 0;
}

#peak-performance .peak-pic-front .content-wrapper .btn {
  font-size: 1vw !important;
  padding: 5px 20px !important;
}

#peak-performance .peak-pic-front li:hover .content-wrapper {
    visibility: visible;
    opacity: 1;
}


/*//////////////////  CONTACT HOME SECTION ////////////////////*/
#contact-home .form-row::before,
#contact-home .form-row::after {
    display: none;
}

#contact-home .content {
  position: relative;
  margin-left: 50px;
  padding: 10px 60px 24px 50px;
  background-color: var(--clr-primary);
}

#contact-home .contact-card {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

#contact-home .contact-visual {
  width: 340px;
  height: 307px;
  text-align: right;
  position: relative;
}

#contact-home .contact-visual h2 {
  font-size: 48px;
  text-align: left;
  font-style: italic;
  line-height: 1.6;
}

#contact-home .img-wrapper {
  width: 136%;
  height: 100%;
  margin-left: -62%;
  position: absolute;
  right: 0;
}

#contact-home .contact-form-wrapper {
  flex: 1;
  padding-top: 12px;
}

#contact-home .contact-form {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

#contact-home .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

#contact-home .input-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

#contact-home .input-group label {
  font-weight: 500;
  font-size: 14px;
}

#contact-home .input-group input,
#contact-home .input-group textarea {
  padding: 9px 9px;
  font-family: inherit;
  font-size: 14px;
  width: 100%;
}

#contact-home .form-footer {
  margin-top: -50px;
  gap: 30px;
}

#contact-home .contact-info p {
  margin-bottom: 0;
}

#contact-home .cta-text {
  color: var(--clr-yellow);
  font-weight: 500;
  font-size: 18px;
  font-family: "Saira", sans-serif;
}

#contact-home .phone-link {
  color: var(--clr-secondary);
  margin-left: 6px;
	font-weight: 600;
}

#contact-home .phone-link:hover {
  color: #ffffff;
}

#contact-home input.btn {
  position: absolute;
  bottom: 9%;
  right: 5%;
  height: 40px;
  font-family: 'Saira', sans-serif;
}

#contact-home .contact-form-wrapper br {
    display: none;
}

/*////////////////// FOOTER ////////////////////*/
footer .footer-body {
  background-color: #010919;
  padding: 60px 0 20px;
}

footer .footer-body .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  justify-items: center;
  column-gap: 10px;
  row-gap: 30px;
  align-items: flex-start;
  padding-bottom: 40px;
}

footer .custom-logo-link img {
  width: 220px;
  height: 80px;
  margin-bottom: 5px;
  display: block;
}

footer .copyright {
  font-size: 13px;
  text-align: center;
  display: block;
}

footer .footer-nav ul,
footer .footer-contact-box ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
}

footer .footer-nav a,
footer .footer-contact li {
  transition: var(--transition-base);
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #FFFBF8;
  padding: 0;
}

footer .footer-nav a:hover {
  color: var(--clr-yellow);
  border-color: transparent	
}

footer .footer-bottom {
  padding: 12px;
  background-color: #000000;
}

footer .footer-bottom .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 45px;
  text-align: center;
}

footer .footer-bottom p {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 0;
}

footer .tlm-logo {
  height: 25px;
  filter: grayscale(1) brightness(2);
}

body.single-product #sidebar {
    display: none;
}



/*///////////////// ABOUT PAGE ///////////////////*/
#hero-home .hero-text-area {
    margin-top: 250px;
}

#about-detail .desc-wrap {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    padding-bottom: 80px;
}

#tag-growth-section {
    background-color: var(--clr-black);
    position: relative;
    overflow: hidden;
    
}

#tag-growth-section .growth-content-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 40px;
    position: relative;
    background-color: var(--clr-primary);
}

#tag-growth-section .growth-left-content {
    padding: 29px;
    z-index: 2;
    position: relative;
}

#tag-growth-section .growth-text p {
    margin-bottom: 20px;
    font-size: 18px;
    color: var(--clr-light-white);
    line-height: 1.5;
}

#tag-growth-section .growth-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

#tag-growth-section .growth-right-images {
    position: relative;
    height: 455px;
    width: 100%;
}

#tag-growth-section .collage-img {
    position: absolute;
    box-shadow: 3px 6px 13px rgba(0,0,0,0.5);
    overflow: hidden;
}

#tag-growth-section .img-top {
    width: 110%;
    height: 290px;
    top: -35px;
    right: -45px;
    z-index: 1;
}

#tag-growth-section .img-middle {
    width: 45%;
    height: 322px;
    bottom: -50px;
    left: -10%;
    z-index: 3;
}

#tag-growth-section .img-bottom {
    width: 66%;
    height: 180px;
    bottom: -30px;
    right: 8%;
    z-index: 4;
}


#tag-fitness-gallery {
    padding-top: 140px;
    overflow: hidden;
}

#tag-fitness-gallery .gallery-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

#tag-fitness-gallery .gallery-track {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
}

#tag-fitness-gallery .gallery-track:hover {
    animation-play-state: paused;
}

#tag-fitness-gallery .gallery-track li {
    padding: 0 10px;
    flex-shrink: 0;
}

#tag-fitness-gallery .gallery-track img {
    width: 350px;
    height: 350px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

#tag-fitness-gallery .gallery-track img:hover {
    transform: scale(1.02);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Lightbox Styling */
#tag-fitness-gallery .lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

#tag-fitness-gallery .lightbox-content {
    max-width: 80%;
    max-height: 80%;
}

#tag-fitness-gallery .lightbox-content img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
}

#tag-fitness-gallery .lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

#tag-fitness-gallery .lightbox-prev,
#tag-fitness-gallery .lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: white;
    font-size: 50px;
    padding: 20px;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
    transition: color 0.3s;
}

#tag-fitness-gallery .lightbox-prev:hover,
#tag-fitness-gallery .lightbox-next:hover {
    color: var(--clr-secondary);
}

#tag-fitness-gallery .lightbox-prev { left: 20px; }
#tag-fitness-gallery .lightbox-next { right: 20px; }


/*////////// 404 page /////////////*/
.tagfitness-404-page {
  padding: 180px 0 70px;
}

.tagfitness-404-wrap {
    text-align: center;
}

.tagfitness-404-code {
  margin: 0;
  font-family: "Saira", sans-serif;
  font-size: 90px;
  font-weight: 700;
  line-height: 1;
  color: var(--clr-red);
}

.tagfitness-404-search {
  margin: 24px auto 0;
  max-width: 520px;
  display: flex;
  gap: 10px;
}

.tagfitness-404-search input[type="search"] {
  flex: 1;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid #d4d7dc;
  border-radius: 6px;
}

.tagfitness-404-search button {
  min-height: 44px;
  padding: 10px 16px;
  border: 0;
  border-radius: 6px;
  background: var(--clr-primary);
  color: #fff;
  cursor: pointer;
}

.tagfitness-404-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ============================================================
   SEARCH RESULTS PAGE  —  TAG Fitness Theme
   Fonts: Saira (headings) + Montserrat (body)
   Colors: --clr-primary #004b8d | --clr-secondary #e20012
   ============================================================ */

/* ─── Search Hero ──────────────────────────────────────────── */
.search-results-page {
  padding-bottom: 80px;
  min-height: 80vh;
}

.search-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding: 48px 0 40px;
  border-bottom: 1px solid rgba(255, 253, 250, 0.10);
  flex-wrap: wrap;
}

.search-hero__kicker {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clr-secondary);
  margin-bottom: 8px;
}

.search-hero__heading {
  font-family: "Saira", sans-serif;
  font-size: clamp(19px, 3vw, 36px);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1.15;
  color: #fffdfa;
  margin: 0;
}

.search-hero__query {
  color: var(--clr-secondary);
}

/* ─── Refine Form ───────────────────────────────────────────── */
.search-refine-form {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.search-refine-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.search-refine-icon {
  position: absolute;
  left: 14px;
  color: var(--clr-primary);
  font-size: 14px;
  pointer-events: none;
}

.search-refine-input {
  width: 280px;
  height: 44px;
  border-radius: 50px;
  border: 2px solid rgba(255, 253, 250, 0.12);
  background: rgba(255, 253, 250, 0.06);
  color: #fffdfa;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  padding: 0 18px 0 40px;
  transition: border-color 0.25s, background 0.25s;
}

.search-refine-input::placeholder {
  color: rgba(255, 253, 250, 0.4);
}

.search-refine-input:focus {
  outline: none;
  border-color: var(--clr-primary);
  background: rgba(0, 75, 141, 0.12);
}

.search-refine-btn {
  height: 44px;
  padding: 0 24px !important;
  border-radius: 50px !important;
  font-size: 13px !important;
  letter-spacing: 0.5px;
  align-items: center;
}

/* ─── Results Wrapper ───────────────────────────────────────── */
.search-results-wrap {
  margin-top: 40px;
}

/* ─── Individual Result Card ────────────────────────────────── */
.search-results-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.search-result-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 253, 250, 0.08);
  opacity: 0;
  transform: translateY(14px);
  animation: resultFadeIn 0.4s ease forwards;
  animation-delay: calc(var(--item-index, 1) * 60ms);
  transition: background 0.2s;
}

.search-result-item:first-child {
  border-top: 1px solid rgba(255, 253, 250, 0.08);
}

@keyframes resultFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Thumbnail */
.search-result-thumb {
  flex-shrink: 0;
  width: 120px;
  height: 88px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 253, 250, 0.05);
}

.search-result-thumb a {
  display: block;
  width: 100%;
  height: 100%;
}

.search-result-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.search-result-item:hover .search-result-thumb img {
  transform: scale(1.05);
}

/* Body */
.search-result-body {
  flex: 1;
  min-width: 0;
}

/* Meta row */
.search-result-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.search-result-type {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fffdfa;
  background: var(--clr-secondary);
  padding: 3px 10px;
  border-radius: 50px;
  line-height: 1.4;
}

.search-result-date {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  color: rgba(255, 253, 250, 0.45);
  font-weight: 500;
}

/* Title */
.search-result-title {
  font-family: "Saira", sans-serif;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0 0 10px;
}

.search-result-title a {
  color: #fffdfa;
  transition: color 0.2s;
  text-decoration: none;
}

.search-result-title a:hover {
  color: var(--clr-secondary);
}

/* Excerpt */
.search-result-excerpt {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 253, 250, 0.60);
  margin: 0 0 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* "View →" link */
.search-result-link {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--clr-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s, gap 0.2s;
}

.search-result-link:hover {
  color: var(--clr-secondary);
  gap: 10px;
}

/* ─── Pagination ────────────────────────────────────────────── */
.search-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 48px;
}

.search-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: 50px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 253, 250, 0.6);
  background: rgba(255, 253, 250, 0.05);
  border: 1px solid rgba(255, 253, 250, 0.10);
  text-decoration: none;
  transition: all 0.2s;
}

.search-pagination .page-numbers:hover {
  color: #fffdfa;
  background: var(--clr-primary);
  border-color: var(--clr-primary);
}

.search-pagination .page-numbers.current {
  background: var(--clr-secondary);
  border-color: var(--clr-secondary);
  color: #fffdfa;
}

.search-pagination .page-numbers.next {
    display: none;
}

/* ─── Empty State ───────────────────────────────────────────── */
.search-empty {
  padding: 80px 0;
  text-align: center;
}

.search-empty__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: rgba(226, 0, 18, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--clr-secondary);
}

.search-empty__title {
  font-family: "Saira", sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  color: #fffdfa;
  margin-bottom: 14px;
}

.search-empty__desc {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: rgba(255, 253, 250, 0.55);
  line-height: 1.8;
  margin-bottom: 32px;
}

.search-empty__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
