/* Light Up Letters — Section Page */

.lul-sec-wrap {
  max-width: 1100px;
  margin: 0 auto;
  font-family: inherit;
}

.lul-sec-back {
  display: inline-block;
  font-size: 14px;
  color: #888;
  text-decoration: none;
  margin-bottom: 20px;
  transition: color 0.2s;
}
.lul-sec-back:hover { color: #c8a84b; }

.lul-sec-title {
  font-size: 36px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 24px;
}

/* ── Horizontal scrollable gallery strip ── */
.lul-sec-gallery-strip {
  overflow-x: auto;
  margin-bottom: 32px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.lul-sec-gallery-strip::-webkit-scrollbar { display: none; }

.lul-sec-gallery-inner {
  display: flex;
  gap: 12px;
  width: max-content;
}

.lul-sec-gallery-item {
  width: 200px;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.lul-sec-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Description ── */
.lul-sec-description {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  max-width: 720px;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 2px solid #f0ede4;
}

/* ── Add-Ons block (below the main product grid) ── */
.lul-sec-addons-wrap {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 2px solid #f0ede4;
}

.lul-sec-addons-heading {
  font-size: 26px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 12px;
}

.lul-sec-addons-description {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  max-width: 720px;
  margin-bottom: 8px;
}

/* ── Product grid ── */
.lul-sec-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 900px) { .lul-sec-products { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .lul-sec-products { grid-template-columns: 1fr; } }

/* ── Product card ── */
.lul-sec-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}

.lul-sec-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.lul-sec-card-img {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f5f5f5;
}

.lul-sec-card-img-link { display: block; }

.lul-sec-card-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lul-sec-card-body {
  padding: 16px 18px 18px;
}

.lul-sec-card-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 12px;
}

.lul-sec-card-title a {
  color: #1a1a1a;
  text-decoration: none;
}

.lul-sec-card-title a:hover { color: #c8a84b; }

/* ── Swatches ── */
.lul-sec-swatches {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.lul-sec-swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: default;
  transition: transform 0.15s;
}

.lul-sec-swatch:hover { transform: scale(1.15); }

/* ── Price ── */
.lul-sec-card-price-wrap {
  margin-bottom: 14px;
}

.lul-sec-price-label {
  font-size: 12px;
  color: #888;
  display: block;
  margin-bottom: 2px;
}

.lul-sec-price {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  display: block;
}

.lul-sec-price-hire {
  font-size: 12px;
  color: #888;
  display: block;
  margin-top: 2px;
}

/* ── View & Book button ── */
.lul-sec-card-btn {
  display: block;
  background: #c8a84b;
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.lul-sec-card-btn:hover {
  background: #b8942f;
  color: #fff;
}

/* Light coloured swatches get a dark border */
.lul-sec-swatch.lul-swatch-light { border-color: #1a1a1a; }
