/** Shopify CDN: Minification failed

Line 695:35 Unexpected "every"

**/
.yo-orders-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 24px 16px 48px;
}

.yo-orders-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.yo-orders-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.yo-order-card {
  border-radius: 16px;
  padding: 16px 18px;
  background: #0b1220;
  color: #e5e7eb;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.55);
}

.yo-order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.yo-order-number {
  font-weight: 600;
}

.yo-order-date {
  font-size: 0.78rem;
  color: #9ca3af;
}

.yo-order-status {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: capitalize;
  background: #111827;
}

.yo-order-status.fulfilled {
  background: #065f46;
  color: #ecfdf5;
}

.yo-order-body {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  padding: 10px 0;
  margin-bottom: 10px;
}

.yo-order-items {
  flex: 1.4;
  font-size: 0.85rem;
}

.yo-order-item {
  display: flex;
  justify-content: space-between;
}

.yo-order-meta {
  flex: 1;
  font-size: 0.8rem;
  text-align: right;
}

.yo-order-total {
  font-weight: 600;
}

.yo-order-address {
  color: #9ca3af;
}

.yo-order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.yo-btn {
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.78rem;
  border: none;
  cursor: pointer;
  background: #111827;
  color: #f9fafb;
}

.yo-btn[disabled] {
  background: #1f2937;
  color: #6b7280;
  cursor: not-allowed;
}

.yo-btn.yo-custom-message {
  background: #f97316;
  color: #111827;
}

.yo-btn.yo-track-order {
  background: #0ea5e9;
  color: #0b1120;
}

.yo-modal[hidden] {
  display: none !important;
}

.yo-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yo-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(227, 234, 251, 0.65);
  backdrop-filter: blur(4px);
}

.yo-modal__panel {
  position: relative;
  background: rgb(227, 230, 240);
  color: #e5e7eb;
  border-radius: 18px;
  padding: 18px 20px 16px;
  max-width: 620px;
  width: 100%;
  box-shadow: 0 28px 80px rgba(9, 2, 2, 0.8);
}

.yo-modal__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.yo-modal__text {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-bottom: 10px;
}

.yo-modal__input {
  width: 100%;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid #4b5563;
  background: #020617;
  color: #e5e7eb;
  font-size: 0.85rem;
  outline: none;
}

.yo-modal__input:focus {
  border-color: #0ea5e9;
  box-shadow: 0 0 0 1px rgba(14, 165, 233, 0.4);
}

.yo-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 12px;
}

.yo-btn--primary {
  background: #0ea5e9;
  color: #0b1120;
}

.yo-btn--ghost {
  background: #111827;
  color: #e5e7eb;
}

.yo-order-rail {
  display: flex;
  gap: 6px;
  margin-top: 6px;
  font-size: 0.7rem;
}

.yo-rail-step {
  flex: 1;
  padding: 3px 6px;
  border-radius: 999px;
  background: rgb(176, 176, 176);
  text-align: center;
  color: #e5e7eb;
}

.yo-rail-step--done {
  background: rgb(6, 128, 50);
  color: #ffffff;
}

/* Yooneck Orders – softer card background */
.ynk-core-card .ynk-core-order-list .ynk-core-order-item {
  background: radial-gradient(circle at top left, #ffffff, #ffffff) !important;
  border-radius: 18px !important;
  box-shadow:
    0 18px 45px rgba(15, 23, 42, 0.74),
    0 0 0 1px rgba(148, 163, 184, 0.12) !important;
  padding: 16px 18px !important;
}

/* Inner status chip */
.ynk-core-order-status {
  background: rgba(128, 160, 248, 0.9);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
}

/* Fulfilled / partial colors */
.ynk-core-order-status:contains('Fulfilled'),
.ynk-core-order-status:contains('Delivered') {
  background: #16a34a;
  color: #ecfdf5;
}

.yo-modal__status {
  margin-top: 6px;
  font-size: 0.75rem;
  min-height: 14px;
}

.yo-modal__status--error {
  color: #f97373;
}

.yo-modal__status--success {
  color: #4ade80;
}

/* remove grey box around profile inputs in Yooneck profile modal */
.ynk-modal .field,
.ynk-modal .field::before,
.ynk-modal .field::after {
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

/* contact-form wrapper reset */
.ynk-modal .contact-form,
.ynk-modal .contact-form::before,
.ynk-modal .contact-form::after {
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

/* Inner input pill style */
.ynk-modal .field input {
  width: 100%;
  border-radius: 999px;
  border: none;
  background: rgb(6, 14, 49);
  color: #e5e7eb;
  padding: 8px 10px;
  font-size: 0.85rem;
  outline: none;
  box-shadow: 0 0 0 1px rgba(14, 165, 233, 0.4);
}

/* Equal vertical spacing between stacked fields */
.ynk-modal .field--email {
  margin-top: 10px;
}

.ynk-modal .field--phone {
  margin-top: 10px;
}

/* Email input offset */
.ynk-modal .field--email {
  padding-left: 48px;
  position: relative;
}

.ynk-modal .field--email label {
  position: absolute;
  left: 0;
}

/* Yooneck – remove grey boxes around address fields */
.customer.addresses .field,
.customer.addresses .field::before,
.customer.addresses .field::after {
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 0;
}

/* New-address select wrapper reset */
.customer.addresses .select,
.customer.addresses .select::before,
.customer.addresses .select::after {
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

/* Address form inputs – pill style */
.customer.addresses .field input,
.customer.addresses .field textarea,
.customer.addresses .select select {
  width: 100%;
  border-radius: 9999px;
  border: none;
  background: #ffffff;
  padding: 10px 16px;
  font-size: 0.875rem;
  outline: none;
}

.customer.addresses .field input::placeholder,
.customer.addresses .field textarea::placeholder {
  color: #9ca3af;
}

/* Equal size buttons for address actions */
.ynk-address-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.ynk-address-btn {
  min-width: 180px;
  padding: 10px 24px;
  border-radius: 9999px;
  border: none;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Primary (Add address) */
.ynk-address-btn--primary {
  background: #020617;
  color: #f9fafb;
}

/* Secondary (Cancel) */
.ynk-address-btn--ghost {
  background: #e5e7eb;
  color: #020617;
}

.yo-flash {
  margin: 12px 0 20px;
  padding: 10px 16px;
  border-radius: 9999px;
  font-size: 0.85rem;
}

.yo-flash--success {
  background: #ecfdf5;
  color: #166534;
  border: 1px solid #bbf7d0;
}

/* Card container for tracking */
.yo-tracking-card--pro {
  padding: 16px 20px;
  margin-bottom: 16px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

/* Top header */
.yo-track-header {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.yo-track-header__col--right {
  text-align: right;
}

.yo-track-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9ca3af;
  margin-bottom: 2px;
}

.yo-track-value {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
}

/* Status pill */
.yo-track-status-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: #e5f3ff;
  color: #1d4ed8;
  margin-bottom: 2px;
}

.yo-track-status-pill--delivered {
  background: #e6f8ea;
  color: #15803d;
}

/* Timeline */
.yo-track-timeline {
  position: relative;
  padding-left: 18px;
  margin-top: 6px;
}

.yo-track-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e5e7eb;
}

.yo-track-step {
  position: relative;
  padding-left: 10px;
  margin-bottom: 10px;
}

.yo-track-dot {
  position: absolute;
  left: -2px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 2px solid #e5e7eb;
  background: #fff;
}

.yo-track-step--past .yo-track-dot {
  background: #10b981;
  border-color: #10b981;
}

.yo-track-step--current .yo-track-dot {
  background: #2563eb;
  border-color: #2563eb;
}

.yo-track-step-title {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
}

.yo-track-step-meta {
  font-size: 12px;
  color: #6b7280;
}


.yo-track-step-body {
  padding-bottom: 4px;
}

.yo-track-step-title {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

.yo-track-step-meta {
  font-size: 12px;
  color: #6b7280;
  margin-top: 2px;
  line-height: 1.3;
}

.yo-track-toggle {
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  font-size: 12px;
  color: #4b5563;
  cursor: pointer;
}

.yo-track-toggle:hover {
  background: #e5e7eb;
}

/* Tracking history by default hidden */
.yo-track-timeline {
  display: none;
}
.yo-track-timeline[data-yo-track-open="true"] {
  display: block;
}

/* Tracking popup panel: fixed area + inner scroll */
#yo-tracking-modal .yo-modal__panel {
  max-width: 640px;        /* jo width tumhe chahiye */
  max-height: 80vh;        /* screen ka 80% se zyada nahi */
  overflow: hidden;        /* outer border fix rahe */
}
#yo-tracking-content {
  max-height: 60vh;        /* header + footer ke baad bacha area */
  overflow-y: auto;        /* yaha scroll bar aayega */
  padding-right: 8px;      /* scrollbar ke liye thodi jgah */
}


#yo-cancel-modal .yo-modal__panel {
  max-width: 560px;
}

.yo-modal__status {
  font-size: 13px;
  margin-top: 8px;
  color: #111827;
}


.ynk-core-order-status--cancelled {
  background-color: #fee2e2;
  color: #b91c1c;
}


.ynk-order-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 4px;
}

.ynk-badge,
.ynk-pill {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
}

.ynk-badge--cod {
  background: #fff1e6;
  color: #c05621;
  border: 1px solid #fed7aa;
}

.ynk-badge--prepaid {
  background: #e0f2fe;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}

.ynk-pill--success {
  background: #ecfdf3;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.ynk-pill--warning {
  background: #fef9c3;
  color: #854d0e;
  border: 1px solid #fef08a;
}

.ynk-pill--danger {
  background: #fee2e2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.ynk-pill--muted {
  background: #f3f4f6;
  color: #4b5563;
  border: 1px solid #e5e7eb;
}

.ynk-meta-total {
  font-size: 12px;
  color: #4b5563;
}



.ynk-core-order-id {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.ynk-order-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
}

.ynk-order-id-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: #eef2ff;
  color: #3730a3;
  font-weight: 700;
  font-size: 12px;
  border: 1px solid #c7d2fe;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.12);
}


.yo-order-items-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-top: 16px;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
}

.yo-order-items-table th,
.yo-order-items-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #e5e7eb;
  color: #111827;
}

.yo-order-items-table th {
  text-align: left;
  background: #f3f4f6;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #4b5563;
}

.yo-order-items-table tr:nth-child(every) {
  background: #ffffff;
}

.yo-order-items-table tbody tr:nth-child(odd) {
  background: #f9fafb;
}



#yo-order-details-modal .yo-modal__panel {
  background: #f1f5f9; /* thoda darker slate */
}


.yo-order-item-thumb {
  width: 48px;
  height: 64px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
}



.ynk-wishlist-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.ynk-wishlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.ynk-wishlist-item {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 10px 25px rgba(15,23,42,0.06);
}

.ynk-wishlist-thumb {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #f3f4f6;
}

.ynk-wishlist-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.ynk-wishlist-heart {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 14px;
  cursor: pointer;
  background: rgba(255,255,255,0.9);
  color: #9ca3af;
}
.ynk-wishlist-heart--active { color: #ef4444; }

.ynk-wishlist-body { padding: 10px 4px 4px; }

.ynk-wishlist-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.ynk-wishlist-meta {
  font-size: 11px;
  color: #6b7280;
  margin-bottom: 8px;
}

.ynk-wishlist-pricing {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 10px;
}

.ynk-price-current {
  font-size: 14px;
  font-weight: 700;
  color: #16a34a;
}

.ynk-price-mrp {
  font-size: 12px;
  color: #9ca3af;
  text-decoration: line-through;
}

.ynk-price-off {
  font-size: 11px;
  color: #f97316;
  font-weight: 600;
}

.ynk-wishlist-actions {
  display: flex;
  gap: 8px;
}
.ynk-wishlist-actions .ynk-core-chip { flex: 1; }

.ynk-wishlist-empty {
  padding: 32px 16px;
  text-align: center;
  border-radius: 12px;
  background: #f9fafb;
}



.ynk-wishlist-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.ynk-wishlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.ynk-wishlist-item {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 10px 25px rgba(15,23,42,0.06);
}

.ynk-wishlist-thumb {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #f3f4f6;
}

.ynk-wishlist-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.ynk-wishlist-heart {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 14px;
  cursor: pointer;
  background: rgba(255,255,255,0.9);
  color: #9ca3af;
}
.ynk-wishlist-heart--active { color: #ef4444; }

.ynk-wishlist-body {
  padding: 10px 4px 4px;
}

.ynk-wishlist-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.ynk-wishlist-meta {
  font-size: 11px;
  color: #6b7280;
  margin-bottom: 8px;
}

.ynk-wishlist-pricing {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 10px;
}

.ynk-price-current {
  font-size: 14px;
  font-weight: 700;
  color: #16a34a;
}

.ynk-price-mrp {
  font-size: 12px;
  color: #9ca3af;
  text-decoration: line-through;
}

.ynk-price-off {
  font-size: 11px;
  color: #f97316;
  font-weight: 600;
}

.ynk-wishlist-actions {
  display: flex;
  gap: 8px;
}

.ynk-wishlist-actions .ynk-core-chip {
  flex: 1;
}

.ynk-wishlist-empty {
  padding: 32px 16px;
  text-align: center;
  border-radius: 12px;
  background: #f9fafb;
}




