/* BEEZFREE_PUBLIC_STORE_STANDALONE_V1_3 */

:root {
  color-scheme: light;
  --bg:#f7f7f4;
  --card:#fff;
  --text:#171714;
  --muted:#6d6b64;
  --line:#e7e6df;
  --soft:#f0efe9;
  --accent:#f5a623;
  --accent2:#d9820c;
  --shadow:0 18px 50px rgba(20,20,16,.08);
}

* { box-sizing:border-box; }

html,body {
  margin:0;
  min-height:100%;
  background:var(--bg);
  color:var(--text);
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

a { color:inherit; text-decoration:none; }
button,input { font:inherit; }

.topbar {
  position:sticky;
  top:0;
  z-index:50;
  min-height:72px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:20px;
  padding:12px max(20px,calc((100vw - 1280px)/2));
  border-bottom:1px solid rgba(231,230,223,.9);
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(18px);
}

.brand {
  justify-self:start;
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:19px;
  font-weight:850;
}

.brand img {
  width:34px;
  height:34px;
  object-fit:contain;
}

.create {
  justify-self:center;
  color:var(--accent2);
  font-weight:800;
}

.auth {
  justify-self:end;
  display:flex;
  align-items:center;
  gap:8px;
  font-weight:750;
}

.auth a {
  padding:10px 14px;
  border-radius:999px;
}

.auth .signup {
  background:var(--text);
  color:#fff;
}

#app {
  width:min(1280px,calc(100% - 32px));
  margin:0 auto;
  padding:30px 0 80px;
}

.state {
  min-height:55vh;
  display:grid;
  place-items:center;
  align-content:center;
  gap:14px;
  text-align:center;
  color:var(--muted);
}

.loader {
  width:38px;
  height:38px;
  border:3px solid var(--line);
  border-top-color:var(--accent);
  border-radius:50%;
  animation:spin .8s linear infinite;
}

@keyframes spin { to { transform:rotate(360deg); } }

.shell { display:grid; gap:26px; }

.hero {
  position:relative;
  overflow:hidden;
  min-height:330px;
  border-radius:30px;
  background:linear-gradient(135deg,#24231e,#4c4739);
  box-shadow:var(--shadow);
}

.cover {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.shade {
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(12,12,10,.84),rgba(12,12,10,.48) 55%,rgba(12,12,10,.14));
}

.hero-content {
  position:relative;
  z-index:2;
  min-height:330px;
  display:flex;
  align-items:flex-end;
  gap:22px;
  padding:36px;
  color:#fff;
}

.logo {
  width:98px;
  height:98px;
  flex:0 0 auto;
  border-radius:24px;
  object-fit:cover;
  background:#fff;
  border:4px solid rgba(255,255,255,.86);
  box-shadow:0 12px 30px rgba(0,0,0,.2);
}

.logo-fallback {
  display:grid;
  place-items:center;
  color:#2b291f;
  font-size:42px;
}

.hero-copy { max-width:760px; }

.kicker {
  margin-bottom:8px;
  font-size:12px;
  font-weight:850;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:rgba(255,255,255,.76);
}

.hero h1 {
  margin:0;
  font-size:clamp(34px,5vw,58px);
  line-height:.98;
  letter-spacing:-.045em;
}

.description {
  max-width:720px;
  margin:14px 0 0;
  color:rgba(255,255,255,.86);
  line-height:1.55;
}

.meta {
  display:flex;
  flex-wrap:wrap;
  gap:8px 16px;
  margin-top:16px;
  color:rgba(255,255,255,.78);
  font-size:14px;
}

.hero-actions {
  margin-left:auto;
  align-self:flex-end;
}

.contact {
  min-height:48px;
  padding:0 20px;
  border:0;
  border-radius:14px;
  background:var(--accent);
  color:#261900;
  font-weight:900;
  cursor:pointer;
}

.toolbar {
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:18px;
}

.toolbar h2 {
  margin:0;
  font-size:26px;
  letter-spacing:-.03em;
}

.toolbar p {
  margin:6px 0 0;
  color:var(--muted);
}

.search {
  width:min(330px,100%);
  min-height:44px;
  padding:0 14px;
  border:1px solid var(--line);
  border-radius:13px;
  background:#fff;
  outline:none;
}

.grid {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}

.product {
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:22px;
  background:var(--card);
  transition:transform .18s ease,box-shadow .18s ease;
}

.product:hover {
  transform:translateY(-3px);
  box-shadow:var(--shadow);
}

.media {
  aspect-ratio:4/3;
  overflow:hidden;
  background:var(--soft);
}

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

.placeholder {
  width:100%;
  height:100%;
  display:grid;
  place-items:center;
  font-size:36px;
}

.body { padding:16px; }

.category {
  min-height:17px;
  margin-bottom:5px;
  color:var(--muted);
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.06em;
}

.title {
  margin:0;
  font-size:18px;
  line-height:1.25;
}

.price {
  margin-top:12px;
  font-size:17px;
  font-weight:900;
}

.status {
  margin-top:6px;
  color:var(--muted);
  font-size:13px;
}

.detail {
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(320px,.9fr);
  gap:30px;
  padding:24px;
  border:1px solid var(--line);
  border-radius:28px;
  background:#fff;
}

.detail-media {
  overflow:hidden;
  min-height:430px;
  border-radius:20px;
  background:var(--soft);
}

.detail-media img {
  width:100%;
  height:100%;
  min-height:430px;
  object-fit:contain;
}

.detail-copy {
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.back {
  width:fit-content;
  margin-bottom:20px;
  color:var(--muted);
  font-weight:800;
}

.detail h1 {
  margin:0;
  font-size:clamp(32px,4vw,48px);
  line-height:1.02;
  letter-spacing:-.045em;
}

.detail-description {
  margin:20px 0;
  color:var(--muted);
  line-height:1.65;
  white-space:pre-wrap;
}

.detail-price {
  margin:18px 0;
  font-size:24px;
  font-weight:900;
}

.footer {
  padding-top:34px;
  text-align:center;
  color:var(--muted);
  font-size:13px;
}

.modal[hidden] { display:none; }

.modal {
  position:fixed;
  inset:0;
  z-index:100;
  display:grid;
  place-items:center;
  padding:20px;
}

.backdrop {
  position:absolute;
  inset:0;
  width:100%;
  border:0;
  background:rgba(12,12,10,.58);
  backdrop-filter:blur(7px);
}

.dialog {
  position:relative;
  z-index:1;
  width:min(520px,100%);
  max-height:88vh;
  overflow:auto;
  padding:22px;
  border-radius:24px;
  background:#fff;
  box-shadow:0 28px 80px rgba(0,0,0,.22);
}

.dialog-head {
  display:flex;
  align-items:start;
  justify-content:space-between;
  gap:20px;
  margin-bottom:18px;
}

.dialog-head small {
  color:var(--accent2);
  font-weight:850;
  letter-spacing:.1em;
}

.dialog-head h2 {
  margin:4px 0 0;
  font-size:28px;
}

.close {
  width:38px;
  height:38px;
  border:0;
  border-radius:50%;
  background:var(--soft);
  font-size:26px;
  cursor:pointer;
}

.option {
  display:flex;
  align-items:center;
  min-height:62px;
  padding:12px 14px;
  border-top:1px solid var(--line);
}

.option:first-child { border-top:0; }

.option strong,
.option span { display:block; }

.option span {
  margin-top:2px;
  color:var(--muted);
  font-size:13px;
  overflow-wrap:anywhere;
}

@media (max-width:980px) {
  .grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .hero-content { flex-wrap:wrap; }
  .hero-actions { width:100%; margin-left:0; }
  .detail { grid-template-columns:1fr; }
}

@media (max-width:680px) {
  .topbar {
    min-height:64px;
    grid-template-columns:auto 1fr auto;
    padding:10px 14px;
  }

  .brand span { display:none; }

  .create {
    font-size:14px;
    justify-self:center;
  }

  .auth a {
    padding:8px 9px;
    font-size:13px;
  }

  .auth a:first-child { display:none; }

  #app {
    width:calc(100% - 20px);
    padding-top:12px;
  }

  .hero {
    min-height:390px;
    border-radius:22px;
  }

  .hero-content {
    min-height:390px;
    padding:22px;
  }

  .logo {
    width:78px;
    height:78px;
    border-radius:20px;
  }

  .hero h1 { font-size:38px; }

  .toolbar {
    align-items:stretch;
    flex-direction:column;
  }

  .search { width:100%; }

  .grid { grid-template-columns:1fr; }

  .detail {
    padding:14px;
    border-radius:20px;
  }

  .detail-media,
  .detail-media img {
    min-height:300px;
  }
}

html[dir="rtl"] body { direction:rtl; }

html[dir="rtl"] .hero-actions {
  margin-left:0;
  margin-right:auto;
}

/* BEEZFREE_PUBLIC_STORE_THEME_UNIFY_V1_BEGIN */

:root {
  --bg: #faf9f6;
  --card: #ffffff;
  --text: #1c1b18;
  --muted: #716f68;
  --line: rgba(28, 27, 24, .09);
  --soft: #f6f3ed;
  --accent: #f5a623;
  --accent2: #df8a10;
  --shadow:
    0 16px 46px rgba(28, 27, 24, .08);
}

body {
  position: relative;
  background: #faf9f6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;

  background:
    url("/hive.png")
    center center /
    cover
    no-repeat;

  opacity: .05;
}

.topbar {
  min-height: 70px;

  border-bottom:
    1px solid rgba(28, 27, 24, .07);

  background:
    rgba(255, 255, 255, .94);

  box-shadow:
    0 4px 20px rgba(28, 27, 24, .035);

  backdrop-filter: blur(18px);
}

.brand {
  color: #1c1b18;
  letter-spacing: -.025em;
}

.brand img {
  width: 36px;
  height: 36px;
}

.create {
  color: #df8a10;
  font-weight: 800;
}

.auth a {
  transition:
    background .16s ease,
    color .16s ease,
    transform .16s ease;
}

.auth a:hover {
  background: #f6f3ed;
}

.auth .signup {
  background: #1c1b18;
  color: #fff;
}

.auth .signup:hover {
  background: #f5a623;
  color: #271900;
}

.hero {
  border:
    1px solid rgba(28, 27, 24, .07);

  border-radius: 28px;

  background:
    linear-gradient(
      135deg,
      #27251f,
      #514938
    );

  box-shadow:
    0 22px 54px rgba(28, 27, 24, .10);
}

.shade {
  background:
    linear-gradient(
      90deg,
      rgba(20, 19, 16, .84) 0%,
      rgba(20, 19, 16, .50) 52%,
      rgba(20, 19, 16, .18) 100%
    );
}

.logo {
  border-radius: 22px;

  border:
    3px solid rgba(255, 255, 255, .90);

  box-shadow:
    0 12px 30px rgba(0, 0, 0, .16);
}

.kicker {
  color: #ffc45f;
}

.contact {
  background: #f5a623;
  color: #271900;

  box-shadow:
    0 10px 24px rgba(245, 166, 35, .24);

  transition:
    transform .16s ease,
    box-shadow .16s ease,
    background .16s ease;
}

.contact:hover {
  transform: translateY(-1px);
  background: #ffb53b;

  box-shadow:
    0 14px 30px rgba(245, 166, 35, .28);
}

.toolbar h2 {
  color: #1c1b18;
}

.search {
  border:
    1px solid rgba(28, 27, 24, .10);

  border-radius: 14px;

  background:
    rgba(255, 255, 255, .96);

  box-shadow:
    0 5px 18px rgba(28, 27, 24, .035);
}

.search:focus {
  border-color:
    rgba(245, 166, 35, .65);

  box-shadow:
    0 0 0 3px rgba(245, 166, 35, .11);
}

.product {
  border:
    1px solid rgba(28, 27, 24, .075);

  border-radius: 20px;

  background:
    rgba(255, 255, 255, .97);

  box-shadow:
    0 5px 18px rgba(28, 27, 24, .035);
}

.product:hover {
  transform: translateY(-3px);

  box-shadow:
    0 18px 42px rgba(28, 27, 24, .09);
}

.media {
  background: #f5f2ec;
}

.category {
  color: #df8a10;
}

.price {
  color: #1c1b18;
}

.detail {
  border:
    1px solid rgba(28, 27, 24, .075);

  border-radius: 26px;

  background:
    rgba(255, 255, 255, .97);

  box-shadow:
    0 14px 42px rgba(28, 27, 24, .065);
}

.detail-media {
  background: #f5f2ec;
}

.dialog {
  border:
    1px solid rgba(28, 27, 24, .075);

  background: #fff;

  box-shadow:
    0 28px 80px rgba(28, 27, 24, .20);
}

.dialog-head small {
  color: #df8a10;
}

.close {
  background: #f5f2ec;
  color: #1c1b18;
}

.option:hover {
  background: #faf8f3;
}

.footer {
  color: #77736a;
}

@media (max-width: 680px) {
  .hero {
    border-radius: 22px;
  }

  .product {
    border-radius: 18px;
  }

  .detail {
    border-radius: 20px;
  }

  .topbar {
    background:
      rgba(255, 255, 255, .97);
  }
}

/* BEEZFREE_PUBLIC_STORE_THEME_UNIFY_V1_END */
