/* ===== PREMIUM ACTIONS BAR ===== */
.h__actions {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-shrink: 0;
  position: relative;
}

/* Premium Action Buttons */
.action-btn {
  position: relative;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--text-dark);
}

/* Underline effect on hover */
.action-btn::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transform: translateX(-50%);
  transition: width 0.5s ease;
}

.action-btn:hover::before {
  width: 100%;
}

.action-btn:hover {
  color: var(--accent-wine);
  transform: translateY(-2px);
}

/* SVG Icon Styling */
.action-btn__icon {
  width: 24px;
  height: 24px;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.5s ease;
}

.action-btn:hover .action-btn__icon {
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3));
}

/* Cart Badge (item counter) */
.action-btn__badge {
  position: absolute;
  top: 4px;
  right: 2px;
  background: var(--accent-wine);
  color: white;
  font-size: 10px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.5px;
  transition: all 0.3s ease;
  transform: scale(1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.action-btn--cart:hover .action-btn__badge {
  background: var(--accent-gold);
  color: var(--accent-wine);
  transform: scale(1.2);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}

/* Cart Button */
.action-btn--cart {
  color: var(--text-dark);
}

.action-btn--cart:hover {
  color: var(--accent-wine);
}

.action-btn--cart:hover .action-btn__icon {
  animation: cartShake 0.5s ease;
}

@keyframes cartShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-2px); }
  75% { transform: translateX(2px); }
}

/* Profile Button */
.action-btn--profile {
  color: var(--text-dark);
}

.action-btn--profile:hover {
  color: var(--accent-gold);
}

.action-btn--profile:hover .action-btn__icon {
  animation: profileGlow 0.5s ease;
}

@keyframes profileGlow {
  0%, 100% { filter: drop-shadow(0 0 0px rgba(212, 175, 55, 0)); }
  50% { filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5)); }
}

/* Responsive */
@media (max-width: 768px) {
  .h__actions {
    gap: 16px;
  }
  
  .action-btn {
    width: 40px;
    height: 40px;
  }
  
  .action-btn__icon {
    width: 20px;
    height: 20px;
  }
}

/* Feedback Button */
.feedback-btn {
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent-wine), var(--accent-plum));
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
  letter-spacing: 1.2px;
  font-family: var(--font-sans);
  text-transform: uppercase;
  box-shadow: 0 8px 25px rgba(114, 47, 55, 0.35), 0 0 30px rgba(212, 175, 55, 0.15);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

.feedback-btn:hover {
  background: linear-gradient(135deg, var(--accent-plum), var(--accent-wine));
  box-shadow: 0 12px 35px rgba(114, 47, 55, 0.45), 0 0 40px rgba(212, 175, 55, 0.25);
  transform: translateY(-2px);
}

.feedback-btn:active {
  transform: translateY(0);
  box-shadow: 0 5px 15px rgba(114, 47, 55, 0.3), 0 0 20px rgba(212, 175, 55, 0.15);
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, var(--secondary-color), #2a1f1a);
  color: #fff;
  padding: 70px 0 30px;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--accent-wine), var(--accent-gold)) 1;
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.footer__title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 25px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: var(--font-sans);
  color: #fff;
}

.footer__list {
  list-style: none;
}

.footer__list li {
  margin-bottom: 14px;
}

.footer__list a {
  color: #b0b0b0;
  font-size: 12px;
  transition: var(--transition);
  font-family: var(--font-sans);
}

.footer__list a:hover {
  color: var(--accent-gold);
}

.footer__contact {
  font-size: 12px;
  margin-bottom: 12px;
  color: #b0b0b0;
  font-family: var(--font-sans);
}

.footer__bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
  color: #808080;
  font-family: var(--font-sans);
}
