* { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: clip; }

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #111;
  font-size: 15px;

}





/* NAV */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  border-bottom: 1px solid #e8e8e8;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 10;

}


/* ============================================================
   CENTERED LAYOUT — only on wider screens
============================================================ */
@media (min-width: 700px) {
  body {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
  }
}




.logo { font-size: 16px; font-weight: 500; letter-spacing: 3px; }
nav ul { list-style: none; display: flex; gap: 24px; }
nav ul a { text-decoration: none; font-size: 12px; color: #666; letter-spacing: 1px; text-transform: uppercase; }
nav ul a:hover { color: #111; }

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 22px;
  color: #666;
  padding: 2px 6px;
  line-height: 1;
}
.nav-hamburger:hover { color: #111; }

.logo-img { height: 32px; width: auto; display: block; }

@media (max-width: 640px) {
  .nav-hamburger { display: block; margin-left: auto; }
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    min-width: 160px;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    padding: 8px 0;
    z-index: 200;
  }
  nav ul.nav-open { display: flex; }
  nav ul li a { display: block; padding: 10px 20px; font-size: 13px; text-align: right; }
}

/* nav + footer: break out of centered body to span full viewport width */
@media (min-width: 700px) {
  nav, footer {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-32px - max(0px, (100vw - 1100px) / 2));
    padding-left:  calc(32px + max(0px, (100vw - 1100px) / 2));
    padding-right: calc(32px + max(0px, (100vw - 1100px) / 2));
  }
}

/* ============================================================
   CART COUNTER BUTTON (floating)
============================================================ */
.cart-counter-btn {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 150;
  background: #111;
  color: #fff;
  border-radius: 50px;
  padding: 10px 18px;
  display: none;
  align-items: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: transform 0.15s, box-shadow 0.15s;
  font-family: 'Inter', sans-serif;
}
.cart-counter-btn:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 6px 28px rgba(0,0,0,0.32);
  color: #fff;
}

/* HERO */
.hero { padding: 64px 32px 48px; border-bottom: 1px solid #e8e8e8; }
.hero .label { font-size: 11px; color: #999; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
.hero h1 { font-size: 42px; font-weight: 300; line-height: 1.2; margin-bottom: 12px; }
.hero .sub { font-size: 14px; color: #666; }

/* SECTIONS */
.section { padding: 40px 32px; border-bottom: 1px solid #e8e8e8; }
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.section-title { font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: #888; }
.section-header a { font-size: 12px; color: #aaa; text-decoration: none; }

/* GRIDS */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }

/* PHOTO CARDS */
.photo-card { aspect-ratio: 4/5; overflow: hidden; background: #f4f4f4; border-radius: 6px; }
.photo-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ITEM CARDS (shop + wishlist) */
.item-card, .wish-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.item-card img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; background: #f4f4f4;
}
.card-img-wrap { position: relative; overflow: hidden; }
.card-img-back {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block; z-index: 0;
}
.card-img-wrap > img:not(.card-img-back) {
  position: relative; z-index: 1; transition: opacity 0.5s ease;
}
.card-img-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 2; opacity: 0; transition: opacity 0.5s ease;
  pointer-events: none;
}
.wish-card img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; background: #f4f4f4;
}
.item-info { padding: 6px 12px 10px; }
.item-info h3 { font-size: 13px; font-weight: 500; margin: 4px 0 2px; }
.item-info p { font-size: 12px; color: #888; margin-bottom: 6px; }
.price { font-size: 14px; font-weight: 500; display: block; margin-bottom: 8px; }
.item-card .price { display: none; }
.item-card .item-info p { display: none; }

button.buy-btn {
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  width: 100%;
}
button.buy-btn:disabled { opacity: 0.4; cursor: not-allowed; }

.tag {
  display: inline-block; font-size: 10px; background: #f4f4f4;
  color: #666; padding: 1px 6px; border-radius: 4px; margin-bottom: 2px;
  text-transform: uppercase; letter-spacing: 1px;
}
.tag.gift { background: #eef4ff; color: #3a7bd5; }

.buy-btn {
  display: block; text-align: center; font-size: 12px;
  border: 1px solid #ddd; border-radius: 6px; padding: 7px;
  text-decoration: none; color: #111; margin-top: 6px;
  transition: background 0.15s;
}
.buy-btn:hover { background: #f4f4f4; }

/* FOOTER */
footer {
  padding: 24px 32px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: #aaa;
  background: #fff;
}
.contact-btn {
  font-size: 12px; color: #111; border: 1px solid #ddd;
  padding: 8px 18px; border-radius: 6px; text-decoration: none;
}
.contact-btn:hover { background: #f4f4f4; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 28px; }
}
@media (max-width: 640px) {
  .item-card .item-tag-label { display: none; }
}




/* EXTERNAL LINKS BAR */
.external-links {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0 28px;
  flex-wrap: wrap;
}
.ext-label {
  font-size: 11px;
  color: #aaa;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.ext-link {
  font-size: 12px;
  color: #666;
  text-decoration: none;
  border-bottom: 1px solid #ddd;
  padding-bottom: 1px;
  transition: color 0.15s;
}
.ext-link:hover { color: #111; border-color: #111; }

/* COLLECTIONS */
.collections { display: flex; flex-direction: column; gap: 40px; }
.collection-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.collection-name { font-size: 13px; font-weight: 500; color: #333; }
.collection-count { font-size: 11px; color: #aaa; }

/* COLLECTION PREVIEW - horizontal scrollable strip */
.grid-preview {
  display: flex;
  flex-direction: row;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
}

.grid-preview .photo-card {
  flex: 0 0 180px;
  scroll-snap-align: start;
  aspect-ratio: 4/5;
}

/* hide scrollbar visually but keep it functional */
.grid-preview::-webkit-scrollbar { height: 3px; }
.grid-preview::-webkit-scrollbar-track { background: transparent; }
.grid-preview::-webkit-scrollbar-thumb { background: #ddd; border-radius: 2px; }

/* THRONE EMBED */
.throne-embed {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eee;
  margin-bottom: 32px;
}

/* WISHLIST EXTRAS */
.wishlist-label {
  font-size: 11px;
  color: #aaa;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.wishlist-amazon {
  margin-top: 20px;
  text-align: center;
}
.amazon-link {
  font-size: 12px;
  color: #666;
  text-decoration: none;
  border-bottom: 1px solid #ddd;
}
.amazon-link:hover { color: #111; }



.throne-link-block {
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 28px;
  text-align: center;
  margin-bottom: 32px;
}
.throne-link-block p { font-size: 13px; color: #888; margin-bottom: 12px; }
.throne-btn {
  display: inline-block;
  font-size: 13px;
  color: #111;
  border: 1px solid #ccc;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
}
.throne-btn:hover { background: #eee; }

/* MODAL */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 20px 20px 88px;
}
.modal-overlay.open { display: flex; }

.modal-box {
  background: #fff;
  border-radius: 14px;
  max-width: 860px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  max-height: 90vh;
  overflow: hidden;
}

.modal-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #666;
  z-index: 10;
}
.modal-close:hover { color: #111; }

/* CAROUSEL */
.modal-left { background: #f4f4f4; position: relative; min-width: 0; }

.carousel { position: relative; width: 100%; aspect-ratio: 1/1; overflow: hidden; }
.carousel img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  transition: transform 0.25s ease;
}
.carousel img.zoomed {
  transform: scale(2.2);
  cursor: zoom-out;
}
.carousel-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  border: none;
  font-size: 22px;
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #111;
}
.carousel-btn.left { left: 10px; }
.carousel-btn.right { right: 10px; }
.carousel-btn:hover { background: #fff; }

.carousel-thumbs {
  display: flex;
  gap: 6px;
  padding: 10px 12px;
  overflow-x: auto;
  background: #f4f4f4;
}
.carousel-thumbs img {
  width: 52px; height: 52px;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
  border: 2px solid transparent;
  flex-shrink: 0;
}
.carousel-thumbs img.active { border-color: #111; }

/* Video in carousel */
#carousel-video {
  width: 100%; height: 100%; object-fit: contain;
  display: none; background: #000;
}
.thumb-item {
  width: 52px; height: 52px; flex-shrink: 0;
  border: 2px solid transparent; border-radius: 5px;
  cursor: pointer; overflow: hidden; position: relative;
  background: #ccc;
}
.thumb-item img { width: 100%; height: 100%; object-fit: cover; display: block; border: none; }
.thumb-item.active { border-color: #111; }
.thumb-play {
  position: absolute; inset: 0; display: flex;
  align-items: center; justify-content: center;
  font-size: 16px; color: #fff; background: rgba(0,0,0,0.45);
}

/* Shop policy */
.shop-policy-divider { display: none; }
.shop-policy {
  padding-top: 32px;
  padding-bottom: 48px;
  background: #fff;
  border-top: 1px solid #eee;
}
.shop-policy-title {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #111;
  margin: 0 0 10px;
}
.shop-policy-text {
  color: #888;
  font-size: 13px;
  line-height: 1.8;
  max-width: 680px;
  margin: 0;
}
@media (min-width: 700px) {
  .shop-policy {
    width: 100vw;
    margin-left: calc(-32px - max(0px, (100vw - 1100px) / 2));
    padding-left:  calc(32px + max(0px, (100vw - 1100px) / 2));
    padding-right: calc(32px + max(0px, (100vw - 1100px) / 2));
    text-align: center;
  }
  .shop-policy-text { margin: 0 auto; }
}

/* MODAL INFO */
.modal-right {
  padding: 32px 28px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal-right .tag { align-self: flex-start; }
.modal-right h2 { font-size: 20px; font-weight: 500; line-height: 1.3; }
.modal-price { font-size: 22px; font-weight: 500; }
.modal-meta { font-size: 13px; color: #888; line-height: 1.6; }
.modal-desc { font-size: 14px; color: #444; line-height: 1.7; flex: 1; }
.modal-buy-btn {
  background: #111;
  color: #fff;
  border-color: #111;
  text-align: center;
  padding: 12px;
}
.modal-buy-btn:hover { background: #333; }
.modal-contact-btn {
  text-align: center;
  padding: 10px;
  font-size: 12px;
  color: #666;
}

/* RESPONSIVE MODAL */
@media (max-width: 640px) {
  .modal-box { grid-template-columns: 1fr; overflow-y: auto; }
  .carousel { aspect-ratio: 4/3; }
}

/* SHOP PAGE BACKGROUND */
.shop-bg-img {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url('https://res.cloudinary.com/dvfx9uivz/image/upload/v1780435345/images/ALBUMS/BODY/Screenshot_20260430_110704_Gallery.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(3px);
  transform: scale(1.03);
}

/* UNDERWEAR VIDEO BANNER */
.underwear-banner {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  background: #111;
}
.underwear-banner video {
  width: 100%;
  display: block;
  max-height: 340px;
  object-fit: cover;
}

/* SHOP FILTERS */
.shop-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  position: relative;
  justify-content: center;
}
.filter-tag-wrap {
  position: relative;
  display: inline-flex;
}
.filter-tag {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid #ddd;
  border-radius: 20px;
  cursor: pointer;
  background: #fff;
  color: #111;
  transition: all 0.15s;
  -webkit-user-select: none;
  user-select: none;
}
.filter-tag:hover { border-color: #111; }
.filter-tag.active { background: #111; color: #fff; border-color: #111; font-weight: 500; }
.sort-arrow {
  font-size: 9px;
  margin-left: 5px;
  opacity: 0.7;
  cursor: pointer;
}

/* SORT DROPDOWN */
.sort-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  padding: 5px 0;
  z-index: 50;
  min-width: 190px;
}
.sort-option {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 9px 16px;
  font-size: 12px;
  color: #555;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.3px;
  transition: background 0.12s;
}
.sort-option:hover { background: #f5f5f5; color: #111; }
.sort-option.active { color: #111; font-weight: 500; }

/* SHOP EMPTY STATE */
.shop-empty {
  padding: 48px 0;
  text-align: center;
  font-size: 14px;
  color: #aaa;
}
.shop-empty a { color: #666; }

/* SHOP PREVIEW horizontal on homepage */
.shop-preview .item-card {
  flex: 0 0 200px;
  scroll-snap-align: start;
}

/* SOLD ITEMS */
.is-sold { opacity: 0.5; }
.is-sold img { filter: grayscale(60%); }

.sold-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #111;
  color: #fff;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 2;
}

.sold-tag {
  background: #111;
  color: #fff;
  margin-left: 4px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px; /* space between fields */
  max-width: 400px; /* optional, keeps it clean */
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.contact-form button {
  width: 100%;
  box-sizing: border-box;
}

/* ============================================================
   SUPPORT BLOCK
============================================================ */
.support-link-block {
  border-radius: 12px;
  overflow: hidden;
  background-color: #111;
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* dark overlay so text stays readable over any photo */
.support-link-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.52);
  border-radius: 12px;
}
.support-link-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 24px;
}
.support-link-inner p {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  margin-bottom: 16px;
}
.support-link-inner .throne-btn {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.support-link-inner .throne-btn:hover {
  background: rgba(255,255,255,0.28);
}


/* ============================================================
   PAID ALBUM
============================================================ */
.album-paid {
  position: relative;
}

.paid-badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: #111;
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
}

/* snippet grid — fades out horizontally */
.paid-snippets {
  -webkit-mask-image: linear-gradient(to right, black 42%, transparent 100%);
  mask-image: linear-gradient(to right, black 42%, transparent 100%);
  pointer-events: none;
  max-height: 440px;
  overflow: hidden;
}

/* locked overlay — horizontal gradient from right */
.paid-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: 62%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 40px;
  padding-bottom: 0;
  background: linear-gradient(to right, transparent, #fff 55%);
}
.paid-overlay-inner {
  text-align: center;
}
.paid-overlay-title {
  font-size: 15px;
  font-weight: 500;
  color: #111;
  margin-bottom: 6px;
}
.paid-overlay-sub {
  font-size: 12px;
  color: #888;
  margin-bottom: 16px;
  line-height: 1.5;
}
.unlock-btn {
  display: inline-block;
  background: #111;
  color: #fff;
  font-size: 13px;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s;
}
.unlock-btn:hover { background: #333; }

/* dark mode adjustment for paid overlay */
@media (prefers-color-scheme: dark) {
  .paid-overlay { background: linear-gradient(to right, transparent, #111 55%); }
  .paid-overlay-title { color: #fff; }
}

/* ============================================================
   ABOUT PAGE
============================================================ */
.about-banner {
  width: 100%;
  height: 55vh;
  overflow: hidden;
  background: #111;
}
.about-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.85;
}

.about-dark {
  background: #000;
  width: 100%;
  padding: 80px 32px 96px;
}
.about-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.about-title {
  font-size: 38px;
  font-weight: 300;
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.about-para {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
  margin-bottom: 20px;
}
.about-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 52px;
  flex-wrap: wrap;
}
.about-btn {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 36px;
  border-radius: 4px;
  transition: all 0.2s;
}
.about-btn--outline {
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
}
.about-btn--outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}
.about-btn--solid {
  background: #fff;
  color: #000;
  border: 1px solid #fff;
}
.about-btn--solid:hover {
  background: rgba(255,255,255,0.85);
}

/* ============================================================
   CONTACT PAGE
============================================================ */
.contact-page-top {
  background: #fff;
  padding: 80px 32px 96px;
}
.contact-page-inner {
  max-width: 480px;
  margin: 0 auto;
}
.contact-page-title {
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 12px;
}
.contact-page-sub {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
  margin-bottom: 36px;
}
.contact-email-link {
  color: #555;
  text-decoration: none;
  border-bottom: 1px solid #ddd;
}
.contact-email-link:hover { color: #111; border-color: #111; }

.contact-form--page {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-form--page input,
.contact-form--page select,
.contact-form--page textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background: #fafafa;
  color: #111;
  outline: none;
  transition: border-color 0.15s;
  box-sizing: border-box;
}
.contact-form--page input:focus,
.contact-form--page select:focus,
.contact-form--page textarea:focus {
  border-color: #999;
  background: #fff;
}
.contact-form--page button {
  background: #111;
  color: #fff;
  border: none;
  padding: 13px 28px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s;
  font-family: 'Inter', sans-serif;
}
.contact-form--page button:hover { background: #333; }

.contact-page-bottom {
  width: 100%;
  height: 55vh;
  overflow: hidden;
  background: #111;
}
.contact-page-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* VIDEO CARD */
.video-card {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #111;
  border-radius: 6px;
}
.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ============================================================
   HOMEPAGE SHOP PREVIEW LOADING STATE
============================================================ */
.preview-loading {
  font-size: 12px;
  color: #aaa;
  padding: 20px 0;
}

/* ============================================================
   TIP ME PAGE — BUBBLES
============================================================ */
.tip-section-header {
  margin-bottom: 24px;
}

.bubble-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 8px;
}

.bubbles-combined {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 56px;
  margin-bottom: 48px;
}
.bubbles-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bubbles-group .tip-section-header { text-align: center; }
.bubbles-divider-v {
  width: 1px;
  background: #e8e8e8;
  align-self: stretch;
  min-height: 100px;
}
.tip-section-header--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (max-width: 640px) {
  .bubbles-combined { flex-direction: column; align-items: center; gap: 32px; }
  .bubbles-divider-v { display: none; }
}

.bubble {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  width: 90px;
  transition: transform 0.15s;
}
.bubble:hover { transform: translateY(-3px); }

.bubble-img-wrap {
  width: 72px;
  height: 72px;
  overflow: hidden;
  background: #f4f4f4;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  /* shape set by JS — default circle */
  border-radius: 50%;
  transition: border-radius 0.2s;
}

/* square variant — applied by JS when data-shape="square" */
.bubble-img-wrap.square {
  border-radius: 16px;
}

.bubble-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bubble-label {
  font-size: 12px;
  color: #666;
  text-align: center;
  font-weight: 400;
}

.tip-divider {
  border-top: 1px solid #e8e8e8;
  margin: 40px 0;
}


/* ============================================================
   SUPPORT IN KIND
============================================================ */
.tip-section-sub {
  font-size: 13px;
  color: #aaa;
  margin-top: 4px;
  font-weight: 400;
}

.in-kind-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.in-kind-card {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  background: #fff;
  transition: border-color 0.15s, transform 0.15s;
}
.in-kind-card:hover {
  border-color: #bbb;
  transform: translateY(-2px);
}

.in-kind-icon {
  font-size: 24px;
  line-height: 1;
}

.in-kind-title {
  font-size: 13px;
  font-weight: 500;
  color: #111;
  line-height: 1.3;
}

.in-kind-desc {
  font-size: 12px;
  color: #888;
  line-height: 1.6;
}


/* ============================================================
   CART PAGE
============================================================ */
.cart-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid #eee;
}
.cart-img {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #f4f4f4;
}
.cart-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cart-info {
  flex: 1;
  min-width: 0;
}
.cart-name {
  font-size: 14px;
  font-weight: 500;
  color: #111;
  margin: 4px 0 6px;
}
.cart-price {
  font-size: 14px;
  font-weight: 500;
  color: #111;
}
.cart-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cart-remove-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  background: none;
  border: 1px solid #ddd;
  color: #bbb;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.15s;
  flex-shrink: 0;
}
.cart-remove-btn:hover { border-color: #999; color: #333; }

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0 4px;
  border-top: 1px solid #eee;
  margin-top: 4px;
  font-size: 15px;
  font-weight: 500;
  color: #111;
}
.cart-clear-btn {
  background: none;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 8px 18px;
  font-size: 12px;
  color: #aaa;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.15s;
}
.cart-clear-btn:hover { border-color: #ccc; color: #666; }

.cart-action-row {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.cart-continue-btn {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #666;
  text-decoration: none;
  border: 1px solid #ddd;
  padding: 11px 22px;
  border-radius: 6px;
  transition: all 0.15s;
}
.cart-continue-btn:hover { border-color: #999; color: #111; }
.cart-checkout-btn {
  background: #111;
  color: #fff;
  border: none;
  padding: 11px 28px;
  border-radius: 6px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.15s;
}
.cart-checkout-btn:hover { background: #333; }
@media (max-width: 640px) {
  .cart-row { flex-wrap: nowrap; align-items: center; }
  .cart-img { width: 60px; height: 60px; }
}

/* ============================================================
   ALBUM COLLAPSE / EXPAND
============================================================ */
.album-mosaic-wrap {
  position: relative;
}
.album-mosaic-wrap.collapsed {
  max-height: 320px;
  overflow: hidden;
}
.album-expand-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, #fff 68%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  pointer-events: none;
}
.album-expand-btn {
  pointer-events: auto;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 26px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.15s;
}
.album-expand-btn:hover { background: #333; }
.album-collapse-btn {
  display: block;
  margin: 14px auto 0;
  background: none;
  border: none;
  font-size: 11px;
  color: #aaa;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  letter-spacing: 1px;
  transition: color 0.15s;
}
.album-collapse-btn:hover { color: #111; }

/* CART ITEM WRAP — groups row + custom request */
.cart-item-wrap {
  border-bottom: 1px solid #eee;
}
.cart-item-wrap .cart-row {
  border-bottom: none;
  padding-bottom: 4px;
}

/* CUSTOM REQUEST ADD-ON */
.custom-request-section {
  padding: 0 0 14px;
}
.custom-request-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #888;
  padding: 2px 0;
  transition: color 0.15s;
}
.custom-request-toggle:hover { color: #111; }
.custom-request-tick-box {
  width: 16px;
  height: 16px;
  border: 1.5px solid #bbb;
  border-radius: 3px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
}
.custom-request-toggle.checked .custom-request-tick-box {
  background: #111;
  border-color: #111;
}
.custom-request-toggle.checked .custom-request-tick-box::after {
  content: '✓';
  color: #fff;
  font-size: 10px;
  line-height: 1;
}
.custom-request-expand {
  margin-top: 10px;
}
.custom-request-textarea {
  width: 100%;
  min-height: 72px;
  padding: 10px 12px;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  border: 1px solid #ddd;
  border-radius: 6px;
  resize: vertical;
  outline: none;
  color: #111;
  background: #fafafa;
  box-sizing: border-box;
  transition: border-color 0.15s;
}
.custom-request-textarea:focus { border-color: #888; background: #fff; }
.custom-request-disclaimer {
  font-size: 11px;
  color: #aaa;
  margin-top: 6px;
  line-height: 1.5;
}


/* ============================================================
   ALBUM HIGHLIGHTS (homepage)
============================================================ */
.album-highlights {
  display: flex;
  gap: 20px;
}

.album-highlight-card {
  flex: 1;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.album-highlight-img {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 10px;
  background: #f4f4f4;
}

.album-highlight-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.album-highlight-name {
  font-size: 11px;
  font-weight: 500;
  color: #888;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .album-highlights { flex-direction: column; }
}


/* ============================================================
   PRIVATE ALBUMS
============================================================ */
.album-private {
  position: relative;
}

.private-full-content {
  display: none;
}

.private-preview {
  pointer-events: none;
  max-height: 360px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 95%);
  mask-image: linear-gradient(to bottom, black 30%, transparent 95%);
}

.private-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 62%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 36px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.98) 52%);
}

.private-overlay-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.private-overlay-title {
  font-size: 15px;
  font-weight: 500;
  color: #111;
  margin: 0;
}

.private-overlay-sub {
  font-size: 12px;
  color: #888;
  margin: -8px 0 0;
}

.private-add-cart-btn {
  background: #111;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 11px 28px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.15s;
}
.private-add-cart-btn:hover { background: #333; }
.private-add-cart-btn:disabled { opacity: 0.45; cursor: default; }

.private-code-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.private-code-label {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #bbb;
}

.private-code-form {
  display: flex;
  gap: 6px;
  align-items: center;
}

.private-code-input {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  width: 150px;
  outline: none;
  transition: border-color 0.15s;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: #fff;
  color: #111;
}
.private-code-input:focus { border-color: #888; }
.private-code-input.code-error {
  border-color: #d44;
  animation: code-shake 0.3s ease;
}

@keyframes code-shake {
  0%, 100% { transform: translateX(0); }
  25%       { transform: translateX(-5px); }
  75%       { transform: translateX(5px); }
}

.private-code-submit {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  border: none;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  flex-shrink: 0;
}
.private-code-submit:hover { background: #333; }


/* ============================================================
   ALBUMS PAGE — MOSAIC LAYOUT
============================================================ */
.albums-page {
  padding-top: 32px;
}

.album-section-header {
  margin-bottom: 14px;
}

.album-section-name {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
}

.album-divider {
  border: none;
  border-top: 1px solid #e8e8e8;
  margin: 56px 0;
}

.mosaic-grid {
  column-count: 3;
  column-gap: 6px;
}

.mosaic-grid .photo-card {
  aspect-ratio: unset;
  break-inside: avoid;
  margin-bottom: 6px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: #f0f0f0;
}

.mosaic-grid .photo-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.2s ease;
}

.mosaic-grid .photo-card:hover img {
  opacity: 0.85;
}

.mosaic-grid .video-card {
  aspect-ratio: unset;
  break-inside: avoid;
  margin-bottom: 6px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: #111;
  position: relative;
}

.mosaic-grid .video-card video {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}

.mosaic-grid .video-card::after {
  content: '▶';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: rgba(255,255,255,0.8);
  background: rgba(0,0,0,0.22);
  transition: background 0.15s;
}

.mosaic-grid .video-card:hover::after {
  background: rgba(0,0,0,0.38);
}

@media (max-width: 768px) {
  .mosaic-grid { column-count: 2; }
}


/* ============================================================
   PHOTO LIGHTBOX
============================================================ */
.photo-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 400;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.photo-lightbox.open { display: flex; }

.lightbox-img-wrap {
  cursor: default;
  max-width: 88vw;
  max-height: 90vh;
  display: flex;
}

.lightbox-img-wrap img {
  max-width: 88vw;
  max-height: 90vh;
  object-fit: contain;
  display: block;
  border-radius: 3px;
  cursor: default;
}

#lightbox-video {
  display: none;
  max-width: 88vw;
  max-height: 90vh;
  border-radius: 3px;
  cursor: default;
  background: #000;
  outline: none;
}

.lightbox-btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.35);
  font-size: 56px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  padding: 16px 20px;
  z-index: 10;
  transition: color 0.15s;
  font-family: 'Inter', sans-serif;
  -webkit-user-select: none;
  user-select: none;
}
.lightbox-btn:hover { color: rgba(255,255,255,0.85); }
.lightbox-prev { left: 8px; }
.lightbox-next { right: 8px; }

@media (max-width: 640px) {
  .lightbox-btn { font-size: 40px; padding: 10px 14px; }
}




