:root {
  --bg: #0b0c0d;
  --muted: #bfc3c6;
  --gold: #c7a152;
  --card-bg: #0f1112;
  --glass: rgba(255, 255, 255, 0.03);
}

/* Section styling */
.sofas-section {
  background: linear-gradient(180deg, #080808 0%, #0d0d0d 100%);
  color: #fff;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  padding: 56px 0;
}

.sofas-title {
  color: var(--gold);
  font-weight: 700;
  font-size: 2.25rem;
  letter-spacing: 0.8px;
  margin-bottom: 40px;
  margin-top: 100px;
}

/* Grid columns */
.sofa-col {
  display: flex;
  align-items: stretch;
}

/* Sofa card */
.sofa-card {
  width: 100%;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.005));
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  min-height: 280px;
  transition: transform 260ms cubic-bezier(.2, .9, .2, 1), box-shadow 260ms ease;
  padding: 0;
  outline-offset: 3px;
}

.sofa-card:focus {
  box-shadow: 0 0 0 3px var(--gold);
}

.sofa-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.75);
}

/* Sofa image */
.sofa-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #111;
  user-select: none;
  -webkit-user-drag: none;
  padding: 5px;
  display: block;
  border-radius: 0;
  transition: transform 320ms ease;
}

/* Glow effect */
.sofa-card::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 12px;
  pointer-events: none;
  box-shadow: 0 0 0 0 rgba(199, 161, 82, 0);
  transition: box-shadow 300ms ease;
}

.sofa-card:hover::after {
  box-shadow: 0 0 24px 6px rgba(199, 161, 82, 0.06);
}

/* Lightbox styles */
/* Lightbox Styles */
.sofa-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
}

.sofa-lightbox.show {
  display: flex;
}

.cl-body {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cl-slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cl-image {
  max-width: 100%;
  max-height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.cl-image.visible {
  opacity: 1;
}

.cl-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 2rem;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}

.cl-prev {
  left: 10px;
}

.cl-next {
  right: 10px;
}

.cl-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 1.5rem;
  padding: 5px 10px;
  cursor: pointer;
  z-index: 10;
}

.cl-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1.2rem;
  z-index: 10;
}
