/* Professional Upgrade CSS - Luxury Furniture E-commerce */
/* Production-Ready | Premium Animations | Accessibility Optimized */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Poppins:wght@400;500;600;700&display=swap');

/* ============================================================================
   1. ANNOUNCEMENT BAR UPGRADE
   ============================================================================ */
.announcement-bar {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  padding: 12px 20px;
  text-align: center;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--obsidian);
  letter-spacing: 0.5px;
  will-change: background-position;
}

.announcement-bar-icon {
  display: inline-block;
  margin-right: 8px;
  animation: rotate-soft 3s ease-in-out infinite;
}

@keyframes rotate-soft {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(12deg); }
}

@media (prefers-reduced-motion: reduce) {
  .announcement-bar-icon {
    animation: none;
  }
}

/* ============================================================================
   2. TRUST BAR
   ============================================================================ */
.trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 24px 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(201, 169, 110, 0.08) 100%);
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
  flex-wrap: wrap;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--charcoal);
  font-family: var(--font);
  letter-spacing: 0.3px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.trust-bar-item:hover {
  transform: translateY(-2px);
  color: var(--gold);
}

.trust-bar-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 110, 0.1);
  border-radius: 6px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.trust-bar-item:hover .trust-bar-icon {
  background: rgba(201, 169, 110, 0.25);
  box-shadow: 0 4px 16px rgba(201, 169, 110, 0.2);
}

@media (max-width: 768px) {
  .trust-bar {
    gap: 16px;
    padding: 16px 12px;
  }

  .trust-bar-item {
    font-size: 10px;
  }

  .trust-bar-icon {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
}

/* ============================================================================
   3. SOCIAL PROOF TOAST
   ============================================================================ */
.social-proof-toast {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: var(--ivory);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  font-family: var(--font);
  font-size: 13px;
  color: var(--obsidian);
  z-index: 1000;
  max-width: 280px;
  animation: slide-in-left 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  will-change: transform;
  backdrop-filter: blur(10px);
}

.social-proof-toast.exit {
  animation: slide-out-left 0.4s ease forwards;
}

@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-380px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slide-out-left {
  to {
    opacity: 0;
    transform: translateX(-380px);
  }
}

.social-proof-toast::before {
  content: '✓';
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  margin-right: 8px;
}

@media (max-width: 768px) {
  .social-proof-toast {
    bottom: 12px;
    left: 12px;
    right: 12px;
    max-width: none;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .social-proof-toast {
    animation: none;
    opacity: 1;
  }

  .social-proof-toast.exit {
    animation: none;
    display: none;
  }
}

/* ============================================================================
   4. GLASSMORPHISM PRODUCT QUICK-VIEW
   ============================================================================ */
.pro-quickview-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 23, 0.6);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.pro-quickview-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.pro-quickview-content {
  background: var(--ivory);
  border-radius: 16px;
  padding: 32px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: scale-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  will-change: transform;
  border: 1px solid rgba(201, 169, 110, 0.2);
}

@keyframes scale-in {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.pro-quickview-content .close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--charcoal);
  transition: color 0.3s ease;
}

.pro-quickview-content .close-btn:hover {
  color: var(--gold);
}

@media (max-width: 768px) {
  .pro-quickview-content {
    padding: 20px;
    max-width: 90vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pro-quickview-content {
    animation: none;
  }
}

/* ============================================================================
   5. PREMIUM SECTION DIVIDERS
   ============================================================================ */
.section-divider {
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--gold) 50%,
    transparent 100%
  );
  margin: 48px 0;
  opacity: 0.6;
}

.section-divider.full {
  opacity: 1;
  background: linear-gradient(
    90deg,
    rgba(201, 169, 110, 0.3) 0%,
    rgba(201, 169, 110, 0.8) 50%,
    rgba(201, 169, 110, 0.3) 100%
  );
  height: 1px;
}

@media (max-width: 768px) {
  .section-divider {
    margin: 32px 0;
  }
}

/* ============================================================================
   6. ENHANCED BUTTON STYLES
   ============================================================================ */
.btn-primary {
  position: relative;
  overflow: hidden;
  background: var(--primary);
  color: var(--ivory);
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  will-change: box-shadow, transform;
  letter-spacing: 0.5px;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  box-shadow: 0 8px 24px rgba(45, 106, 79, 0.3);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Gold variant */
.btn-primary.gold {
  background: var(--gold);
  color: var(--obsidian);
}

.btn-primary.gold:hover {
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.4);
}

@media (max-width: 768px) {
  .btn-primary {
    padding: 10px 20px;
    font-size: 13px;
  }
}

/* ============================================================================
   7. ANIMATED COUNTER BADGES
   ============================================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  background: var(--gold);
  color: var(--obsidian);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font);
  transition: all 0.3s ease;
}

.badge.bounce {
  animation: badge-bounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  will-change: transform;
}

@keyframes badge-bounce {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .badge.bounce {
    animation: none;
  }
}

/* ============================================================================
   8. STICKY ADD-TO-CART BAR
   ============================================================================ */
.sticky-cart-bar {
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ivory);
  border-top: 2px solid var(--gold);
  padding: 16px 20px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 50;
  will-change: background;
  transform: translateZ(0);
}

.sticky-cart-bar-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sticky-cart-bar-price {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
}

.sticky-cart-bar-name {
  font-family: var(--font);
  font-size: 13px;
  color: var(--charcoal);
  line-height: 1.4;
}

.sticky-cart-bar-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

@media (max-width: 768px) {
  .sticky-cart-bar {
    flex-direction: column;
    gap: 12px;
    padding: 12px 16px;
  }

  .sticky-cart-bar-actions {
    width: 100%;
    flex-direction: column;
  }

  .sticky-cart-bar-actions button {
    width: 100%;
  }
}

/* ============================================================================
   9. CUSTOMER REVIEWS STARS
   ============================================================================ */
.pro-stars {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}

.pro-star {
  position: relative;
  font-size: 16px;
  color: #ddd;
  transition: all 0.3s ease;
}

.pro-star-fill {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  overflow: hidden;
  transition: width 0.3s ease;
}

.pro-stars-label {
  font-family: var(--font);
  font-size: 13px;
  color: var(--charcoal);
  margin-left: 8px;
  font-weight: 600;
}

/* Interactive star rating */
.pro-stars.interactive .pro-star {
  cursor: pointer;
  transition: transform 0.2s ease;
}

.pro-stars.interactive .pro-star:hover,
.pro-stars.interactive .pro-star.hovered {
  transform: scale(1.15);
  color: var(--gold);
}

/* ============================================================================
   10. PAYMENT SECURITY BADGES
   ============================================================================ */
.security-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 12px;
  color: var(--obsidian);
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.security-badge:hover {
  background: rgba(201, 169, 110, 0.15);
  border-color: var(--gold);
}

.security-badge-icon {
  font-size: 14px;
  color: var(--gold);
}

.security-badges-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 768px) {
  .security-badge {
    font-size: 11px;
    padding: 8px 12px;
  }

  .security-badges-group {
    gap: 10px;
  }
}

/* ============================================================================
   11. LIVE SEARCH DROPDOWN
   ============================================================================ */
.live-search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--ivory);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-top: none;
  border-radius: 0 0 12px 12px;
  max-height: 400px;
  overflow-y: auto;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  display: none;
  will-change: opacity, visibility;
}

.live-search-dropdown.active {
  display: block;
  animation: slide-down 0.3s ease;
}

@keyframes slide-down {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.live-search-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  cursor: pointer;
  transition: background 0.2s ease;
  border-bottom: 1px solid rgba(201, 169, 110, 0.08);
}

.live-search-item:last-child {
  border-bottom: none;
}

.live-search-item:hover {
  background: rgba(201, 169, 110, 0.08);
}

.live-search-thumb {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  object-fit: cover;
  background: #f0f0f0;
}

.live-search-info {
  flex: 1;
  min-width: 0;
}

.live-search-name {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--obsidian);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.live-search-price {
  font-family: var(--font);
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
}

@media (max-width: 768px) {
  .live-search-dropdown {
    max-height: 300px;
  }

  .live-search-item {
    padding: 10px 12px;
  }
}

/* ============================================================================
   12. RECENTLY VIEWED CAROUSEL POLISH
   ============================================================================ */
.rv-section {
  padding: 40px 20px;
  background: linear-gradient(180deg, var(--ivory) 0%, rgba(201, 169, 110, 0.05) 100%);
}

.rv-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.rv-section-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--obsidian);
  letter-spacing: -0.5px;
}

.rv-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 12px;
  will-change: scroll-position;
}

.rv-carousel::-webkit-scrollbar {
  height: 6px;
}

.rv-carousel::-webkit-scrollbar-track {
  background: rgba(201, 169, 110, 0.08);
  border-radius: 3px;
}

.rv-carousel::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

.rv-carousel::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

.rv-carousel-item {
  flex: 0 0 200px;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.rv-carousel-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .rv-section {
    padding: 28px 16px;
  }

  .rv-section-title {
    font-size: 22px;
  }

  .rv-carousel {
    gap: 12px;
  }

  .rv-carousel-item {
    flex: 0 0 160px;
  }
}

/* ============================================================================
   13. FLOATING LABELS
   ============================================================================ */
.float-label-group {
  position: relative;
  margin-bottom: 20px;
}

.float-label-group input,
.float-label-group textarea,
.float-label-group select {
  width: 100%;
  padding: 12px 12px 4px 12px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--obsidian);
  background: var(--ivory);
  transition: all 0.3s ease;
  will-change: border-color, box-shadow;
}

.float-label-group input:focus,
.float-label-group textarea:focus,
.float-label-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

.float-label-group label {
  position: absolute;
  left: 12px;
  top: 14px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--charcoal);
  transition: all 0.3s ease;
  pointer-events: none;
  transform-origin: left;
  background: var(--ivory);
  padding: 0 4px;
}

.float-label-group input:focus ~ label,
.float-label-group input:not(:placeholder-shown) ~ label,
.float-label-group textarea:focus ~ label,
.float-label-group textarea:not(:placeholder-shown) ~ label,
.float-label-group select:focus ~ label,
.float-label-group select:not([value='']) ~ label {
  top: -8px;
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
}

@media (max-width: 768px) {
  .float-label-group {
    margin-bottom: 16px;
  }

  .float-label-group input,
  .float-label-group textarea {
    padding: 10px 12px 2px 12px;
    font-size: 13px;
  }
}

/* ============================================================================
   14. SKELETON LOADING
   ============================================================================ */
.skeleton {
  background: linear-gradient(
    90deg,
    #f0f0f0 25%,
    #e0e0e0 50%,
    #f0f0f0 75%
  );
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
  will-change: background-position;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.skeleton-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
}

.skeleton-text {
  height: 12px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.skeleton-text.long {
  width: 85%;
}

.skeleton-text.short {
  width: 60%;
}

.skeleton-badge {
  height: 16px;
  width: 40%;
  border-radius: 4px;
  margin-bottom: 12px;
}

@media (prefers-reduced-motion: reduce) {
  .skeleton {
    animation: none;
    background: #f0f0f0;
  }
}

/* ============================================================================
   15. SCROLL-TRIGGERED REVEAL
   ============================================================================ */
/* FIX: pro-reveal starts visible by default for no-JS fallback.
   JS adds .pro-reveal-ready to <html> to enable animations. */
.pro-reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}
html.pro-reveal-ready .pro-reveal {
  opacity: 0;
  transform: translateY(20px);
}

html.pro-reveal-ready .pro-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

html.pro-reveal-ready .pro-reveal.fade-in {
  transform: translateY(0);
}

html.pro-reveal-ready .pro-reveal.fade-in.visible {
  opacity: 1;
}

html.pro-reveal-ready .pro-reveal.slide-left {
  transform: translateX(-30px);
}

html.pro-reveal-ready .pro-reveal.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

html.pro-reveal-ready .pro-reveal.slide-right {
  transform: translateX(30px);
}

html.pro-reveal-ready .pro-reveal.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .pro-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================================
   16. LUXURY TOOLTIP
   ============================================================================ */
.luxury-tip {
  position: relative;
  cursor: help;
  border-bottom: 1px dotted var(--gold);
}

.luxury-tip::before {
  content: attr(data-tip);
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--obsidian);
  color: var(--ivory);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-family: var(--font);
  white-space: nowrap;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.luxury-tip::after {
  content: '';
  position: absolute;
  bottom: 115%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--obsidian);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.luxury-tip:hover::before,
.luxury-tip:hover::after {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .luxury-tip::before,
  .luxury-tip::after {
    display: none;
  }
}

/* ============================================================================
   17. PROGRESS STEPS
   ============================================================================ */
.checkout-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
  position: relative;
}

.checkout-steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background: #e0e0e0;
  z-index: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f0f0f0;
  border: 2px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  transition: all 0.3s ease;
  will-change: background, border-color;
}

.step-label {
  font-family: var(--font);
  font-size: 13px;
  color: var(--charcoal);
  text-align: center;
  font-weight: 500;
}

.step.active .step-circle {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--obsidian);
  box-shadow: 0 4px 12px rgba(201, 169, 110, 0.3);
}

.step.active .step-label {
  color: var(--gold);
  font-weight: 600;
}

.step.completed .step-circle {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--ivory);
}

.step.completed .step-label {
  color: var(--primary);
}

@media (max-width: 768px) {
  .checkout-steps {
    margin-bottom: 24px;
  }

  .step-circle {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .step-label {
    font-size: 12px;
  }
}

/* ============================================================================
   18. MEGA FOOTER UPGRADE
   ============================================================================ */
.mega-footer {
  background: var(--obsidian);
  color: var(--champagne);
  padding: 48px 20px 24px 20px;
}

.mega-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer-link {
  font-family: var(--font);
  font-size: 13px;
  color: var(--champagne);
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
}

.footer-link:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201, 169, 110, 0.3) 50%,
    transparent 100%
  );
  margin: 24px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  font-family: var(--font);
  font-size: 12px;
  color: rgba(247, 243, 238, 0.6);
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 50%;
  color: var(--gold);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.footer-social-link:hover {
  background: rgba(201, 169, 110, 0.15);
  border-color: var(--gold);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .mega-footer {
    padding: 32px 16px 16px 16px;
  }

  .mega-footer-grid {
    gap: 24px;
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
    margin-top: 12px;
  }
}

/* ============================================================================
   RESPONSIVE UTILITIES
   ============================================================================ */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================================
   ACCESSIBILITY ENHANCEMENTS
   ============================================================================ */
/* Dark mode DISABLED — always use light luxury theme */

/* Focus visible for keyboard navigation */
button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Smooth scrolling support */
html {
  scroll-behavior: smooth;
}

@supports not (scroll-behavior: smooth) {
  html {
    scroll-behavior: auto;
  }
}
