/* ============================================================
   RINGVELT — Order Page Styles
   ============================================================ */

.order-section {
  padding: 10rem 2rem 6rem;
}

.order-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* GALLERY */
.order-gallery {
  position: sticky;
  top: 120px;
}
.order-main-img-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-clr);
  margin-bottom: 1.2rem;
  box-shadow: 0 15px 40px rgba(31, 29, 26, 0.03);
}
.order-main-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: opacity 0.3s ease;
  display: block;
}
.order-badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background: var(--primary-dark);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(31, 29, 26, 0.1);
}
.order-thumbs {
  display: flex;
  gap: 0.8rem;
}
.order-thumb {
  flex: 1;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  background: var(--bg-card);
  padding: 0;
  box-shadow: 0 4px 10px rgba(31, 29, 26, 0.02);
}
.order-thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.order-thumb--active {
  border-color: var(--primary-dark);
  box-shadow: 0 4px 15px rgba(223, 186, 115, 0.2);
}
.order-thumb:hover {
  border-color: var(--primary);
  opacity: 0.9;
}

/* DETAILS */
.order-brand {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 0.8rem;
}
.order-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.order-title span {
  display: block;
  font-style: italic;
  color: var(--primary-dark);
  font-weight: 400;
}

.order-rating {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.8rem;
}
.order-stars {
  color: var(--primary-dark);
  font-size: 1.1rem;
}
.order-rating-text {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.order-price-block {
  background: var(--bg-card);
  border: 1px solid var(--border-clr);
  border-radius: 8px;
  padding: 1.8rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  box-shadow: var(--shadow);
}
.order-price-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.order-price {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
}
.order-partner-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.order-partner-note strong {
  color: var(--text-dark);
}

.order-avail {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
}
.order-avail__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #50b670;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(80, 182, 112, 0.4);
}

.order-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2.2rem;
  padding: 0;
  list-style: none;
}
.order-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.order-highlights li svg {
  stroke: var(--primary-dark);
  flex-shrink: 0;
  margin-top: 2px;
}

.order-buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 20px;
  font-size: 0.95rem;
  border-radius: 4px;
  margin-bottom: 1.8rem;
}

.order-trust {
  display: flex;
  gap: 0;
  border: 1px solid var(--border-clr);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}
.order-trust__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1.2rem 0.5rem;
  border-right: 1px solid var(--border-clr);
  background: var(--bg-card);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  transition: var(--transition);
}
.order-trust__item:last-child {
  border-right: none;
}
.order-trust__item svg {
  stroke: var(--primary-dark);
}
.order-trust__item:hover {
  background: var(--bg-light);
}

.order-affiliate-note {
  font-size: 0.68rem;
  color: var(--text-muted);
  opacity: 0.7;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .order-section {
    padding: 7rem 1.2rem 4rem;
  }
  .order-specs-section {
    padding: 1rem 1.2rem 4rem;
  }
  .order-layout { grid-template-columns: 1fr; gap: 3rem; }
  .order-gallery { position: static; }
}
@media (max-width: 480px) {
  .order-thumbs { gap: 0.5rem; }
  .order-trust { flex-direction: column; }
  .order-trust__item { border-right: none; border-bottom: 1px solid var(--border-clr); }
  .order-trust__item:last-child { border-bottom: none; }
}

/* EXPANDED SPECS STYLING */
.order-specs-section {
  padding: 1rem 2rem 6rem;
}
.order-specs-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}
.order-specs-content p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
.specs-table td {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-clr);
  font-size: 0.92rem;
  color: var(--text-muted);
}
.specs-table td strong {
  color: var(--text-dark);
}
.specs-table td:last-child {
  text-align: right;
}
@media (max-width: 900px) {
  .order-specs-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

