/* Shop block — kikiboy site constructor — strict / minimal style */

.shop-section {
  padding: 100px 0;
  position: relative;
}

.shop-section .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

.shop-empty {
  text-align: center;
  padding: 80px 24px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(var(--shop-cols, 3), 1fr);
  gap: 4px;
  margin-top: 48px;
}

@media (max-width: 880px) {
  .shop-grid {
    grid-template-columns: repeat(var(--shop-cols-m, 1), 1fr);
    gap: 4px;
  }
  .shop-section { padding: 64px 0; }
  .shop-section .container { padding: 0 16px; }
}

/* ─── CARD: strict luxury style ───────────────────────────── */
.shop-card {
  background: #f5f5f5;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background 0.3s ease;
  border: none;
}

.shop-card:hover {
  background: #ededed;
}

.shop-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.shop-card__media:focus-visible {
  outline: 2px solid #111;
  outline-offset: -2px;
}

.shop-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
  mix-blend-mode: multiply;
}

.shop-card__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.25);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.shop-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.shop-card__badge--out {
  background: #111;
  color: #fff;
}

/* Quick "+" indicator on card image */
.shop-card__quick {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 44px;
  height: 44px;
  background: transparent;
  font-size: 22px;
  color: #111;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
  z-index: 2;
  pointer-events: none;
}

.shop-card__media:hover .shop-card__quick {
  background: #111;
  color: #fff;
}

/* Black underline accent below image */
.shop-card__accent {
  height: 2px;
  background: #111;
  width: 25%;
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.shop-card:hover .shop-card__accent {
  width: 100%;
}

.shop-card__body {
  padding: 18px 20px 24px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.shop-card__title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  margin: 0;
  color: #111;
  letter-spacing: 0.2px;
}

.shop-card__desc {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.55);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.shop-card__price {
  font-size: 13px;
  font-weight: 500;
  color: #111;
  margin-top: 2px;
  letter-spacing: 0.2px;
}

/* Color swatches — minimal */
.shop-card__colors {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.shop-color {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
  padding: 0;
  position: relative;
}

.shop-color:hover {
  transform: scale(1.2);
}

.shop-color.is-active {
  border-color: #111;
  border-width: 2px;
}

.shop-color:focus-visible {
  outline: 1px solid #111;
  outline-offset: 2px;
}

/* Buy buttons in card — hidden (only used in lightbox) */
.shop-card__buy {
  display: none;
}

/* Buy CTA on card */
.shop-card__buy-cta {
  display: block;
  width: 100%;
  margin-top: 14px;
  padding: 12px 18px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 0;
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s ease, background 0.2s ease;
}

.shop-card__buy-cta:hover { background: #000; }
.shop-card__buy-cta:active { opacity: 0.85; }

/* Section header — minimal */
.shop-section .section-title {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 12px;
}

.shop-section .section-subtitle {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.55);
  text-align: center;
  letter-spacing: 0.5px;
  margin: 0;
}

/* ─── LIGHTBOX: minimal, 50% screen ───────────────────────── */
.shop-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: none;
  align-items: center;
  justify-content: center;
}

.shop-lightbox.is-open { display: flex; }

.shop-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  cursor: pointer;
  animation: shopLbFade 0.25s ease;
}

@keyframes shopLbFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.shop-lightbox__panel {
  position: relative;
  background: #fff;
  border-radius: 0;
  width: 50vw;
  max-width: 900px;
  min-width: 640px;
  max-height: 80vh;
  display: flex;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  animation: shopLbScale 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes shopLbScale {
  from { transform: scale(0.96); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.shop-lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  font-size: 16px;
  color: #111;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  font-weight: 300;
  transition: opacity 0.2s ease;
}

.shop-lightbox__close:hover { opacity: 0.6; }

.shop-lightbox__media {
  flex: 1 1 50%;
  background: #f5f5f5;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-lightbox__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.25s ease;
  mix-blend-mode: multiply;
}

.shop-lightbox__placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 40px;
  text-align: center;
}

.shop-lightbox__info {
  flex: 1 1 50%;
  padding: 48px 40px 36px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
}

.shop-lightbox__title {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
  color: #111;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.shop-lightbox__price {
  font-size: 18px;
  font-weight: 500;
  color: #111;
  letter-spacing: 0.3px;
}

.shop-lightbox__desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.65);
  margin: 0;
  white-space: pre-wrap;
}

.shop-lightbox__divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin: 8px 0;
}

.shop-lightbox__section-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(0, 0, 0, 0.5);
  margin: 0 0 6px;
}

.shop-lightbox__section-label span {
  color: #111;
  font-weight: 500;
}

.shop-lightbox__colors {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.shop-lightbox__color {
  display: flex;
  align-items: center;
  gap: 0;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 4px;
  cursor: pointer;
  transition: border-color 0.2s ease;
  font-family: inherit;
}

.shop-lightbox__color-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  display: block;
}

.shop-lightbox__color:hover .shop-lightbox__color-dot {
  transform: scale(1.15);
}

.shop-lightbox__color.is-active {
  border-color: #111;
}

.shop-lightbox__buy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.shop-lightbox__buy .shop-btn {
  width: 100%;
  justify-content: center;
  padding: 14px 20px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 0;
  font-weight: 500;
}

.shop-lightbox__badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 0;
}

.shop-lightbox__badge--out {
  background: #111;
  color: #fff;
}

.shop-lightbox__badge--in {
  background: transparent;
  color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 2px 9px;
}

@media (max-width: 880px) {
  .shop-lightbox__panel {
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    max-width: none;
    min-width: 0;
    max-height: none;
  }
  .shop-lightbox__media {
    flex: 0 0 50vh;
  }
  .shop-lightbox__info {
    padding: 28px 22px 32px;
    gap: 12px;
  }
  .shop-lightbox__title { font-size: 18px; }
  .shop-lightbox__price { font-size: 16px; }
}

/* ─── SHOP BUTTONS — minimal ───────────────────────── */
.shop-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 0;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: opacity 0.2s ease, background 0.2s ease, color 0.2s ease;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.shop-btn:hover { opacity: 0.85; }

.shop-btn__icon {
  font-size: 14px;
  line-height: 1;
}

.shop-btn--tg {
  background: #229ED9;
  color: #fff;
}

.shop-btn--ig {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
}

.shop-btn--em {
  background: #111;
  color: #fff;
}

.shop-btn--soon {
  background: #f5f5f5;
  color: rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
}

.shop-btn--soon:hover { opacity: 1; }

/* ─── BUY CTA in lightbox ─────────────────────────── */
.shop-buy-cta {
  display: block;
  width: 100%;
  padding: 16px 24px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 0;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s ease, background 0.2s ease;
  margin-top: 4px;
}

.shop-buy-cta:hover {
  background: #000;
}

.shop-buy-cta:active {
  opacity: 0.85;
}

/* ─── PAYMENT MODAL (stub form) ─────────────────────── */
.shop-pay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.shop-pay.is-open { display: flex; }

.shop-pay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  cursor: pointer;
  animation: shopLbFade 0.25s ease;
}

.shop-pay__panel {
  position: relative;
  background: #fff;
  border-radius: 14px;
  width: 100%;
  max-width: 460px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 36px 32px 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  animation: shopLbScale 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.shop-pay__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.04);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  color: #444;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
  transition: background 0.2s ease;
}

.shop-pay__close:hover { background: rgba(0, 0, 0, 0.08); }

.shop-pay__notice {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: #fef3c7;
  color: #92400e;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  align-self: flex-start;
  margin-bottom: 18px;
}

.shop-pay__notice-dot {
  width: 6px;
  height: 6px;
  background: #f59e0b;
  border-radius: 50%;
  animation: shopPayPulse 1.4s ease-in-out infinite;
}

@keyframes shopPayPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.shop-pay__product {
  margin-bottom: 6px;
}

.shop-pay__product-name {
  font-size: 17px;
  font-weight: 600;
  color: #111;
  letter-spacing: 0.2px;
}

.shop-pay__product-meta {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.shop-pay__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.shop-pay__total-amount {
  font-size: 24px;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.3px;
}

/* ─── Card visual ─── */
.shop-pay__card {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 60%, #1a1a1a 100%);
  border-radius: 14px;
  padding: 22px;
  color: #fff;
  font-family: 'SF Mono', 'Menlo', monospace;
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
}

.shop-pay__card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.shop-pay__card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.shop-pay__card-chip {
  width: 36px;
  height: 28px;
  background: linear-gradient(135deg, #d4a847, #f5d061 50%, #c69833);
  border-radius: 5px;
  position: relative;
}

.shop-pay__card-chip::before,
.shop-pay__card-chip::after {
  content: '';
  position: absolute;
  background: rgba(0, 0, 0, 0.15);
  height: 1px;
  left: 4px;
  right: 4px;
}

.shop-pay__card-chip::before { top: 9px; }
.shop-pay__card-chip::after  { bottom: 9px; }

.shop-pay__card-brands {
  display: flex;
  align-items: center;
  gap: 8px;
}

.shop-pay__brand {
  font-family: 'Inter', 'Helvetica', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  font-style: italic;
  color: #fff;
  opacity: 0.9;
}

.shop-pay__brand--mc {
  width: 28px;
  height: 18px;
  position: relative;
}

.shop-pay__brand--mc::before,
.shop-pay__brand--mc::after {
  content: '';
  position: absolute;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.shop-pay__brand--mc::before {
  left: 0;
  background: #eb001b;
}

.shop-pay__brand--mc::after {
  right: 0;
  background: #f79e1b;
  mix-blend-mode: hard-light;
}

.shop-pay__card-number {
  width: 100%;
  padding: 8px 0;
  background: transparent;
  border: none;
  color: #fff;
  font-family: inherit;
  font-size: 19px;
  letter-spacing: 2px;
  margin-bottom: 18px;
  outline: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.shop-pay__card-number::placeholder {
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 2px;
}

.shop-pay__card-number:focus {
  border-bottom-color: rgba(255, 255, 255, 0.4);
}

.shop-pay__card-bot {
  display: flex;
  gap: 14px;
  align-items: center;
}

.shop-pay__card-name,
.shop-pay__card-exp {
  background: transparent;
  border: none;
  color: #fff;
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  outline: none;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.shop-pay__card-name {
  flex: 1;
}

.shop-pay__card-exp {
  width: 60px;
  text-align: right;
}

.shop-pay__card-name::placeholder,
.shop-pay__card-exp::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.shop-pay__card-name:focus,
.shop-pay__card-exp:focus {
  border-bottom-color: rgba(255, 255, 255, 0.5);
}

/* ─── Plain fields below card ─── */
.shop-pay__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.shop-pay__field span {
  font-size: 10px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.55);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.shop-pay__field input {
  width: 100%;
  padding: 11px 14px;
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  color: #111;
  transition: border-color 0.2s ease, background 0.2s ease;
  box-sizing: border-box;
}

.shop-pay__field input:focus {
  outline: none;
  border-color: #111;
  background: #fff;
}

.shop-pay__row {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.shop-pay__row .shop-pay__field {
  margin-bottom: 0;
}

.shop-pay__field--grow { flex: 1; }

.shop-pay__submit {
  width: 100%;
  padding: 16px 24px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.shop-pay__submit:hover { background: #000; }
.shop-pay__submit:active { transform: scale(0.99); }

.shop-pay__submit:disabled {
  background: #888;
  cursor: not-allowed;
}

.shop-pay__secure {
  text-align: center;
  font-size: 11px;
  color: rgba(0, 0, 0, 0.5);
  margin: 14px 0 0;
  letter-spacing: 0.3px;
}

@media (max-width: 480px) {
  .shop-pay__panel { padding: 28px 20px 22px; }
  .shop-pay__card { padding: 18px; }
  .shop-pay__card-number { font-size: 17px; letter-spacing: 1.5px; }
}

/* ─── EMAIL ORDER MODAL ─────────────────────────── */
.shop-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.shop-modal.is-open { display: flex; }

.shop-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.shop-modal__panel {
  position: relative;
  background: #fff;
  border-radius: 0;
  max-width: 480px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  padding: 36px 36px 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.shop-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 16px;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
}

.shop-modal__close:hover { opacity: 0.6; }

.shop-modal__title {
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 24px;
  color: #111;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.shop-modal__form .form-field {
  margin-bottom: 16px;
}

.shop-modal__form .form-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.55);
  margin-bottom: 6px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.shop-modal__form input,
.shop-modal__form textarea {
  width: 100%;
  padding: 11px 0;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0;
  font-size: 14px;
  font-family: inherit;
  background: transparent;
  color: #111;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.shop-modal__form input:focus,
.shop-modal__form textarea:focus {
  outline: none;
  border-bottom-color: #111;
}

.shop-modal__form input:disabled {
  color: rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
}

.shop-modal__form .btn-submit {
  width: 100%;
  padding: 14px 24px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 0;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 12px;
  transition: opacity 0.2s ease;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: inherit;
}

.shop-modal__form .btn-submit:hover { opacity: 0.85; }
