/* CARD */
.album-card {
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

/* IMAGE */
.album-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* ICON BUTTONS */
.album-card-icons {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}

.album-glass-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  backdrop-filter: blur(10px);
  background: rgba(49, 143, 227, 0.35); /* was rgba(52, 144, 227, 0.35) */
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s;
}

.album-glass-btn:hover {
  background: rgba(49, 143, 227, 0.55); /* was rgba(52, 144, 227, 0.55) */
  /* transform: translateY(-2px); */
}

.album-glass-btn.bookmark img {
  width: 18px;
  height: 18px;
}

.album-glass-btn img {
  width: 22px;
  height: 22px;
}

/* TITLE */
.album-title {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 6px;
}

/* ADDRESS */
.album-address {
  font-size: 0.85rem;
  color: #a3a3a3; /* was #777 */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0; /* ⭐ ضروری برای ellipsis داخل flex */
  display: flex; /* اگر از d-flex استفاده می‌کنی */
  align-items: center;
  gap: 4px;
}

/* (duplicate block kept as-is, only color updated where needed) */
.album-address {
  display: flex;
  align-items: center;
  gap: 4px;
}

.album-address-text {
  font-size: 0.85rem;
  color: #a3a3a3; /* was #777 */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0; /* خیلی مهم */
  flex: 1; /* ⭐⭐ ضروری‌ترین خط */
}

.album-address i {
  color: #318fe3; /* was #3490e3 */
  flex-shrink: 0;
}

/* duplicate kept (same color) */
.album-address i {
  color: #318fe3; /* was #3490e3 */
  flex-shrink: 0; /* آیکن کوچک نشود */
}

/* SPECS */
.album-spec {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}

.album-spec img {
  width: 24px;
  height: 24px;
}

/* PRICES */
.album-prices .price-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
  font-size: 0.85rem;
}

.price-label {
  font-weight: 600;
  color: #333;
}

.price-value {
  font-weight: bold;
  color: #000;
}

/* META */
.album-meta span {
  font-size: 0.78rem;
  background: #f8f8f8;
  padding: 4px 6px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: #444;
}

/* RESPONSIVE IMG HEIGHT */
@media (max-width: 575px) {
  .album-img {
    height: 150px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .album-specs-container {
    width: 90%;
  }
}
@media (min-width: 1200px) and (max-width: 1410px) {
  .album-specs-container {
    width: 100%;
  }
}

@media (min-width: 1411px) {
  .album-specs-container {
    width: 80%;
  }
}

#albumViewContent .album-card {
  min-height: 420px;
  max-height: 420px;
  overflow: hidden;
}