/* =========================================================
   💅 REVIEW & Q&A – Beauty Ecommerce Style
   ========================================================= */

/* === GLAVNI KONTEJNER FORME === */
.luen-review-form {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  max-width: 640px;
  margin: 50px auto;
  font-family: 'Inter', sans-serif;
  color: #2c2c2c;
}

/* === HEADER PROIZVODA === */
.review-product-header {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid #eee;
  padding-bottom: 16px;
  margin-bottom: 24px;
}
.review-product-header img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #ddd;
}

/* === ZVEZDICE === */
.rating-stars {
  direction: rtl;
  text-align: center;
  margin: 20px 0;
}
.rating-stars input { display: none; }
.rating-stars label {
  font-size: 32px;
  color: #ddd;
  cursor: pointer;
  transition: color 0.2s;
}
.rating-stars input:checked ~ label,
.rating-stars label:hover,
.rating-stars label:hover ~ label {
  color: #e0a869;
}

/* === POLJA FORME === */
.luen-review-form input,
.luen-review-form textarea {
  width: 100%;
  margin-bottom: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 15px;
  transition: border 0.2s;
}
.luen-review-form input:focus,
.luen-review-form textarea:focus {
  border-color: #e0a869;
  outline: none;
}

/* === UPLOAD GRUPA === */
.upload-group {
  background: #fafafa;
  border: 1px dashed #ccc;
  border-radius: 8px;
  padding: 14px;
  margin-bottom: 20px;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s;
}
.upload-group:hover { background: #f5f5f5; }

/* === SUBMIT DUGME === */
.submit-btn {
  width: 100%;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
}
.submit-btn:hover { background: #222; }

/* === DISKLEJMER === */
.disclaimer {
  margin-top: 16px;
  font-size: 12px;
  color: #777;
  text-align: center;
}

/* =========================================================
   🧴 REVIEW LISTA / PRIKAZ RECENZIJA
   ========================================================= */
.luen-reviews {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  margin: 60px auto;
  font-family: 'Inter', sans-serif;
}

/* === HEADER I TABOVI === */
.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  margin-bottom: 30px;
}
.tabs {
  display: flex;
  gap: 24px;
  font-size: 15px;
  font-weight: 600;
}
.tabs .tab {
  background: none;
  border: none;
  cursor: pointer;
  color: #444;
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
}
.tabs .tab.active {
  color: #000;
  border-color: #000;
}
.actions {
  display: flex;
  gap: 10px;
}
.filter-btn {
  background: #e0a869;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 16px;
  cursor: pointer;
}
.filter-btn:hover { background: #d19450; }
.open-review-form {
  background: #000;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.2s;
}
.open-review-form:hover { background: #222; }

/* =========================================================
   🧾 REVIEW KARTICE – FULL WIDTH
   ========================================================= */
.reviews-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}

.review-card.fullwidth {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
  padding: 30px 40px;
  width: 100%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.review-card.fullwidth:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

/* === GRID STRUKTURA UNUTAR KARTICE === */
.review-grid {
  display: grid;
  grid-template-columns: 220px 1fr 200px;
  align-items: start;
  gap: 30px;
  width: 100%;
}

/* === LEVA STRANA === */
.review-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid #eee;
  padding-right: 20px;
}
.review-avatar img,
.avatar-placeholder {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  background: #000;
  color: #fff;
  font-weight: 600;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-author {
  font-weight: 600;
  font-size: 15px;
  margin-top: 10px;
}
.review-status {
  font-size: 13px;
  color: #b87c3f;
  font-weight: 500;
}
.review-recommend {
  font-size: 13px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}
.recommend-icon {
  color: #b87c3f;
  font-size: 14px;
}

/* === SREDINA === */
.review-center {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 1px solid #eee;
  padding-left: 24px;
}
.review-rating .star {
  font-size: 18px;
  color: #ccc;
}
.review-rating .star.filled { color: #e0a869; }
.review-title {
  font-weight: 700;
  font-size: 16px;
  margin: 4px 0 8px;
}
.review-content p {
  font-size: 14px;
  color: #222;
  line-height: 1.6;
  margin: 0 0 8px;
}
.review-footer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #666;
  margin-top: 8px;
}
.review-footer .thumb-icon { cursor: pointer; }
.review-footer .thumb-icon:hover { color: #000; }

/* === DESNA STRANA (SLIKE) === */
.review-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.review-right img {
  width: 140px;
  height: 140px;
  border-radius: 10px;
  object-fit: cover;
}

/* =========================================================
   💬 MODAL ZA FORMU
   ========================================================= */
.review-modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(4px);
}
.review-modal.active {
  display: flex;
  animation: fadeInModal 0.3s ease-out;
}
.review-modal-content {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  max-width: 680px;
  width: 90%;
  position: relative;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
  animation: modalFade 0.3s ease-out;
}
.close-modal {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 26px;
  color: #444;
  cursor: pointer;
  transition: color 0.2s;
}
.close-modal:hover { color: #000; }

@keyframes modalFade {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* === CHECKBOX STIL === */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0 30px;
  font-size: 15px;
  color: #333;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 10px 14px;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fafafa;
  transition: all 0.2s ease;
}

.checkbox-group label:hover {
  background: #f5f5f5;
  border-color: #e0a869;
}

.checkbox-group input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #bbb;
  border-radius: 4px;
  position: relative;
  transition: all 0.2s;
}

.checkbox-group input[type="checkbox"]:checked {
  background-color: #e0a869;
  border-color: #e0a869;
}

.checkbox-group input[type="checkbox"]:checked::after {
  content: "✓";
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  position: absolute;
  top: 0; left: 4px;
}

.error-hint {
  color: #d9534f;
  font-size: 13px;
  margin-top: 4px;
  font-weight: 500;
}
.rating-stars.error label {
  color: #d9534f !important;
}

.error-hint {
  color: #d9534f;
  font-size: 13px;
  margin-top: 4px;
  font-weight: 500;
}

/* Thank You Modal */
.review-thankyou {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.review-thankyou-box {
  background: #fff;
  padding: 40px 50px;
  border-radius: 14px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.15);
}
.review-thankyou-box h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #222;
}
.review-thankyou-box p {
  font-size: 15px;
  color: #444;
  margin-bottom: 20px;
}
.close-thankyou {
  background: #000;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
}
.close-thankyou:hover {
  background: #222;
}
.rating-stars.error label {
  color: #d9534f !important;
}
.review-gallery video {
  width: 100%;
  max-width: 160px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  background: #000;
}
.review-gallery video {
  width: 100%;
  max-width: 160px;
  border-radius: 8px;
  background: #000;
  object-fit: cover;
  height: auto;
}
.review-filters {
  background: #fff;
  border: 1px solid #e0a869;
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
  animation: fadeIn 0.2s ease;
}
.filter-section {
  margin-bottom: 20px;
}
.filter-section label {
  font-weight: 600;
  color: #333;
  display: block;
  margin-bottom: 8px;
}
.search-box input {
  width: 100%;
  border: 1px solid #e0a869;
  border-radius: 8px;
  padding: 10px;
  font-size: 15px;
}
.rating-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.filter-star {
  border: 1px solid #e0a869;
  border-radius: 20px;
  padding: 6px 12px;
  background: transparent;
  color: #e0a869;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-star.active,
.filter-star:hover {
  background: #e0a869;
  color: #fff;
}
@keyframes fadeIn {
  from {opacity:0; transform:translateY(-5px);}
  to {opacity:1; transform:translateY(0);}
}
.review-summary {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  border-bottom: 1px solid #eee;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.summary-left {
  flex: 1 1 300px;
}
.summary-rating {
  text-align: left;
  margin-bottom: 10px;
}
.summary-score {
  font-size: 42px;
  font-weight: 700;
  color: #000;
  line-height: 1;
}
.summary-stars {
  font-size: 22px;
  color: #ccc;
  margin: 6px 0;
}
.summary-stars .filled { color: #000; }
.summary-stars .half {
  background: linear-gradient(90deg, #000 50%, #ccc 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.summary-count {
  color: #777;
  font-size: 14px;
}
.summary-recommend {
  margin-top: 12px;
  font-size: 15px;
  color: #333;
}
.summary-recommend strong {
  font-size: 28px;
  color: #000;
  margin-right: 4px;
}
.summary-gallery {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 600px;
}
.summary-gallery img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #eee;
  cursor: pointer;
  transition: transform 0.2s;
}
.summary-gallery img:hover {
  transform: scale(1.05);
}
.review-summary-text {
  margin-top: 25px;
  max-width: 700px;
}
.review-summary-text h4 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 8px;
}
.review-summary-text p {
  color: #444;
  line-height: 1.6;
  font-size: 15px;
}
/* =========================================================
   🔹 REVIEW SUMMARY GALLERY (image + video uniform)
   ========================================================= */
.summary-gallery {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.summary-gallery img,
.summary-gallery video {
  width: 80px;
  height: 80px;
  object-fit: cover;         /* cropuje da sve bude kvadratno */
  border-radius: 6px;
  border: 1px solid #eee;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  background: #f9f9f9;
  transition: transform 0.2s ease;
}

.summary-gallery video {
  background: #000;          /* blago tamnija pozadina za video */
}

.summary-gallery img:hover,
.summary-gallery video:hover {
  transform: scale(1.05);
}

/* Opcionalno: ako hoćeš da max 6 elemenata stane u jedan red */
.summary-gallery {
  max-width: 520px;
  overflow: hidden;
}

/* =========================================================
   🖼️ REVIEW LIGHTBOX (slike + video, sa navigacijom)
   ========================================================= */
.review-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.review-lightbox.active {
  display: flex;
}

.review-lightbox-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
}

.review-lightbox-content img,
.review-lightbox-content video {
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
  object-fit: contain;
  display: block;
}

.review-lightbox-close {
  position: absolute;
  top: -50px;
  right: -10px;
  color: #fff;
  font-size: 38px;
  border: none;
  background: none;
  cursor: pointer;
}

.review-lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 48px;
  cursor: pointer;
  user-select: none;
  padding: 10px 20px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.review-lightbox-arrow:hover {
  opacity: 1;
}

.review-lightbox-arrow.prev { left: 20px; }
.review-lightbox-arrow.next { right: 20px; }

/* =========================================================
   🔹 THUMBNAIL STRIP PRI DNU
   ========================================================= */
.review-lightbox-thumbs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 15px;
  max-width: 90vw;
}

.review-lightbox-thumbs .thumb {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s, border-color 0.2s;
}

.review-lightbox-thumbs .thumb.active {
  border-color: #fff;
  opacity: 1;
}

.review-lightbox-thumbs img,
.review-lightbox-thumbs video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* =========================================================
   ⭐ REVIEW SUMMARY – HORIZONTAL BAR STYLE
   ========================================================= */
.review-summary {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 25px;
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.summary-left {
  flex: 1;
  min-width: 300px;
}

.summary-rating {
  text-align: left;
  margin-bottom: 15px;
}

.summary-score {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: #222;
}

.summary-stars {
  margin: 5px 0;
}

.summary-stars .star {
  font-size: 18px;
  color: #ccc;
}
.summary-stars .star.filled {
  color: #ff9c00;
}

.summary-count {
  font-size: 14px;
  color: #777;
}

/* 📊 Histogram (horizontal bars) */
.rating-summary-bars {
  margin-top: 10px;
}

.rating-summary-bars h5 {
  margin: 5px 0 10px;
  font-weight: 600;
  font-size: 14px;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 3px 0;
}

.rating-label {
  width: 16px;
  text-align: right;
  font-size: 13px;
  color: #333;
}

.rating-bar {
  flex: 1;
  height: 8px;
  background: #f4f4f4;
  border-radius: 3px;
  overflow: hidden;
}

.rating-fill {
  height: 100%;
  background: #ff9c00;
  border-radius: 3px;
  transition: width 0.4s ease;
}

.summary-recommend {
  margin-top: 10px;
  font-size: 14px;
  color: #444;
}
.summary-recommend strong {
  color: #ff9c00;
  margin-right: 5px;
}

/* 🖼️ Galerija */
.summary-gallery {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
  max-width: 420px;
}
.summary-gallery img,
.summary-gallery video {
  width: 65px;
  height: 65px;
  border-radius: 6px;
  object-fit: cover;
  cursor: pointer;
}
/* =========================================================
   ⭐ HISTOGRAM INTERAKCIJA (klik / hover)
   ========================================================= */
.filter-rating {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.25s ease, transform 0.2s ease;
  padding: 4px 6px;
  border-radius: 6px;
}
.filter-rating:hover {
  background: #fff7e6;
  transform: translateX(3px);
}
.filter-rating.active {
  background: #ffe7b3;
  box-shadow: inset 0 0 0 1px #ff9c00;
}

/* Bar u histogramu */
.breakdown-row .bar {
  flex: 1;
  height: 8px;
  background: #f2f2f2;
  border-radius: 4px;
  overflow: hidden;
}
.breakdown-row .bar-fill {
  height: 100%;
  background: #ff9c00;
  border-radius: 4px;
  transition: width 0.3s ease;
}

/* =========================================================
   💬 AKTIVNI FILTER INFO (ispod headera)
   ========================================================= */
.active-filter-info {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba;
  border-radius: 8px;
  padding: 10px 16px;
  margin: 15px 0 25px;
  font-size: 14px;
  gap: 8px;
  animation: fadeIn 0.3s ease;
}
.active-filter-info button.clear-filter {
  background: none;
  border: none;
  color: #d39e00;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s;
}
.active-filter-info button.clear-filter:hover {
  color: #000;
}

/* =========================================================
   🌫️ FADE EFEKAT ZA FILTER (prikaz/sakrivanje review kartica)
   ========================================================= */
.review-card {
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.review-card.hide {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}
/* =========================================================
   🏷️ NASLOV SEKCIJE "Ratings & Reviews"
   ========================================================= */
.reviews-heading {
  text-align: left;
  margin-bottom: 30px;
  border-bottom: 2px solid #000;
  display: inline-block;
  padding-bottom: 6px;
}

.reviews-heading h2 {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin: 0;
  letter-spacing: -0.3px;
}
/* =========================================================
   💥 LIKE / DISLIKE – ANIMACIJA PULSE + +1 EFFECT
   ========================================================= */
.review-footer .thumb-icon {
  cursor: pointer;
  font-size: 18px;
  transition: color 0.2s ease, transform 0.25s ease;
  position: relative;
}
.review-footer .thumb-icon.like:hover { color: #28a745; transform: scale(1.2); }
.review-footer .thumb-icon.dislike:hover { color: #dc3545; transform: scale(1.2); }

.review-footer .thumb-icon.voted {
  opacity: 0.7;
  cursor: default;
  transform: none;
}

/* 🫧 Pulse efekat */
@keyframes votePulse {
  0% { transform: scale(1); opacity: 1; }
  40% { transform: scale(1.4); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}
.thumb-icon.pulse {
  animation: votePulse 0.4s ease;
}

/* ✨ +1 efekt koji iskoči iznad */
.vote-plusone {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 600;
  color: #28a745;
  opacity: 0;
  animation: plusOne 0.8s ease forwards;
  pointer-events: none;
}
.vote-plusone.dislike { color: #dc3545; }

@keyframes plusOne {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, -15px); opacity: 0; }
}


/* =========================================================
   🔸 BREAKDOWN – (već definisan ranije)
   ========================================================= */
.rating-breakdown {
  margin-top: 0;
}



/* =========================================================
   📱 RESPONSIVE PRIKAZ
   ========================================================= */
@media (max-width: 900px) {
  .review-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .review-left {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
  }
  .review-center {
    border-left: none;
    padding-left: 0;
  }
  .review-right {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .review-right img {
    width: 100px;
    height: 100px;
  }
}
/* =========================================================
   🌸 Luen – Social Login (Facebook + Google)
   ========================================================= */

.social-login-box {
  text-align: center;
  background: #faf9f9;
  border: 1px dashed #e8e6e6;
  border-radius: 14px;
  padding: 28px 22px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.social-login-box h4 {
  font-size: 17px;
  font-weight: 600;
  color: #333;
  margin-bottom: 16px;
  font-family: "Poppins", sans-serif;
}

.social-login-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.social-login-buttons a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 40px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 500;
  color: #fff !important;
  text-decoration: none !important;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Facebook */
.social-login-buttons a.nsl-button-facebook {
  background: linear-gradient(135deg, #1877f2, #3b5998);
}

.social-login-buttons a.nsl-button-facebook:hover {
  background: linear-gradient(135deg, #1a6ee0, #2e4b8a);
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(24, 119, 242, 0.3);
}

/* Google */
.social-login-buttons a.nsl-button-google {
  background: linear-gradient(135deg, #db4437, #c1351d);
}

.social-login-buttons a.nsl-button-google:hover {
  background: linear-gradient(135deg, #d53b2e, #a62c16);
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(219, 68, 55, 0.3);
}

/* Info tekst ispod dugmadi */
.social-login-note {
  font-size: 13px;
  color: #777;
  margin-top: 6px;
  font-family: "Poppins", sans-serif;
}

/* Responsive */
@media (max-width: 500px) {
  .social-login-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .social-login-buttons a {
    width: 100%;
    justify-content: center;
  }
}
