/* FROGS LAB — modelled on thegreatfroglondon.com (header, split-hero, collection, footer). */

body.theme-frobs {
  --fl-ink: #111;
  --fl-paper: #fff;
  --fl-footer: #171717;
  --fl-mute: #dcdcdc;
  --nav-h: 72px;
  background: #fff;
  color: #111;
  font-family: "Fustat", Helvetica, Arial, sans-serif;
}
body.theme-frobs.page-bg::before { background: #fff; }
body.theme-frobs .co-header,
body.theme-frobs #mobileBar { display: none !important; }

#frobsChrome:not(.hidden) { display: block; }
#frobsFooter:not(.hidden) {
  display: flex;
  flex-direction: column;
}

/* ——— Header: hamburger + wordmark left, Rewards + icons right ——— */
.fl-header {
  position: sticky;
  top: 0;
  z-index: 120;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 12px 20px;
  background: #fff;
}
.fl-header-left {
  display: inline-flex;
  align-items: center;
  justify-self: start;
}
.fl-logo { justify-self: center; }
.fl-header-right {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}
.fl-burger {
  appearance: none;
  background: none;
  border: 0;
  width: 30px;
  height: 30px;
  padding: 4px 0 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.fl-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #111;
}
.fl-logo {
  display: inline-flex;
  align-items: center;
  color: #111;
  line-height: 1;
}
.fl-logo-text {
  font-family: "UnifrakturMaguntia", "Times New Roman", serif;
  font-size: clamp(1.7rem, 3.4vw, 2.55rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.fl-rewards {
  font-family: Epilogue, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: inherit;
  margin-top: 4px;
}
.fl-icon-btn {
  appearance: none;
  background: none;
  border: 0;
  padding: 4px;
  width: 36px;
  height: 36px;
  color: inherit;
  cursor: pointer;
}
.fl-icon-btn svg {
  width: 26px;
  height: 26px;
  display: block;
}
.fl-text-btn {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 22px;
  color: inherit;
  cursor: pointer;
  line-height: 1;
}

@media (max-width: 768px) {
  .fl-header { padding: 10px 12px; }
  .fl-header-left { gap: 8px; }
  .fl-logo-text { font-size: 1.55rem; }
  .fl-rewards { display: none; }
}

/* Homepage: black overlay header sitting on the split (TGF is-homepage) */
body.theme-frobs.frobs-home .fl-header {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background: #000;
  color: #fff;
}
body.theme-frobs.frobs-home .fl-logo { color: #fff; }
body.theme-frobs.frobs-home .fl-burger span { background: #fff; }

/* Overlay menu */
.fl-menu {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 200;
  width: min(420px, 100%);
  background: #fff;
  color: #111;
  padding: 28px 32px;
  overflow: auto;
  box-shadow: 8px 0 40px rgba(0, 0, 0, 0.18);
}
.fl-menu-close {
  appearance: none;
  background: none;
  border: 0;
  font-family: Epilogue, sans-serif;
  font-size: 14px;
  letter-spacing: 0.06em;
  cursor: pointer;
  margin-bottom: 36px;
  padding: 0;
}
.fl-menu-nav {
  display: grid;
  gap: 14px;
  font-family: Epilogue, sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
}
.fl-menu-nav a { color: #111; }
.fl-menu-aside {
  margin-top: 48px;
  display: grid;
  gap: 10px;
  font-size: 14px;
}
.fl-menu-aside a { color: #333; }

.fl-bag {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  width: min(420px, 100%);
  background: #fff;
  color: #111;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}
.fl-bag-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fl-bag-head h2 {
  margin: 0;
  font-family: Epilogue, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.fl-bag-note { color: #555; font-size: 0.88rem; margin: 16px 0 0; }
.fl-bag-empty { margin-top: 48px; font-size: 0.95rem; }
.fl-bag-totals {
  margin-top: auto;
  border-top: 1px solid #111;
  padding-top: 16px;
  display: grid;
  gap: 10px;
}
.fl-bag-sub {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.95rem;
}
.fl-bag-ship-row {
  color: #555;
  font-size: 0.88rem;
}
.fl-bag-ship-row strong,
.fl-bag-total-row strong {
  font-weight: 600;
  color: #111;
  text-align: right;
}
.fl-bag-total-row {
  padding-top: 8px;
  border-top: 1px solid #ddd;
  font-weight: 600;
}
.fl-bag-checkout {
  margin-top: 16px;
  height: 44px;
  border: 0;
  background: #111;
  color: #fff;
  font-family: Epilogue, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: not-allowed;
  opacity: 0.45;
}
.fl-bag-checkout:not(:disabled) {
  cursor: pointer;
  opacity: 1;
}
.fl-bag-altpay {
  margin-top: 10px;
  height: 44px;
  border: 1px solid #111;
  background: #fff;
  color: #111;
  font-family: Epilogue, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: not-allowed;
  opacity: 0.45;
}
.fl-bag-altpay:not(:disabled) {
  cursor: pointer;
  opacity: 1;
}
.fl-bag-pay-hint {
  margin: 10px 0 0;
  color: #555;
  font-size: 0.78rem;
  line-height: 1.4;
}
.fl-bag-pay-hint.hidden { display: none; }

/* Manual pay panel */
.fl-pay-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 140;
  width: min(420px, 100vw);
  height: 100vh;
  background: #fff;
  color: #111;
  padding: 28px 24px 40px;
  display: flex;
  flex-direction: column;
  overflow: auto;
  box-shadow: -12px 0 40px rgba(0,0,0,0.12);
}
.fl-pay-panel.hidden { display: none; }
.fl-pay-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.fl-pay-head h2 {
  margin: 0;
  font-family: Epilogue, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.fl-pay-steps {
  display: flex;
  gap: 8px;
  margin: 12px 0 20px;
}
.fl-pay-steps span {
  width: 28px;
  height: 28px;
  border: 1px solid #111;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Epilogue, sans-serif;
  font-size: 0.75rem;
  color: #999;
}
.fl-pay-steps span.is-active {
  background: #111;
  color: #fff;
}
.fl-pay-lead {
  margin: 0 0 16px;
  color: #555;
  font-size: 0.9rem;
  line-height: 1.45;
}
.fl-pay-summary {
  margin: 0 0 20px;
  text-align: left;
}
.fl-pay-lines {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
}
.fl-pay-line {
  display: grid;
  gap: 2px;
  font-size: 0.9rem;
}
.fl-pay-line strong {
  font-weight: 600;
}
.fl-pay-line span {
  color: #555;
  font-size: 0.82rem;
}
.fl-pay-summary-dl {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  font-size: 0.9rem;
}
.fl-pay-summary-dl dt { color: #777; }
.fl-pay-summary-dl dd { margin: 0; font-weight: 500; text-align: right; }
.fl-pay-primary,
.fl-pay-secondary {
  width: 100%;
  height: 44px;
  border: 0;
  background: #111;
  color: #fff;
  font-family: Epilogue, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
}
.fl-pay-secondary {
  background: #fff;
  color: #111;
  border: 1px solid #111;
  margin-top: 10px;
}
.fl-pay-primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.fl-pay-err {
  margin: 0 0 12px;
  color: #a11;
  font-size: 0.85rem;
}
.fl-pay-orderline {
  margin: 0 0 12px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.fl-pay-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid #111;
  margin-bottom: 16px;
}
.fl-pay-tab {
  height: 40px;
  border: 0;
  border-right: 1px solid #111;
  background: #fff;
  font-family: Epilogue, sans-serif;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}
.fl-pay-tab:last-child { border-right: 0; }
.fl-pay-tab.is-active {
  background: #111;
  color: #fff;
}
.fl-pay-tabpanels {
  margin-bottom: 16px;
  text-align: center;
}
.fl-pay-tabpanel img {
  width: min(100%, 280px);
  height: auto;
  border: 1px solid #e4e4e4;
}
.fl-pay-form {
  display: grid;
  gap: 12px;
  text-align: left;
}
.fl-pay-form > label {
  display: grid;
  gap: 6px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: Epilogue, sans-serif;
}
.fl-pay-form input[type="text"],
.fl-pay-form input[type="email"],
.fl-pay-form input[type="tel"],
.fl-pay-form textarea {
  width: 100%;
  border: 1px solid #111;
  background: #fff;
  padding: 10px 12px;
  font-family: "Fustat", Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0;
}
.fl-pay-file {
  display: grid !important;
  gap: 6px;
  position: relative;
}
.fl-pay-file-caption {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: Epilogue, sans-serif;
}
.fl-pay-file input[type="file"] {
  position: absolute;
  inset: 22px 0 0;
  width: 100%;
  height: 44px;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
.fl-pay-file-ui {
  display: flex;
  align-items: stretch;
  min-height: 44px;
  border: 1px solid #111;
  background: #fff;
  overflow: hidden;
}
.fl-pay-file-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  background: #111;
  color: #fff;
  font-family: Epilogue, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}
.fl-pay-file-name {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-family: "Fustat", Helvetica, Arial, sans-serif;
  font-size: 0.88rem;
  text-transform: none;
  letter-spacing: 0;
  color: #555;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.fl-pay-file:has(input:focus-visible) .fl-pay-file-ui {
  outline: 2px solid #111;
  outline-offset: 2px;
}
.fl-pay-file:has(input:not(:placeholder-shown)) .fl-pay-file-name,
.fl-pay-file.has-file .fl-pay-file-name {
  color: #111;
}
.fl-pay-optional {
  text-transform: none;
  letter-spacing: 0;
  color: #888;
  font-weight: 400;
}
.fl-pay-method {
  margin: 4px 0 0;
  padding: 14px 0 4px;
  border: 0;
  border-top: 1px solid #e4e4e4;
  text-align: left;
}
.fl-pay-method legend {
  display: block;
  float: none;
  width: 100%;
  margin: 0;
  padding: 0 0 8px;
  font-family: Epilogue, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #111;
}
.fl-pay-method-opt {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-family: "Fustat", Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
  line-height: 1.35;
  color: #333;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
}
.fl-pay-method-opt:last-of-type { border-bottom: 0; }
.fl-pay-method-opt input {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  flex: 0 0 16px;
  border: 1px solid #111;
  border-radius: 50%;
  background: #fff;
  position: relative;
  cursor: pointer;
}
.fl-pay-method-opt input:checked::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #111;
}
.fl-pay-method-opt:has(input:checked) {
  color: #111;
}
.fl-pay-method-opt:has(input:checked) .fl-pay-method-name {
  font-weight: 500;
}
.fl-pay-method-text {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.fl-pay-method-name {
  text-align: left;
  flex: 1 1 auto;
  min-width: 0;
}
.fl-pay-done-kicker {
  margin: 8px 0 8px;
  font-family: Epilogue, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.fl-pay-orderbig {
  margin: 8px 0 24px;
  font-family: Epilogue, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.fl-pay-lookup {
  margin-bottom: 16px;
  text-align: left;
}
.fl-pay-lookup label {
  display: grid;
  gap: 6px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: Epilogue, sans-serif;
}
.fl-pay-lookup input {
  width: 100%;
  border: 1px solid #111;
  padding: 10px 12px;
  font-family: "Fustat", Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0;
}
.fl-pay-lookup-result {
  margin: 0 0 16px;
  padding: 12px;
  background: #f7f7f7;
  border: 1px solid #e4e4e4;
  font-size: 0.8rem;
  white-space: pre-wrap;
  text-align: left;
}
.fl-pay-link {
  margin-top: 14px;
  width: 100%;
  border: 0;
  background: none;
  padding: 0;
  font-family: "Fustat", Helvetica, Arial, sans-serif;
  font-size: 0.88rem;
  color: #555;
  text-decoration: underline;
  cursor: pointer;
}
.fl-pay-or {
  margin: 18px 0 10px;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999;
}
.fl-pay-steps.is-resume { opacity: 0.35; }
.fl-menu-linkbtn {
  display: block;
  width: 100%;
  border: 0;
  background: none;
  padding: 0;
  margin: 0 0 0.2rem;
  text-align: left;
  font: inherit;
  color: #111;
  cursor: pointer;
}
.fl-alt-pay {
  height: 35px;
  border: 1px solid #111;
  background: #fff;
  color: #111;
  font-family: Epilogue, sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
}

body.theme-frobs #storeApp .container {
  max-width: none;
  padding: 0;
}
body.theme-frobs #storeApp .crumb,
body.theme-frobs #storeApp .store-classic { display: none !important; }

/* ——— Split hero (TGF .split-hero) ——— */
.fl-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100vw;
  min-height: 100svh;
  background: #000;
}
.fl-split-side {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
}
.fl-split-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
/* Home left cover: clear absolute header so the subject's head isn't cropped */
.fl-split-side:first-child .fl-split-bg {
  object-position: center top;
  inset: auto;
  left: 0;
  right: 0;
  bottom: 0;
  top: 4.75rem;
  width: 100%;
  height: calc(100% - 4.75rem);
}
.fl-split-btn {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  min-width: 160px;
  height: 35px;
  padding: 10px 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #000;
  font-family: Epilogue, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.2;
  box-sizing: border-box;
}
@media (max-width: 749px) {
  .fl-split {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    height: 100svh;
    min-height: 100svh;
  }
  .fl-split-side {
    min-height: 0;
    height: 50svh;
  }
  .fl-split-btn { bottom: 1.5rem; }
}

/* ——— Jewellery collection + sidebar + pager ——— */
.fl-catalog-wrap {
  background: #fff;
  padding: 28px 20px 80px;
}
.fl-shop-now {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}
.fl-shop-side {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 10px;
  font-family: Epilogue, sans-serif;
  font-size: 0.95rem;
}
.fl-shop-side a { color: #111; }
.fl-shop-side a.is-active { font-weight: 700; }
@media (max-width: 1180px) {
  .fl-shop-now { grid-template-columns: 1fr; }
  .fl-shop-side { display: none; }
}
.fl-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin: 36px 0 8px;
  font-family: Epilogue, sans-serif;
  font-size: 0.95rem;
}
.fl-pager a,
.fl-pager .is-current { color: #111; }
.fl-pager .is-current { font-weight: 700; }
.fl-catalog-title {
  display: none;
  margin: 0 0 24px;
  text-align: center;
  font-family: Epilogue, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .fl-catalog-title { display: block; }
}
@media (min-width: 769px) {
  .fl-catalog-title {
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 28px;
  }
}

body.theme-frobs .fl-catalog,
body.theme-frobs #storeProductGrid.fl-catalog {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.5rem;
  margin: 0 auto;
  padding: 0 12px 8px;
  max-width: 1400px;
}
@media (max-width: 1190px) {
  body.theme-frobs .fl-catalog,
  body.theme-frobs #storeProductGrid.fl-catalog {
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  }
}
@media (max-width: 768px) {
  body.theme-frobs .fl-catalog,
  body.theme-frobs #storeProductGrid.fl-catalog {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0;
  }
}

.fl-item { color: #111; text-align: center; }
.fl-item-media {
  position: relative;
  aspect-ratio: 1;
  background: #f3f3f3;
  overflow: hidden;
}
.fl-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fl-item-overlay {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 10px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
  color: #fff;
  flex-direction: column;
  gap: 2px;
}
@media (hover: hover) {
  .fl-item-overlay { display: flex; opacity: 0; transition: opacity 0.2s ease; }
  .fl-item:hover .fl-item-overlay { opacity: 1; }
  .fl-item:hover .fl-item-meta { opacity: 0; }
}
.fl-item-meta {
  padding: 10px 4px 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.fl-item-title {
  font-family: Epilogue, sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
}
.fl-item-price {
  font-size: 0.86rem;
  color: #333;
}

/* ——— Dark footer (TGF #171717) ——— */
.fl-footer {
  background: #171717;
  color: #dcdcdc;
  padding: 50px 24px 24px;
  gap: 20px;
}
.fl-footer-top {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 25px;
}
.fl-footer-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  font-size: 14px;
}
.fl-footer-title {
  appearance: none;
  background: none;
  border: 0;
  border-bottom: 1px solid #dcdcdc;
  color: #dcdcdc;
  display: block;
  width: 100%;
  text-align: left;
  padding: 0 0 2px;
  margin: 0 0 10px;
  font-family: Epilogue, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.fl-footer-links a {
  display: block;
  padding-bottom: 5px;
  font-size: 14px;
  color: #dcdcdc;
}
.fl-footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  border-top: 1px solid #dcdcdc;
  padding-top: 10px;
}
.fl-copy {
  margin: 0;
  font-size: 12px;
  padding-top: 5px;
}
@media (max-width: 1080px) {
  .fl-footer-top { flex-direction: column; gap: 0; }
  .fl-footer-col {
    border-top: 1px solid #dcdcdc;
    padding: 0.7rem 0;
  }
  .fl-footer-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 0;
    margin-bottom: 0;
    cursor: pointer;
  }
  .fl-footer-title::after {
    content: "+";
    font-size: 1.2rem;
    font-weight: 400;
  }
  .fl-footer-col.is-open .fl-footer-title::after { content: "–"; }
  .fl-footer-links { display: none; margin-top: 0.5rem; }
  .fl-footer-col.is-open .fl-footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
  .fl-footer-bottom { padding-top: 2rem; text-align: center; }
}

/* ——— Product page (TGF 3-col) ——— */
body.theme-frobs.frobs-pdp { background: #fff; }
body.theme-frobs.frobs-pdp #shopApp,
body.theme-frobs.frobs-pdp #mobileBar { display: none !important; }
body.theme-frobs.frobs-pdp .pdp-page { padding-bottom: 0; }

.fl-pdp {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr) 380px;
  gap: 2rem;
  max-width: 1400px;
  margin: 3rem auto 0;
  padding: 0 20px 48px;
  align-items: start;
}
.fl-pdp-side {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 10px;
  font-family: Epilogue, sans-serif;
  font-size: 0.95rem;
}
.fl-pdp-side-label {
  margin: 0 0 4px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #666;
}
.fl-pdp-side a { color: #111; }
.fl-pdp-media { display: flex; flex-wrap: wrap; gap: 20px; }
.fl-pdp-shot {
  margin: 0;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f3f3f3;
}
.fl-pdp-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fl-pdp-info {
  position: sticky;
  top: 88px;
  text-align: center;
}
.fl-pdp-crumb {
  margin: 0 0 10px;
  font-size: 0.85rem;
}
.fl-pdp-crumb a { color: #111; }
.fl-pdp-info h1 {
  margin: 0 0 10px;
  font-family: Epilogue, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}
.fl-pdp-price {
  margin: 0 0 18px;
  font-family: Epilogue, sans-serif;
  font-size: 14px;
  font-weight: 600;
}
.fl-pdp-desc {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #333;
}
.fl-pdp-desc p { margin: 0 0 12px; }
.fl-pdp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: stretch;
  margin-top: 25px;
}
.fl-ship-opts { flex: 1 1 100%; order: 3; }
.fl-add-bag { order: 4; }
.fl-alt-pay { order: 5; flex: 1 1 100%; }
.fl-size { order: 1; }
.fl-qty { order: 2; }
.fl-size { position: relative; flex: 1; }
.fl-qty {
  display: inline-flex;
  align-items: stretch;
  flex: 0 0 auto;
  height: 35px;
  border: 1px solid #111;
  background: #fff;
}
.fl-qty-btn {
  appearance: none;
  width: 36px;
  border: 0;
  background: #fff;
  color: #111;
  font-family: Epilogue, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.fl-qty-btn:hover:not(:disabled) {
  background: #111;
  color: #fff;
}
.fl-qty-btn:disabled {
  color: #bbb;
  cursor: default;
}
.fl-qty-input {
  width: 44px;
  border: 0;
  border-left: 1px solid #111;
  border-right: 1px solid #111;
  background: #fff;
  text-align: center;
  font-family: Epilogue, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #111;
  -moz-appearance: textfield;
}
.fl-qty-input:focus {
  outline: none;
  background: #f7f7f7;
}
.fl-qty-input::-webkit-outer-spin-button,
.fl-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.fl-size-toggle {
  width: 100%;
  height: 35px;
  border: 1px solid #111;
  background: #fff;
  font-family: Epilogue, sans-serif;
  font-size: 13px;
  text-align: left;
  padding: 0 2.4rem 0 12px;
  cursor: pointer;
  position: relative;
}
.fl-size-toggle::after {
  content: "▾";
  position: absolute;
  right: 0;
  top: 0;
  width: 2rem;
  height: 35px;
  background: #e4e4e4;
  text-align: center;
  line-height: 35px;
  font-size: 0.7rem;
}
.fl-size-list {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 5;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #fff;
  border: 1px solid #111;
  border-top: 0;
  max-height: 240px;
  overflow: auto;
  text-align: left;
}
.fl-size-list button {
  width: 100%;
  border: 0;
  background: none;
  padding: 8px 12px;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.fl-size-list button:hover { background: #f3f3f3; }
.fl-add-bag {
  flex: 0 0 160px;
  height: 35px;
  border: 0;
  background: #000;
  color: #fff;
  font-family: Epilogue, sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
}
.fl-ship-opts {
  width: 100%;
  margin: 4px 0 0;
  padding: 14px 0 4px;
  border: 0;
  border-top: 1px solid #e4e4e4;
  text-align: left;
}
.fl-ship-opts legend {
  display: block;
  float: none;
  width: 100%;
  margin: 0;
  padding: 0 0 8px;
  font-family: Epilogue, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #111;
}
.fl-ship-opts::after { display: none; }
.fl-ship-opt {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-family: "Fustat", Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
  line-height: 1.35;
  color: #333;
  cursor: pointer;
}
.fl-ship-opt:last-of-type { border-bottom: 0; }
.fl-ship-opt.is-disabled { opacity: 0.35; pointer-events: none; }
.fl-ship-opt input {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  flex: 0 0 16px;
  border: 1px solid #111;
  border-radius: 50%;
  background: #fff;
  position: relative;
  cursor: pointer;
}
.fl-ship-opt input:checked::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #111;
}
.fl-ship-opt:has(input:checked) {
  color: #111;
}
.fl-ship-opt:has(input:checked) .fl-ship-opt-name {
  font-weight: 500;
}
.fl-ship-opt-text {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.fl-ship-opt-name {
  text-align: left;
  flex: 1 1 auto;
  min-width: 0;
}
.fl-ship-opt-fee {
  flex: 0 0 auto;
  font-family: Epilogue, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #111;
  white-space: nowrap;
}
.pdp-ship-opts {
  margin: 0 0 14px;
  padding: 12px 14px;
  border: 1px solid rgba(0,0,0,0.12);
}
.pdp-ship-opts legend {
  padding: 0 6px;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}
.pdp-ship-opt {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin: 8px 0 0;
  font-size: 0.9rem;
  cursor: pointer;
}
.pdp-ship-opt.is-disabled { opacity: 0.4; pointer-events: none; }
.fl-pdp-ready {
  margin: 16px 0 0;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.fl-accordion {
  border-top: 1px solid #e4e4e4;
  margin-top: 30px;
  text-align: left;
}
.fl-accordion details { border-bottom: 1px solid #e4e4e4; padding: 0.6rem 0 0.5rem; }
.fl-accordion summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: Epilogue, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  list-style: none;
}
.fl-accordion summary::-webkit-details-marker { display: none; }
.fl-acc-icon { font-size: 1.25rem; line-height: 0.8rem; font-weight: 400; }
.fl-accordion details[open] .fl-acc-icon { transform: rotate(45deg); display: inline-block; }
.fl-acc-body { margin-top: 0.5rem; font-size: 0.95rem; line-height: 1.5; color: #333; }
.fl-acc-body ul { margin: 0; padding: 0; list-style: none; }
.fl-acc-body li { margin: 0 0 6px; }

.fl-more {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 20px 80px;
}
.fl-more h2 {
  margin: 0 0 24px;
  text-align: center;
  font-family: Epilogue, sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
}
.fl-more-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.fl-bag-items { margin-top: 24px; display: grid; gap: 16px; }
.fl-bag-line {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  align-items: center;
}
.fl-bag-line img { width: 72px; height: 72px; object-fit: cover; }
.fl-bag-line p { margin: 0; font-size: 0.9rem; }
.fl-bag-meta { color: #555; font-size: 0.8rem !important; }
.fl-bag-ship {
  margin-top: 4px !important;
  color: #555;
  font-size: 0.78rem !important;
}
.fl-bag-qty {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  margin-top: 8px;
  border: 1px solid #111;
  height: 28px;
  background: #fff;
}
.fl-bag-qty span {
  min-width: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #111;
  border-right: 1px solid #111;
  text-align: center;
  font-family: Epilogue, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #111;
}
.fl-bag-qty-btn {
  appearance: none;
  width: 28px;
  height: 28px;
  border: 0;
  background: #fff;
  color: #111;
  font-family: Epilogue, sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.fl-bag-qty-btn:hover {
  background: #111;
  color: #fff;
}
.fl-bag-remove {
  appearance: none;
  background: none;
  border: 0;
  font-size: 1.2rem;
  cursor: pointer;
}

@media (max-width: 1180px) {
  .fl-pdp { grid-template-columns: minmax(0, 1fr) 380px; }
  .fl-pdp-side { display: none; }
}
@media (max-width: 768px) {
  .fl-pdp {
    grid-template-columns: 1fr;
    margin-top: 0;
    padding: 0 0 40px;
    gap: 0;
  }
  .fl-pdp-info { position: static; padding: 24px 16px 0; }
  .fl-pdp-media {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .fl-pdp-shot {
    flex: 0 0 100%;
    scroll-snap-align: start;
    aspect-ratio: 1;
  }
  .fl-pdp-actions {
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }
  .fl-size { width: 100%; flex: none; }
  .fl-size-toggle { height: 44px; font-size: 14px; }
  .fl-size-toggle::after { height: 44px; line-height: 44px; }
  .fl-qty {
    width: 100%;
    height: 44px;
  }
  .fl-qty-btn { width: 48px; }
  .fl-qty-input { flex: 1; width: auto; font-size: 14px; }
  .fl-add-bag,
  .fl-alt-pay {
    flex: none;
    width: 100%;
    height: 44px;
  }
  .fl-ship-opts {
    margin: 2px 0 6px;
    padding: 12px 0 2px;
  }
  .fl-ship-opts legend {
    padding-bottom: 6px;
    font-size: 0.7rem;
  }
  .fl-ship-opt {
    gap: 10px;
    padding: 13px 10px;
    margin: 0 -10px;
    border-bottom: 1px solid #eee;
    align-items: flex-start;
  }
  .fl-ship-opt:has(input:checked) {
    background: #f7f7f7;
  }
  .fl-ship-opt-text {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .fl-ship-opt-name {
    font-size: 0.92rem;
    line-height: 1.35;
  }
  .fl-ship-opt-fee {
    font-size: 0.75rem;
    color: #555;
    letter-spacing: 0.03em;
  }
  .fl-ship-opt:has(input:checked) .fl-ship-opt-fee {
    color: #111;
  }
  .fl-pay-method {
    margin: 2px 0 6px;
    padding: 12px 0 2px;
  }
  .fl-pay-method legend {
    padding-bottom: 6px;
    font-size: 0.7rem;
  }
  .fl-pay-method-opt {
    gap: 10px;
    padding: 13px 10px;
    margin: 0 -10px;
    border-bottom: 1px solid #eee;
    align-items: flex-start;
  }
  .fl-pay-method-opt:has(input:checked) {
    background: #f7f7f7;
  }
  .fl-pay-method-name {
    font-size: 0.92rem;
    line-height: 1.35;
  }
}

/* Store-list preview card only */
.store-card.theme-preview-frobs {
  background: #111;
  color: #fff;
  border-color: #111;
  border-radius: 0;
}
.store-card.theme-preview-frobs .store-card-title {
  font-family: "UnifrakturMaguntia", serif;
  font-size: 1.4rem;
  color: #fff;
}
.store-card.theme-preview-frobs .store-card-badge,
.store-card.theme-preview-frobs .store-card-tagline,
.store-card.theme-preview-frobs .store-card-meta { color: #ddd; }
.store-card.theme-preview-frobs .store-card-media { aspect-ratio: 3 / 4; }
.store-card.theme-preview-frobs:hover { transform: none; }
