/* ════════════════════════════════════════════════
   BRAVART STUDIO — shop.css
════════════════════════════════════════════════ */

/* ── HERO ── */
.shop-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 57px);
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.shop-hero-l {
  padding: 5rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.shop-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 400;
  line-height: 0.95;
  color: var(--cream);
  letter-spacing: -0.025em;
  margin: 1.5rem 0 2rem;
}
.shop-hero-title em { font-style: italic; color: var(--s2); }
.shop-hero-sub {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.9;
  font-weight: 300;
  max-width: 440px;
  margin-bottom: 2rem;
}
.shop-hero-note {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(196,100,42,0.2);
  background: rgba(160,70,26,0.05);
  max-width: 460px;
}
.shn-icon { font-size: 1.2rem; flex-shrink: 0; }
.shn-text {
  font-size: 0.85rem;
  color: rgba(248,243,235,0.55);
  line-height: 1.7;
  font-weight: 300;
}
.shop-hero-r {
  background: var(--ink2);
  display: flex;
  align-items: center;
  padding: 2.5rem;
}
.shop-hero-preview { width: 100%; display: flex; flex-direction: column; gap: 3px; }
.shp-item {
  position: relative;
  overflow: hidden;
}
.shp-large img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  opacity: 0.8;
  display: block;
}
.shp-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.shp-row .shp-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  opacity: 0.75;
  display: block;
}
.shp-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(14,12,10,0.9), transparent);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.shp-tag {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--s2);
}
.shp-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--cream);
}
.shp-warm {
  background: var(--sienna);
  display: flex;
  align-items: center;
  justify-content: center;
}
.shp-coming { text-align: center; padding: 1rem; }
.shp-c-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
.shp-c-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: white;
  font-weight: 400;
  margin-bottom: 0.3rem;
}
.shp-c-text {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  font-weight: 300;
}

/* ── AVAILABLE NOW ── */
.shop-available {
  background: var(--cream2);
  padding: 6rem 3.5rem;
}
.shop-av-head { max-width: 640px; margin-bottom: 3.5rem; }
.shop-av-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.05;
  margin: 0.8rem 0 1rem;
}
.shop-av-title em { font-style: italic; color: var(--sienna); }
.shop-av-sub {
  font-size: 0.97rem;
  color: var(--muted2);
  line-height: 1.9;
  font-weight: 300;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--cream3);
}
.shop-card {
  background: white;
  display: flex;
  flex-direction: column;
  transition: background var(--transition);
}
.shop-card:hover { background: #fdf9f4; }
.shop-card-bundle { background: var(--ink); }
.shop-card-bundle:hover { background: var(--ink2); }
.shop-card-bundle .shop-card-cat { color: var(--s2); }
.shop-card-bundle .shop-card-name { color: var(--cream); }
.shop-card-bundle .shop-card-desc { color: rgba(248,243,235,0.5); }
.shop-card-bundle .shop-ci-label { color: var(--s2); }
.shop-card-bundle .shop-ci-list span { background: rgba(255,255,255,0.07); color: rgba(248,243,235,0.55); }
.shop-card-coming {
  background: var(--ink2);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
.shop-card-coming-inner { padding: 2.5rem 2rem; text-align: center; }
.shop-coming-icon { font-size: 2rem; margin-bottom: 1rem; }
.shop-coming-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 0.6rem;
}
.shop-coming-desc {
  font-size: 0.85rem;
  color: rgba(248,243,235,0.45);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.shop-coming-notify { }
.shop-card-img {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.shop-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  display: block;
  transition: opacity 0.35s, transform 0.45s cubic-bezier(0.22,1,0.36,1);
}
.shop-card:hover .shop-card-img img { opacity: 1; transform: scale(1.04); }
.shop-card-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--s2);
  color: white;
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.28rem 0.8rem;
}
.shop-badge-new { background: #2a5a3a; }
.shop-badge-save { background: var(--sienna); }
.shop-card-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
}
.shop-card-cat {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sienna);
}
.shop-card-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.2;
}
.shop-card-desc {
  font-size: 0.84rem;
  color: #7a6a58;
  line-height: 1.75;
  font-weight: 300;
  flex: 1;
}
.shop-ci-label {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sienna);
  margin-bottom: 0.4rem;
}
.shop-ci-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.shop-ci-list span {
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  background: rgba(0,0,0,0.05);
  color: #7a6a58;
  padding: 0.18rem 0.55rem;
}
.shop-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--cream3);
  margin-top: auto;
}
.shop-card-price {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--sienna);
  line-height: 1;
}
.shop-was {
  display: block;
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(248,243,235,0.35);
  text-decoration: line-through;
  margin-top: 0.2rem;
}
.shop-card-bundle .shop-card-price { color: var(--s2); }
.shop-btn {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sienna);
  border: 1px solid rgba(160,70,26,0.3);
  padding: 0.55rem 1.1rem;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.shop-btn:hover { background: var(--sienna); color: white; border-color: var(--sienna); }
.shop-btn-primary { background: var(--s2); color: white; border-color: var(--s2); }
.shop-btn-primary:hover { background: var(--sienna); border-color: var(--sienna); }

/* ── WHY ── */
.shop-why {
  background: var(--ink);
  padding: 6rem 3.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.shop-why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.shop-why-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.05;
  margin: 0.8rem 0 1.5rem;
}
.shop-why-title em { font-style: italic; color: var(--s2); }
.shop-why-body {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 1.2rem;
}
.shop-why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,0.06);
}
.shop-ws {
  background: var(--ink2);
  padding: 2rem;
  transition: background var(--transition);
}
.shop-ws:hover { background: #1e1812; }
.shop-ws-dark { background: var(--sienna); }
.shop-ws-dark:hover { background: #a84e20; }
.shop-ws-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--s2);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.shop-ws-dark .shop-ws-num { color: white; }
.shop-ws-num span { font-size: 1.3rem; }
.shop-ws-label {
  font-size: 0.75rem;
  color: rgba(248,243,235,0.35);
  line-height: 1.5;
  font-weight: 300;
}
.shop-ws-dark .shop-ws-label { color: rgba(255,255,255,0.75); }

/* ── COMING SOON ── */
.shop-coming {
  background: var(--ink2);
  padding: 6rem 3.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.shop-coming-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.05;
  margin: 0.8rem 0 3rem;
}
.shop-coming-title em { font-style: italic; color: var(--s2); }
.shop-coming-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
}
.shop-cs-item {
  background: var(--ink2);
  padding: 2rem 1.8rem;
  transition: background var(--transition);
}
.shop-cs-item:hover { background: #1e1812; }
.shop-cs-icon { font-size: 1.5rem; margin-bottom: 1rem; }
.shop-cs-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 0.6rem;
}
.shop-cs-desc {
  font-size: 0.85rem;
  color: rgba(248,243,235,0.45);
  line-height: 1.75;
  font-weight: 300;
}

/* ── ORDER FORM ── */
.shop-order {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.shop-order-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.shop-order-l {
  padding: 5.5rem 3.5rem;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.shop-order-r { padding: 5.5rem 3rem; background: var(--ink2); }
.shop-order-title {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.08;
  margin: 0.8rem 0 1.3rem;
}
.shop-order-title em { font-style: italic; color: var(--s2); }
.shop-order-body {
  font-size: 0.97rem;
  color: rgba(248,243,235,0.42);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 2.2rem;
}
.shop-order-info { display: flex; flex-direction: column; }
.shop-oi {
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.shop-oi-label {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--s2);
}
.shop-oi-val {
  font-size: 0.95rem;
  color: var(--cream);
  font-weight: 300;
}
.shop-oi-val a { color: var(--cream); transition: color var(--transition); }
.shop-oi-val a:hover { color: var(--s2); }

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .shop-grid { grid-template-columns: 1fr 1fr; }
  .shop-coming-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .shop-hero { grid-template-columns: 1fr; min-height: auto; }
  .shop-hero-l { padding: 4rem 2rem; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .shop-hero-r { padding: 2rem; }
  .shop-available { padding: 4rem 2rem; }
  .shop-why-inner { grid-template-columns: 1fr; gap: 3rem; }
  .shop-why { padding: 4rem 2rem; }
  .shop-coming { padding: 4rem 2rem; }
  .shop-order-inner { grid-template-columns: 1fr; }
  .shop-order-l { padding: 4rem 2rem; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .shop-order-r { padding: 4rem 2rem; }
}
@media (max-width: 560px) {
  .shop-grid { grid-template-columns: 1fr; }
  .shop-why-stats { grid-template-columns: 1fr; }
  .shop-coming-grid { grid-template-columns: 1fr; }
  .shop-hero-title { font-size: 2.8rem; }
  .shop-av-title, .shop-why-title, .shop-coming-title, .shop-order-title { font-size: 2rem; }
  .el-form-row { grid-template-columns: 1fr; }
}

/* ── FREE RESOURCES ── */
.shop-free {
  background: var(--ink2);
  padding: 6rem 3.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.shop-free-head { max-width: 640px; margin-bottom: 3rem; }
.shop-free-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.05;
  margin: 0.8rem 0 1rem;
}
.shop-free-title em { font-style: italic; color: var(--s2); }
.shop-free-sub {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.9;
  font-weight: 300;
}
.shop-free-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
}
.shop-free-card {
  background: var(--ink3);
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: background var(--transition);
}
.shop-free-card:hover { background: #2a2016; }
.shop-free-icon { font-size: 1.5rem; }
.shop-free-cat {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--s2);
}
.shop-free-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--cream);
  font-weight: 400;
  line-height: 1.25;
}
.shop-free-desc {
  font-size: 0.84rem;
  color: rgba(248,243,235,0.45);
  line-height: 1.75;
  font-weight: 300;
  flex: 1;
}
.shop-free-link {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--s2);
  text-decoration: none;
  border-bottom: 1px solid rgba(196,100,42,0.3);
  align-self: flex-start;
  padding-bottom: 0.1rem;
  transition: border-color var(--transition);
}
.shop-free-link:hover { border-bottom-color: var(--s2); }
.shop-free-note {
  background: var(--sienna);
}
.shop-free-note:hover { background: #a84e20; }
.shop-free-note .shop-free-cat { color: rgba(255,255,255,0.7); }
.shop-free-note-text {
  color: rgba(255,255,255,0.85) !important;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 0.92rem !important;
  line-height: 1.7 !important;
}

@media (max-width: 1000px) {
  .shop-free-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .shop-free { padding: 4rem 2rem; }
}
@media (max-width: 560px) {
  .shop-free-grid { grid-template-columns: 1fr; }
  .shop-free-title { font-size: 2rem; }
}

/* ── IN THE STUDIO SHOP SECTION ── */
.shop-avail-head {
  max-width: 640px;
  margin-bottom: 3rem;
  padding-top: 2rem;
}
.shop-avail-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.05;
  margin: 0.8rem 0 1rem;
}
.shop-avail-title em { font-style: italic; color: var(--sienna); }
.shop-avail-sub {
  font-size: 0.97rem;
  color: var(--muted2);
  line-height: 1.9;
  font-weight: 300;
}

/* ── STUDIO CARD FOOTER + ORDER BUTTON ── */
.shop-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--cream3);
  margin-top: auto;
}
.btn-ghost-sm {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sienna);
  border: 1px solid rgba(160,70,26,0.35);
  padding: 0.5rem 1rem;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-ghost-sm:hover {
  background: var(--sienna);
  color: white;
  border-color: var(--sienna);
}

/* ── WHATSAPP BUTTONS ── */
.shop-hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  align-items: center;
}
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #25d366;
  color: white;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.75rem 1.4rem;
  font-weight: 500;
  transition: background var(--transition), transform var(--transition);
}
.btn-wa:hover { background: #1ebe5d; transform: translateY(-1px); }
.shop-card-btns {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.btn-wa-sm {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: #25d366;
  color: white;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  padding: 0.5rem 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background var(--transition);
}
.btn-wa-sm:hover { background: #1ebe5d; }
.shop-oi-val a { color: var(--cream); transition: color var(--transition); }
.shop-oi-val a:hover { color: var(--s2); }

@media (max-width: 560px) {
  .shop-hero-btns { flex-direction: column; align-items: flex-start; }
  .shop-card-btns { flex-direction: column; align-items: flex-start; }
}
