﻿html {
  font-family: "Roboto";
}

.pixelify {
    font-family: "Pixelify Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

a {
    text-decoration: none;
}

p,
h3 {
  color: black;
}

h2 {
    font-family: "Pixelify Sans", sans-serif;
    color: #fb6a2b;
    font-size: 2.5rem;
}

main {
  padding-top: 5%;
}

body {
  margin: 0;
  background-color: #fff;

}

.rte a {
    color: #fb6a2b;
    font-weight: 600;
    text-decoration: none;
    
}

.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  background-attachment: fixed;
}

    .hero-section .scroll {
        display: flex;
        flex-direction: column;
        position: absolute;
        bottom: 10%;
        left: 50%;
        transform: translateX(-50%);
        color: white;
        margin: auto auto;
        text-align: center;
        align-items: center;
    }

        .hero-section .scroll span {
            padding-top: 0.5rem;
        }

    .hero-section svg {
        width: 50px;
        height: auto;
    }



.btn {
  background-color: #fb6a2b;
  padding: 10;
  border-radius: 10px;
  text-decoration: none;
  color: black;
}

.hero-overlay {
  min-height: 40vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  text-align: center;
  padding-top: 8rem;
}

@media (min-width: 640px) {
  .hero-overlay {
    padding-top: 24rem;
    padding-bottom: 2.5rem;
  }
}

.hero-container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: hsla(0, 0%, 0%, 0.719);
  border-radius: 20px;
}

.hero-subtitle {
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  color: white;
}

.hero-container p {
    color: white;
}

.hero-title-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-title {
  padding: 0.2rem 0;
  font-size: 2.25rem;
  font-weight: bold;
  color: #fb6a2b;
  white-space: nowrap;
  overflow: hidden;
  text-align: center;
  margin: 0 auto;
  animation: typing 1s steps(30, end);
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

.hero-back {
    position: fixed;
    top: 6rem;
    left: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    background:rgba(72, 72, 72, 0.66);
    backdrop-filter: blur(6px);
    color: #fb6a2b;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(251, 106, 43, 0.4);
    transition: all 0.25s ease;
    z-index: 50;
}

    .hero-back:hover {
        background-color: #fb6a2b;
        color: #000;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(251, 106, 43, 0.3);
    }

.breadcrumb-nav {
    position: fixed;
    top: 6rem;
    left: 2rem;
    z-index: 50;
    padding: 0.8rem 1.4rem;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(18,18,18,0.92), rgba(35,35,35,0.82));
    border: 1px solid rgba(251, 106, 43, 0.35);
    backdrop-filter: blur(12px);
    box-shadow: 0 0 0 1px rgba(251, 106, 43, 0.08), 0 10px 30px rgba(0, 0, 0, 0.35), 0 0 18px rgba(251, 106, 43, 0.12);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #cfcfcf;
}

    .breadcrumb-item:not(:last-child)::after {
        content: "/";
        margin-left: 0.45rem;
        color: rgba(255, 255, 255, 0.3);
    }

.breadcrumb-link {
    color: #fb6a2b;
    text-decoration: none;
    font-weight: 600;
    padding: 0.15rem 0.25rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

    .breadcrumb-link:hover {
        color: #fff;
        background: rgba(251, 106, 43, 0.14);
        box-shadow: 0 0 12px rgba(251, 106, 43, 0.15);
    }

.breadcrumb-item.active {
    color: #fff;
    font-weight: 700;
}

@keyframes typing {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.hero-description {
  padding: 1rem 0;
  max-width: 70%;
  margin: 0 auto;
}

.hero-socials {
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding: 1rem 0;
  justify-content: center;
  gap: 1em;
}

.social-icon {
  padding: 1.25rem;
  cursor: pointer;
  box-shadow: 0 0 5px #fb6a2b;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

.carousel-wrapper {
  width: 100%;
  padding: 4rem 1.5rem;
  text-align: center;
}

.carousel-title {
  margin-bottom: 2rem;
}

/* Center container */
.carousel-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

/* Carousel track */
.carousel {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
  width: 100%;
}

.slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
}

.slide img {
  width: 80%;
  max-width: 600px;
  border-radius: 16px;
  display: block;
  cursor: zoom-in;
}

.carousel-btn {
  color: black;
  border: none;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  position: absolute;
  z-index: 2;
}

.carousel-btn:hover {
  transform: scale(1.1);
}

.carousel-btn--prev {
  left: -24px;
}

.carousel-btn--next {
  right: -24px;
}

/* tags */

.played-on-container {
    display: flex;
    gap: 1em;
}


.tag-container {
  display: flex;
  gap: 1em;
}

.tag {
    background-color: #fb6a2b;
    border-radius: 25px;
    color: black;
    padding: 8;
    font-weight: 600;
}

/* review */

.reviews {
  padding: 4rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.reviews__tile {
  display: block;
  padding: 2rem;
  background: #fb6a2b;
  border-radius: 12px;
  text-decoration: none;
  color: #1a1a1a;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.reviews__tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
  background: hsl(18, 96%, 20%);
}

.reviews__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.component-container {
    margin-left: 20%;
    margin-right: 20%;
    padding-bottom: 4rem;
}

.component-container-two {
    display: flex;
    justify-content: space-between;
}

.review-stats {
    padding: 4rem 1.5rem;
    color: black;
}

.review-stats__inner {
  max-width: 800px;
  margin: 0 auto;
}

.review-stat {
  margin-bottom: 2rem;
}

.review-stat__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.review-stat__label {
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.review-stat__score {
  font-weight: 700;
  font-size: 1.1rem;
  color: #00ff88;
}

.review-stat__bar {
  height: 10px;
  background: #222;
  border-radius: 50px;
  overflow: hidden;
}

.review-stat__fill {
  height: 100%;
  background: linear-gradient(90deg, #00ff88, #00c853);
  border-radius: 50px;
  transition: width 0.6s ease;
}

.video-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.video-wrapper iframe {
  width: 100% !important;
  height: 500px;
  border-radius: 12px;
}

/*divider*/
.divider {
  width: 100%;
  padding: 1px;
  background: linear-gradient(90deg, transparent, #fb6a2b, transparent);
  margin: 2rem 0;
}

.information {
  display: flex;
  font-size: 0.9rem;
  justify-content: space-between;
}

.information p {
  color: #777;
}

.reviewer-card {
  display: flex;
  gap: 20px;
  padding: 20px;
  border-radius: 16px;
  background: #1e1e1e;
  color: #ffffff;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  width: 50%;
  margin: 10px auto;
}

.reviewer-image img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #2a475e;
}

.reviewer-content {
  flex: 1;
}

.reviewer-name {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.review-title {
  font-weight: 600;
  margin-bottom: 8px;
  color: #66c0f4;
}

.review-excerpt {
  font-size: 0.95rem;
  color: #cccccc;
  margin-bottom: 12px;
}

.review-links {
    display: flex;
    flex-direction: column;
}

.review-link {
    text-decoration: none;
    color: #66c0f4;
    font-weight: 600;
    
}

.review-link:hover {
  text-decoration: underline;
}


.footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #fb6a2b;
  margin: 0rem auto;
  text-align: center;
  font-size: 0.75rem;
  gap: 2rem;
  padding: 2rem 0;
}

.footer-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.footer-text {
  color: #888888;
  font-size: 0.625rem;
}

.footer-text:first-child {
  margin-right: 0.25rem;
}

.footer-text:last-child {
  margin-left: 0.25rem;
}

.heart-icon {
  width: 0.75rem;
  height: 0.75rem;
  stroke: grey;
  transition:
    fill 0.3s ease,
    stroke 0.3s ease;
}

.footer-link:hover .heart-icon {
  fill: #b91c1c;
  stroke: #b91c1c;
}

.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.image-modal img {
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
}

.image-modal__close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.similar-items {
    margin: 4rem 0;
}

.achievement-icon {
    position: absolute;
    top: 30px;
    right: 10px;
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    color: rgba(162, 156, 60, 1.00);
}

.section-title {
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.similar-card {
    transition: opacity .2s ease;
}

    .similar-card.is-hidden {
        opacity: 0;
        pointer-events: none;
        position: absolute;
        display: none;
    }

.similar-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.similar-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(251, 106, 43, 0.2);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .similar-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 32px rgba(0,0,0,0.12);
    }

.card-image {
    aspect-ratio: 16 / 9;
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 1.25rem;
}

.card-title {
    margin: 0 0 0.75rem;
    font-size: 1.2rem;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: #fb6a2b;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
    color: white;
}

.played-on-tag {
    background: #2b32fb;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
    color: white;
    font-weight: 600;
}


.splide__slide {
    padding: 0.5rem;
}

.featured-container {
    margin: 0 auto;
}

.featured-card {
    display: block;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

    .featured-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    }

.featured-media {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-card:hover .featured-image {
    transform: scale(1.06);
}

.featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.35), transparent );
}

.featured-rating {
    position: absolute;
    top: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
}


.featured-content {
    position: absolute;
    bottom: 0;
    padding: 40px;
    color: white;
    max-width: 800px;
}

.featured-title {
    font-size: 2.5rem;
    margin: 0 0 16px;
    font-weight: 700;
    line-height: 1.2;
    color: white;
}

.featured-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.featured-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-excerpt {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
    color: white;
}

@media (max-width: 768px) {
    .featured-media {
        height: 300px;
    }

    .featured-title {
        font-size: 1.8rem;
    }

    .featured-content {
        padding: 12px;
    }
}

@media (max-width: 768px) {

    html {
        font-size: 14px;
    }

    body {
        margin: 0;
    }

    main {
        padding-top: 3%;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-overlay {
        padding-top: 10rem;
        padding-bottom: 1.5rem;
    }

    .hero-container {
        padding: 1rem;
        width: 90%;
    }

    .hero-description {
        max-width: 90%;
        padding: 0.5rem 0;
    }

    .hero-back {
        top: 1rem;
        left: 1rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.875rem;
    }

    .carousel-wrapper {
        padding: 2rem 1rem;
    }

    .carousel-btn--prev {
        left: -12px;
    }

    .carousel-btn--next {
        right: -12px;
    }

    .reviews {
        padding: 2rem 1rem;
    }

    .reviews__grid {
        grid-template-columns: 1fr;
    }

    .reviewer-card {
        flex-direction: column;
        width: 90%;
    }

    .video-wrapper iframe {
        height: 250px;
    }

    .similar-items-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .featured-media {
        height: 250px;
    }

    .featured-title {
        margin-top: 2.5em;
    }

    .achievement-icon {
        top: 30px;
        right: 8px;
    }

    .component-container {
        margin-left: 5%;
        margin-right: 5%;
        padding-bottom: 2rem;
    }

    .tag {
        padding: 0.25rem 0.5rem;
        font-size: 0.7rem;
    }

    .played-on-tag {
        padding: 0.25rem 0.5rem;
        font-size: 0.7rem;
    }
}

/* Wrapper Layout */
.general-information-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

/* Card Styling */
.general-information {
    background: #ffffff;
    border-radius: 14px;
    padding: 1.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f1f1;
}

    /* Row Items */
    .general-information .info-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.9rem 0;
        border-bottom: 1px solid #ececec;
        text-decoration: none; /* ensures links don’t look underlined */
        color: inherit;
        transition: background 0.2s ease, transform 0.15s ease;
    }

        .general-information .info-item:last-child {
            border-bottom: none;
        }

    /* Hover effect for links only */
    .general-information a.info-item:hover {
        background: #f9fafb;
        transform: translateX(3px);
    }

    /* Labels */
    .general-information .label {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: #6b7280;
    }

    /* Values */
    .general-information .value {
        font-weight: 600;
        font-size: 0.95rem;
        color: #111827;
    }

/* Mobile */
@media (max-width: 768px) {
    .hero-back {
        top: 8rem;
        
    }
    .general-information-wrapper {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .general-information {
        padding: 1.25rem;
    }

        .general-information .info-item {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.25rem;
        }

        .general-information .value {
            font-size: 0.9rem;
        }
}

/*splide*/
.splide__arrows {
    position: absolute;
    top: 3rem;
    right: 0rem;
    display: flex;
    gap: 0;
    z-index: 10;
    padding-bottom: 1rem;
}

.splide__arrow {
    all: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 28px;
    cursor: pointer;
    color: #fff;
    font-size: 1.1rem;
}

.splide__arrow {
    clip-path: polygon(12% 0, 100% 0, 88% 100%, 0% 100%);
}

.splide__arrow--prev {
    background: #fb6a2b;
}

.splide__arrow--next {
    background: #fb6a2b;
}

.splide__arrow svg {
    width: 12px;
    height: 12px;
    fill: #fff;
}

.splide__slide {
    height: 100%;
    overflow: hidden;
}

.splide__list {
    height: auto !important;
}

.splide__track {
    margin-top: 3rem;
}

.tabs-component {
    margin: 0 auto;
}

.tabs-component__title {
    margin-bottom: 1rem;
}

.tabs-component__tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}
.tab-btn {
    padding: 0.4rem 1.6rem;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-weight: 500;
}

.tab-btn:hover {
    background: #fb6a2b;
    color: #fff;
}

    .tab-btn.active {
        background: #fb6a2b;
        color: #fff;
        box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    }

.tabs-component__answer {
    display: none;
    animation: fadeIn 0.3s ease forwards;
}

    .tabs-component__answer.active {
        display: block;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Card Grid */
.top-picks-flex {
    display: grid;
    gap: 2rem;
}

/* Card */
.similar-card {
    display: block;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}

    .similar-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    }



.top-pick-img {
    position: relative;
}

    .top-pick-img img {
        width: 100%;
        aspect-ratio: 16 / 9;
        object-fit: cover;
    }

.achievement-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: gold;
    padding: 0.5rem;
    border-radius: 50%;
    font-size: 0.8rem;
}

.card-content {
    padding: 1.5rem;
}


/* Accordion */
.tabs-component__accordion {
    display: none;
}

@media (max-width: 992px) {

    .tabs-component__tabs,
    .tabs-component__answers {
        display: none;
    }

    .tabs-component__accordion {
        display: block;
    }

    .accordion-item {
        border-bottom: 1px solid #eee;
    }

    .accordion-header {
        width: 100%;
        padding: 1rem;
        font-weight: 600;
        background: #f9f9f9;
        border: none;
        text-align: left;
        cursor: pointer;
    }

    .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .accordion-header[aria-expanded="true"] + .accordion-content {
        max-height: 2000px;
        padding: 1rem;
    }
}

/*nav and search */

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    z-index: 100;
    transition: all 0.5s ease;
}

    .navbar.transparent {
        background: transparent;
    }

    .navbar.solid {
        background: rgba(0, 0, 0, 0.2);
        box-shadow: 0 1px 3px #fb6a2b;
    }

/* Navbar inner: single row layout */
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between; /* links left, search right */
    flex-wrap: nowrap; /* prevent wrapping */
    width: 100%;
    max-width: 1200px;
    padding: 0 16px;
}

.nav-links a {
    text-decoration: none;
    color: #fb6a2b;
    font-size: 0.875rem;
    text-transform: uppercase;
    border-bottom: 1px solid transparent;
    transition: border 0.2s ease;
}

.nav-links {
    display: flex;
    flex-wrap: nowrap; 
    overflow-x: auto; 
    -webkit-overflow-scrolling: touch; 
    list-style: none;
    margin: 0;
    padding: 0;
}

    .nav-links li {
        margin: 0 16px;
        white-space: nowrap; 
    }

.nav-search {
    display: flex;
    justify-content: flex-end;
    flex-shrink: 0; 
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    width: auto;
    min-width: 120px; 
    max-width: 200px; 
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

#navSearchInput {
    flex: 1;
    padding: 6px 8px;
    border: none;
    background: transparent;
    color: #fb6a2b;
    outline: none;
    width: 100%;
    opacity: 1;
    font-weight: 600;
}

    #navSearchInput::placeholder {
        color: #fb6a2b;
        opacity: 1;
    }
        .search-input-wrapper i {
            color: #fb6a2b;
            margin-left: 0.5rem;
            cursor: pointer;
        }

        .nav-links::-webkit-scrollbar {
            height: 6px;
        }

        .nav-links::-webkit-scrollbar-thumb {
            background: rgba(251,106,43,0.4);
            border-radius: 3px;
        }

        @media (max-width: 768px) {
            .nav-links {
                justify-content: flex-start;
            }

                .nav-links li {
                    margin: 0 12px;
                }

            .search-input-wrapper {
                min-width: 100px;
                max-width: 150px;
            }
        }

        .search-results {
            position: absolute;
            top: 110%;
            left: 25%;
            width: 50%;
            background: white;
            color: #fb6a2b;
            border: 1px solid #ddd;
            border-radius: 8px;
            display: none;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            z-index: 1000;
            overflow: hidden;
        }

        .search-item {
            display: block;
            padding: 10px 12px;
            text-decoration: none;
            color: #fb6a2b;
            transition: background 0.2s, color 0.2s;
            cursor: pointer;
        }

            .search-item:hover {
                background: #fb6a2b;
                color: #fff;
            }

        .search-results.show {
            display: block;
        }

.reviews-filter {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

    .reviews-filter select {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background-color: #ffffff;
        border: 2px solid #fb6a2b;
        border-radius: 8px;
        padding: 0.75rem 2.5rem 0.75rem 1rem;
        font-size: 1rem;
        font-weight: 500;
        color: #333;
        cursor: pointer;
        transition: all 0.2s ease;
        background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='%23fb6a2b' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7L10 12L15 7' stroke='%23fb6a2b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 0.75rem center;
        background-size: 16px;
    }

        .reviews-filter select:hover {
            background-color: #fff5f0;
        }

        .reviews-filter select:focus {
            outline: none;
            border-color: #fb6a2b;
            box-shadow: 0 0 0 3px rgba(251, 106, 43, 0.25);
        }

        .reviews-filter select option {
            font-weight: 400;
        }

    .reviews-filter input#tagSearch {
        padding: 0.75rem 1rem;
        border: 2px solid #fb6a2b;
        border-radius: 8px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
        margin-right: 1rem;
        transition: all 0.2s ease;
    }

        .reviews-filter input#tagSearch:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(251, 106, 43, 0.25);
        }

.reviews-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

    .reviews-pagination button {
        padding: 0.5rem 1rem;
        background-color: #fb6a2b;
        color: #fff;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        font-weight: 600;
        transition: background 0.2s;
    }

        .reviews-pagination button:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .reviews-pagination button:hover:not(:disabled) {
            background-color: #e55a20;
        }