/* Light Up Letters — Product Detail Page v2.0 */

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

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

/* ── Layout ── */
.lul-pd-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) { .lul-pd-layout { grid-template-columns: 1fr; gap: 32px; } }

/* ── Gallery ── */
.lul-pd-main-image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  background: #f5f5f5;
  margin-bottom: 12px;
}
.lul-pd-main-image img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

.lul-pd-thumb-strip {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.lul-pd-thumb {
  width: 72px; height: 72px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}
.lul-pd-thumb:hover, .lul-pd-thumb.active { border-color: #c8a84b; }
.lul-pd-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Info col ── */
.lul-pd-title {
  font-size: 32px; font-weight: 800; color: #1a1a1a;
  margin: 0 0 20px; line-height: 1.2;
}

/* ── Swatches ── */
.lul-pd-style-section { margin-bottom: 20px; }
.lul-pd-style-label { font-size: 14px; color: #555; margin: 0 0 10px; font-weight: 500; }
.lul-pd-style-swatches { display: flex; gap: 10px; flex-wrap: wrap; }

.lul-pd-swatch {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}
.lul-pd-swatch:hover { transform: scale(1.1); }
.lul-pd-swatch.active { box-shadow: 0 0 0 2px #fff, 0 0 0 4px #1a1a1a; transform: scale(1.1); }

/* ── Description ── */
.lul-pd-description {
  font-size: 15px; color: #555; line-height: 1.8;
  margin-bottom: 24px; padding-bottom: 24px;
  border-bottom: 1px solid #f0f0f0;
}

/* ── Price ── */
.lul-pd-price-wrap { margin-bottom: 8px; }
.lul-pd-price { font-size: 36px; font-weight: 800; color: #1a1a1a; display: block; }

/* ── Actions ── */
.lul-pd-actions { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }

.lul-pd-hire-btn {
  display: block; width: 100%;
  background: #fff; color: #1a1a1a;
  border: 2px solid #1a1a1a;
  border-radius: 50px;
  padding: 14px 24px;
  font-size: 15px; font-weight: 600;
  cursor: pointer; transition: background 0.2s, color 0.2s;
  text-align: center;
}
.lul-pd-hire-btn:hover { background: #1a1a1a; color: #fff; }

.lul-pd-cart-btn {
  display: block; width: 100%;
  background: #1a1a1a; color: #fff;
  border: none; border-radius: 50px;
  padding: 16px 24px;
  font-size: 16px; font-weight: 700;
  cursor: pointer; transition: background 0.2s;
  text-align: center;
}
.lul-pd-cart-btn:hover:not(:disabled) { background: #c8a84b; }
.lul-pd-cart-btn:disabled { background: #ccc; cursor: not-allowed; }

/* ── Modal overlay ── */
.lul-pd-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.lul-pd-modal-box {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  max-width: 720px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.lul-pd-modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none; border: none;
  font-size: 20px; color: #888;
  cursor: pointer; line-height: 1;
  transition: color 0.2s;
}
.lul-pd-modal-close:hover { color: #1a1a1a; }

.lul-pd-modal-title {
  font-size: 22px; font-weight: 700;
  color: #1a1a1a; margin: 0 0 24px;
}

.lul-pd-modal-row {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.lul-pd-modal-field { flex: 1; min-width: 140px; }

.lul-pd-modal-label {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
  color: #888; margin-bottom: 6px;
}

.lul-pd-date-btn {
  background: none; border: 1px solid #ddd;
  border-radius: 8px; padding: 8px 12px;
  font-size: 14px; color: #1a1a1a;
  cursor: pointer; width: 100%; text-align: left;
  font-family: inherit; transition: border-color 0.2s;
}
.lul-pd-date-btn:hover { border-color: #c8a84b; }
.lul-pd-date-val { display: block; }

.lul-pd-modal-input {
  width: 100%; padding: 8px 12px;
  border: 1px solid #ddd; border-radius: 8px;
  font-size: 14px; font-family: inherit;
  box-sizing: border-box; transition: border-color 0.2s;
}
.lul-pd-modal-input:focus { outline: none; border-color: #c8a84b; }

.lul-pd-time-sel {
  font-size: 13px; border: 1px solid #ddd;
  border-radius: 6px; padding: 6px 8px;
  font-family: inherit; cursor: pointer; flex: 1;
}

/* Calendar inside modal */
.lul-pd-calendar {
  display: none;
  position: absolute;
  top: calc(100% + 4px); left: 0;
  background: #fff; border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
  padding: 16px; z-index: 100000; width: 300px;
}
.lul-pd-calendar.lul-hp-open { display: block; }
.lul-pd-cal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; font-weight: 600; font-size: 14px; }
.lul-pd-cal-nav { background: none; border: 1px solid #ddd; border-radius: 50%; width: 28px; height: 28px; cursor: pointer; font-size: 14px; }
.lul-pd-cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; }

.lul-pd-modal-save {
  display: block; width: 100%;
  background: #c8a84b; color: #fff;
  border: none; border-radius: 50px;
  padding: 14px 24px;
  font-size: 15px; font-weight: 700;
  cursor: pointer; transition: background 0.2s;
  margin-top: 8px;
}
.lul-pd-modal-save:hover:not(:disabled) { background: #b8942f; }
.lul-pd-modal-save:disabled { background: #ccc; cursor: not-allowed; }

/* ── Hire length ── */
.lul-pd-hire-length {
  display: block;
  font-size: 13px;
  color: #888;
  margin-top: 4px;
}

/* ── Modal uses hero picker CSS — just needs overlay + box ── */
.lul-pd-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.lul-pd-modal-box {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  max-width: 960px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.lul-pd-modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none; border: none;
  font-size: 20px; color: #888;
  cursor: pointer; line-height: 1;
  transition: color 0.2s;
}
.lul-pd-modal-close:hover { color: #1a1a1a; }

.lul-pd-modal-title {
  font-size: 22px; font-weight: 700;
  color: #1a1a1a; margin: 0 0 20px;
}

.lul-pd-modal-save {
  display: block; width: 100%;
  background: #c8a84b; color: #fff;
  border: none; border-radius: 50px;
  padding: 14px 24px;
  font-size: 15px; font-weight: 700;
  cursor: pointer; transition: background 0.2s;
}
.lul-pd-modal-save:hover:not(:disabled) { background: #b8942f; }
.lul-pd-modal-save:disabled { background: #ccc; cursor: not-allowed; }

/* ── Custom character input ── */
.lul-pd-custom-chars-input {
  width: 100%;
  font-size: 22px;
  letter-spacing: 6px;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-family: inherit;
  text-transform: uppercase;
  box-shadow: none !important;
  outline: none;
  transition: border-color 0.2s;
}

.lul-pd-custom-chars-input:focus {
  border-color: #c8a84b;
  outline: none;
  box-shadow: none !important;
}

.lul-pd-custom-hint {
  font-size: 12px;
  color: #aaa;
  margin: 6px 0 0;
}
