﻿.luxury-divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  margin-bottom: 1.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2.4rem;
  background: var(--gold-500);
  color: var(--dark-950);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .3s, color .3s, transform .2s;
}

.btn-primary:hover { background: var(--gold-400); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2.4rem;
  border: 1px solid rgba(201,169,98,.4);
  color: var(--gold-500);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .3s, border-color .3s, transform .2s;
}

.btn-outline:hover { background: rgba(201,169,98,.08); border-color: var(--gold-500); transform: translateY(-1px); }

.view-all-link {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--gold-500); font-size: .75rem; letter-spacing: .2em; text-transform: uppercase;
  text-decoration: none; transition: color .2s;
  margin-top: 2.5rem;
}

.view-all-link:hover { color: var(--gold-400); }
.view-all-link svg { width: 16px; height: 16px; }

.social-btn {
  width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); text-decoration: none;
  transition: color .2s, border-color .2s;
}

.social-btn:hover { color: var(--gold-500); border-color: rgba(201,169,98,.5); }
.social-btn svg { width: 16px; height: 16px; }



/*TOOLTIP*//*TOOLTIP*//*TOOLTIP*//*TOOLTIP*//*TOOLTIP*//*TOOLTIP*//*TOOLTIP*/
.recommendation-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.tooltip-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.3);
  transition: 0.3s ease;
}

.tooltip-icon:hover {
  background: rgba(255,255,255,0.25);
}

.tooltip-box {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease;

  position: absolute;
  top: 120%;
  right: 0;

  background: rgba(0,0,0,0.9);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  width: 240px;
  font-size: 14px;
  line-height: 1.4;
  z-index: 100;
}

.tooltip-icon:hover + .tooltip-box {
  visibility: visible;
  opacity: 1;
}
/*TOOLTIP*//*TOOLTIP*//*TOOLTIP*//*TOOLTIP*//*TOOLTIP*//*TOOLTIP*//*TOOLTIP*/