/* ============================================================
   BASE / SHARED
   ============================================================ */

* {
  box-sizing: border-box;
}

:root {
  --ws-blue: #06213e;
  --ws-blue-2: #0a2b4e;
  --ws-orange: #ff6a00;
  --ws-orange-hover: #ee5e00;
  --ws-bg: #ffffff;
  --ws-soft: #f7f8fa;
  --ws-border: #e9edf2;
  --ws-text: #101828;
  --ws-muted: #707986;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ws-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1440px, calc(100% - 52px));
  margin: 0 auto;
}

/* Shared utility used by product/listing/admin pages. */
.empty-box {
  padding: 30px;
  border: 1px solid var(--ws-border);
  border-radius: 8px;
  background: #fff;
  color: #666;
  text-align: center;
}

/* Shared form fields used by several admin screens. */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  font-weight: 700;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #fff;
  font-size: 15px;
  font-family: inherit;
}

.form-group textarea {
  min-height: 110px;
  resize: vertical;
}

.error-box {
  margin-bottom: 18px;
  padding: 14px;
  border: 1px solid #fecaca;
  border-radius: 8px;
  background: #fee2e2;
  color: #991b1b;
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 28px, 1440px);
  }
}

/* ---------------ADMIN------------------- */

.admin-login-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: #111827;
}

.admin-login-box {
  width: min(420px, calc(100% - 30px));
  background: white;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.admin-login-box h1 {
  margin: 0 0 8px;
  font-size: 28px;
}

.admin-login-box p {
  margin: 0 0 22px;
  color: #666;
}

.admin-login-btn {
  width: 100%;
  height: 46px;
  border: none;
  border-radius: 8px;
  background: #f59e0b;
  color: #111;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
}

.admin-login-btn:hover {
  background: #fbbf24;
}

.admin-error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.back-to-shop {
  display: block;
  text-align: center;
  margin-top: 18px;
  color: #1f2937;
  font-weight: bold;
}

.admin-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 250px 1fr;
  background: #f4f6f8;
}

.admin-sidebar {
  background: #111827;
  color: white;
  padding: 20px;
}

.admin-logo {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 25px;
}

.admin-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.admin-menu a {
  padding: 12px 14px;
  border-radius: 8px;
  color: white;
  opacity: 0.8;
}

.admin-menu a:hover,
.admin-menu a.active {
  background: #1f2937;
  opacity: 1;
}

.admin-main {
  padding: 25px;
  min-width: 0;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.admin-topbar h1 {
  margin: 0;
  font-size: 32px;
}

.admin-user {
  background: white;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: bold;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.admin-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 22px;
}

.admin-card {
  background: white;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.admin-card span {
  display: block;
  color: #666;
  margin-bottom: 8px;
}

.admin-card strong {
  font-size: 34px;
}

.admin-card.warning strong {
  color: #dc2626;
}

.admin-panel {
  background: white;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.admin-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.admin-panel-header h2 {
  margin: 0;
}

.admin-panel-header a {
  color: #1f2937;
  font-weight: bold;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.admin-table th,
.admin-table td {
  text-align: left;
  padding: 12px;
  border-bottom: 1px solid #e5e7eb;
}

.admin-table th {
  background: #f9fafb;
  font-size: 14px;
  color: #555;
}

.status-badge {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: bold;
}

.status-new {
  background: #dbeafe;
  color: #1d4ed8;
}

.status-processing {
  background: #fef3c7;
  color: #92400e;
}

.status-contacted {
  background: #fef3c7;
  color: #92400e;
}

.status-quoted {
  background: #ede9fe;
  color: #6d28d9;
}

.status-completed {
  background: #dcfce7;
  color: #15803d;
}

.status-cancelled {
  background: #fee2e2;
  color: #991b1b;
}

@media (max-width: 900px) {
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
  }

  .admin-menu {
    flex-direction: row;
    overflow-x: auto;
  }

  .admin-menu a {
    white-space: nowrap;
  }

  .admin-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .admin-main {
    padding: 15px;
  }

  .admin-topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .admin-cards {
    grid-template-columns: 1fr;
  }
}
/* -----------------------admin orders--------------- */
.orders-filter-panel {
  margin-bottom: 18px;
}

.order-filter-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.order-filter-links a {
  padding: 9px 13px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #1f2937;
  font-weight: bold;
}

.order-filter-links a:hover,
.order-filter-links a.active {
  background: #1f2937;
  color: white;
}

.order-detail-panel {
  margin-bottom: 18px;
}

.order-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 20px;
}

.order-detail-grid h3 {
  margin: 0 0 12px;
}

.order-detail-grid p {
  margin: 0 0 10px;
  color: #444;
}

.status-form {
  margin-top: 15px;
}

.status-form label {
  display: block;
  margin-bottom: 7px;
  font-weight: bold;
}

.status-update-row {
  display: flex;
  gap: 10px;
}

.status-update-row select {
  height: 42px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 0 10px;
  min-width: 180px;
}

.status-update-row button {
  height: 42px;
  border: none;
  border-radius: 8px;
  padding: 0 18px;
  background: #f59e0b;
  color: #111;
  font-weight: bold;
  cursor: pointer;
}

.status-update-row button:hover {
  background: #fbbf24;
}

.order-items-title {
  margin: 20px 0 12px;
}

.admin-order-product {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-order-product-image {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  background: #e5e7eb;
  display: grid;
  place-items: center;
  color: #777;
  font-size: 11px;
  flex: 0 0 auto;
}

.admin-order-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-order-product a,
.admin-action-link {
  color: #1d4ed8;
  font-weight: bold;
  font-size: 14px;
}

.dashboard-secondary-panel {
  margin-top: 18px;
}

.request-detail-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: 22px;
  margin-bottom: 24px;
}

.request-detail-grid h3 {
  margin: 0 0 14px;
}

.request-contact-card,
.request-message-card {
  padding: 18px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #f9fafb;
}

.request-data-list {
  margin: 0;
}

.request-data-list > div {
  display: grid;
  grid-template-columns: 125px 1fr;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid #e5e7eb;
}

.request-data-list > div:last-child {
  border-bottom: 0;
}

.request-data-list dt {
  color: #6b7280;
  font-size: 13px;
  font-weight: bold;
}

.request-data-list dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
}

.request-data-list a {
  color: #1d4ed8;
}

.request-message {
  min-height: 120px;
  color: #374151;
  line-height: 1.6;
  overflow-wrap: anywhere;
  white-space: normal;
}

.request-update-form {
  display: grid;
  grid-template-columns: minmax(220px, 0.5fr) minmax(320px, 1.5fr) auto;
  gap: 16px;
  align-items: end;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

.request-update-form label {
  display: block;
  margin-bottom: 7px;
  font-weight: bold;
}

.request-update-form select,
.request-update-form textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 10px 12px;
  background: #fff;
  font: inherit;
}

.request-update-form select {
  height: 44px;
}

.request-update-form textarea {
  min-height: 96px;
  resize: vertical;
}

.request-save-button {
  height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 0 22px;
  background: #f59e0b;
  color: #111827;
  font-weight: bold;
  cursor: pointer;
}

.request-save-button:hover {
  background: #fbbf24;
}

@media (max-width: 700px) {
  .order-detail-grid {
    grid-template-columns: 1fr;
  }

  .request-detail-grid,
  .request-update-form {
    grid-template-columns: 1fr;
  }

  .status-update-row {
    flex-direction: column;
  }

  .status-update-row select,
  .status-update-row button {
    width: 100%;
  }
}

/* ----------------------admin categories----------------- */

.admin-grid-two {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 18px;
  align-items: start;
}

.admin-form small {
  display: block;
  margin-top: 6px;
  color: #666;
  font-size: 13px;
}

.admin-save-btn {
  width: 100%;
  height: 44px;
  border: none;
  border-radius: 8px;
  background: #f59e0b;
  color: #111;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
}

.admin-save-btn:hover {
  background: #fbbf24;
}

.success-alert {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 18px;
  font-weight: bold;
}

.admin-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-delete-btn {
  border: none;
  background: #fee2e2;
  color: #b91c1c;
  padding: 7px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}

.admin-delete-btn:hover {
  background: #fecaca;
}

.category-table {
  min-width: 680px;
}

@media (max-width: 1050px) {
  .admin-grid-two {
    grid-template-columns: 1fr;
  }
}

/* --------------------------admin products---------------------- */

.products-filter-panel {
  margin-bottom: 18px;
}

.admin-add-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 8px;
  background: #f59e0b;
  color: #111;
  font-weight: bold;
}

.admin-add-link:hover {
  background: #fbbf24;
}

.admin-filter-form {
  display: grid;
  grid-template-columns: 1fr 220px 180px 110px auto;
  gap: 10px;
  align-items: center;
}

.admin-filter-form input,
.admin-filter-form select {
  height: 42px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 0 12px;
  font-size: 14px;
}

.admin-filter-form button {
  height: 42px;
  border: none;
  border-radius: 8px;
  background: #1f2937;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.admin-filter-form button:hover {
  background: #111827;
}

.admin-reset-link {
  color: #1d4ed8;
  font-weight: bold;
  white-space: nowrap;
}

.products-table {
  min-width: 1000px;
}

.admin-product-cell {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
}

.admin-product-image {
  width: 64px;
  height: 64px;
  border-radius: 9px;
  background: #e5e7eb;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: #777;
  font-size: 11px;
  flex: 0 0 auto;
}

.admin-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-product-cell small {
  color: #777;
}

.admin-old-price {
  color: #999;
  text-decoration: line-through;
}

.stock-good {
  color: #15803d;
  font-weight: bold;
}

.stock-empty {
  color: #dc2626;
  font-weight: bold;
}

@media (max-width: 1000px) {
  .admin-filter-form {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .admin-filter-form {
    grid-template-columns: 1fr;
  }

  .admin-panel-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

/* ---------------------------admin product-add----------------------- */

.admin-product-form {
  max-width: 900px;
}

.form-grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-grid-three {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.admin-product-form select,
.admin-product-form input[type="file"] {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 15px;
  font-family: inherit;
  background: white;
}

.admin-product-form select {
  height: 44px;
}

.admin-product-form small {
  display: block;
  margin-top: 6px;
  color: #666;
  font-size: 13px;
}

.admin-form-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 20px;
}

.admin-form-actions .admin-save-btn {
  width: auto;
  padding: 0 22px;
}

.admin-cancel-btn {
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  background: #e5e7eb;
  color: #111827;
  font-weight: bold;
}

.admin-cancel-btn:hover {
  background: #d1d5db;
}

@media (max-width: 750px) {
  .form-grid-two,
  .form-grid-three {
    grid-template-columns: 1fr;
  }

  .admin-form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-form-actions .admin-save-btn,
  .admin-cancel-btn {
    width: 100%;
  }
}
/* ---------------------------------product-edit--------------- */

.admin-header-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

.admin-header-actions a {
  color: #1d4ed8;
  font-weight: bold;
}

.product-images-panel {
  margin-top: 18px;
}

.admin-images-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.admin-image-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
}

.admin-image-preview {
  position: relative;
  height: 180px;
  background: #e5e7eb;
}

.admin-image-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-image-label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #f59e0b;
  color: #111;
  font-weight: bold;
  font-size: 13px;
  padding: 6px 9px;
  border-radius: 999px;
}

.admin-image-actions {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.set-main-btn,
.delete-image-btn {
  width: 100%;
  height: 38px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

.set-main-btn {
  background: #1f2937;
  color: white;
}

.set-main-btn:hover {
  background: #111827;
}

.delete-image-btn {
  background: #fee2e2;
  color: #b91c1c;
}

.delete-image-btn:hover {
  background: #fecaca;
}

@media (max-width: 1100px) {
  .admin-images-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .admin-images-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 460px) {
  .admin-images-grid {
    grid-template-columns: 1fr;
  }

  .admin-header-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
.storefront-closed-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: #111827;
  padding: 20px;
}

.storefront-closed-box {
  width: min(520px, 100%);
  background: white;
  border-radius: 18px;
  padding: 35px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.storefront-closed-box h1 {
  margin: 0 0 10px;
  font-size: 34px;
}

.storefront-closed-box h2 {
  margin: 0 0 16px;
  color: #dc2626;
}

.storefront-closed-box p {
  color: #444;
  line-height: 1.6;
  margin-bottom: 24px;
}

.storefront-closed-box a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  background: #f59e0b;
  color: #111;
  font-weight: bold;
}

/* ============================================================
   WESALE STOREFRONT
   ============================================================ */

/* TOP BAR */

.ws-topbar {
  background: var(--ws-blue);
  color: white;
  font-size: 13px;
}

.ws-topbar-inner {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ws-topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ws-topbar-item svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

/* HEADER */

.ws-header {
  background: white;
  border-bottom: 1px solid #f0f2f5;
}

.ws-header-main {
  height: 112px;

  display: grid;
  grid-template-columns: 285px minmax(300px, 1fr) auto;

  align-items: center;

  gap: 34px;
}

/* LOGO */

.ws-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ws-blue);
}

.ws-logo-image {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex: 0 0 auto;
}

.ws-logo-text strong {
  display: block;
  color: var(--ws-blue);
  font-size: 35px;
  line-height: 1;
  letter-spacing: -1.8px;
}

.ws-logo-text strong span {
  color: var(--ws-orange);
}

.ws-logo-text strong small {
  font-size: 19px;
}

.ws-logo-text em {
  display: block;
  margin-top: 5px;
  color: #777;
  font-size: 9px;
  font-style: normal;
  letter-spacing: 5px;
}

/* SEARCH */

.ws-search {
  height: 51px;

  display: grid;

  grid-template-columns: 1fr 55px;

  border: 1px solid #dfe4ea;

  border-radius: 5px;

  overflow: hidden;

  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.03);
}

.ws-search input {
  border: 0;
  outline: 0;

  padding: 0 20px;

  font-size: 15px;

  color: var(--ws-text);
}

.ws-search input::placeholder {
  color: #a0a5ad;
}

.ws-search button {
  border: 0;

  background: var(--ws-orange);

  display: grid;
  place-items: center;

  cursor: pointer;
}

.ws-search button:hover {
  background: var(--ws-orange-hover);
}

.ws-search button svg {
  width: 22px;
  height: 22px;

  fill: none;
  stroke: white;

  stroke-width: 2;
}

/* HEADER ACTIONS */

.ws-header-actions {
  display: flex;
  align-items: center;

  gap: 29px;
}

.ws-header-action {
  position: relative;

  display: flex;
  align-items: center;

  gap: 9px;

  color: #182231;

  font-size: 13px;

  white-space: nowrap;
}

.ws-header-action svg {
  width: 27px;
  height: 27px;

  fill: none;

  stroke: var(--ws-blue);

  stroke-width: 1.7;
}

.ws-header-action:hover {
  color: var(--ws-orange);
}

.ws-cart-action b {
  position: absolute;

  top: -15px;
  right: -10px;

  width: 20px;
  height: 20px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: var(--ws-orange);

  color: white;

  font-size: 11px;
}

/* NAVIGATION */

.ws-navigation {
  min-height: 72px;

  display: flex;
  align-items: center;

  gap: 61px;
}

.ws-category-wrapper {
  position: relative;
}

.ws-category-button {
  width: 285px;
  height: 49px;

  border: 0;

  border-radius: 6px;

  background: var(--ws-blue);

  color: white;

  text-align: left;

  padding: 0 23px;

  font-size: 15px;
  font-weight: 600;

  cursor: pointer;
}

.ws-category-button .hamburger {
  margin-right: 13px;

  font-size: 19px;
}

.ws-category-dropdown {
  position: absolute;

  top: 54px;
  left: 0;

  width: 285px;

  background: white;

  border-radius: 7px;

  border: 1px solid var(--ws-border);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);

  overflow: hidden;

  z-index: 100;

  display: none;
}

.ws-category-dropdown.open {
  display: block;
}

.ws-category-dropdown a {
  min-height: 45px;

  padding: 0 16px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-bottom: 1px solid var(--ws-border);

  color: #182231;

  font-size: 14px;
}

.ws-category-dropdown a:hover {
  background: #f8f9fa;

  color: var(--ws-orange);
}

.ws-main-nav {
  display: flex;
  align-items: center;

  gap: 48px;
}

.ws-main-nav a {
  position: relative;

  padding: 25px 0;

  color: #172233;

  font-size: 15px;
  font-weight: 600;
}

.ws-main-nav a.active {
  color: var(--ws-orange);
}

.ws-main-nav a.active::after {
  content: "";

  position: absolute;

  height: 2px;

  left: 0;
  right: 0;
  bottom: 14px;

  background: var(--ws-orange);
}

/* HERO */

.ws-hero-section {
  background: white;

  padding-bottom: 25px;
}

.ws-hero {
  position: relative;

  height: 515px;

  overflow: hidden;

  border-radius: 7px;

  background:
    radial-gradient(circle at 73% 52%, #fff 0, #f4f5f7 39%, transparent 40%),
    linear-gradient(100deg, #f7f8fa 0%, #f4f6f8 100%);
}

.ws-hero-copy {
  position: absolute;

  z-index: 10;

  left: 52px;
  top: 84px;
}

.ws-hero-copy h1 {
  margin: 0 0 22px;

  color: var(--ws-blue);

  font-size: 50px;

  line-height: 1.2;

  font-weight: 900;

  letter-spacing: -0.8px;
}

.ws-hero-copy h1 span {
  color: var(--ws-orange);
}

.ws-hero-copy p {
  margin: 0 0 30px;

  color: #334155;

  font-size: 16px;
}

.ws-orange-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 49px;

  padding: 0 24px;

  border-radius: 5px;

  background: var(--ws-orange);

  color: white;

  font-size: 15px;
  font-weight: 600;
}

.ws-orange-button:hover {
  background: var(--ws-orange-hover);
}

.ws-slider-dots {
  position: absolute;

  left: 0;
  top: 369px;

  display: flex;
  align-items: center;

  gap: 8px;
}

.ws-slider-dots span {
  width: 9px;
  height: 9px;

  background: #d8dde3;

  border-radius: 50%;
}

.ws-slider-dots span.active {
  width: 22px;

  border-radius: 20px;

  background: var(--ws-orange);
}

/* HERO PRODUCT COLLAGE */

.ws-hero-products {
  position: absolute;

  right: 20px;
  top: 20px;

  width: 720px;
  height: 475px;
}

.ws-hero-product {
  position: absolute;

  display: grid;
  place-items: center;
}

.ws-hero-product img {
  display: block;

  max-width: 100%;
  max-height: 100%;

  object-fit: contain;

  filter: drop-shadow(0 12px 14px rgba(0, 0, 0, 0.11));
}

.ws-hero-product-1 {
  width: 260px;
  height: 320px;

  left: 205px;
  top: 55px;
}

.ws-hero-product-2 {
  width: 300px;
  height: 235px;

  right: 4px;
  top: 122px;
}

.ws-hero-product-3 {
  width: 250px;
  height: 205px;

  left: 30px;
  top: 175px;
}

.ws-hero-product-4 {
  width: 205px;
  height: 170px;

  left: 270px;
  bottom: 0;
}

.ws-hero-product-5 {
  width: 170px;
  height: 145px;

  right: 55px;
  bottom: 0;
}

/* CATEGORY CARDS */

.ws-category-section {
  padding: 0 0 42px;

  background: white;
}

.ws-category-grid {
  display: grid;

  grid-template-columns: repeat(8, 1fr);

  gap: 14px;
}

.ws-category-card {
  min-width: 0;

  height: 155px;

  display: flex;
  flex-direction: column;

  justify-content: center;
  align-items: center;

  gap: 11px;

  padding: 10px;

  border: 1px solid var(--ws-border);

  border-radius: 8px;

  background: #fff;

  color: #202938;

  text-align: center;
}

.ws-category-card:hover {
  border-color: #d3d9e0;

  box-shadow: 0 9px 25px rgba(10, 20, 40, 0.07);

  transform: translateY(-2px);
}

.ws-category-image {
  height: 93px;

  display: grid;
  place-items: center;
}

.ws-category-image img {
  max-width: 110px;
  max-height: 88px;

  object-fit: contain;
}

.ws-category-card span {
  max-width: 145px;

  font-size: 13px;

  font-weight: 600;

  line-height: 1.25;
}

.ws-all-categories-icon {
  width: 55px;
  height: 55px;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 8px;
}

.ws-all-categories-icon i {
  border: 4px solid var(--ws-blue);

  border-radius: 50%;
}

/* PRODUCT SECTION */

.ws-products-section {
  padding: 4px 0 34px;

  background: white;
}

.ws-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 23px;
}

.ws-section-heading h2 {
  margin: 0;

  color: var(--ws-blue);

  font-size: 24px;
}

.ws-section-heading > a {
  color: #182231;

  font-size: 14px;

  font-weight: 600;
}

.ws-product-grid {
  display: grid;

  grid-template-columns: repeat(5, 1fr);

  gap: 18px;
}

.ws-product-card {
  position: relative;

  min-width: 0;

  height: 390px;

  border: 1px solid var(--ws-border);

  border-radius: 9px;

  background: white;

  overflow: hidden;

  transition: 0.2s ease;
}

.ws-product-card:hover {
  border-color: #dce1e6;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);

  transform: translateY(-2px);
}

.ws-discount {
  position: absolute;

  z-index: 5;

  top: 16px;
  left: 14px;

  padding: 6px 9px;

  border-radius: 5px;

  background: var(--ws-orange);

  color: white;

  font-size: 12px;

  font-weight: 700;
}

.ws-wishlist {
  position: absolute;

  z-index: 5;

  top: 13px;
  right: 13px;

  border: 0;

  background: transparent;

  color: #a8adb4;

  font-size: 27px;

  cursor: pointer;
}

.ws-wishlist:hover {
  color: var(--ws-orange);
}
.ws-wishlist-form {
  position: absolute;
  z-index: 6;
  top: 13px;
  right: 13px;
  margin: 0;
}

.ws-wishlist-form .ws-wishlist {
  position: static;
}

.ws-wishlist.active {
  color: var(--ws-orange);
}
.ws-product-image {
  height: 252px;

  display: grid;
  place-items: center;

  padding: 34px 18px 10px;
}

.ws-product-image img {
  max-width: 100%;
  max-height: 215px;

  object-fit: contain;
}

.ws-product-content {
  padding: 0 17px 17px;
}

.ws-product-content h3 {
  height: 40px;

  margin: 0 0 7px;

  overflow: hidden;

  font-size: 14px;

  line-height: 1.5;

  font-weight: 600;

  color: #202938;
}

.ws-product-content h3 a:hover {
  color: var(--ws-orange);
}

.ws-product-bottom {
  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  gap: 10px;
}

.ws-product-prices {
  display: flex;

  align-items: baseline;

  gap: 8px;
}

.ws-product-prices strong {
  color: var(--ws-blue);

  font-size: 19px;

  white-space: nowrap;
}

.ws-product-prices del {
  color: #a6abb2;

  font-size: 12px;

  white-space: nowrap;
}

.ws-add-cart {
  width: 39px;
  height: 39px;

  border: 0;

  border-radius: 6px;

  display: grid;
  place-items: center;

  background: var(--ws-orange);

  cursor: pointer;
}

.ws-add-cart:hover {
  background: var(--ws-orange-hover);
}

.ws-add-cart:disabled {
  opacity: 0.35;

  cursor: not-allowed;
}

.ws-add-cart svg {
  width: 21px;
  height: 21px;

  fill: none;

  stroke: white;

  stroke-width: 1.8;
}

/* PROMO BLOCKS */

.ws-promos {
  padding: 7px 0 43px;

  background: white;
}

.ws-promo-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 18px;
}

.ws-promo-card {
  height: 180px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  padding: 27px 32px;

  overflow: hidden;

  background: #f5f6f8;

  border-radius: 8px;
}

.ws-promo-card h3 {
  margin: 0 0 3px;

  color: var(--ws-blue);

  font-size: 22px;

  line-height: 1.2;
}

.ws-promo-card strong {
  color: var(--ws-orange);

  font-size: 25px;

  line-height: 1.2;
}

.ws-promo-card p {
  margin: 16px 0 0;

  color: #485565;

  font-size: 13px;

  line-height: 1.45;
}

.ws-promo-symbol {
  width: 100px;
  height: 120px;

  display: grid;
  place-items: center;

  border-radius: 48% 48% 42% 42%;

  background: linear-gradient(145deg, #14385d, #446c97);

  color: white;

  font-size: 50px;

  font-weight: 700;

  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.17);
}

.ws-truck-symbol,
.ws-lock-symbol {
  font-size: 78px;

  opacity: 0.8;
}
@media (max-width: 800px) {
  .ws-product-category {
    font-size: 10px;
    margin-bottom: 3px;
  }
}
/* BRANDS */

.ws-brands {
  padding: 0 0 40px;

  background: white;

  text-align: center;
}

.ws-brands h2 {
  margin: 0 0 28px;

  color: var(--ws-blue);

  font-size: 20px;
}

.ws-brand-row {
  min-height: 70px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 40px;

  overflow-x: auto;

  color: #b8bdc3;

  font-size: 25px;

  font-weight: 800;

  text-transform: uppercase;
}

.ws-brand-row span {
  white-space: nowrap;
}

.apple-brand {
  font-size: 40px;
}

/* SERVICES */

.ws-services {
  padding-bottom: 40px;

  background: white;
}

.ws-service-box {
  min-height: 100px;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  border: 1px solid var(--ws-border);

  border-radius: 8px;
}

.ws-service-item {
  display: flex;

  align-items: center;

  gap: 15px;

  padding: 20px 27px;
}

.ws-service-icon {
  min-width: 40px;

  color: var(--ws-blue);

  font-size: 35px;

  text-align: center;
}

.ws-service-item strong {
  display: block;

  margin-bottom: 5px;

  color: #202938;

  font-size: 13px;
}

.ws-service-item span {
  color: #7a838e;

  font-size: 11px;
}

/* FOOTER */

.ws-footer {
  padding: 48px 0 20px;

  background: var(--ws-blue);

  color: white;
}

.ws-footer-grid {
  display: grid;

  grid-template-columns: 2fr 1fr 1fr 1fr;

  gap: 50px;
}

.ws-footer-logo {
  font-size: 29px;

  font-weight: 800;
}

.ws-footer-logo span {
  color: var(--ws-orange);
}

.ws-footer h4 {
  margin: 0 0 15px;
}

.ws-footer p,
.ws-footer a {
  display: block;

  margin: 8px 0;

  color: #c8d1db;

  font-size: 13px;
}

.ws-footer a:hover {
  color: white;
}

.ws-footer-bottom {
  margin-top: 35px;

  padding-top: 20px;

  border-top: 1px solid rgba(255, 255, 255, 0.15);

  color: #aeb9c5;

  font-size: 12px;
}

/* RESPONSIVE */

@media (max-width: 1250px) {
  .ws-header-main {
    grid-template-columns: 230px 1fr;
  }

  .ws-header-actions {
    grid-column: 1 / -1;

    justify-content: flex-end;

    padding-bottom: 15px;
  }

  .ws-navigation {
    gap: 25px;
  }

  .ws-main-nav {
    gap: 25px;
  }

  .ws-category-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .ws-product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 28px, 1440px);
  }

  .ws-topbar-inner {
    height: auto;

    padding: 9px 0;

    flex-direction: column;

    align-items: flex-start;

    gap: 5px;
  }

  .ws-header-main {
    height: auto;

    padding: 20px 0;

    grid-template-columns: 1fr;
  }

  .ws-search {
    width: 100%;
  }

  .ws-header-actions {
    grid-column: auto;

    justify-content: space-between;

    padding-bottom: 0;
  }

  .ws-navigation {
    padding-bottom: 15px;

    flex-direction: column;

    align-items: stretch;
  }

  .ws-category-button {
    width: 100%;
  }

  .ws-category-dropdown {
    width: 100%;
  }

  .ws-main-nav {
    overflow-x: auto;

    justify-content: flex-start;
  }

  .ws-main-nav a {
    white-space: nowrap;
  }

  .ws-hero {
    height: auto;

    min-height: 670px;
  }

  .ws-hero-copy {
    left: 30px;
    top: 45px;
  }

  .ws-hero-products {
    top: 320px;
    right: 50%;

    transform: translateX(50%);

    width: 600px;

    scale: 0.78;
  }

  .ws-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .ws-service-box {
    grid-template-columns: repeat(2, 1fr);
  }

  .ws-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .ws-logo-text strong {
    font-size: 28px;
  }

  .ws-header-actions {
    gap: 10px;
  }

  .ws-header-action span {
    display: none;
  }

  .ws-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ws-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 9px;
  }

  .ws-product-card {
    height: 330px;
  }

  .ws-product-image {
    height: 200px;

    padding-left: 8px;
    padding-right: 8px;
  }

  .ws-product-image img {
    max-height: 175px;
  }

  .ws-product-content {
    padding: 0 10px 10px;
  }

  .ws-product-content h3 {
    font-size: 12px;
  }

  .ws-product-prices {
    flex-direction: column;

    gap: 1px;
  }

  .ws-product-prices strong {
    font-size: 15px;
  }

  .ws-hero-copy h1 {
    font-size: 37px;
  }

  .ws-hero-products {
    width: 520px;

    scale: 0.65;
  }

  .ws-service-box,
  .ws-footer-grid {
    grid-template-columns: 1fr;
  }
}
/* ============================================================
   WESALE PRODUCT PAGE
   ============================================================ */

.ws-product-page {
  padding: 25px 0 60px;
  background: #fff;
}

.ws-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;

  margin-bottom: 25px;

  color: #8a929c;
  font-size: 13px;
}

.ws-breadcrumb a {
  color: #536173;
}

.ws-breadcrumb a:hover {
  color: var(--ws-orange);
}

.ws-product-detail {
  display: grid;

  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(400px, 0.85fr);

  gap: 55px;
}

/* Gallery */

.ws-detail-gallery {
  min-width: 0;

  display: grid;

  grid-template-columns: 90px 1fr;

  gap: 20px;
}

.ws-detail-gallery.single-image {
    grid-template-columns: 1fr;
}

.ws-detail-thumbnails {
  display: flex;

  flex-direction: column;

  gap: 11px;
}

.ws-detail-thumbnail {
  width: 88px;
  height: 88px;

  padding: 7px;

  border: 1px solid var(--ws-border);

  border-radius: 7px;

  background: white;

  cursor: pointer;
}

.ws-detail-thumbnail:hover {
  border-color: var(--ws-orange);
}

.ws-detail-thumbnail img {
  width: 100%;
  height: 100%;

  object-fit: contain;
}

.ws-detail-main-image {
  height: 570px;

  display: grid;
  place-items: center;

  padding: 35px;

  border: 1px solid var(--ws-border);

  border-radius: 9px;

  background: white;
}

.ws-detail-main-image img {
  max-width: 100%;
  max-height: 500px;

  object-fit: contain;
}

/* Product info */

.ws-detail-info {
  padding-top: 10px;
}

.ws-detail-category {
  margin-bottom: 10px;

  color: #8a929c;

  font-size: 13px;
}

.ws-detail-info h1 {
  margin: 0 0 16px;

  color: var(--ws-blue);

  font-size: 31px;

  line-height: 1.3;
}

.ws-detail-stock {
  margin-bottom: 24px;
}

.ws-detail-stock .available {
  color: #159447;

  font-size: 14px;

  font-weight: 600;
}

.ws-detail-stock .unavailable {
  color: #d92d20;

  font-weight: 600;
}

.ws-detail-price {
  display: flex;
  align-items: center;

  gap: 12px;
}

.ws-detail-price strong {
  color: var(--ws-blue);

  font-size: 32px;
}

.ws-detail-price del {
  color: #9ca3af;

  font-size: 17px;
}

.ws-detail-discount {
  padding: 5px 9px;

  border-radius: 4px;

  background: var(--ws-orange);

  color: white;

  font-size: 12px;

  font-weight: 700;
}

.ws-detail-divider {
  height: 1px;

  margin: 27px 0;

  background: var(--ws-border);
}

.ws-detail-description h3 {
  margin: 0 0 12px;

  color: var(--ws-blue);

  font-size: 17px;
}

.ws-detail-description p {
  margin: 0;

  color: #596473;

  font-size: 14px;

  line-height: 1.75;
}

/* Cart */

.ws-detail-cart-form {
  display: flex;
  align-items: flex-end;

  gap: 13px;

  margin-top: 32px;
}

.ws-detail-quantity label {
  display: block;

  margin-bottom: 7px;

  color: #536173;

  font-size: 12px;
}

.ws-detail-quantity input {
  width: 85px;
  height: 49px;

  padding: 0 12px;

  border: 1px solid #d8dde3;

  border-radius: 5px;

  font-size: 15px;
}

.ws-detail-add-cart {
  height: 49px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 9px;

  padding: 0 28px;

  border: 0;

  border-radius: 5px;

  background: var(--ws-orange);

  color: white;

  font-size: 14px;

  font-weight: 600;

  cursor: pointer;
}

.ws-detail-add-cart:hover {
  background: var(--ws-orange-hover);
}

.ws-detail-add-cart svg {
  width: 21px;
  height: 21px;

  fill: none;

  stroke: white;

  stroke-width: 1.8;
}

/* Benefits */

.ws-detail-benefits {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 10px;

  margin-top: 36px;

  padding-top: 24px;

  border-top: 1px solid var(--ws-border);
}

.ws-detail-benefits div {
  display: flex;

  flex-direction: column;

  gap: 4px;
}

.ws-detail-benefits strong {
  color: #303b48;

  font-size: 12px;
}

.ws-detail-benefits span {
  color: #8a929c;

  font-size: 10px;
}

/* Related */

.ws-related-products {
  padding: 10px 0 60px;

  background: #fff;
}

@media (max-width: 1000px) {
  .ws-product-detail {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .ws-detail-gallery {
    grid-template-columns: 1fr;
  }

  .ws-detail-thumbnails {
    order: 2;

    flex-direction: row;

    overflow-x: auto;
  }

  .ws-detail-main-image {
    height: 390px;
  }

  .ws-detail-main-image img {
    max-height: 340px;
  }

  .ws-detail-info h1 {
    font-size: 24px;
  }

  .ws-detail-cart-form {
    flex-direction: column;

    align-items: stretch;
  }

  .ws-detail-quantity input {
    width: 100%;
  }

  .ws-detail-benefits {
    grid-template-columns: 1fr;
  }
}
/* ============================================================
   WESALE CART
   ============================================================ */

.ws-cart-page {
  padding: 25px 0 70px;
  background: #fff;
}

.ws-cart-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 20px;

  margin-bottom: 27px;
}

.ws-cart-title > div {
  display: flex;
  align-items: baseline;
  gap: 13px;
}

.ws-cart-title h1 {
  margin: 0;

  color: var(--ws-blue);

  font-size: 32px;
}

.ws-cart-title > div > span {
  color: #8a929c;
  font-size: 13px;
}

.ws-cart-continue {
  color: #566272;
  font-size: 13px;
  font-weight: 600;
}

.ws-cart-continue:hover {
  color: var(--ws-orange);
}

/* Layout */

.ws-cart-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    370px;

  gap: 28px;

  align-items: start;
}

/* Items */

.ws-cart-items {
  border: 1px solid var(--ws-border);
  border-radius: 9px;

  overflow: hidden;
}

.ws-cart-item {
  position: relative;

  min-height: 145px;

  display: grid;

  grid-template-columns:
    115px
    minmax(190px, 1fr)
    125px
    145px
    125px
    34px;

  gap: 15px;

  align-items: center;

  padding: 18px;

  background: white;

  border-bottom: 1px solid var(--ws-border);
}

.ws-cart-item:last-child {
  border-bottom: none;
}

/* Product image */

.ws-cart-item-image {
  width: 110px;
  height: 110px;

  display: grid;
  place-items: center;

  padding: 7px;

  background: #fff;

  border: 1px solid #f0f2f4;

  border-radius: 7px;
}

.ws-cart-item-image img {
  max-width: 100%;
  max-height: 95px;

  object-fit: contain;
}

/* Product information */

.ws-cart-item-info {
  min-width: 0;
}

.ws-cart-item-category {
  display: block;

  margin-bottom: 5px;

  color: #9aa1a9;

  font-size: 11px;
}

.ws-cart-item-info h3 {
  margin: 0 0 9px;

  color: var(--ws-blue);

  font-size: 14px;

  line-height: 1.45;
}

.ws-cart-item-info h3 a:hover {
  color: var(--ws-orange);
}

.ws-cart-stock {
  color: #16894d;

  font-size: 11px;
  font-weight: 600;
}

/* Labels */

.ws-cart-item-price,
.ws-cart-item-quantity,
.ws-cart-line-total {
  display: flex;
  flex-direction: column;

  gap: 7px;
}

.ws-cart-item-price > span,
.ws-cart-item-quantity > span,
.ws-cart-line-total > span {
  color: #969da6;
  font-size: 10px;
}

.ws-cart-item-price strong {
  color: var(--ws-blue);
  font-size: 15px;
}

.ws-cart-line-total strong {
  color: var(--ws-blue);
  font-size: 16px;
}

/* Quantity control */

.ws-quantity-control {
  width: 130px;
  height: 40px;

  display: grid;

  grid-template-columns:
    38px
    1fr
    38px;

  border: 1px solid #dfe3e8;

  border-radius: 5px;

  overflow: hidden;
}

.ws-quantity-control button {
  border: 0;

  background: #f8f9fa;

  color: var(--ws-blue);

  font-size: 18px;

  cursor: pointer;
}

.ws-quantity-control button:hover {
  background: #eef1f4;
}

.ws-quantity-control input {
  min-width: 0;

  border: 0;
  border-left: 1px solid #e4e7ea;
  border-right: 1px solid #e4e7ea;

  outline: 0;

  text-align: center;

  font-size: 13px;
}

.ws-quantity-control input::-webkit-inner-spin-button,
.ws-quantity-control input::-webkit-outer-spin-button {
  appearance: none;
}

/* Remove */

.ws-cart-remove {
  width: 31px;
  height: 31px;

  display: grid;
  place-items: center;

  border: 0;
  border-radius: 50%;

  background: #f7f8f9;

  color: #8d959e;

  font-size: 20px;

  cursor: pointer;
}

.ws-cart-remove:hover {
  background: #fff0eb;
  color: var(--ws-orange);
}

/* Mobile price */

.ws-cart-mobile-price {
  display: none;

  margin-top: 8px;

  color: var(--ws-blue);

  font-weight: 700;
}

/* Actions */

.ws-cart-list-actions {
  display: flex;
  justify-content: space-between;

  gap: 15px;

  margin-top: 16px;
}

.ws-cart-update-button,
.ws-cart-clear-button {
  min-height: 41px;

  padding: 0 17px;

  border-radius: 5px;

  font-size: 12px;
  font-weight: 600;

  cursor: pointer;
}

.ws-cart-update-button {
  border: 0;

  background: var(--ws-blue);

  color: white;
}

.ws-cart-update-button:hover {
  background: #0b3158;
}

.ws-cart-clear-button {
  border: 1px solid #e1e5e9;

  background: white;

  color: #7d8792;
}

.ws-cart-clear-button:hover {
  border-color: #efb292;
  color: var(--ws-orange);
}

/* Free delivery */

.ws-free-delivery-box {
  margin-top: 18px;

  padding: 17px 20px;

  border-radius: 7px;

  background: #f7f9fb;

  border: 1px solid #edf0f3;
}

.ws-free-delivery-box strong {
  display: block;

  margin-bottom: 5px;

  color: var(--ws-blue);

  font-size: 13px;
}

.ws-free-delivery-box > span {
  color: #7e8791;

  font-size: 11px;
}

.ws-delivery-progress {
  height: 5px;

  margin-top: 14px;

  overflow: hidden;

  border-radius: 999px;

  background: #e1e5e9;
}

.ws-delivery-progress div {
  height: 100%;

  background: var(--ws-orange);

  border-radius: inherit;
}

/* Summary */

.ws-cart-summary {
  position: sticky;

  top: 20px;

  padding: 24px;

  border: 1px solid var(--ws-border);

  border-radius: 9px;

  background: white;

  box-shadow: 0 8px 25px rgba(10, 25, 45, 0.05);
}

.ws-cart-summary h2 {
  margin: 0 0 24px;

  color: var(--ws-blue);

  font-size: 20px;
}

.ws-cart-summary-row {
  display: flex;
  justify-content: space-between;

  gap: 20px;

  margin-bottom: 14px;

  color: #687381;

  font-size: 13px;
}

.ws-cart-summary-row strong {
  color: #263443;
}

.ws-free-text {
  color: #16894d !important;
}

.ws-cart-summary-divider {
  height: 1px;

  margin: 20px 0;

  background: var(--ws-border);
}

.ws-cart-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;

  gap: 20px;

  margin-bottom: 22px;

  color: var(--ws-blue);
}

.ws-cart-summary-total span {
  font-size: 16px;
  font-weight: 600;
}

.ws-cart-summary-total strong {
  font-size: 25px;
}

/* Checkout */

.ws-checkout-button {
  width: 100%;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 19px;

  border-radius: 5px;

  background: var(--ws-orange);

  color: white;

  font-size: 14px;
  font-weight: 700;
}

.ws-checkout-button:hover {
  background: var(--ws-orange-hover);
}

.ws-checkout-button span {
  font-size: 20px;
}

/* Security */

.ws-cart-security {
  display: flex;
  align-items: center;

  gap: 11px;

  margin-top: 18px;

  padding-top: 17px;

  border-top: 1px solid var(--ws-border);
}

.ws-cart-security > span {
  color: var(--ws-blue);

  font-size: 25px;
}

.ws-cart-security strong {
  display: block;

  color: #596575;

  font-size: 11px;
}

.ws-cart-security small {
  display: block;

  margin-top: 2px;

  color: #9ca3aa;

  font-size: 9px;
}

/* Empty cart */

.ws-empty-cart {
  max-width: 620px;

  margin: 55px auto;

  padding: 55px 25px;

  text-align: center;
}

.ws-empty-cart-icon {
  width: 90px;
  height: 90px;

  margin: 0 auto 22px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #fff4ed;
}

.ws-empty-cart-icon svg {
  width: 42px;
  height: 42px;

  fill: none;

  stroke: var(--ws-orange);

  stroke-width: 1.5;
}

.ws-empty-cart h2 {
  margin: 0 0 10px;

  color: var(--ws-blue);

  font-size: 23px;
}

.ws-empty-cart p {
  margin: 0 0 24px;

  color: #7f8994;

  font-size: 13px;
}

.ws-cart-shop-button {
  height: 45px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 22px;

  border-radius: 5px;

  background: var(--ws-orange);

  color: white;

  font-size: 13px;
  font-weight: 600;
}

/* Responsive */

@media (max-width: 1200px) {
  .ws-cart-layout {
    grid-template-columns: 1fr 320px;
  }

  .ws-cart-item {
    grid-template-columns:
      100px
      minmax(150px, 1fr)
      100px
      130px
      105px
      30px;

    gap: 10px;
  }

  .ws-cart-item-image {
    width: 95px;
    height: 95px;
  }
}

@media (max-width: 980px) {
  .ws-cart-layout {
    grid-template-columns: 1fr;
  }

  .ws-cart-summary {
    position: static;
  }
}

@media (max-width: 760px) {
  .ws-cart-title {
    align-items: flex-start;

    flex-direction: column;
  }

  .ws-cart-item {
    grid-template-columns:
      85px
      1fr
      28px;

    min-height: 130px;
  }

  .ws-cart-item-image {
    width: 82px;
    height: 82px;

    grid-row: 1 / 3;
  }

  .ws-cart-item-info {
    grid-column: 2;
  }

  .ws-cart-item-price {
    display: none;
  }

  .ws-cart-mobile-price {
    display: block;
  }

  .ws-cart-item-quantity {
    grid-column: 2;
  }

  .ws-cart-line-total {
    display: none;
  }

  .ws-cart-remove {
    grid-column: 3;
    grid-row: 1;

    align-self: start;
  }

  .ws-quantity-control {
    width: 120px;
  }
}

@media (max-width: 480px) {
  .ws-cart-list-actions {
    flex-direction: column;
  }

  .ws-cart-update-button,
  .ws-cart-clear-button {
    width: 100%;
  }
}
/* ============================================================
   WESALE CHECKOUT
   ============================================================ */

.ws-checkout-page {
  padding: 25px 0 70px;
  background: #fff;
}

.ws-checkout-heading {
  margin-bottom: 26px;
}

.ws-checkout-heading h1 {
  margin: 0;

  color: var(--ws-blue);

  font-size: 32px;
}

.ws-checkout-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    390px;

  gap: 30px;

  align-items: start;
}

/* Cards */

.ws-checkout-form {
  display: flex;
  flex-direction: column;

  gap: 18px;
}

.ws-checkout-card {
  padding: 24px;

  border: 1px solid var(--ws-border);

  border-radius: 9px;

  background: white;
}

.ws-checkout-card-heading {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 22px;
}

.ws-checkout-card-heading > span {
  width: 30px;
  height: 30px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: var(--ws-blue);

  color: white;

  font-size: 12px;

  font-weight: 700;
}

.ws-checkout-card-heading h2 {
  margin: 0;

  color: var(--ws-blue);

  font-size: 18px;
}

/* Form */

.ws-checkout-grid-two {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 16px;
}

.ws-checkout-field label {
  display: block;

  margin-bottom: 7px;

  color: #596575;

  font-size: 12px;

  font-weight: 600;
}

.ws-checkout-field input,
.ws-checkout-field textarea {
  width: 100%;

  border: 1px solid #dce1e6;

  border-radius: 5px;

  outline: none;

  padding: 12px 14px;

  font-family: inherit;

  font-size: 14px;

  color: #202938;

  background: white;
}

.ws-checkout-field input {
  height: 46px;
}

.ws-checkout-field textarea {
  resize: vertical;
}

.ws-checkout-field input:focus,
.ws-checkout-field textarea:focus {
  border-color: var(--ws-orange);

  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.08);
}

/* Delivery */

.ws-delivery-choice {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;

  margin-top: 14px;

  padding: 16px;

  border: 1px solid #e3e7eb;

  border-radius: 6px;

  background: #fafbfc;
}

.ws-delivery-choice div {
  display: flex;

  flex-direction: column;

  gap: 4px;
}

.ws-delivery-choice div strong {
  color: #334155;

  font-size: 13px;
}

.ws-delivery-choice div span {
  color: #89919a;

  font-size: 11px;
}

/* Payment */

.ws-payment-option {
  display: flex;

  align-items: flex-start;

  gap: 13px;

  padding: 16px;

  border: 1px solid #e3e7eb;

  border-radius: 6px;

  cursor: pointer;

  margin-bottom: 11px;
}

.ws-payment-option:last-child {
  margin-bottom: 0;
}

.ws-payment-option:hover {
  border-color: #f4ab82;
}

.ws-payment-option input {
  margin-top: 3px;

  accent-color: var(--ws-orange);
}

.ws-payment-option div {
  display: flex;

  flex-direction: column;

  gap: 4px;
}

.ws-payment-option strong {
  color: #334155;

  font-size: 13px;
}

.ws-payment-option span {
  color: #8a929c;

  font-size: 11px;
}

/* Summary */

.ws-checkout-summary {
  position: sticky;

  top: 20px;

  padding: 24px;

  border: 1px solid var(--ws-border);

  border-radius: 9px;

  background: white;

  box-shadow: 0 8px 25px rgba(10, 25, 45, 0.05);
}

.ws-checkout-summary h2 {
  margin: 0 0 21px;

  color: var(--ws-blue);

  font-size: 20px;
}

.ws-checkout-products {
  display: flex;

  flex-direction: column;

  gap: 15px;
}

.ws-checkout-product {
  display: grid;

  grid-template-columns:
    58px
    1fr
    auto;

  gap: 12px;

  align-items: center;
}

.ws-checkout-product-image {
  position: relative;

  width: 58px;
  height: 58px;

  display: grid;
  place-items: center;

  padding: 4px;

  border: 1px solid #eef0f2;

  border-radius: 6px;
}

.ws-checkout-product-image img {
  max-width: 100%;
  max-height: 48px;

  object-fit: contain;
}

.ws-checkout-product-image span {
  position: absolute;

  top: -7px;
  right: -7px;

  min-width: 20px;
  height: 20px;

  display: grid;
  place-items: center;

  padding: 0 5px;

  border-radius: 999px;

  background: var(--ws-orange);

  color: white;

  font-size: 10px;
}

.ws-checkout-product-info {
  min-width: 0;

  display: flex;

  flex-direction: column;

  gap: 5px;
}

.ws-checkout-product-info strong {
  display: -webkit-box;

  overflow: hidden;

  color: #334155;

  font-size: 11px;

  line-height: 1.4;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ws-checkout-product-info small {
  color: #9299a2;

  font-size: 10px;
}

.ws-checkout-product-total {
  color: var(--ws-blue);

  font-size: 12px;

  font-weight: 700;

  white-space: nowrap;
}

/* Place order */

.ws-place-order-button,
.ws-place-order-mobile {
  width: 100%;
  height: 50px;

  border: 0;

  border-radius: 5px;

  background: var(--ws-orange);

  color: white;

  font-size: 14px;

  font-weight: 700;

  cursor: pointer;
}

.ws-place-order-button:hover,
.ws-place-order-mobile:hover {
  background: var(--ws-orange-hover);
}

.ws-place-order-mobile {
  display: none;
}

/* Errors */

.ws-checkout-errors {
  margin-bottom: 20px;

  padding: 15px 18px;

  border: 1px solid #f7c8c3;

  border-radius: 6px;

  background: #fff4f2;

  color: #b42318;

  font-size: 12px;
}

.ws-checkout-errors div + div {
  margin-top: 5px;
}

/* Success */

.ws-order-success {
  max-width: 600px;

  margin: 60px auto;

  padding: 55px 30px;

  text-align: center;
}

.ws-order-success-icon {
  width: 82px;
  height: 82px;

  margin: 0 auto 22px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #eaf8ef;

  color: #16894d;

  font-size: 40px;

  font-weight: 700;
}

.ws-order-success h1 {
  margin: 0 0 12px;

  color: var(--ws-blue);

  font-size: 29px;
}

.ws-order-success p {
  max-width: 430px;

  margin: 0 auto 25px;

  color: #7b8590;

  font-size: 13px;

  line-height: 1.6;
}

.ws-order-number {
  max-width: 300px;

  margin: 0 auto 28px;

  padding: 17px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  border-radius: 6px;

  background: #f6f8fa;

  color: #697481;

  font-size: 12px;
}

.ws-order-number strong {
  color: var(--ws-blue);

  font-size: 17px;
}

/* Responsive */

@media (max-width: 950px) {
  .ws-checkout-layout {
    grid-template-columns: 1fr;
  }

  .ws-checkout-summary {
    position: static;
  }

  .ws-place-order-button {
    display: none;
  }

  .ws-place-order-mobile {
    display: block;
  }
}

@media (max-width: 600px) {
  .ws-checkout-grid-two {
    grid-template-columns: 1fr;
  }

  .ws-checkout-card {
    padding: 18px;
  }

  .ws-checkout-heading h1 {
    font-size: 25px;
  }
}
.ws-wishlist-header {
  position: relative;
}

.ws-wishlist-count {
  position: absolute;
  top: -14px;
  left: 18px;

  min-width: 19px;
  height: 19px;

  display: grid;
  place-items: center;

  padding: 0 5px;

  border-radius: 999px;

  background: var(--ws-orange);
  color: white;

  font-size: 10px;
}
/* ============================================================
   PAGINATION
   ============================================================ */

.ws-pagination {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 7px;

  margin-top: 35px;
}

.ws-pagination a {
  min-width: 40px;
  height: 40px;

  padding: 0 11px;

  display: grid;
  place-items: center;

  border: 1px solid var(--ws-border);

  border-radius: 5px;

  background: white;

  color: #536173;

  font-size: 13px;

  font-weight: 600;
}

.ws-pagination a:hover {
  border-color: var(--ws-orange);

  color: var(--ws-orange);
}

.ws-pagination a.active {
  border-color: var(--ws-orange);

  background: var(--ws-orange);

  color: white;
}

.ws-pagination-arrow {
  font-size: 22px !important;
}

.ws-pagination-dots {
  padding: 0 4px;

  color: #9aa1a9;
}

@media (max-width: 560px) {
  .ws-logo-image {
    width: 60px;
    height: 60px;
  }
}

/* ============================================================
   CORPORATE PAGE
   ============================================================ */

.ws-corporate-hero {
  background: #f7f7f7;
}

.ws-corporate-hero-inner {
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(90deg, #f7f7f5 0%, #faf9f7 48%, #fff0e7 100%);
}

.ws-corporate-hero-copy {
  position: relative;
  z-index: 5;
  width: 50%;
  padding-left: 50px;
}

.ws-corporate-hero-copy h1 {
  margin: 0;
  color: var(--ws-blue);
  font-size: 45px;
  line-height: 1.13;
}

.ws-corporate-hero-copy h1 span {
  display: block;
  color: var(--ws-orange);
}

.ws-corporate-hero-copy h2 {
  margin: 22px 0 8px;
  color: #364152;
  font-size: 20px;
}

.ws-corporate-hero-copy p {
  margin: 0 0 26px;
  color: #8a929c;
  font-size: 13px;
}

.ws-corporate-hero-products {
  position: absolute;
  right: 10px;
  bottom: 0;
  width: 62%;
  height: 94%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
}

.ws-corporate-hero-products img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: right bottom;
}

/* Benefits */

.ws-corporate-benefits {
  padding: 48px 0 55px;
  background: #fff;
  text-align: center;
}

.ws-corporate-benefits h2 {
  margin: 0 0 38px;
  color: var(--ws-blue);
  font-size: 22px;
}

.ws-corporate-benefits h2 span {
  color: var(--ws-orange);
}

.ws-corporate-benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

.ws-corporate-benefit {
  padding: 10px 15px;
}

.corp-benefit-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.corp-benefit-icon img {
  display: block;
  max-width: 90px;
  max-height: 90px;
  object-fit: contain;
}

.ws-corporate-benefit h3 {
  margin: 0 0 9px;
  color: #2f3946;
  font-size: 13px;
}

.ws-corporate-benefit p {
  margin: 0;
  color: #8b929b;
  font-size: 10px;
  line-height: 1.6;
}

/* Industries */

.ws-corporate-industries {
  padding: 40px 0 55px;
  background: #f8f9fa;
  text-align: center;
}

.ws-corporate-industries h2 {
  margin: 0 0 30px;
  color: var(--ws-blue);
  font-size: 21px;
}

.ws-corporate-industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.ws-industry-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #edf0f2;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(20, 35, 55, 0.04);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.ws-industry-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(20, 35, 55, 0.09);
}

.ws-industry-card > img {
  width: 100%;
  height: 145px;
  display: block;
  object-fit: cover;
}

.ws-industry-label {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  text-align: center;
}

.ws-industry-label strong {
  color: #374151;
  font-size: 11px;
  line-height: 1.35;
}

/* Process */

.ws-corporate-process {
  padding: 45px 0 60px;
  text-align: center;
}

.ws-corporate-process h2 {
  margin: 0 0 35px;
  color: var(--ws-blue);
  font-size: 22px;
}

.ws-corporate-process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 15px;
}

.ws-process-circle {
  width: 92px;
  height: 92px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: #fafafa;
}

.ws-process-circle img {
  width: 82px;
  height: 82px;
  display: block;
  object-fit: contain;
}

.ws-process-step > span {
  color: var(--ws-orange);
  font-size: 12px;
  font-weight: 700;
}

.ws-process-step h3 {
  margin: 6px 0 7px;
  color: #35404d;
  font-size: 12px;
}

.ws-process-step p {
  margin: 0;
  color: #8b929a;
  font-size: 10px;
  line-height: 1.5;
}

.ws-process-arrow {
  padding-top: 35px;
  color: #afb5bc;
  font-size: 27px;
}

/* Contact */

.ws-corporate-contact {
  padding: 0 0 55px;
}

.ws-corporate-contact-box {
  display: grid;
  grid-template-columns: 370px 1fr;
  gap: 45px;
  padding: 35px;
  border-radius: 8px;
  background: #f6f7f8;
}

.ws-corporate-contact-info h2 {
  margin: 0 0 30px;
  color: var(--ws-blue);
  font-size: 27px;
  line-height: 1.25;
}

.ws-corporate-contact-info h2 span {
  color: var(--ws-orange);
}

.corp-contact-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 17px;
  color: #525e6b;
  font-size: 12px;
}

.corp-contact-line strong {
  color: var(--ws-blue);
  font-size: 19px;
}

.ws-corporate-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ws-form-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.ws-corporate-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.ws-corporate-form label {
  display: block;
  margin-bottom: 6px;
  color: #687381;
  font-size: 10px;
}

.ws-corporate-form input,
.ws-corporate-form textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #e0e4e8;
  border-radius: 4px;
  outline: 0;
  background: #fff;
  font-family: inherit;
}

.ws-corporate-form input:focus,
.ws-corporate-form textarea:focus {
  border-color: var(--ws-orange);
}

.ws-corporate-form button {
  height: 44px;
  border: 0;
  border-radius: 4px;
  background: var(--ws-orange);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.ws-corporate-form button:hover {
  background: var(--ws-orange-hover);
}

.ws-corporate-success {
  margin-bottom: 15px;
  padding: 13px 15px;
  border-radius: 5px;
  background: #eaf8ef;
  color: #16894d;
  font-size: 12px;
}

@media (max-width: 1100px) {
  .ws-corporate-benefits-grid,
  .ws-corporate-industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ws-corporate-contact-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .ws-corporate-hero-inner {
    min-height: 620px;
    align-items: flex-start;
  }

  .ws-corporate-hero-copy {
    width: 100%;
    padding: 40px 25px 0;
    text-align: center;
  }

  .ws-corporate-hero-products {
    width: 95%;
    height: 310px;
    right: 2.5%;
    bottom: 10px;
  }

  .ws-corporate-hero-products img {
    object-position: center bottom;
  }

  .ws-corporate-process-grid {
    grid-template-columns: 1fr;
  }

  .ws-process-arrow {
    padding: 0;
    transform: rotate(90deg);
  }
}

@media (max-width: 650px) {
  .ws-corporate-benefits-grid,
  .ws-corporate-industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ws-corporate-form-grid {
    grid-template-columns: 1fr;
  }

  .ws-industry-card > img {
    height: 130px;
  }
}

@media (max-width: 500px) {
  .ws-corporate-hero-inner {
    min-height: 560px;
  }

  .ws-corporate-hero-copy h1 {
    font-size: 32px;
  }

  .ws-corporate-hero-copy h2 {
    font-size: 17px;
  }

  .ws-corporate-hero-products {
    height: 250px;
  }
}

@media (max-width: 400px) {
  .ws-corporate-benefits-grid,
  .ws-corporate-industries-grid {
    grid-template-columns: 1fr;
  }

  .ws-industry-card > img {
    height: 180px;
  }
}
/* =========================================================
   CORPORATE PAGE — TYPOGRAPHY
   ========================================================= */

.ws-corporate-hero-copy h1 {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.08;
}

.ws-corporate-hero-copy h2 {
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.3;
}

.ws-corporate-hero-copy p {
  font-size: 18px;
  line-height: 1.6;
}

.ws-corporate-benefits h2,
.ws-corporate-industries h2,
.ws-corporate-process h2 {
  font-size: 32px;
  line-height: 1.3;
}

.ws-corporate-benefit h3,
.ws-industry-label strong,
.ws-process-step h3 {
  font-size: 18px;
  line-height: 1.4;
}

.ws-corporate-benefit p,
.ws-process-step p {
  font-size: 15px;
  line-height: 1.65;
}

.ws-corporate-contact-info h2 {
  font-size: 34px;
}

.corp-contact-line {
  font-size: 15px;
  line-height: 1.5;
}

.ws-corporate-form label {
  font-size: 14px;
  font-weight: 600;
}

.ws-corporate-form input,
.ws-corporate-form textarea {
  font-size: 16px;
  line-height: 1.5;
}

.ws-corporate-form button {
  font-size: 16px;
}

.ws-corporate-success,
.ws-checkout-errors {
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 800px) {
  .ws-corporate-benefits h2,
  .ws-corporate-industries h2,
  .ws-corporate-process h2 {
    font-size: 26px;
  }

  .ws-corporate-contact-info h2 {
    font-size: 29px;
  }

  .ws-corporate-hero-copy p {
    font-size: 16px;
  }
}
/* =========================================================
   CORPORATE HERO — RESPONSIVE
   ========================================================= */

.ws-corporate-hero {
  overflow: hidden;
}

.ws-corporate-hero-inner {
  min-height: clamp(420px, 36vw, 520px);
}

/* Smaller laptops and tablets */

@media (max-width: 1050px) {
  .ws-corporate-hero-copy {
    width: 52%;
    padding-left: 35px;
  }

  .ws-corporate-hero-copy h1 {
    font-size: clamp(38px, 4.5vw, 50px);
  }

  .ws-corporate-hero-products {
    width: 60%;
  }
}

/* Tablet and mobile: text above image */

@media (max-width: 800px) {
  .ws-corporate-hero-inner {
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
  }

  .ws-corporate-hero-copy {
    width: 100%;
    padding: 38px 24px 12px;
    text-align: center;
  }

  .ws-corporate-hero-copy h1 {
    font-size: clamp(34px, 8vw, 44px);
  }

  .ws-corporate-hero-copy h2 {
    margin: 16px 0 8px;
    font-size: clamp(20px, 4.5vw, 25px);
  }

  .ws-corporate-hero-copy p {
    margin-bottom: 20px;
    font-size: 16px;
  }

  .ws-corporate-hero-products {
    width: 100%;
    height: auto;
    margin: 8px 0 0;
    padding: 0 12px;
  }

  .ws-corporate-hero-products img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center bottom;
  }
}

/* Phones */

@media (max-width: 500px) {
  .ws-corporate-hero-copy {
    padding: 30px 18px 10px;
  }

  .ws-corporate-hero-copy h1 {
    font-size: 34px;
  }

  .ws-corporate-hero-copy h2 {
    font-size: 19px;
  }

  .ws-corporate-hero-copy p {
    font-size: 15px;
  }

  .ws-corporate-hero-copy .ws-orange-button {
    width: 100%;
    max-width: 290px;
  }

  .ws-corporate-hero-products {
    width: 100%;
    margin: 10px 0 0;
    padding: 0 8px;
  }
}

.invoice-sheet {
    width: 210mm;
    min-height: 297mm;
    margin: 20px auto;
    padding: 12mm 10mm;
    background: #fff;
    box-sizing: border-box;
}

@media print {
    body {
        margin: 0;
        background: #fff;
    }

    .admin-sidebar,
    .admin-topbar,
    .invoice-actions {
        display: none !important;
    }

    .invoice-sheet {
        width: 210mm;
        min-height: 297mm;
        margin: 0;
        box-shadow: none;
    }

    @page {
        size: A4;
        margin: 0;
    }
}
/* ---------------- invoices ---------------- */

.invoice-form {
  display: grid;
  gap: 18px;
}

.invoice-section {
  margin: 0;
}

.invoice-section .form-group input,
.invoice-section .form-group select,
.invoice-section .form-group textarea {
  width: 100%;
}

.invoice-add-row-btn {
  border: 0;
  border-radius: 8px;
  padding: 9px 14px;
  background: #e5e7eb;
  color: #111827;
  font-weight: 700;
  cursor: pointer;
}

.invoice-add-row-btn:hover {
  background: #d1d5db;
}

.invoice-items-table input {
  width: 100%;
  min-width: 90px;
  border: 1px solid #d1d5db;
  border-radius: 7px;
  padding: 8px;
  font-family: inherit;
}

.invoice-items-table .invoice-description {
  min-width: 240px;
}

.invoice-remove-row {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 7px;
  background: #fee2e2;
  color: #991b1b;
  font-size: 22px;
  cursor: pointer;
}

.invoice-total-box {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  font-size: 18px;
}

.invoice-total-box strong {
  font-size: 24px;
}

@media (max-width: 750px) {
  .invoice-section .admin-panel-header {
    align-items: stretch;
  }

  .invoice-add-row-btn {
    width: 100%;
  }
}
.invoice-view-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.invoice-info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 25px 0;
  background: #e5e7eb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
}

.invoice-info-strip > div {
  padding: 14px 16px;
  background: #fff;
}

.invoice-info-strip span {
  display: block;
  margin-bottom: 5px;
  font-size: 13px;
  color: #6b7280;
}

.invoice-admin-total {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 25px;
  margin-top: 20px;
  font-size: 18px;
}

.invoice-admin-total strong {
  font-size: 24px;
}

.invoice-note {
  margin-top: 25px;
  padding: 16px;
  background: #f8fafc;
  border-radius: 10px;
}

.invoice-note p {
  margin-bottom: 0;
}

.invoice-status-form {
  margin-top: 25px;
}

@media (max-width: 700px) {
  .invoice-info-strip {
    grid-template-columns: 1fr;
  }
}
.order-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------------- product import ---------------- */

.admin-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.import-upload-panel {
  margin-bottom: 18px;
}

.import-format-box {
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #f9fafb;
  line-height: 1.6;
}

.import-format-box code {
  display: inline-block;
  margin-top: 4px;
  font-family: monospace;
  font-size: 13px;
}

.import-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.import-summary-card {
  background: white;
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.import-summary-card span {
  display: block;
  color: #6b7280;
  font-size: 13px;
  margin-bottom: 5px;
}

.import-summary-card strong {
  font-size: 26px;
}

.import-summary-card.ready strong {
  color: #15803d;
}

.import-summary-card.warning strong {
  color: #b45309;
}

.import-summary-card.error strong {
  color: #dc2626;
}

.import-preview-table {
  min-width: 1050px;
}

.import-status-ready {
  background: #dcfce7;
  color: #166534;
}

.import-status-warning {
  background: #fef3c7;
  color: #92400e;
}

.import-status-error {
  background: #fee2e2;
  color: #991b1b;
}

.import-row-messages {
  margin-top: 7px;
}

.import-row-messages small {
  display: block;
  margin-top: 3px;
  line-height: 1.35;
}

.import-row-messages.error {
  color: #b91c1c;
}

.import-row-messages.warning {
  color: #92400e;
}

.import-image-names {
  margin-top: 5px;
}

.import-image-names small {
  display: block;
  color: #6b7280;
  line-height: 1.35;
}

.import-final-actions {
  justify-content: flex-end;
}

.import-final-actions button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 800px) {
  .admin-header-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .import-summary {
    grid-template-columns: 1fr 1fr;
  }
}
.ws-product-category {
  display: block;

  margin-bottom: 4px;

  color: #8b929c;

  font-size: 12px;
  line-height: 1.3;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ws-product-category:hover {
  color: var(--ws-orange);
}
@media (max-width: 900px) {
  .ws-hero-section,
  .ws-corporate-hero {
    display: none;
  }
}
.ws-product-brand {
  margin-top: -3px;
  margin-bottom: 7px;

  font-size: 12px;
  line-height: 1.3;

  color: #777;
  font-weight: 500;
}
.invoice-product-search {
    position: relative;
}

.invoice-items-table {
    width: 100%;
    table-layout: fixed;
    min-width: 900px;
}

.invoice-items-table td {
    vertical-align: middle;
}

.invoice-items-table input {
    width: 100%;
    min-width: 0;
}


/* Product gets most of the available room */

.invoice-product-display {
    width: 100%;
    min-width: 0;
}


/* Compact invoice fields */

.invoice-quantity {
    min-width: 0 !important;
}

.invoice-unit {
    min-width: 0 !important;
}

.invoice-unit-price {
    min-width: 0 !important;
}


/*
|--------------------------------------------------------------------------
| Product autocomplete
|--------------------------------------------------------------------------
*/

.invoice-product-dropdown {
    display: none;

    position: fixed;

    z-index: 99999;

    max-height: 310px;
    overflow-y: auto;

    padding: 6px;

    background: #fff;

    border: 1px solid #d7dde4;
    border-radius: 10px;

    box-shadow:
        0 12px 32px
        rgba(15, 23, 42, 0.16);
}

.invoice-product-dropdown.show {
    display: block;
}


.invoice-product-option {
    display: grid;

    /*
     * Fixed category/brand widths keep
     * every dropdown row aligned.
     */
    grid-template-columns:
        180px
        120px
        minmax(220px, 1fr);

    align-items: center;

    gap: 16px;

    min-height: 42px;

    padding: 9px 12px;

    border-radius: 7px;

    cursor: pointer;

    transition:
        background-color 0.12s ease;
}


.invoice-product-option:hover,
.invoice-product-option.active {
    background: #f1f4f7;
}


.invoice-product-option-category,
.invoice-product-option-brand,
.invoice-product-option-title {
    min-width: 0;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.invoice-product-option-category {
    color: #748091;
    font-size: 12px;
}


.invoice-product-option-brand {
    color: #344054;
    font-size: 13px;
    font-weight: 600;
}


.invoice-product-option-title {
    color: #172033;
    font-size: 13px;
}
@media (max-width: 750px) {

    .invoice-product-dropdown {
        max-height: 260px;
    }

    .invoice-product-option {
        grid-template-columns:
            120px
            90px
            minmax(180px, 1fr);

        gap: 10px;
    }
}