/** Shopify CDN: Minification failed

Line 17:0 Unexpected "}"

**/
/* ========================================
   A-List Avenue - Luxury Buy & Sell Website
   Inner Pages - Premium Redesign
   ======================================== */

/* ========================================
   Shared Styles & Utilities
   ======================================== */
.inner-page {
  background-color: #fdfbf7; /* Very subtle warm cream background */
  }
}

/* ========================================
   Lightbox Overlay (Reviews Page)
   ======================================== */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.lightbox-close:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-white);
  transform: rotate(90deg);
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.lightbox-overlay.active .lightbox-content {
  transform: scale(1);
}

.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  margin-top: 1.5rem;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  text-align: center;
  opacity: 0.9;
}

/* Lightbox Responsive */
@media (max-width: 768px) {
  .lightbox-close {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
  
  .lightbox-content {
    max-width: 95vw;
  }
  
  .lightbox-caption {
    font-size: 1rem;
    padding: 0 1rem;
  }
}


.section-header .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

/* Page Hero - Luxury Redesign */
.page-hero {
  padding: 200px 0 100px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  position: relative;
  color: var(--color-white);
  display: flex;
  align-items: center;
  min-height: 50vh;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.75)
  );
}

.page-hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.page-hero .hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-hero .hero-content.centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-hero .hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(232, 80, 91, 0.4);
  border-radius: 30px;
  background: rgba(232, 80, 91, 0.1);
}

.page-hero .hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--color-white);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.page-hero .hero-description {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
}

/* Breadcrumb - Elegant & High Contrast */
.page-header {
  padding: 180px 0 100px;
  background-color: #0a0a0a; /* Deep luxury black */
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Luxury sheen effect */
.page-header::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(30, 30, 30, 1) 0%,
    #0a0a0a 50%
  );
  z-index: 0;
  pointer-events: none;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 2rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--color-gold);
  transform: translateY(-1px);
}

.breadcrumb .current {
  color: var(--color-gold);
  font-weight: 600;
  border-bottom: 1px solid var(--color-gold);
  padding-bottom: 2px;
}

.page-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--color-white);
  margin-bottom: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-subtitle {
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: inline-block;
  padding: 0.8rem 2.5rem;
  border: 1px solid rgba(232, 80, 91, 0.5);
  border-radius: 50px;
  background: rgba(232, 80, 91, 0.1);
  font-weight: 500;
  backdrop-filter: blur(5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* ========================================
   Card Styles (Shared Base)
   ======================================== */
/* Gold line accent on hover for cards */
.service-card::after,
.review-card::after,
.contact-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: right;
}

.service-card:hover::after,
.review-card:hover::after,
.contact-card:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ========================================
   How It Works (Consign & Auth)
   ======================================== */
/* ========================================
   How It Works (Consign & Auth)
   ======================================== */
.how-it-works {
  background: linear-gradient(to bottom, #ffffff, #fdfbf7);
  position: relative;
  z-index: 1;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.step-card {
  position: relative;
  background: var(--color-white);
  padding: 3.5rem 2rem 2.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.step-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), #e8d48a);
  transition: width 0.4s ease;
  border-radius: 3px 3px 0 0;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  border-color: rgba(232, 80, 91, 0.15);
}

.step-card:hover::after {
  width: 60%;
}

.step-number {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-gold), #d43f4a);
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(232, 80, 91, 0.3);
  border: 3px solid var(--color-white);
  z-index: 2;
}

.step-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
  color: var(--color-gold);
  background: linear-gradient(
    135deg,
    rgba(232, 80, 91, 0.08),
    rgba(232, 80, 91, 0.02)
  );
  border-radius: 50%;
  transition: all 0.4s ease;
}

.step-card:hover .step-icon {
  background: var(--color-gold);
  color: var(--color-white);
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(232, 80, 91, 0.25);
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-charcoal);
}

.step-card p {
  font-size: 0.9rem;
  color: var(--color-gray);
  line-height: 1.7;
}

/* How It Works - responsive */
@media (max-width: 992px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   Commission Section (Consign)
   ======================================== */
.commission-section {
  background: var(--color-charcoal);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.commission-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(232, 80, 91, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.commission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.commission-content .section-title {
  color: var(--color-white);
}

.rate-table {
  margin-top: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.02);
}

.rate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease;
}

.rate-row:last-child {
  border-bottom: none;
}

.rate-row:hover {
  background: rgba(255, 255, 255, 0.05);
}

.rate-row.highlight {
  background: linear-gradient(
    90deg,
    rgba(232, 80, 91, 0.2),
    rgba(232, 80, 91, 0.05)
  );
  border-left: 4px solid var(--color-gold);
}

.rate-range {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.rate-percent {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gold);
}

.commission-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.commission-image img {
  transition: transform 1s ease;
  width: 100%;
}

.commission-image:hover img {
  transform: scale(1.05);
}

/* Commission Section - responsive */
@media (max-width: 992px) {
  .commission-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .commission-image {
    order: -1; /* Image first on mobile */
  }
}

/* ========================================
   Accept Section (Consign) - Editorial Luxury Redesign
   ======================================== */
.accept-section {
  background-color: var(--color-white);
  padding: 8rem 0;
  position: relative;
}

.accept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.accept-card {
  background: var(--color-white);
  padding: 4rem 3rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.accept-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid transparent;
  transition: border-color 0.6s ease;
  pointer-events: none;
}

.accept-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.accept-card:hover::after {
  border-color: var(--color-gold); /* Solid gold instead of faint rgba */
  box-shadow: inset 0 0 20px rgba(232, 80, 91, 0.15); /* Luxurious inner glow */
}

/* Icons - refined and minimal */
.accept-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  transition: all 0.5s ease;
  border-radius: 50%;
  background: transparent;
}

.accept-card.accept .accept-icon {
  color: var(--color-gold);
  border: 1px solid rgba(232, 80, 91, 0.3);
}

.accept-card.decline .accept-icon {
  color: var(--color-charcoal);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.accept-card:hover .accept-icon {
  transform: scale(1.1);
}

/* Headings - Editorial Typography */
.accept-card h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  color: var(--color-charcoal);
  text-transform: uppercase;
  position: relative;
  padding-bottom: 1.5rem;
}

.accept-card h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background-color: var(--color-gold);
}

.accept-card.decline h3::after {
  background-color: rgba(0, 0, 0, 0.1);
}

/* Lists - Clean & Sophisticated */
.accept-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.accept-card li {
  position: relative;
  padding: 0.75rem 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-gray);
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

/* Custom bullet markers instead of heavy checkmarks */
.accept-card li::before {
  content: "•";
  color: var(--color-gold);
  font-size: 1.2rem;
  line-height: 0;
  opacity: 0.6;
  transition: all 0.3s ease;
  position: static; /* Reset absolute positioning */
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  display: inline-block;
}

.accept-card.decline li::before {
  color: var(--color-charcoal);
  opacity: 0.3;
}

/* Hover effects */
.accept-card li:hover {
  color: var(--color-charcoal);
  transform: translateX(5px);
}

.accept-card.decline li:hover::before {
  opacity: 0.8;
}

.accept-card.accept li:hover::before {
  opacity: 1;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 992px) {
  .accept-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 600px;
  }
}

/* ========================================
   Consign Form & Contact Form
   ======================================== */
.consign-form-section {
  background: var(
    --color-cream
  ); /* Creates visual separation from white accept section */
  padding-bottom: 6rem;
}

.consign-form-wrapper,
.contact-form-wrapper {
  background: var(--color-white);
  padding: 4rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  max-width: 900px;
  margin: 0 auto;
}

.form-section h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 2rem;
  color: var(--color-charcoal);
  border-bottom: 1px solid var(--color-light-gray);
  padding-bottom: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: var(--color-gray);
  margin-bottom: 0.75rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-charcoal);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  background: var(--color-white);
  border-color: var(--color-gold);
  box-shadow: 0 0 0 4px rgba(232, 80, 91, 0.1);
}

/* Enhanced File Upload - Luxury & Aligned */
.file-upload {
  width: 100%;
  margin-bottom: 1rem;
}

.file-upload input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.file-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 2rem;
  background: #fafafa;
  border: 2px dashed #e0e0e0;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  min-height: 200px;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
}

.file-upload-label:hover {
  border-color: var(--color-gold);
  background: rgba(232, 80, 91, 0.05);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.file-upload-label i {
  font-size: 3rem;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.file-upload-label:hover i {
  transform: scale(1.15) rotate(5deg);
}

.file-upload-label span {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 0.5rem;
  display: block;
}

.file-upload-label small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-gray);
  opacity: 0.8;
}

/* File Preview Styling */
.file-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.preview-item {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  position: relative;
}

.preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.preview-item:hover img {
  transform: scale(1.1);
}

/* Consign Page Cloudinary Upload & Form Responsive Styles */
.consign-upload-widget {
  width: 100%;
  margin-bottom: 1rem;
}

.consign-photo-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.consign-photo-preview-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.consign-photo-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.consign-photo-preview-item .remove-btn {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* Responsive form grid */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
  .consign-photo-preview {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ========================================
   Authentication Page
   ======================================== */
/* ========================================
   Authentication Page
   ======================================== */
.auth-services {
  background: var(--color-cream);
  padding-bottom: 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.service-card {
  position: relative;
  background: var(--color-white);
  padding: 3rem 2rem 2.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-gold),
    #e8d48a,
    var(--color-gold)
  );
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
  background: linear-gradient(135deg, var(--color-gold), #ef6b74);
  border-radius: 50%;
  font-size: 2rem;
  color: var(--color-white);
  box-shadow: 0 10px 30px rgba(232, 80, 91, 0.3);
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(232, 80, 91, 0.4);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-charcoal);
}

.service-card p {
  color: var(--color-gray);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
}

.service-price {
  display: block;
  margin-top: auto;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-gold);
  font-weight: 700;
}

/* Pricing Section - High Contrast */
.pricing-section {
  background-color: #111111; /* Deep charcoal */
  color: var(--color-white);
  position: relative;
  z-index: 10;
}

.pricing-section .section-title {
  color: var(--color-white);
}

.pricing-table {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pricing-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s ease;
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-row:not(.pricing-header):hover {
  background: rgba(232, 80, 91, 0.05);
}

.pricing-row.pricing-header {
  background: linear-gradient(90deg, var(--color-gold), #d43f4a);
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 1.25rem 2rem;
}

.pricing-row.pricing-header .pricing-item,
.pricing-row.pricing-header .pricing-price {
  color: var(--color-white);
  font-weight: 700;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--color-champagne);
  font-weight: 600;
  white-space: nowrap;
}

.pricing-item {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
}

/* Brands Showcase - Authenticate Specific */
.brands-showcase {
  background-color: var(
    --color-white
  ); /* Changed to white for better contrast with footer */
  padding: 6rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.brands-showcase .section-title {
  color: var(--color-charcoal);
}

.brands-slider {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 3rem;
}

.brand-card .brand-logo {
  width: 180px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.brand-card .brand-logo span {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--color-charcoal);
  font-weight: 600;
  transition: color 0.3s ease;
}

.brand-card:hover .brand-logo {
  border-color: var(--color-gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(232, 80, 91, 0.15);
}

.brand-card:hover .brand-logo span {
  color: var(--color-gold);
}

/* Contact Options - Enhanced Visibility */
.contact-options {
  background-color: #0a0a0a; /* Darkest black */
  color: var(--color-white);
  padding: 6rem 0;
  position: relative;
}

.contact-options .contact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-options .contact-card h3 {
  color: var(--color-white);
}

.contact-options .contact-card p {
  color: rgba(255, 255, 255, 0.7);
}

.contact-options .contact-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-gold);
}

/* Fix for invisible AOS elements if JS fails or delays */
[data-aos] {
  opacity: 1 !important; /* Force visibility for safety */
  transform: none !important;
}

/* Re-enable animation only if JS successfully adds the class */
[data-aos].aos-animate {
  opacity: 1 !important;
  transform: none !important;
}

/* ========================================
   Reviews Page - Luxury Testimonials
   ======================================== */
.reviews-hero-section {
  position: relative;
  padding: 180px 0 120px;
  background-color: #0a0a0a; /* Fallback color */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  color: var(--color-white);
}

.reviews-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.6),
    rgba(10, 10, 10, 0.9)
  ); /* Darker luxury gradient */
  z-index: 1;
}

.reviews-hero-section .container {
  position: relative;
  z-index: 2;
}

.reviews-hero-section .page-title {
  color: var(--color-white);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
}

.reviews-hero-section .page-subtitle {
  color: var(--color-white);
  background: rgba(
    0,
    0,
    0,
    0.3
  ); /* Dark translucent background for readability */
  border: 1px solid rgba(255, 255, 255, 0.3); /* Subtle white border */
  font-size: 1.1rem;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
  padding: 0.6rem 2rem;
  border-radius: 50px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* Improves readability on image */
  letter-spacing: 0.1em;
}

.reviews-hero-section .breadcrumb {
  color: rgba(255, 255, 255, 0.6);
  justify-content: center;
  margin-bottom: 2rem;
}

.reviews-hero-section .breadcrumb a {
  color: var(--color-white);
  opacity: 0.8;
}

.reviews-hero-section .breadcrumb a:hover {
  opacity: 1;
  color: var(--color-gold);
}

.reviews-hero-section .breadcrumb .current {
  color: var(--color-gold);
}

.reviews-stats {
  display: flex;
  justify-content: center;
  gap: 5rem;
  margin-top: 5rem;
  padding: 3.5rem 4rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.reviews-stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-gold),
    transparent
  );
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -2.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 30px rgba(232, 80, 91, 0.4);
}

.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.all-reviews {
  background: #fcfcfc; /* Very light gray to contrast with white cards */
  padding-top: 6rem;
}

.all-reviews::before {
  display: none; /* Remove the line to clean up design */
}

.reviews-filter {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
  padding-top: 0;
}

.filter-btn {
  padding: 0.85rem 2rem;
  border: 1px solid #e0e0e0;
  background: var(--color-white);
  color: var(--color-charcoal);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter-btn:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(
    4,
    1fr
  ); /* Increased columns to reduce card width */
  gap: 1.5rem; /* Slightly reduced gap */
}

.review-card {
  position: relative;
  background: #ffffff; /* Explicit white background */
  padding: 0; /* Reset padding for image-first layout */
  border-radius: 0; /* Sharp corners like catalog */
  overflow: hidden;
  background: var(--color-white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.review-card::before,
.review-card::after {
  display: none; /* Remove quote mark and gold line */
}

.review-image-container {
  position: relative;
  width: 100%;
  height: 300px; /* Increased height for Portrait Aspect Ratio (approx 3:4) */
  overflow: hidden;
  background-color: #f5f5f5;
  cursor: pointer;
}

.review-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.review-card:hover .review-image {
  transform: scale(1.05);
}

.review-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.review-image-overlay i {
  color: var(--color-white);
  font-size: 1.2rem; /* Slightly smaller icon */
  background: rgba(255, 255, 255, 0.2);
  padding: 0.8rem;
  border-radius: 50%;
  backdrop-filter: blur(4px);
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

.review-card:hover .review-image-overlay {
  opacity: 1;
}

.review-card:hover .review-image-overlay i {
  transform: translateY(0);
}

.review-content {
  padding: 1.25rem; /* Reduced padding */
  display: flex;
  flex-direction: column;
  height: calc(100% - 220px);
}

.review-stars {
  font-size: 0.75rem; /* Smaller stars */
  margin-bottom: 0.5rem;
  color: var(--color-gold);
}

.review-item-title {
  font-family: var(--font-heading);
  font-size: 1rem; /* Smaller title */
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--color-charcoal);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 0.5rem;
}

.review-text {
  font-family: var(--font-body);
  font-size: 0.9rem; /* Smaller text */
  line-height: 1.5;
  color: #555;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.review-author {
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 36px; /* Smaller avatar */
  height: 36px;
  background: linear-gradient(135deg, var(--color-charcoal), #1a1a1a);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid var(--color-gold);
  flex-shrink: 0;
}

.author-info h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0 0.15rem 0;
  color: var(--color-charcoal);
}

.author-info span {
  font-size: 0.7rem;
  color: var(--color-gray);
  display: block;
  line-height: 1.2;
}

.review-card {
  position: relative;
  background: #ffffff; /* Explicit white background */
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.03);
  text-align: left;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: var(--font-heading);
  font-size: 6rem;
  line-height: 1;
  color: rgba(232, 80, 91, 0.1);
  pointer-events: none;
}

.review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  border-color: rgba(232, 80, 91, 0.3);
}

.review-stars {
  color: var(--color-gold);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  letter-spacing: 3px;
}

.review-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  line-height: 1.7;
  color: #050505; /* High contrast black */
  font-style: italic;
  font-weight: 500;
  margin-bottom: 2rem;
}

.review-author {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-charcoal), #1a1a1a);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid var(--color-gold);
  flex-shrink: 0;
}

.author-info h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
  color: var(--color-charcoal);
}

.author-info span {
  font-size: 0.75rem;
  color: var(--color-gray);
  display: block;
  line-height: 1.4;
}

/* Section CTA Button */
.section-cta {
  text-align: center;
  margin-top: 3rem;
}

.section-cta .btn {
  min-width: 200px;
}

/* ========================================
   About Page
   ======================================== */
.about-story {
  background: var(--color-white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.story-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 20px 20px 0 var(--color-cream);
}

.story-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-dark-gray);
  margin-bottom: 1.5rem;
}

.founder-quote {
  margin-top: 3rem;
  padding: 2.5rem;
  background: #fdfbf7;
  border-left: 3px solid var(--color-gold);
  position: relative;
}

.founder-quote p {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--color-black);
  margin-bottom: 1rem;
}

.values-section {
  background: var(--color-cream);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.value-card {
  background: var(--color-white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: rgba(232, 80, 91, 0.1);
  border-radius: 50%;
  font-size: 2rem;
  color: var(--color-gold);
  transition: all 0.4s ease;
}

.value-card:hover .value-icon {
  background: var(--color-gold);
  color: var(--color-white);
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-charcoal);
}

.value-card p {
  font-size: 0.9rem;
  color: var(--color-gray);
  line-height: 1.6;
}

/* ========================================
   Customer Care Page - Premium Design
   ======================================== */
.contact-section {
  background: var(--color-white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  background: linear-gradient(135deg, #111111, #1a1a1a);
  color: var(--color-white);
  padding: 3.5rem;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(232, 80, 91, 0.1);
}

.contact-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-gold),
    #fff5d1,
    var(--color-gold)
  );
}

.contact-info::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(232, 80, 91, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: var(--color-white);
  position: relative;
  display: inline-block;
}

.contact-info h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--color-gold);
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateX(10px);
}

.contact-item i {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--color-gold);
  background: rgba(232, 80, 91, 0.1);
  border: 1px solid rgba(232, 80, 91, 0.3);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-item:hover i {
  background: var(--color-gold);
  color: var(--color-charcoal);
  box-shadow: 0 0 20px rgba(232, 80, 91, 0.4);
  transform: scale(1.1);
}

.contact-item h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
  font-weight: 600;
  color: var(--color-white);
}

.contact-item p,
.contact-item a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--color-gold);
}

.contact-social {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.contact-social h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--color-white);
}

.contact-social .social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.1rem;
}

.contact-social .social-links a:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-charcoal);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(232, 80, 91, 0.3);
}

/* Contact Form Wrapper */
.contact-form-wrapper {
  background: var(--color-white);
  padding: 3.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(232, 80, 91, 0.15);
  position: relative;
}

.contact-form-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--color-gold);
  border-radius: 0 0 10px 10px;
}

.contact-form-wrapper h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--color-charcoal);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-form-wrapper h3::before {
  content: "";
  display: block;
  width: 4px;
  height: 24px;
  background: var(--color-gold);
  border-radius: 2px;
}

.contact-item a:hover {
  color: var(--color-gold);
}

/* Contact Options Section (Consign & Auth CTA) - Premium Design */
.contact-options {
  background: var(--color-charcoal);
  position: relative;
  overflow: hidden;
}

.contact-options::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center top,
    rgba(232, 80, 91, 0.15) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.contact-options .section-subtitle {
  color: var(--color-gold);
}

.contact-options .section-title {
  color: var(--color-white);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.contact-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 80, 91, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.contact-card:hover {
  transform: translateY(-10px);
  border-color: rgba(232, 80, 91, 0.4);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.contact-card:hover::before {
  opacity: 1;
}

.contact-card i {
  position: relative;
  z-index: 1;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-gold);
  background: rgba(232, 80, 91, 0.1);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}

.contact-card:hover i {
  background: var(--color-gold);
  color: var(--color-white);
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(232, 80, 91, 0.4);
}

.contact-card h3 {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-white);
}

.contact-card p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.contact-card:hover p {
  color: var(--color-gold);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--color-gold);
  transform: translateY(-3px);
}

/* FAQ Accordion - Modern */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border: 1px solid #e0e0e0;
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
  border-left: 3px solid #e0e0e0; /* Default grey border */
}

.faq-item:hover {
  border-color: rgba(232, 80, 91, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transform: translateX(5px);
  border-left-color: var(--color-gold); /* Gold on hover */
}

.faq-item.active {
  border-color: rgba(232, 80, 91, 0.3);
  border-left-color: var(--color-gold);
  box-shadow: 0 10px 30px rgba(232, 80, 91, 0.1);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 3rem;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 1em;
}

#loadMoreReviews[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    background: #ccc;
    border-color: #ccc;
    color: #666;
    pointer-events: none;
}

.faq-question {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-charcoal);
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--color-gold);
}

.faq-item.active .faq-question {
  color: var(--color-gold);
  background: rgba(232, 80, 91, 0.02);
}

.faq-question i {
  color: var(--color-gray);
  transition: all 0.3s ease;
  font-size: 0.9rem;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--color-gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 2rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
  transition: max-height 0.5s ease-in;
}

.faq-answer p {
  color: #555;
  line-height: 1.6;
}

/* ========================================
   FAQ Responsive Styles
   5 Common Breakpoints:
   - 1200px (Large Desktop)
   - 992px (Desktop/Tablet Landscape)
   - 768px (Tablet Portrait)
   - 576px (Large Mobile)
   - 480px (Small Mobile)
   ======================================== */

/* Large Desktop - 1200px */
@media (max-width: 1200px) {
  .faq-grid {
    max-width: 700px;
  }
  
  .faq-section .section-header {
    padding: 0 1rem;
  }
}

/* Desktop/Tablet Landscape - 992px */
@media (max-width: 992px) {
  .faq-grid {
    max-width: 100%;
    padding: 0 1.5rem;
  }
  
  .faq-question {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }
  
  .faq-answer {
    padding: 0 1.5rem;
  }
  
  .faq-item:hover {
    transform: translateX(3px);
  }
  
  .faq-section .section-title {
    font-size: 1.75rem;
  }
}

/* Tablet Portrait - 768px */
@media (max-width: 768px) {
  .faq-grid {
    padding: 0 1rem;
  }
  
  .faq-question {
    padding: 1.15rem 1.25rem;
    font-size: 0.95rem;
    gap: 0.75rem;
  }
  
  .faq-question i {
    font-size: 0.8rem;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }
  
  .faq-answer {
    padding: 0 1.25rem;
  }
  
  .faq-item.active .faq-answer {
    padding-bottom: 1.25rem;
  }
  
  .faq-answer p,
  .faq-answer .rte p {
    font-size: 0.9rem;
    line-height: 1.7;
  }
  
  .faq-item:hover {
    transform: none;
  }
  
  .faq-section .section-header {
    margin-bottom: 2rem;
  }
  
  .faq-section .section-title {
    font-size: 1.5rem;
  }
  
  .faq-section .section-subtitle {
    font-size: 0.7rem;
  }
}

/* Large Mobile - 576px */
@media (max-width: 576px) {
  .faq-grid {
    padding: 0 0.75rem;
  }
  
  .faq-item {
    margin-bottom: 0.75rem;
    border-radius: 8px;
  }
  
  .faq-question {
    padding: 1rem 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
  }
  
  .faq-question i {
    font-size: 0.75rem;
    width: 18px;
    height: 18px;
  }
  
  .faq-answer {
    padding: 0 1rem;
  }
  
  .faq-item.active .faq-answer {
    padding-bottom: 1rem;
  }
  
  .faq-answer p,
  .faq-answer .rte p {
    font-size: 0.85rem;
  }
  
  .faq-section .section-title {
    font-size: 1.35rem;
  }
  
  .faq-section {
    padding: 3rem 0;
  }
}

/* Small Mobile - 480px */
@media (max-width: 480px) {
  .faq-grid {
    padding: 0 0.5rem;
  }
  
  .faq-item {
    margin-bottom: 0.5rem;
    border-left-width: 2px;
  }
  
  .faq-question {
    padding: 0.875rem 0.875rem;
    font-size: 0.85rem;
    gap: 0.5rem;
  }
  
  .faq-question i {
    font-size: 0.7rem;
    width: 16px;
    height: 16px;
  }
  
  .faq-answer {
    padding: 0 0.875rem;
  }
  
  .faq-item.active .faq-answer {
    padding-bottom: 0.875rem;
    max-height: 800px; /* Allow more height for mobile text wrap */
  }
  
  .faq-answer p,
  .faq-answer .rte p {
    font-size: 0.8rem;
    line-height: 1.6;
  }
  
  .faq-section .section-header {
    margin-bottom: 1.5rem;
  }
  
  .faq-section .section-title {
    font-size: 1.25rem;
  }
  
  .faq-section .section-subtitle {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
  }
  
  .faq-section {
    padding: 2.5rem 0;
  }
}

/* ========================================
   Contact Options Responsive Styles
   5 Common Breakpoints:
   - 1200px (Large Desktop)
   - 992px (Desktop/Tablet Landscape)
   - 768px (Tablet Portrait)
   - 576px (Large Mobile)
   - 480px (Small Mobile)
   ======================================== */

/* Large Desktop - 1200px */
@media (max-width: 1200px) {
  .contact-options .container {
    max-width: 900px;
  }
  
  .contact-cards {
    gap: 1.5rem;
  }
  
  .contact-card {
    padding: 2.5rem 1.5rem;
  }
}

/* Desktop/Tablet Landscape - 992px */
@media (max-width: 992px) {
  .contact-options {
    padding: 4rem 0;
  }
  
  .contact-cards {
    gap: 1.25rem;
  }
  
  .contact-card {
    padding: 2rem 1.25rem;
  }
  
  .contact-card i {
    width: 70px;
    height: 70px;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
  }
  
  .contact-card h3 {
    font-size: 1.15rem;
  }
  
  .contact-card p {
    font-size: 0.9rem;
  }
}

/* Tablet Portrait - 768px */
@media (max-width: 768px) {
  .contact-options {
    padding: 3.5rem 0;
  }
  
  .contact-options .section-title {
    font-size: 1.75rem;
  }
  
  .contact-options .section-subtitle {
    font-size: 0.7rem;
  }
  
  .contact-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .contact-card {
    padding: 1.75rem 1.5rem;
    flex-direction: row;
    text-align: left;
    gap: 1.25rem;
  }
  
  .contact-card i {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  
  .contact-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
  }
  
  .contact-card p {
    font-size: 0.85rem;
  }
  
  .contact-card:hover {
    transform: translateX(5px);
  }
}

/* Large Mobile - 576px */
@media (max-width: 576px) {
  .contact-options {
    padding: 3rem 0;
  }
  
  .contact-options .section-header {
    margin-bottom: 2rem;
  }
  
  .contact-options .section-title {
    font-size: 1.5rem;
  }
  
  .contact-cards {
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .contact-card {
    padding: 1.5rem 1.25rem;
    gap: 1rem;
    border-radius: 12px;
  }
  
  .contact-card i {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .contact-card h3 {
    font-size: 1rem;
  }
  
  .contact-card p {
    font-size: 0.8rem;
  }
}

/* Small Mobile - 480px */
@media (max-width: 480px) {
  .contact-options {
    padding: 2.5rem 0;
  }
  
  .contact-options .section-header {
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
  }
  
  .contact-options .section-title {
    font-size: 1.35rem;
  }
  
  .contact-options .section-subtitle {
    font-size: 0.65rem;
  }
  
  .contact-cards {
    padding: 0 0.75rem;
    gap: 0.75rem;
  }
  
  .contact-card {
    padding: 1.25rem 1rem;
    gap: 0.875rem;
    border-radius: 10px;
  }
  
  .contact-card i {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
  
  .contact-card h3 {
    font-size: 0.95rem;
  }
  
  .contact-card p {
    font-size: 0.75rem;
    line-height: 1.4;
  }
  
  .contact-card:hover {
    transform: translateX(3px);
  }
}

/* ========================================
   Legal Content Pages (Returns, Layaway, Privacy, TOS, Consignment Policy)
   ======================================== */
.legal-content {
  padding: 4rem 0 6rem;
  background-color: var(--color-white);
}

.legal-document {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.legal-intro {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.effective-date,
.last-updated {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-gray);
  font-style: italic;
  display: block;
  margin-top: 0.5rem;
}

.legal-section {
  margin-bottom: 2.5rem;
}

/* Legal Text Typography - styles for content inside legal-content section */
.legal-text {
  color: var(--color-dark-gray);
}

.legal-text h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e0e0e0;
}

.legal-text h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem;
  color: var(--color-charcoal);
}

.legal-text p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-dark-gray);
  margin-bottom: 1rem;
}

.legal-text ul,
.legal-text ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-text li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: var(--color-dark-gray);
  font-family: var(--font-body);
}

.legal-text strong,
.legal-text b {
  font-weight: 600;
  color: var(--color-charcoal);
}

.legal-text a {
  color: var(--color-charcoal);
  text-decoration: underline;
  text-decoration-color: rgba(0, 0, 0, 0.2);
  text-underline-offset: 3px;
  transition: all 0.3s ease;
}

.legal-text a:hover {
  color: var(--color-gold);
  text-decoration-color: var(--color-gold);
}

/* Contact Info Box */
.contact-info-box {
  background: var(--color-cream);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 2rem;
}

.contact-info-box p {
  margin-bottom: 0.5rem;
}

.contact-info-box p:last-child {
  margin-bottom: 0;
}

/* ========================================
   Accept/Decline Cards Content Typography
   (For Accepted Payment Methods, Return Eligibility, etc.)
   ======================================== */
.accept-content {
  width: 100%;
}

.accept-content p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-gray);
  margin-bottom: 0.75rem;
}

.accept-content ul,
.accept-content ol {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.accept-content li {
  position: relative;
  padding: 0.75rem 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-gray);
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.accept-content li::before {
  content: "•";
  font-size: 1.2rem;
  line-height: 0;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.accept-card.accept .accept-content li::before {
  color: var(--color-gold);
}

.accept-card.decline .accept-content li::before {
  color: var(--color-charcoal);
  opacity: 0.3;
}

.accept-content li:hover {
  color: var(--color-charcoal);
}

.accept-card.accept .accept-content li:hover::before {
  opacity: 1;
  transform: scale(1.2);
}

.accept-card.decline .accept-content li:hover::before {
  opacity: 0.8;
}

/* Legal Content Responsive Styles */
@media (max-width: 768px) {
  .legal-content {
    padding: 3rem 0 4rem;
  }

  .legal-text h2 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
  }

  .legal-text h3 {
    font-size: 1.1rem;
  }

  .legal-text p {
    font-size: 0.95rem;
  }
  
  .accept-content li {
    font-size: 0.9rem;
    padding: 0.5rem 0;
  }
}

/* ========================================
   Lightbox Overlay (Reviews Page)
   ======================================== */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.lightbox-close:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-white);
  transform: rotate(90deg);
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.lightbox-overlay.active .lightbox-content {
  transform: scale(1);
}

.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  margin-top: 1.5rem;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  text-align: center;
  opacity: 0.9;
}

/* Lightbox Responsive */
@media (max-width: 768px) {
  .lightbox-close {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
  
  .lightbox-content {
    max-width: 95vw;
  }
  
  .lightbox-caption {
    font-size: 1rem;
    padding: 0 1rem;
  }
}
