* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: #fff8eb;
  background-color: #321512;
  background-image: url("Samo pozadina.png");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: Georgia, "Times New Roman", serif;
}

button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
}

/* Информативна лента */

.announcement-bar {
  min-height: 42px;
  padding: 8px 5%;

  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;

  color: #e8bd43;
  background-color: #050505;
  border-bottom: 1px solid rgba(232, 189, 67, 0.4);

  font-family: Arial, sans-serif;
}

.announcement-message {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.3px;
}

.announcement-arrow {
  width: 34px;
  height: 28px;

  color: #e8bd43;
  background: transparent;
  border: none;

  font-size: 25px;
  cursor: pointer;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.announcement-arrow:hover {
  color: #fff2bf;
  transform: scale(1.15);
}

/* Заглавие */

.header,
.catalog-header,
.details-header {
  width: 100%;
  min-height: 105px;
  padding: 13px 6%;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;

  background-color: rgba(20, 7, 6, 0.82);
  border-bottom: 1px solid rgba(220, 178, 67, 0.35);
  backdrop-filter: blur(7px);
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;

  background: linear-gradient(
    to bottom,
    rgba(18, 6, 5, 0.92),
    rgba(18, 6, 5, 0.35),
    transparent
  );

  border-bottom: none;
  backdrop-filter: none;
}

.brand {
  flex-shrink: 0;
}

.brand img {
  display: block;
  width: 200px;
  height: auto;
}

.navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 23px;
}

.navigation a {
  position: relative;
  padding: 9px 0;

  color: #fff8eb;
  font-family: Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0.7px;
  text-decoration: none;
  white-space: nowrap;

  transition: color 0.3s ease;
}

.navigation a:hover,
.navigation .active {
  color: #e1b94d;
}

.navigation .active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;

  height: 1px;
  background-color: #e1b94d;
}

.cart-link {
  display: flex;
  align-items: center;
  gap: 7px;
}

.cart-count {
  min-width: 22px;
  height: 22px;
  padding: 0 5px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #26100d;
  background-color: #e1b94d;
  border-radius: 50%;

  font-size: 12px;
  font-weight: 700;
}

/* Почетна страница */

.hero {
  min-height: 100vh;
  padding: 165px 7% 80px;

  display: flex;
  align-items: center;

  background: linear-gradient(
    90deg,
    rgba(22, 7, 6, 0.7),
    rgba(22, 7, 6, 0.18)
  );
}

.hero-content {
  max-width: 650px;
}

.eyebrow {
  margin-bottom: 12px;

  color: #e1b94d;
  font-family: Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 24px;

  color: #fffaf0;
  font-size: clamp(64px, 10vw, 120px);
  font-weight: 400;
  line-height: 0.9;
}

.hero-text {
  max-width: 580px;
  margin-bottom: 36px;

  color: #f0dfcc;
  font-family: Arial, sans-serif;
  font-size: 19px;
  line-height: 1.8;
}

/* Копчиња */

.hero-button,
.details-button,
.back-button,
.primary-button {
  display: inline-block;
  padding: 12px 24px;

  color: #25100c;
  background-color: #dcb747;
  border: 1px solid #edca65;
  border-radius: 4px;

  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;

  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    transform 0.3s ease;
}

.hero-button:hover,
.details-button:hover,
.back-button:hover,
.primary-button:hover {
  color: #edca65;
  background-color: rgba(25, 8, 7, 0.85);
  transform: translateY(-2px);
}

/* Каталог */

.collection-main {
  width: min(1050px, 92%);
  min-height: calc(100vh - 200px);
  margin: 0 auto;
  padding: 60px 0 90px;
}

.collection-heading {
  margin-bottom: 38px;
  text-align: center;
}

.collection-heading h1 {
  margin-bottom: 10px;

  color: #f0c34f;
  font-size: clamp(38px, 6vw, 62px);
  font-weight: 700;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.6);
}

.collection-heading > p:last-child {
  color: #fff8eb;
  font-size: 18px;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

/* Пребарување и филтри */

.catalog-tools {
  max-width: 760px;
  margin: 0 auto 20px;
  padding: 24px;

  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;

  background-color: rgba(24, 9, 8, 0.72);
  border: 1px solid rgba(230, 192, 91, 0.5);
  border-radius: 12px;
  box-shadow: 0 16px 38px rgba(10, 2, 2, 0.35);
  backdrop-filter: blur(6px);
}

.search-wrapper label,
.filter-wrapper > p {
  display: block;
  margin-bottom: 9px;

  color: #f0c34f;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.search-wrapper input {
  width: 100%;
  height: 48px;
  padding: 0 16px;

  color: #fff8eb;
  background-color: rgba(10, 4, 3, 0.72);
  border: 1px solid rgba(230, 192, 91, 0.45);
  border-radius: 6px;
  outline: none;

  font-family: Arial, sans-serif;
  font-size: 16px;

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.search-wrapper input::placeholder {
  color: #bca995;
}

.search-wrapper input:focus {
  border-color: #f0c34f;
  box-shadow: 0 0 0 3px rgba(240, 195, 79, 0.15);
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-button {
  padding: 10px 16px;

  color: #f2dfcc;
  background-color: rgba(14, 5, 4, 0.7);
  border: 1px solid rgba(230, 192, 91, 0.35);
  border-radius: 30px;

  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;

  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease;
}

.filter-button:hover,
.filter-button.active-filter {
  color: #24100c;
  background-color: #e1b94d;
  border-color: #f0cf70;
}

.results-message {
  max-width: 760px;
  margin: 0 auto 22px;

  color: #e4d3c0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  text-align: right;
}

/* Мрежа: точно два парфеми во ред */

.collection-grid {
  max-width: 760px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.collection-card {
  min-width: 0;
  overflow: hidden;

  display: flex;
  flex-direction: column;

  background-color: rgba(24, 9, 8, 0.8);
  border: 1px solid rgba(230, 192, 91, 0.65);
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(10, 2, 2, 0.5);
  backdrop-filter: blur(5px);

  text-align: center;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.collection-card:hover {
  transform: translateY(-7px);
  border-color: #f0c34f;
  box-shadow: 0 24px 55px rgba(10, 2, 2, 0.7);
}

.collection-image {
  height: 330px;
  padding: 28px 20px 15px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: radial-gradient(
    circle,
    rgba(230, 192, 91, 0.13),
    rgba(18, 6, 5, 0.25) 68%
  );
}

.collection-image img {
  display: block;
  width: auto;
  max-width: 88%;
  height: 280px;
  object-fit: contain;

  filter: drop-shadow(0 16px 14px rgba(0, 0, 0, 0.55));

  transition: transform 0.35s ease;
}

.collection-card:hover .collection-image img {
  transform: scale(1.04);
}

.collection-info {
  flex: 1;
  padding: 20px 18px 24px;

  display: flex;
  flex-direction: column;
  align-items: center;

  border-top: 1px solid rgba(230, 192, 91, 0.2);
}

.product-category {
  margin-bottom: 8px;

  color: #d6aa3c;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.collection-info h2 {
  margin-bottom: 8px;
  color: #f0c34f;
  font-size: 24px;
  line-height: 1.2;
}

.collection-info p {
  margin-bottom: 18px;

  color: #fff8eb;
  font-size: 15px;
  font-weight: 700;
}

.collection-info .details-button {
  margin-top: auto;
}

.no-results {
  grid-column: 1 / -1;
  padding: 55px 25px;

  background-color: rgba(24, 9, 8, 0.75);
  border: 1px solid rgba(230, 192, 91, 0.45);
  border-radius: 12px;

  text-align: center;
}

.no-results h2 {
  margin-bottom: 10px;
  color: #f0c34f;
}

.no-results p {
  color: #e0cdb9;
  font-family: Arial, sans-serif;
}

/* Детална страница */

.details-main {
  width: min(1050px, 90%);
  min-height: calc(100vh - 160px);
  margin: 0 auto;
  padding: 65px 0 90px;
}

.perfume-details {
  padding: 45px;

  display: grid;
  grid-template-columns: 330px 1fr;
  align-items: center;
  gap: 55px;

  background-color: rgba(24, 9, 8, 0.78);
  border: 1px solid rgba(230, 192, 91, 0.65);
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(10, 2, 2, 0.55);
  backdrop-filter: blur(6px);
}

.details-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.details-image img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 20px 18px rgba(0, 0, 0, 0.6));
}

.details-content h1 {
  margin-bottom: 24px;
  color: #f0c34f;
  font-size: clamp(38px, 5vw, 58px);
}

.details-section {
  margin-bottom: 24px;
}

.details-section h2 {
  margin-bottom: 10px;
  color: #fff8eb;
  font-size: 25px;
}

.details-section p,
.price-list {
  color: #f1dfcd;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

.price-list {
  list-style: none;
}

.price-list strong {
  color: #fff8eb;
}

.back-button {
  margin-top: 8px;
}

/* Footer */

.footer {
  padding: 24px 6%;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 25px;

  color: #c9ad92;
  background-color: rgba(16, 5, 4, 0.9);
  border-top: 1px solid rgba(230, 192, 91, 0.25);

  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 13px;
}

.footer a {
  color: #e1b94d;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* Таблет */

@media (max-width: 950px) {
  .catalog-header {
    padding-right: 4%;
    padding-left: 4%;
  }

  .brand img {
    width: 160px;
  }

  .navigation {
    gap: 14px;
  }

  .navigation a {
    font-size: 12px;
  }

  .perfume-details {
    grid-template-columns: 280px 1fr;
    gap: 35px;
  }
}

/* Телефон */

@media (max-width: 700px) {
  body {
    background-attachment: scroll;
  }

  .announcement-bar {
    min-height: 40px;
    padding: 6px 2%;
    grid-template-columns: 28px 1fr 28px;
  }

  .announcement-message {
    font-size: 11px;
    letter-spacing: 0.5px;
    line-height: 1.4;
  }

  .announcement-arrow {
    width: 28px;
  }

  .header,
  .catalog-header,
  .details-header {
    min-height: auto;
    padding: 10px 4%;

    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .brand img {
    width: 150px;
  }

  .navigation {
    width: 100%;
    padding-bottom: 5px;

    justify-content: flex-start;
    gap: 17px;

    overflow-x: auto;
    scrollbar-width: none;
  }

  .navigation::-webkit-scrollbar {
    display: none;
  }

  .navigation a {
    flex-shrink: 0;
    font-size: 12px;
  }

  .hero {
    padding: 145px 6% 60px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-text {
    font-size: 17px;
  }

  .collection-main {
    width: 94%;
    padding: 42px 0 65px;
  }

  .collection-heading {
    margin-bottom: 28px;
  }

  .collection-heading h1 {
    font-size: 38px;
  }

  .collection-heading > p:last-child {
    font-size: 15px;
  }

  .catalog-tools {
    padding: 17px;
  }

  .filter-buttons {
    gap: 7px;
  }

  .filter-button {
    padding: 8px 12px;
    font-size: 11px;
  }

  .results-message {
    font-size: 12px;
  }

  .collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .collection-image {
    height: 210px;
    padding: 18px 8px 10px;
  }

  .collection-image img {
    max-width: 94%;
    height: 180px;
  }

  .collection-info {
    padding: 14px 8px 16px;
  }

  .product-category {
    font-size: 9px;
    letter-spacing: 1px;
  }

  .collection-info h2 {
    font-size: 17px;
  }

  .collection-info p {
    margin-bottom: 13px;
    font-size: 12px;
  }

  .collection-info .details-button {
    width: 100%;
    padding: 9px 6px;
    font-size: 10px;
  }

  .details-main {
    width: 92%;
    padding: 35px 0 65px;
  }

  .perfume-details {
    padding: 27px 20px;

    grid-template-columns: 1fr;
    gap: 30px;
  }

  .details-image img {
    height: 300px;
  }

  .details-content h1 {
    font-size: 38px;
  }
}

/* Многу тесни телефони */

@media (max-width: 370px) {
  .collection-grid {
    gap: 8px;
  }

  .collection-image {
    height: 185px;
  }

  .collection-image img {
    height: 158px;
  }

  .collection-info h2 {
    font-size: 15px;
  }
}
/* Страници во каталогот */

.catalog-pagination {
  width: 100%;
  margin: 45px auto 15px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  font-family: Arial, sans-serif;
}

.catalog-pagination[hidden] {
  display: none;
}

.pagination-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pagination-button {
  min-width: 44px;
  height: 44px;
  padding: 0 14px;

  color: #f4e4d2;
  background-color: rgba(28, 9, 7, 0.92);
  border: 1px solid rgba(225, 185, 77, 0.55);
  border-radius: 7px;

  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;

  cursor: pointer;

  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.pagination-button:hover:not(:disabled) {
  color: #24100c;
  background-color: #e1b94d;
  border-color: #f4d578;

  transform: translateY(-2px);

  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.3),
    0 0 14px rgba(225, 185, 77, 0.15);
}

.pagination-button.active-page {
  color: #24100c;
  background:
    linear-gradient(
      135deg,
      #f0cf68,
      #dca72e
    );
  border-color: #f7dc83;

  box-shadow:
    0 7px 18px rgba(0, 0, 0, 0.32),
    0 0 16px rgba(225, 185, 77, 0.16);
}

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

.pagination-navigation {
  min-width: 120px;
}

/* Страници на телефон */

@media (max-width: 700px) {
  .catalog-pagination {
    margin-top: 32px;
    gap: 7px;
  }

  .pagination-numbers {
    gap: 6px;
  }

  .pagination-button {
    min-width: 38px;
    height: 40px;
    padding: 0 10px;

    font-size: 12px;
  }

  .pagination-navigation {
    min-width: auto;
    padding: 0 11px;
  }
}
/* Копче за филтри */

.catalog-tools {
  width: 100%;
  margin: 30px 0 24px;

  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.filter-toggle-button {
  min-height: 50px;
  padding: 0 20px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;

  color: #f4dfc7;
  background-color: rgba(29, 9, 7, 0.92);
  border: 1px solid rgba(225, 185, 77, 0.62);
  border-radius: 8px;

  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;

  cursor: pointer;

  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.25),
    inset 0 0 18px rgba(225, 185, 77, 0.03);

  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.filter-toggle-button:hover {
  color: #24100c;
  background-color: #e1b94d;
  border-color: #f5d77b;

  transform: translateY(-2px);
}

.filter-toggle-icon {
  color: #e1b94d;
  font-size: 19px;
  line-height: 1;
}

.filter-toggle-button:hover .filter-toggle-icon {
  color: #24100c;
}

.active-filter-count {
  min-width: 24px;
  height: 24px;
  padding: 0 7px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #24100c;
  background-color: #f0c34f;
  border-radius: 999px;

  font-size: 12px;
  font-weight: 800;
}

.active-filter-count[hidden] {
  display: none;
}

/* Темна позадина зад филтрите */

.filter-overlay {
  position: fixed;
  inset: 0;
  z-index: 2990;

  background-color: rgba(5, 1, 1, 0.76);
  backdrop-filter: blur(4px);
}

.filter-overlay[hidden] {
  display: none;
}

/* Страничен панел */

.filter-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 3000;

  width: min(430px, 92vw);
  height: 100dvh;

  display: grid;
  grid-template-rows: auto 1fr auto;

  color: #f7e9d8;
  background:
    linear-gradient(
      160deg,
      #2a0c09 0%,
      #170605 55%,
      #0d0303 100%
    );

  border-left: 1px solid rgba(225, 185, 77, 0.55);

  box-shadow:
    -20px 0 50px rgba(0, 0, 0, 0.55),
    inset 1px 0 rgba(255, 220, 130, 0.05);

  transform: translateX(105%);
  visibility: hidden;

  transition:
    transform 0.38s ease,
    visibility 0.38s ease;
}

.filter-panel.filter-panel-open {
  transform: translateX(0);
  visibility: visible;
}

.filters-are-open {
  overflow: hidden;
}

/* Горен дел */

.filter-panel-header {
  padding: 28px 28px 23px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  border-bottom: 1px solid rgba(225, 185, 77, 0.25);
}

.filter-panel-eyebrow {
  margin-bottom: 6px;

  color: #dcae3d;

  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.filter-panel-header h2 {
  color: #f0c34f;
  font-size: 34px;
}

.filter-close-button {
  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #edc452;
  background-color: rgba(35, 10, 8, 0.78);
  border: 1px solid rgba(225, 185, 77, 0.52);
  border-radius: 50%;

  font-family: Arial, sans-serif;
  font-size: 29px;
  line-height: 1;

  cursor: pointer;

  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.filter-close-button:hover {
  color: #24100c;
  background-color: #e1b94d;
  transform: rotate(90deg);
}

/* Содржина на филтрите */

.filter-panel-content {
  padding: 10px 28px 30px;
  overflow-y: auto;
}

.filter-group {
  padding: 24px 0;

  border-bottom: 1px solid rgba(225, 185, 77, 0.18);
}

.filter-group:last-child {
  border-bottom: none;
}

.filter-group h3 {
  margin-bottom: 15px;

  color: #f5dfc8;
  font-size: 20px;
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-option {
  min-height: 42px;
  padding: 0 15px;

  color: #d9c4ae;
  background-color: rgba(41, 13, 10, 0.72);
  border: 1px solid rgba(225, 185, 77, 0.35);
  border-radius: 999px;

  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;

  cursor: pointer;

  transition:
    color 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease;
}

.filter-option:hover {
  color: #f7e8d6;
  border-color: #e1b94d;
  transform: translateY(-1px);
}

.filter-option.active-filter {
  color: #24100c;
  background:
    linear-gradient(
      135deg,
      #f0cf68,
      #dca72e
    );
  border-color: #f6dc87;

  box-shadow:
    0 7px 18px rgba(0, 0, 0, 0.25),
    0 0 13px rgba(225, 185, 77, 0.12);
}

/* Долни копчиња */

.filter-panel-footer {
  padding: 20px 28px 24px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;

  background-color: rgba(11, 3, 3, 0.92);
  border-top: 1px solid rgba(225, 185, 77, 0.25);
}

.clear-filters-button,
.show-products-button {
  min-height: 50px;
  padding: 10px 14px;

  border-radius: 7px;

  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;

  cursor: pointer;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.clear-filters-button {
  color: #e3cdb6;
  background-color: transparent;
  border: 1px solid rgba(225, 185, 77, 0.45);
}

.clear-filters-button:hover {
  color: #f3cb5d;
  border-color: #e1b94d;
}

.show-products-button {
  color: #24100c;
  background:
    linear-gradient(
      135deg,
      #f0cf68,
      #dca72e
    );
  border: 1px solid #f6dc87;
}

.show-products-button:hover {
  transform: translateY(-2px);
}

/* Филтри на телефон */

@media (max-width: 700px) {
  .catalog-tools {
    margin: 23px 0 20px;
  }

  .filter-toggle-button {
    width: 100%;
    min-height: 48px;
  }

  .filter-panel {
    width: min(390px, 94vw);
  }

  .filter-panel-header {
    padding: 22px 20px 18px;
  }

  .filter-panel-header h2 {
    font-size: 29px;
  }

  .filter-panel-content {
    padding: 5px 20px 22px;
  }

  .filter-group {
    padding: 20px 0;
  }

  .filter-options {
    gap: 8px;
  }

  .filter-option {
    min-height: 40px;
    padding: 0 13px;
    font-size: 12px;
  }

  .filter-panel-footer {
    padding: 16px 20px 20px;
    grid-template-columns: 1fr;
  }
}
/* Корекција на кутијата околу Филтри */

.catalog-tools {
  width: 100%;
  margin: 30px auto 24px;
  padding: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.filter-toggle-button {
  min-width: 170px;
}

@media (max-width: 700px) {
  .catalog-tools {
    margin: 23px auto 20px;
    padding: 0 5px;
  }

  .filter-toggle-button {
    width: min(260px, 100%);
  }
}
/* Целосно отстранување на лентата зад Филтри */

.catalog-page .catalog-tools {
  width: fit-content !important;
  min-width: 0 !important;
  min-height: 0 !important;

  margin: 30px auto 24px !important;
  padding: 0 !important;

  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;

  border: 0 !important;
  border-radius: 0 !important;

  box-shadow: none !important;
  backdrop-filter: none !important;
}

.catalog-page .catalog-tools::before,
.catalog-page .catalog-tools::after {
  display: none !important;
  content: none !important;
}

@media (max-width: 700px) {
  .catalog-page .catalog-tools {
    width: min(260px, 90%) !important;
    margin: 24px auto 20px !important;
  }
}
/* Подредување и ценовен опсег */

.filter-sort-label {
  display: block;
  margin-bottom: 9px;

  color: #d8c3ae;
  font-family: Arial, sans-serif;
  font-size: 13px;
}

.filter-sort-select {
  width: 100%;
  min-height: 50px;
  padding: 0 15px;

  color: #fff7e8;
  background-color: #190907;
  border: 1px solid rgba(225, 185, 77, 0.65);
  border-radius: 8px;
  outline: none;

  font-family: Arial, sans-serif;
  font-size: 15px;
  cursor: pointer;
  color-scheme: dark;
}

.filter-sort-select:focus {
  border-color: #f0ce68;
  box-shadow: 0 0 0 3px rgba(240, 206, 104, 0.14);
}

.filter-sort-select option {
  color: #fff7e8;
  background-color: #190907;
}

.product-price-range {
  margin-top: 8px;

  color: #e8bd4d;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
}
/* Филтри лево и подредување десно */

.catalog-tools {
  width: 100%;
  margin: 35px 0 20px;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;

  background: transparent;
  border: none;
  box-shadow: none;
}

.catalog-sort {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.catalog-sort label {
  color: #e5bd4b;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.catalog-sort .filter-sort-select {
  width: 230px;
  min-height: 52px;
}

@media (max-width: 700px) {
  .catalog-tools {
    margin: 25px 0 18px;
    gap: 10px;
  }

  .filter-toggle-button {
    min-height: 48px;
    padding: 0 16px;
  }

  .catalog-sort {
    gap: 6px;
  }

  .catalog-sort label {
    font-size: 11px;
  }

  .catalog-sort .filter-sort-select {
    width: 155px;
    min-height: 48px;
    padding: 0 9px;
    font-size: 12px;
  }
}
/* Усогласени копчиња: Филтри и Подреди по */

.catalog-tools {
  align-items: center;
}

.filter-toggle-button,
.catalog-sort {
  width: 230px;
}

.filter-toggle-button,
.catalog-sort .filter-sort-select {
  min-height: 62px;
  margin: 0;

  color: #fff4e3;
  background-color: rgba(31, 10, 8, 0.96);
  border: 1px solid rgba(225, 185, 77, 0.72);
  border-radius: 9px;

  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.catalog-sort {
  display: block;
}

.catalog-sort label {
  display: none;
}

.catalog-sort .filter-sort-select {
  width: 100%;
  padding: 0 42px 0 18px;
  cursor: pointer;
  outline: none;
}

.filter-toggle-button:hover,
.catalog-sort .filter-sort-select:hover,
.catalog-sort .filter-sort-select:focus {
  background-color: rgba(42, 15, 11, 0.98);
  border-color: #f0ce68;
  box-shadow: 0 0 0 3px rgba(240, 206, 104, 0.1);
}

@media (max-width: 700px) {
  .filter-toggle-button,
  .catalog-sort {
    width: calc(50% - 6px);
  }

  .filter-toggle-button,
  .catalog-sort .filter-sort-select {
    min-height: 50px;
    font-size: 12px;
  }

  .catalog-sort .filter-sort-select {
    padding: 0 28px 0 10px;
  }
}
/* Усогласени копчиња: Филтри и Подреди по */

.catalog-tools {
  align-items: center;
}

.filter-toggle-button,
.catalog-sort {
  width: 230px;
}

.filter-toggle-button,
.catalog-sort .filter-sort-select {
  min-height: 62px;
  margin: 0;

  color: #fff4e3;
  background-color: rgba(31, 10, 8, 0.96);
  border: 1px solid rgba(225, 185, 77, 0.72);
  border-radius: 9px;

  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.catalog-sort {
  display: block;
}

.catalog-sort label {
  display: none;
}

.catalog-sort .filter-sort-select {
  width: 100%;
  padding: 0 42px 0 18px;
  cursor: pointer;
  outline: none;
}

.filter-toggle-button:hover,
.catalog-sort .filter-sort-select:hover,
.catalog-sort .filter-sort-select:focus {
  background-color: rgba(42, 15, 11, 0.98);
  border-color: #f0ce68;
  box-shadow: 0 0 0 3px rgba(240, 206, 104, 0.1);
}

@media (max-width: 700px) {
  .filter-toggle-button,
  .catalog-sort {
    width: calc(50% - 6px);
  }

  .filter-toggle-button,
  .catalog-sort .filter-sort-select {
    min-height: 50px;
    font-size: 12px;
  }

  .catalog-sort .filter-sort-select {
    padding: 0 28px 0 10px;
  }
}
/* ========================================
   РЕЦЕНЗИИ ОД КЛИЕНТИ
======================================== */

.reviews-section {
  position: relative;
  padding: 90px max(24px, calc((100% - 1200px) / 2));

  background:
    linear-gradient(
      rgba(18, 6, 5, 0.82),
      rgba(31, 10, 8, 0.88)
    ),
    url("Samo pozadina.png") center / cover fixed;

  border-top: 1px solid rgba(225, 185, 77, 0.5);
  border-bottom: 1px solid rgba(225, 185, 77, 0.5);
}

.reviews-heading {
  max-width: 760px;
  margin: 0 auto 45px;
  text-align: center;
}

.reviews-heading .eyebrow {
  margin-bottom: 12px;

  color: #e1b94d;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.reviews-heading h2 {
  margin-bottom: 16px;

  color: #f0c34f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.08;
}

.reviews-heading > p:last-child {
  color: #ead9c7;
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.review-card {
  position: relative;
  min-height: 310px;
  padding: 30px 27px;

  display: flex;
  flex-direction: column;

  background:
    linear-gradient(
      145deg,
      rgba(49, 17, 13, 0.97),
      rgba(24, 7, 6, 0.98)
    );

  border: 1px solid rgba(225, 185, 77, 0.55);
  border-radius: 14px;

  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.34),
    inset 0 0 30px rgba(225, 185, 77, 0.035);

  overflow: hidden;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.review-card::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -45px;

  width: 130px;
  height: 130px;

  background:
    radial-gradient(
      circle,
      rgba(225, 185, 77, 0.12),
      transparent 68%
    );

  pointer-events: none;
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 206, 104, 0.9);

  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.45),
    0 0 25px rgba(225, 185, 77, 0.08);
}

.review-stars {
  margin-bottom: 12px;

  color: #f0c34f;
  font-family: Arial, sans-serif;
  font-size: 17px;
  letter-spacing: 4px;
}

.review-quote {
  height: 47px;

  color: rgba(240, 195, 79, 0.75);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 65px;
  line-height: 0.9;
}

.review-card > p {
  margin-bottom: 26px;

  color: #f3e6d8;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
}

.review-card footer {
  margin-top: auto;
  padding-top: 18px;

  display: flex;
  flex-direction: column;
  gap: 5px;

  border-top: 1px solid rgba(225, 185, 77, 0.22);
}

.review-card footer strong {
  color: #f0c34f;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.review-card footer span {
  color: #bba895;
  font-family: Arial, sans-serif;
  font-size: 12px;
}

.reviews-action {
  margin-top: 45px;
  text-align: center;
}

.reviews-action .hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Таблет */

@media (max-width: 950px) {
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Телефон */

@media (max-width: 650px) {
  .reviews-section {
    padding: 65px 20px;
    background-attachment: scroll;
  }

  .reviews-heading {
    margin-bottom: 32px;
  }

  .reviews-heading h2 {
    font-size: 36px;
  }

  .reviews-heading > p:last-child {
    font-size: 15px;
  }

  .reviews-grid {
    display: flex;
    gap: 16px;

    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;

    padding: 5px 2px 20px;
  }

  .reviews-grid::-webkit-scrollbar {
    display: none;
  }

  .review-card {
    min-width: 86%;
    min-height: 300px;

    padding: 26px 22px;
    scroll-snap-align: center;
  }

  .review-card > p {
    font-size: 15px;
  }

  .reviews-action {
    margin-top: 25px;
  }
}
