/*========================================
        PRODUCT DETAILS PAGE STYLE
=========================================*/
.details-gallery {
  position: relative;
}

.details-label-group {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.details-label {
  font-size: 14px;
  padding: 6px 10px;
  margin-bottom: 6px;
  line-height: 13px;
  border-radius: 3px;
  text-transform: capitalize;
  text-align: center;
  color: var(--white);
}

.details-label:last-child {
  margin-bottom: 0px;
}

.details-label.off {
  background: var(--red);
}

.details-label.new {
  background: var(--green);
}

.details-label.sale {
  background: var(--orange);
}

.details-label.feat {
  background: var(--purple);
}

.details-label.rate {
  background: var(--yellow);
}

.details-preview {
  margin-bottom: 16px;
}

.details-preview li img {
  width: 100%;
  border-radius: 8px;
}

.details-thumb li {
  margin: 0px 8px;
  cursor: pointer;
}

.details-thumb li img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--white);
}

.details-thumb .slick-current img {
  border: 1px solid var(--primary);
}

.product-navigation {
  margin-bottom: 25px;
  padding: 20px 25px;
  border-radius: 8px;
  background: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.product-navigation li a {
  color: var(--text);
  text-transform: capitalize;
  position: relative;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.product-navigation li a:hover {
  color: var(--primary);
}

.product-navigation li a:hover .product-nav-popup {
  visibility: visible;
  opacity: 1;
}

.product-nav-popup {
  position: absolute;
  top: 30px;
  left: 50%;
  z-index: 3;
  width: 100px;
  height: auto;
  visibility: hidden;
  opacity: 0;
  padding: 10px;
  border-radius: 8px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  -webkit-box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.1);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.product-nav-popup::before {
  position: absolute;
  content: "";
  z-index: -1;
  top: -3px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  -webkit-transform: rotate(45deg) translateX(-50%);
          transform: rotate(45deg) translateX(-50%);
  background: var(--white);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.product-nav-popup img {
  width: 100%;
}

.product-nav-popup small {
  font-size: 14px;
  line-height: 18px;
  display: inline-block;
}

.details-content {
  padding: 35px 35px;
  border-radius: 8px;
  background: var(--white);
}

.details-name {
  font-size: 26px;
  line-height: 34px;
  margin-bottom: 5px;
  text-transform: capitalize;
}

.details-name a {
  color: var(--heading);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.details-name a:hover {
  color: var(--primary);
}

.details-meta {
  margin-bottom: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.details-meta p {
  font-size: 13px;
  margin-right: 20px;
  white-space: nowrap;
  text-transform: uppercase;
  color: var(--placeholder);
}

.details-meta span,
.details-meta a {
  margin-left: 5px;
  color: var(--placeholder);
}

.details-meta a:hover {
  text-decoration: underline;
  color: var(--primary);
}

.details-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 15px;
}

.details-rating i,
.details-rating a {
  font-size: 15px;
  margin-right: 3px;
  color: var(--gray);
}

.details-rating a {
  margin-left: 8px;
  white-space: nowrap;
  text-transform: capitalize;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.details-rating a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.details-rating .active {
  color: var(--yellow);
}

.details-price {
  margin-bottom: 20px;
}

.details-price del {
  color: var(--red);
  margin-right: 25px;
}

.details-price span {
  color: var(--primary);
  white-space: nowrap;
}

.details-price span small {
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
}

.details-desc {
  margin-bottom: 25px;
}

.details-list-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 25px;
}

.details-list-group:last-child {
  margin-bottom: 0px;
}

.details-list-title {
  font-weight: 500;
  margin-right: 15px;
  color: var(--heading);
  text-transform: capitalize;
}

.details-tag-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.details-tag-list li {
  margin-right: 8px;
}

.details-tag-list li a {
  font-size: 14px;
  line-height: 12px;
  padding: 8px 10px;
  border-radius: 5px;
  letter-spacing: 0.3px;
  text-transform: capitalize;
  color: var(--text);
  background: var(--chalk);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.details-tag-list li a:hover {
  color: var(--white);
  background: var(--primary);
}

.details-share-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.details-share-list li {
  margin-right: 8px;
}

.details-share-list li a {
  width: 35px;
  height: 35px;
  font-size: 16px;
  line-height: 35px;
  border-radius: 50%;
  text-align: center;
  color: var(--text);
  background: var(--chalk);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.details-share-list li a:hover {
  color: var(--white);
  background: var(--primary);
}

.details-add-group {
  margin: 45px 0px 15px;
}

.details-add-group .product-add,
.details-add-group .action-input {
  padding: 10px 0px;
  color: var(--white);
  background: var(--primary);
  text-transform: uppercase;
}

.details-add-group .action-minus i,
.details-add-group .action-plus i {
  background: var(--chalk);
}

.details-action-group {
  display: -ms-grid;
  display: grid;
  grid-gap: 15px;
  -ms-grid-columns: (minmax(200px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  position: relative;
}

.details-action-group a {
  padding: 10px 0px;
  border-radius: 8px;
  color: var(--text);
  background: var(--chalk);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.details-action-group a:hover {
  color: var(--primary);
}

.details-action-group a i {
  font-size: 16px;
  margin-right: 8px;
}

.details-action-group a span {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.details-wish.active {
  color: var(--white);
  background: var(--primary);
}

.details-wish.active:hover {
  color: var(--white);
  background: var(--primary);
}

.product-details-frame {
  padding: 50px;
  border-radius: 8px;
  margin-bottom: 30px;
  background: var(--white);
}

.product-details-frame:last-child {
  margin-bottom: 0px;
}

.frame-title {
  margin-bottom: 30px;
  text-transform: capitalize;
}

.tab-descrip {
  position: relative;
}

.tab-descrip ul {
  list-style: disc;
  margin-left: 20px;
  margin-top: 25px;
}

.tab-descrip ul li {
  margin-bottom: 8px;
}

.tab-descrip ul li:last-child {
  margin-bottom: 0px;
}

.tab-descrip img {
  width: 100%;
  border-radius: 8px;
}

.tab-descrip a {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 80px;
  height: 80px;
  font-size: 22px;
  line-height: 80px;
  border-radius: 50%;
  text-align: center;
  color: var(--white);
  background: rgba(15, 199, 86, 0.8);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-box-shadow: var(--primary-bshadow);
          box-shadow: var(--primary-bshadow);
  text-shadow: var(--primary-tshadow);
}

.table-bordered {
  margin-bottom: 0px;
}

.table-bordered th,
.table-bordered td {
  padding: 12px 25px;
  text-align: left;
}

.table-bordered th {
  font-weight: 500;
}

.table-bordered td:last-child {
  border-right: 1px solid var(--border);
}

.review-item {
  padding: 45px 45px;
  border-radius: 8px;
  margin-bottom: 30px;
  background: var(--chalk);
  border: 1px solid var(--border);
}

.review-item:last-child {
  margin-bottom: 0px;
}

.review-media {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.review-avatar {
  margin-right: 15px;
  border-radius: 50%;
  border: 2px solid var(--primary);
}

.review-avatar img {
  width: 65px;
  border-radius: 50%;
  border: 2px solid var(--white);
}

.review-meta {
  text-transform: capitalize;
}

.review-meta a {
  color: var(--heading);
  text-transform: capitalize;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.review-meta a:hover {
  color: var(--primary);
}

.review-meta span {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
}

.review-meta span b {
  font-weight: 500;
  color: var(--primary);
}

.review-rating {
  margin-bottom: 10px;
}

.review-rating li {
  font-size: 16px;
  margin-right: 5px;
  color: var(--yellow);
  display: inline-block;
}

.review-desc {
  margin-bottom: 20px;
}

.review-reply {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.review-reply input {
  width: 100%;
  padding: 7px 18px;
  border-radius: 6px;
  margin-right: 20px;
  background: var(--white);
}

.review-reply button {
  font-size: 15px;
  padding: 6px 15px;
  border-radius: 6px;
  color: var(--white);
  background: var(--primary);
  text-transform: capitalize;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.review-reply button:hover {
  background: var(--heading);
}

.review-reply button i {
  margin-right: 5px;
}

.review-reply-list {
  margin-left: 80px;
  margin-top: 35px;
  border-top: 1px solid var(--border);
}

.review-reply-item {
  padding: 30px 0px;
  border-bottom: 1px solid var(--border);
}

.review-reply-item:last-child {
  padding-bottom: 0px;
  border-bottom: none;
}

.review-form .btn {
  width: 100%;
  padding: 12px 30px;
}

@media (max-width: 991px) {
  .product-navigation {
    margin: 25px 0px;
  }
}

@media (max-width: 575px) {
  .details-content {
    padding: 20px;
  }
  .details-name {
    font-size: 22px;
    line-height: 30px;
  }
  .product-details-frame {
    padding: 20px;
  }
  .review-item {
    padding: 20px 15px;
  }
  .review-reply {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .review-reply input {
    margin: 0px 0px 15px;
  }
  .review-reply-list {
    margin-left: 25px;
  }
  .star-rating label {
    margin: 0px 6px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .review-reply-list {
    margin-left: 30px;
  }
}


/* --- Kontener głównego zdjęcia --- */
.details-preview li {
    aspect-ratio: 1 / 1; /* Utrzymuje kwadratowe proporcje 1:1 */
    border-radius: 8px;
    overflow: hidden; /* Ukrywa części zdjęcia wychodzące poza ramkę */
    background-color: #ffffff; /* Jasne tło dla zdjęć z przezroczystością */
}

.details-preview li a {
    display: block;
    width: 100%;
    height: 100%;
}

.details-preview li img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Skaluje zdjęcie, aby było w pełni widoczne w kontenerze, zachowując proporcje */
    object-position: center; /* Centruje zdjęcie */
}

/* --- Kontener miniaturek --- */
.details-thumb li {
    aspect-ratio: 1 / 1; /* Kwadratowe proporcje dla miniaturek */
    border: 2px solid transparent; /* Przezroczysta ramka, aby uniknąć "przeskoku" layoutu przy zaznaczeniu */
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

/* Usuwamy starą regułę obramowania z samego obrazka */
.details-thumb li img {
    border: none !important; 
}

/* --- Styl aktywnej miniaturki --- */
/* Zaznaczamy cały kontener (li) zamiast samego zdjęcia (img) */
.details-thumb .slick-current {
    border-color: var(--primary); 
}

/* =======================================
   STYLE ATRYBUTÓW PRODUKTU
   ======================================== */

.product-attributes {
    margin-top: 20px;
    margin-bottom: 25px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.attribute-group {
    display: flex;
    align-items: flex-start; /* Lepsze wyrównanie dla wieloliniowych etykiet */
    margin-bottom: 18px;
    flex-wrap: wrap; /* Zawijanie na mniejszych ekranach */
}

.attribute-group:last-child {
    margin-bottom: 0;
}

.attribute-group .details-list-title {
    flex: 0 0 150px; /* Stała szerokość etykiety */
    font-weight: 600; /* Pogrubienie dla lepszej czytelności */
    padding-top: 8px; /* Lepsze wyrównanie z polem formularza */
    margin-right: 15px;
}

.attribute-group .attribute-options {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 15px; /* Odstęp między opcjami */
    align-items: center;
}

/* Styl dla select */
.attribute-options select.form-control {
    max-width: 320px;
    width: 100%;
    border-radius: 6px;
    border: 1px solid #ced4da;
    padding: 8px 12px;
    height: 40px;
    background-color: #f8f9fa;
}

/* Styl dla radio buttons */
.attribute-options .form-check {
    display: flex;
    align-items: center;
    padding-left: 0; /* Resetujemy padding */
}

.attribute-options .form-check-input {
    margin-top: 0;
    margin-right: 8px;
    width: 1.25em;
    height: 1.25em;
    cursor: pointer;
}

.attribute-options .form-check-label {
    cursor: pointer;
    padding-left: 0;
}

/* Styl dla pól tekstowych */
.attribute-options input[type="text"].form-control {
    max-width: 320px;
    width: 100%;
    border-radius: 6px;
    border: 1px solid #ced4da;
    padding: 8px 12px;
    height: 40px;
}

/* Wymagana gwiazdka */
.details-list-title .text-danger {
    font-size: 1.2em;
    margin-left: 2px;
    font-weight: bold;
}
/* Style dla walidacji atrybutów */
.attribute-field.is-invalid,
.attribute-options.is-invalid {
    border: 1px solid var(--red) !important;
    border-radius: 6px;
}

.attribute-options.is-invalid {
    padding: 5px; /* Dodatkowy padding dla grupy radio */
}

/* Animacja trzęsienia formularza przy błędzie */
@keyframes form-error-shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.form-error-shake {
    animation: form-error-shake 0.6s ease-in-out;
}
/* Styl dla informacji o modyfikatorze ceny */
.price-modifier {
    color: var(--primary);
    font-size: 0.9em;
    font-weight: 500;
    margin-left: 5px;
}

/* Style dla wyboru koloru */
.form-check-color {
    display: inline-block;
    margin-right: 5px;
}
.form-check-input-color {
    display: none; /* Ukryj oryginalne radio */
}
.form-check-label-color {
    display: inline-block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #ddd;
    transition: all 0.2s ease;
}
.form-check-input-color:checked + .form-check-label-color {
    box-shadow: 0 0 0 2px var(--primary);
    transform: scale(1.1);
}

/* ================================================= */
/* NOWE, PRECYZYJNE STYLE DLA PÓL WYBORU (CHECKBOX/RADIO) */
/* ================================================= */
/* Kontener dla całej grupy atrybutu (np. "Materiał" + opcje) */
.attribute-group {
    display: flex;
    align-items: flex-start; /* Wyrównuje etykietę i opcje do góry */
    padding-top: 20px; /* Dodaje odstęp od góry, tworząc separację */
    margin-top: 20px; /* Zapewnia odstęp od poprzedniego elementu */
    border-top: 1px solid #e9ecef; /* Linia separująca */
    flex-wrap: wrap;
}
/* Usuń górną linię i padding dla pierwszej grupy atrybutów */
.product-attributes > .attribute-group:first-child {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}
.attribute-group .details-list-title {
    flex: 0 0 150px;
    font-weight: 600;
    padding-top: 5px; /* Lekkie obniżenie etykiety dla lepszego wyrównania z pierwszym polem */
    margin-right: 15px;
}
/* Kontener na wszystkie opcje (radio, checkbox, etc.) */
.attribute-options {
    flex: 1;
    min-width: 200px; /* Zapobiega zbytniemu ściskaniu na mniejszych ekranach */
}
/* Wspólne style dla wszystkich kontenerów opcji */
.attribute-options .form-check {
    padding-left: 0; /* Resetujemy domyślny padding */
    margin-right: 15px; /* Ujednolicony prawy margines dla opcji w linii */
    display: inline-flex; /* Ustawiamy flex dla wyrównania w pionie */
    align-items: center;
    margin-bottom: 0px; /* Zmniejszony dolny margines */
}

/* Styl tylko dla PÓL CHECKBOX (tych, które nie są w jednej linii) */
.attribute-options .form-check:not(.form-check-inline) {
    display: flex;  /* Zapewnia, że elementy wewnątrz są w jednej linii */
    width: 100%;    /* Każdy checkbox zajmuje całą szerokość, aby były pod sobą */
    margin-left: 20px; /* Usuwamy prawy margines dla opcji pod sobą */
}

/* Wspólne style dla inputów radio i checkbox */
.attribute-options .form-check-input {
    margin-top: 0; /* Resetujemy domyślny margines */
    position: relative; /* Ułatwia pozycjonowanie */
    flex-shrink: 0; /* Zapobiega kurczeniu się pola wyboru */
}

/* Wspólne style dla etykiet */
.attribute-options .form-check-label {
    padding-left: 8px; /* Dodajemy stały, lewy margines dla tekstu */
    line-height: 1.2; /* Lepsze dopasowanie tekstu do pola wyboru */
}

/* =======================================
   STYLE PODPISU ZDJĘCIA
   ======================================== */

.details-preview li {
    position: relative;
}

.image-caption {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    text-align: center;
    width: 90%;
    max-width: 400px;
    pointer-events: none;
}

#image-caption-text {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.85);
    padding: 10px 18px;
    border-radius: 8px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
    pointer-events: auto;
    max-width: 100%;
    word-wrap: break-word;
}

#image-caption-text:empty {
    display: none;
}

/* Zapewniamy, że podpis jest zawsze na wierzchu dla Slick carousel */
.details-preview .slick-track,
.details-preview .slick-slide {
    position: relative;
}

.details-preview .slick-slide {
    position: relative;
}

/* Responsywność dla podpisu */
@media (max-width: 768px) {
    .image-caption {
        bottom: 10px;
        width: 95%;
    }
    
    #image-caption-text {
        font-size: 12px;
        padding: 8px 14px;
    }
}

/*========================================
        REVIEWS SECTION STYLE
=========================================*/
.review-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.rating-overview {
    text-align: center;
}

.rating-overview h4 {
    margin-bottom: 10px;
    color: var(--text);
}

.star-rating-display {
    margin: 10px 0;
}

.star-rating-display .icofont-ui-rating,
.star-rating-display .icofont-ui-rating-blank {
    color: #ffc107;
    font-size: 20px;
}

.rating-breakdown {
    padding-top: 10px;
}

.rating-bar {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.rating-stars {
    width: 60px;
    font-size: 14px;
    color: var(--text);
}

.rating-bar .progress {
    flex: 1;
    height: 8px;
    margin: 0 10px;
    background: #e9ecef;
}

.rating-bar .progress-bar {
    background: #ffc107;
}

.rating-count {
    width: 30px;
    text-align: right;
    font-size: 14px;
    color: var(--text);
}

.review-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.review-item {
    padding: 20px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 20px;
    background: var(--white);
}

.review-media {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-right: 15px;
}

.review-avatar i {
    font-size: 20px;
}

.review-meta {
    margin: 0;
}

.review-author {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
}

.review-date {
    display: block;
    font-size: 12px;
    color: #6c757d;
}

.review-rating {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    display: flex;
}

.review-rating li {
    color: #ffc107;
    margin-right: 2px;
}

.review-desc {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .review-summary .row > div {
        margin-bottom: 20px;
    }
    
    .rating-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .rating-stars,
    .rating-count {
        width: auto;
        margin-bottom: 5px;
    }
    
    .rating-bar .progress {
        width: 100%;
        margin: 0;
    }
}