/* PriceMe — jewellery.css — Visual-first B2B jewellery page */

/* ── HERO ── */
.j-hero {
  background: #1A1A1A;
  padding: 32px 0 28px;
  position: relative;
  overflow: hidden;
}

.j-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: rgba(232,64,12,0.08);
  border-radius: 50%;
  pointer-events: none;
}

.j-hero-content { max-width: 600px; }

.j-hero-badge {
  display: inline-block;
  background: rgba(232,64,12,0.15);
  border: 1px solid rgba(232,64,12,0.3);
  color: #E8400C;
  font-size: 11px; font-weight: 600;
  padding: 4px 12px; border-radius: 20px;
  margin-bottom: 14px; letter-spacing: 0.5px;
}

.j-hero-title {
  font-size: 26px; font-weight: 800;
  color: #fff; line-height: 1.2;
  margin-bottom: 12px; letter-spacing: -0.5px;
}

.j-hero-orange { color: #E8400C; }

.j-hero-sub {
  font-size: 13px; color: rgba(255,255,255,0.55);
  line-height: 1.7; margin-bottom: 20px;
}

.j-trust-row {
  display: flex; gap: 8px;
  flex-wrap: wrap; margin-bottom: 20px;
}

.j-trust-item {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 5px 10px;
  font-size: 11px; color: rgba(255,255,255,0.7);
  white-space: nowrap;
}
.j-trust-icon { font-size: 13px; }

.j-hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }

.j-btn-primary {
  background: #E8400C; color: #fff;
  border: none; border-radius: 8px;
  padding: 11px 22px; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: background 0.2s;
  text-decoration: none; display: inline-block;
  font-family: inherit;
}
.j-btn-primary:hover { background: #C73509; color: #fff; }
.j-btn-full { width: 100%; text-align: center; }

.j-btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff; border-radius: 8px;
  padding: 10px 20px; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
  text-decoration: none; display: inline-block;
}
.j-btn-outline:hover { border-color: #E8400C; color: #E8400C; }

.j-btn-enquiry {
  background: #E8400C; color: #fff;
  padding: 7px 14px; border-radius: 7px;
  font-size: 12px; font-weight: 600;
  text-decoration: none; transition: background 0.2s;
}
.j-btn-enquiry:hover { background: #C73509; }

.j-hero-stats {
  display: flex; gap: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; overflow: hidden;
  margin-top: 24px; width: fit-content;
}

.j-stat {
  padding: 14px 24px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.j-stat:last-child { border-right: none; }
.j-stat-num { font-size: 22px; font-weight: 800; color: #E8400C; line-height: 1; }
.j-stat-label { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 3px; }

/* ── MATERIALS ── */
.j-materials {
  background: #F5F5F5;
  padding: 24px 0;
}

.j-materials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.j-material-card {
  background: #fff;
  border: 1px solid #E8E8E8;
  border-radius: 12px;
  padding: 16px 14px;
  transition: box-shadow 0.2s;
}
.j-material-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }

.j-material-icon { font-size: 24px; margin-bottom: 8px; }
.j-material-card h3 { font-size: 13px; font-weight: 700; color: #1A1A1A; margin-bottom: 5px; }
.j-material-card p  { font-size: 11px; color: #888; line-height: 1.5; margin-bottom: 8px; }

.j-material-tag {
  display: inline-block;
  background: #FFF0EB; color: #E8400C;
  font-size: 10px; font-weight: 600;
  padding: 2px 8px; border-radius: 10px;
}

/* ── CATEGORY BAR ── */
.j-cat-bar {
  background: #1A1A1A;
  padding: 10px 0;
  position: sticky; top: 56px; z-index: 50;
  border-bottom: 1px solid #2A2A2A;
}

.j-cat-pills {
  display: flex; gap: 6px;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; padding-bottom: 2px;
}
.j-cat-pills::-webkit-scrollbar { display: none; }

.j-cat-pill {
  background: #2A2A2A; border: 1px solid #3A3A3A;
  border-radius: 6px; padding: 6px 14px;
  font-size: 12px; font-weight: 500; color: #AAA;
  white-space: nowrap; flex-shrink: 0;
  transition: all 0.18s; text-decoration: none;
  display: flex; align-items: center; gap: 5px;
}
.j-cat-pill:hover, .j-cat-pill.active {
  background: #E8400C; border-color: #E8400C; color: #fff;
}

/* ── SHOP SECTION ── */
.j-shop-section { padding: 20px 0 40px; background: #F5F5F5; }

.j-shop-layout {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ── SIDEBAR FILTERS ── */
.j-filters {
  background: #fff;
  border: 1px solid #E8E8E8;
  border-radius: 12px;
  padding: 14px;
  display: none; /* hidden on mobile by default */
}
.j-filters.open { display: block; }

.j-filter-header {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #F0F0F0;
}
.j-filter-header h3 { font-size: 14px; font-weight: 700; color: #1A1A1A; }
.j-clear-filters { font-size: 12px; color: #E8400C; font-weight: 600; text-decoration: none; }

.j-filter-group { margin-bottom: 16px; }
.j-filter-group h4 {
  font-size: 11px; font-weight: 700; color: #888;
  text-transform: uppercase; letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.j-price-options { display: flex; flex-wrap: wrap; gap: 6px; }
.j-price-opt {
  background: #F5F5F5; border: 1px solid #E8E8E8;
  border-radius: 6px; padding: 5px 10px;
  font-size: 11px; font-weight: 500; color: #555;
  text-decoration: none; transition: all 0.15s;
}
.j-price-opt:hover, .j-price-opt.active {
  background: #E8400C; border-color: #E8400C; color: #fff;
}

.j-filter-opt {
  display: block; padding: 7px 10px;
  font-size: 12px; color: #555;
  text-decoration: none; border-radius: 6px;
  transition: all 0.15s;
}
.j-filter-opt:hover { background: #F5F5F5; color: #1A1A1A; }
.j-filter-opt.active { background: #FFF0EB; color: #E8400C; font-weight: 600; }

.j-view-toggle {
  display: flex; gap: 4px;
  background: #F5F5F5; border-radius: 8px; padding: 3px;
}
.j-view-opt {
  flex: 1; text-align: center;
  padding: 6px; border-radius: 6px;
  font-size: 12px; font-weight: 600; color: #888;
  text-decoration: none; transition: all 0.15s;
}
.j-view-opt.active { background: #fff; color: #E8400C; box-shadow: 0 1px 4px rgba(0,0,0,0.08); }

.j-filter-enquiry {
  background: #1A1A1A; border-radius: 10px;
  padding: 14px; margin-top: 16px;
}
.j-filter-enquiry-title { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 5px; }
.j-filter-enquiry p { font-size: 11px; color: #888; margin-bottom: 12px; line-height: 1.4; }

.j-btn-whatsapp {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  background: #25D366; color: #fff;
  border-radius: 8px; padding: 9px 14px;
  font-size: 13px; font-weight: 600;
  text-decoration: none; transition: background 0.2s;
}
.j-btn-whatsapp:hover { background: #1FA855; }

/* ── PRODUCTS AREA ── */
.j-products-area { flex: 1; }

.j-toolbar {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 14px; gap: 10px;
  flex-wrap: wrap;
}

.j-result-count { font-size: 13px; color: #555; }
.j-result-count strong { color: #1A1A1A; font-weight: 700; }

.j-filter-toggle {
  background: #1A1A1A; color: #fff;
  border: none; border-radius: 7px;
  padding: 7px 12px; font-size: 12px;
  font-weight: 600; cursor: pointer;
  font-family: inherit;
}

.j-sort-select {
  padding: 7px 10px;
  border: 1px solid #E8E8E8; border-radius: 7px;
  font-size: 12px; font-family: inherit;
  color: #555; background: #fff; outline: none;
  -webkit-appearance: none;
}

/* ── PRODUCT GRID ── */
.j-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.j-product-card {
  background: #fff;
  border: 1px solid #E8E8E8;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.j-product-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.1); transform: translateY(-2px); }

.j-card-img-link { display: block; }

.j-card-img {
  position: relative;
  aspect-ratio: 1;
  background: #F5F5F5;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}

.j-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.j-product-card:hover .j-card-img img { transform: scale(1.05); }

.j-card-img-placeholder {
  font-size: 48px;
  opacity: 0.4;
}

.j-card-badges {
  position: absolute; top: 8px; left: 8px;
  display: flex; flex-direction: column; gap: 4px;
}

.j-badge-new, .j-badge-premium, .j-badge-available {
  font-size: 9px; font-weight: 700;
  padding: 2px 7px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.j-badge-new       { background: #E8400C; color: #fff; }
.j-badge-premium   { background: #1A1A1A; color: #fff; }
.j-badge-available { background: #25D366; color: #fff; }

.j-card-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s;
}
.j-product-card:hover .j-card-overlay { opacity: 1; }

.j-quick-enquire {
  background: #fff; color: #1A1A1A;
  border: none; border-radius: 6px;
  padding: 8px 16px; font-size: 12px;
  font-weight: 600; cursor: pointer;
  text-decoration: none; font-family: inherit;
}
.j-quick-enquire:hover { background: #E8400C; color: #fff; }

.j-card-info { padding: 12px; }

.j-card-style { font-size: 10px; font-weight: 600; color: #888; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; }
.j-card-name  { font-size: 13px; font-weight: 700; color: #1A1A1A; margin-bottom: 3px; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.j-card-brand { font-size: 11px; color: #888; margin-bottom: 5px; }
.j-card-unit  { font-size: 10px; color: #AAA; margin-top: 3px; }
.j-card-moq   { font-size: 10px; color: #E8400C; font-weight: 600; margin-top: 4px; background: #FFF0EB; padding: 2px 8px; border-radius: 4px; display: inline-block; }

.j-card-pricing {
  display: flex; align-items: baseline; gap: 6px; margin-bottom: 8px;
}
.j-card-price { font-size: 15px; font-weight: 800; color: #E8400C; }
.j-card-mrp   { font-size: 11px; color: #AAA; text-decoration: line-through; }

.j-card-actions { display: flex; gap: 6px; }

.j-card-whatsapp {
  flex: 1; display: flex; align-items: center;
  justify-content: center; gap: 4px;
  background: #25D366; color: #fff;
  border-radius: 7px; padding: 7px 8px;
  font-size: 11px; font-weight: 600;
  text-decoration: none; transition: background 0.15s;
}
.j-card-whatsapp:hover { background: #1FA855; }

.j-card-view {
  padding: 7px 10px; border-radius: 7px;
  font-size: 11px; font-weight: 600;
  border: 1px solid #E8E8E8; color: #555;
  text-decoration: none; transition: all 0.15s;
  white-space: nowrap;
}
.j-card-view:hover { border-color: #E8400C; color: #E8400C; }

.j-card-wishlist {
  background: none; border: 1px solid #E8E8E8;
  border-radius: 7px; padding: 7px 10px;
  font-size: 14px; cursor: pointer;
  transition: all 0.15s; color: #888;
}
.j-card-wishlist:hover { border-color: #E8400C; color: #E8400C; }

/* Empty state */
.j-empty { text-align: center; padding: 32px 16px; }
.j-empty-icon { font-size: 48px; margin-bottom: 12px; }
.j-empty h3 { font-size: 18px; font-weight: 700; color: #1A1A1A; margin-bottom: 8px; }
.j-empty p  { font-size: 13px; color: #888; margin-bottom: 16px; }

.j-grid-sample { margin-top: 20px; }
.j-sample-card { opacity: 0.85; }

/* ── B2B SECTION ── */
.j-b2b-section { background: #1A1A1A; padding: 40px 0; }

.j-b2b-layout {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.j-b2b-badge {
  display: inline-block;
  background: rgba(232,64,12,0.15);
  border: 1px solid rgba(232,64,12,0.25);
  color: #E8400C; font-size: 11px; font-weight: 600;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 12px;
}

.j-b2b-title { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 8px; line-height: 1.2; }
.j-b2b-sub   { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 20px; }

.j-b2b-benefits { list-style: none; margin-bottom: 20px; }
.j-b2b-benefits li {
  display: flex; gap: 10px; padding: 8px 0;
  font-size: 13px; color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.j-b2b-benefits li span { color: #E8400C; font-weight: 700; flex-shrink: 0; }

.j-audience-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.j-audience-tag {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  font-size: 11px; font-weight: 500;
  padding: 4px 10px; border-radius: 20px;
}

/* Enquiry form */
.j-enquiry-form-wrap {
  background: #fff; border-radius: 16px; padding: 24px 20px;
}

.j-enquiry-title {
  font-size: 18px; font-weight: 700; color: #1A1A1A;
  margin-bottom: 18px; padding-bottom: 12px;
  border-bottom: 1px solid #F0F0F0;
}

.j-enquiry-form { display: flex; flex-direction: column; gap: 12px; }

.j-form-row { display: grid; grid-template-columns: 1fr; gap: 12px; }

.j-form-group { display: flex; flex-direction: column; gap: 5px; }
.j-form-group label { font-size: 12px; font-weight: 600; color: #555; }
.j-form-group input,
.j-form-group select,
.j-form-group textarea {
  width: 100%; padding: 10px 12px;
  border: 1.5px solid #E8E8E8; border-radius: 8px;
  font-size: 14px; font-family: inherit; color: #1A1A1A;
  background: #fff; outline: none;
  -webkit-appearance: none; box-sizing: border-box;
}
.j-form-group input:focus,
.j-form-group select:focus,
.j-form-group textarea:focus { border-color: #E8400C; }
.j-form-group textarea { resize: vertical; min-height: 80px; }

.j-checkboxes { display: flex; flex-wrap: wrap; gap: 8px; }
.j-checkbox {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; color: #555; cursor: pointer;
  background: #F5F5F5; padding: 5px 10px; border-radius: 6px;
}
.j-checkbox input { width: 14px; height: 14px; accent-color: #E8400C; }

.j-form-note { font-size: 12px; color: #888; text-align: center; margin-top: 8px; }
.j-form-note a { color: #E8400C; font-weight: 600; }

/* ── WHY SECTION ── */
.j-why-section { background: #F5F5F5; padding: 36px 0; }

.j-section-title {
  font-size: 20px; font-weight: 800; color: #1A1A1A;
  margin-bottom: 24px;
}
.text-center { text-align: center; }

.j-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.j-why-card {
  background: #fff; border: 1px solid #E8E8E8;
  border-radius: 12px; padding: 16px;
  transition: box-shadow 0.2s;
}
.j-why-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.j-why-icon { font-size: 28px; margin-bottom: 10px; }
.j-why-card h3 { font-size: 13px; font-weight: 700; color: #1A1A1A; margin-bottom: 6px; }
.j-why-card p  { font-size: 12px; color: #888; line-height: 1.5; }

/* ── TABLET 640px+ ── */
@media (min-width: 640px) {
  .j-hero-title    { font-size: 36px; }
  .j-materials-grid { grid-template-columns: repeat(4, 1fr); }
  .j-grid          { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .j-form-row      { grid-template-columns: repeat(2, 1fr); }
  .j-why-grid      { grid-template-columns: repeat(3, 1fr); }
}

/* ── DESKTOP 1024px+ ── */
@media (min-width: 1024px) {
  .j-hero          { padding: 48px 0 40px; }
  .j-hero-title    { font-size: 48px; }
  .j-shop-layout   { flex-direction: row; align-items: flex-start; }
  .j-filters       { display: block; width: 200px; flex-shrink: 0; position: sticky; top: 120px; }
  .j-filter-toggle { display: none; }
  .j-grid          { grid-template-columns: repeat(4, 1fr); }
  .j-card-name     { font-size: 13px; }
  .j-b2b-layout    { flex-direction: row; }
  .j-b2b-info      { flex: 1; }
  .j-enquiry-form-wrap { width: 440px; flex-shrink: 0; }
  .j-b2b-title     { font-size: 28px; }
  .j-why-grid      { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}

@media (min-width: 1400px) {
  .j-grid { grid-template-columns: repeat(5, 1fr); }
  .j-why-grid { grid-template-columns: repeat(6, 1fr); }
}
