/* Candid Studio - Premium Light Theme Styles */

:root {
  /* Light theme - Clean, Professional, Friendly */
  --bg-near-black: #ffffff;
  --bg-dark: #ffffff;
  --text-off-white: #1a1a1a;
  --text-light: #555555;
  --accent-red: #c41e3a;
  --accent-red-hover: #a01a2e;
  --accent-gold: #c9a961;
  --accent-gold-light: #d4b87a;
  --accent-gold-dark: #a6893f;
  --accent-gold-text: #6b5520;
  --card-bg: #fafafa;
  --card-border: #e8e8e8;
  --divider-gold: rgba(201, 169, 97, 0.2);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Playfair Display', 'Georgia', serif;
}

body {
  background-color: #ffffff;
  color: #1a1a1a;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  padding: 1.25rem 2rem;
  z-index: 1000;
  border-bottom: 1px solid rgba(232, 232, 232, 0.8);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.logo:hover {
  color: var(--accent-gold-text);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  color: var(--text-off-white);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-menu a:hover {
  color: var(--accent-gold-text);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-gold);
  transition: width 0.3s;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--accent-red);
  color: #ffffff;
  padding: 1.4rem 8rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 400;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.nav-menu a.nav-cta,
.nav-menu a.nav-cta:visited,
.nav-menu a.nav-cta:hover,
.nav-menu a.nav-cta:active,
.nav-menu a.nav-cta:focus {
  color: #ffffff !important;
}

.nav-cta:visited,
.nav-cta:hover,
.nav-cta:active,
.nav-cta:focus {
  color: #ffffff;
}

.nav-cta:hover {
  background: var(--accent-red-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-off-white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  margin-top: 70px;
  padding: 4rem 2rem;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.25));
  z-index: 1;
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(196, 30, 58, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1.5rem;
  color: #ffffff;
  max-width: 800px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-subtext {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  max-width: 600px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-primary {
  background: var(--accent-red);
  color: #ffffff;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.btn-primary:visited,
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--accent-red-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--text-off-white);
  padding: 1rem 2.5rem;
  border: 2px solid var(--accent-gold);
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.hero .btn-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.btn-secondary:hover {
  background: var(--accent-gold);
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.trust-points {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.trust-point {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

.hero .trust-point {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.trust-point-icon {
  color: var(--accent-gold-text);
  font-size: 1.2rem;
}

.hero .trust-point-icon {
  color: #f0d878;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* Section Styles */
.section {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
  color: var(--text-off-white);
  position: relative;
  font-weight: 600;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  margin: 1.5rem auto;
  border-radius: 2px;
}

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid var(--card-border);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold), rgba(201, 169, 97, 0.3));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 169, 97, 0.3);
}

.service-card-image {
  width: 100%;
  height: 200px;
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.service-card-image--tall {
  height: 250px;
  background: #ffffff;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-image img.img-contain {
  object-fit: contain;
}

.service-card h3 {
  margin-bottom: 0.5rem;
  color: var(--text-off-white);
}

.service-card-tagline {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

.service-card .btn-primary,
.service-card .btn-secondary {
  width: 100%;
  text-align: center;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
}

/* How It Works */
.how-it-works {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 250px;
  text-align: center;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  font-family: 'Playfair Display', serif;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.step:hover .step-number {
  transform: scale(1.1);
}

.step h3 {
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--text-light);
}

.step-arrow {
  position: absolute;
  top: 40px;
  right: -30px;
  color: var(--accent-gold-text);
  font-size: 2rem;
  display: none;
}

.step:not(:last-child) .step-arrow {
  display: block;
}

/* Business Highlight Band */
.business-band {
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.05), rgba(196, 30, 58, 0.05));
  border-top: 2px solid var(--divider-gold);
  border-bottom: 2px solid var(--divider-gold);
  padding: 4rem 2rem;
  margin: 4rem 0;
}

.business-band-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.business-band-text h2 {
  margin-bottom: 1.5rem;
}

.business-band-text ul {
  list-style: none;
  margin: 2rem 0;
}

.business-band-text li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-light);
}

.business-band-text li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-gold-text);
  font-weight: bold;
  font-size: 1.2rem;
}

.business-band-image {
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), rgba(196, 30, 58, 0.1));
  border-radius: 12px;
  height: 400px;
  overflow: hidden;
  position: relative;
}

.business-band-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gallery and Reviews */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
}

.gallery-image {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), rgba(196, 30, 58, 0.1));
  border-radius: 8px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  position: relative;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--card-border);
  border-top: 3px solid var(--accent-gold);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  font-weight: bold;
  box-shadow: var(--shadow-sm);
}

.review-name {
  font-weight: 600;
  color: var(--text-off-white);
}

.review-stars {
  color: var(--accent-gold-text);
  font-size: 1.2rem;
  margin-top: 0.25rem;
}

.review-text {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.gallery-cta {
  text-align: center;
  margin-top: 3rem;
}

.gallery-cta .btn-primary {
  padding: 1.25rem 3rem;
  font-size: 1.1rem;
}

/* Instagram embed grid (official free embeds) */
.instagram-embed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: start;
}
.instagram-embed-grid .instagram-media {
  margin: 0;
  min-width: 0;
}

/* Footer */
.footer {
  background: #1a1a1a;
  border-top: 1px solid rgba(201, 169, 97, 0.3);
  padding: 4rem 2rem 2rem;
  margin-top: 5rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column h4 {
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 169, 97, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(201, 169, 97, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.social-icons a:hover {
  background: var(--accent-gold);
  color: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.footer-contact {
  color: #e0e0e0;
  font-size: 0.95rem;
}

.footer-contact a {
  color: var(--accent-gold);
  text-decoration: none;
}

.footer-contact a[href^="mailto:"],
.footer-contact p a[href^="mailto:"],
.footer-bottom .footer-contact a[href^="mailto:"] {
  font-family: 'Courier New', Courier, monospace !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.5px !important;
  font-weight: normal !important;
}

/* Form Styles */
.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--card-bg);
  padding: 3.5rem;
  border-radius: 20px;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-off-white);
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  background: #ffffff;
  border: 2px solid var(--card-border);
  border-radius: 8px;
  color: var(--text-off-white);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}


.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Calendar Placeholder */
.calendar-placeholder {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
  color: var(--text-light);
}

/* Product Cards */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.product-card {
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 169, 97, 0.3);
}

.product-card-image {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), rgba(196, 30, 58, 0.1));
  overflow: hidden;
  position: relative;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-content {
  padding: 1.5rem;
}

.product-card h3 {
  margin-bottom: 0.5rem;
}

.product-card-price {
  color: var(--accent-gold-text);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 1rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 2rem;
    border-top: 1px solid rgba(201, 169, 97, 0.3);
  }

  .nav-menu.active {
    display: flex;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero {
    min-height: 70vh;
    padding: 2rem 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .trust-points {
    flex-direction: column;
    gap: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .how-it-works {
    flex-direction: column;
  }

  .step-arrow {
    display: none !important;
  }

  .business-band-content {
    grid-template-columns: 1fr;
  }

  .business-band-image {
    height: 300px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

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

  .section {
    padding: 3rem 1rem;
  }

  .form-container {
    padding: 2rem 1.5rem;
  }

  .contact-grid,
  .product-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .product-details-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .embed-social-iframe {
    height: 500px !important;
    min-height: 400px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 1rem;
  }

  .logo {
    font-size: 1.4rem;
  }

  .nav-cta {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

/* Booking slide panel */
.booking-slide-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.booking-slide-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.booking-slide-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 480px;
  height: 100%;
  background: var(--bg-dark);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  z-index: 2001;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  padding: 2rem;
}

.booking-slide-overlay.is-open .booking-slide-panel {
  transform: translateX(0);
}

.booking-slide-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-light);
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  transition: color 0.2s;
}

.booking-slide-close:hover {
  color: var(--text-off-white);
}

.booking-slide-panel .form-container {
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
}

/* Product config options */
.product-config-section {
  margin-bottom: 1.5rem;
}

.product-config-section label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--text-off-white);
}

.product-config-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.product-config-btn {
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--card-border);
  border-radius: 6px;
  background: #fff;
  color: var(--text-off-white);
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
}

.product-config-btn:hover {
  border-color: var(--accent-gold);
}

.product-config-btn.selected {
  background: #2d2d2d;
  color: #fff;
  border-color: #2d2d2d;
}

.product-config-select {
  width: 100%;
  max-width: 280px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--card-border);
  border-radius: 6px;
  background: #fff;
  font-size: 0.95rem;
  cursor: pointer;
}

.product-config-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  cursor: pointer;
}

.product-config-checkbox input {
  width: 18px;
  height: 18px;
}

.product-config-thumbnails {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.product-config-thumb {
  width: 100px;
  height: 100px;
  border: 2px solid var(--card-border);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
}

.product-config-thumb:hover,
.product-config-thumb.selected {
  border-color: var(--accent-gold);
}

.product-config-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-config-qty {
  display: flex;
  align-items: center;
  gap: 0;
  width: fit-content;
  border: 1px solid var(--card-border);
  border-radius: 6px;
  overflow: hidden;
}

.product-config-qty button {
  width: 40px;
  height: 40px;
  border: none;
  background: #f5f5f5;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s;
}

.product-config-qty button:hover {
  background: #eee;
}

.product-config-qty input {
  width: 50px;
  height: 40px;
  border: none;
  border-left: 1px solid var(--card-border);
  border-right: 1px solid var(--card-border);
  text-align: center;
  font-size: 1rem;
}

.video-guestbook-color-btn.selected {
  border-color: var(--accent-gold) !important;
  box-shadow: 0 0 0 2px var(--accent-gold);
}
