/* =====================================================
   GOOGLE FONT
===================================================== */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&display=swap");

/* =====================================================
   GLOBAL VARIABLES 
===================================================== */
:root {
  --font-primary: "Inter", sans-serif;

  --container-width: 1200px;

  --color-primary: #0e6aed;
  --color-black: #000000;
  --color-dark: #0a2c47;
  --color-gray: #555555;
  --color-white: #ffffff;
  --text: #4b4545;
  --color-border: rgba(0, 0, 0, 0.1);
}

/* =====================================================
   ORIGINAL  
===================================================== */
body {
  line-height: 1.4;
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 14px;
  overflow-x: hidden;
}

* {
  margin: 0;
  box-sizing: border-box;
}

:before,
:after {
  box-sizing: border-box;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 10px;
}

h1 {
  font-size: clamp(20px, 2.3vw, 22px);
}

h2 {
  font-size: clamp(18px, 2.2vw, 21px);
}

h3 {
  font-size: clamp(17px, 2.2vw, 20px);
}

h4 {
  font-size: clamp(16px, 1.8vw, 19px);
}

h5 {
  font-size: clamp(14px, 1.4vw, 18px);
}

h6 {
  font-size: clamp(12px, 1.2vw, 14px);
}

p,
span {
  text-align: justify;
  line-height: 1.4;
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 20px;
  color: var(--text);
  font-family: var(--font-primary);
}

/* =====================================================
   CONTAINER 
===================================================== */
.container {
  padding: clamp(30px, 4vw, 80px) 15px;
  max-width: 1330px;
  margin: 0 auto;
}

.inner-container {
  display: flex;
  gap: clamp(20px, 4vw, 55px);
}

.inner-container>div {
  width: 100%;
}

.inner-container {
  /* padding: clamp(10px, 3vw, 80px) 0px; */
}

main.page-wrapper {
  padding-top: 100px;
}

.off-whiteBg {
  background: #f7f7f7;
}

/* =====================================================
   BUTTONS 
===================================================== */

/* Wrapper */
.header-cta-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* Button */
.btn-quote {
    background-color: transparent;
    color: var(--color-black);
    padding: 10px 20px;
    border: 1px solid var(--color-black);
    border-radius: 8px;
    text-transform: capitalize;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
    display: inline-block;
    transition: background 0.3s ease;
}

.btn--black {
  background-color: var(--color-black);
  color: var(--color-white);
}

.btn-quote:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}

.btn--black:hover {
  background-color: transparent;
  color: var(--color-black);
}

.btn {
  padding: 10px 20px;
  border-radius: 0px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn i.fa {
  padding-right: 5px;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(14, 106, 237, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-dark);
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  background-color: #f8f9fa;
}

.btn.btn-primary.black-border {
  border: 1px solid var(--color-border);
  color: var(--color-dark);
  background: transparent;
}

.btn.btn-primary.is-full {
  width: 100%;
  text-align: center;
  display: block;
}

.d-flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.gap-15 {
  gap: 15px;
}

.mt-15 {
  margin-top: 15px;
}

/* Login / Register Link */
.link-auth {
  font-size: 14px;
  line-height: 1;
  color: var(--color-dark);
}

.link-auth a {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-dark);
  transition: color 0.3s ease;
}

.link-auth a:hover {
  color: var(--color-primary);
}

.video-wrapper {
  margin-bottom: 10px;
  position: relative;
}

/* =====================================================
   ORIGINAL LAYOUT HELPERS 
===================================================== */
.row {
  display: flex;
  flex-wrap: wrap;
}

.v-center {
  align-items: center;
}

/* =====================================================
   HEADER 
===================================================== */
.header {
  display: block;
  width: 100%;
  position: fixed;
  z-index: 99;
  background: var(--color-white);
}

.header .container {
  padding: 10px 15px;
}

.top--header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .item-left {
  flex: 0 0 17%;
}

.header .logo a {
  font-size: 20px;
  color: var(--color-black);
  font-weight: 700;
}

.header .logo a img {
  width: 100%;
  max-width: 250px;
  object-fit: cover;
}

.header .item-center {
  flex: 0 0 90%;
}

.header .item-right {
  flex: 0 0 10%;
  display: flex;
  justify-content: flex-end;
}

.header .item-right a {
  font-size: 14px;
  color: var(--color-gray);
  margin-left: 10px;
  transition: color 0.3s ease;
}

/* =====================================================
   DESKTOP MENU 
===================================================== */
.header .menu>ul>li {
  display: inline-block;
  line-height: 1.3;
  margin-left: 25px;
}

.header .menu>ul>li>a {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-black);
  text-transform: capitalize;
  transition: color 0.3s ease;
  padding: 10px 0px;
}
ul.menu-main li a {
    position: relative;
}

ul.menu-main li a::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 1px;
    width: 100%;
    transform: scaleX(0);
    transition: transform 0.2s ease-out;
    transform-origin: right;
    background: #828282;
}
ul.menu-main li a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.header .menu>ul>li .sub-menu li.has-inner-menu:hover>ul {
  display: block;
}

.header .menu>ul>li .sub-menu li.has-inner-menu:hover>ul {
  display: block;
  position: absolute;
  z-index: 400;
  background-color: var(--color-white);
  box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3);
  transition: all 0.5s ease;
  margin-top: 0px;
  opacity: 1;
  top: 0;
  min-width: 240px;
  /* visibility: hidden; */
  left: 100% !important;
}

/* =====================================================
   SUB MENU 
===================================================== */
.header .menu>ul>li .sub-menu {
  position: absolute;
  z-index: 400;
  background-color: var(--color-white);
  box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
  margin-top: 25px;
  opacity: 0;
  min-width: 240px;
  visibility: hidden;
}
.sub-menu ul {
    padding: 0 16px;
}

.header .menu>ul>li.menu-item-has-children .sub-menu ul>li>a {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-gray);
  text-transform: capitalize;
  transition: color 0.3s ease;
  display: flex;
  justify-content: space-between;
  width: fit-content;
}

.dropdown-icon {
    display: none;
}

li.has-inner-menu {
    position: relative;
}

.header .menu>ul>li.menu-item-has-children .sub-menu ul>li {
  line-height: 1;
  padding: 14px 15px;
  border-bottom: 1px solid #cccccc4f;
}

.header .menu>ul>li.menu-item-has-children .sub-menu ul>li:last-child {
  border-bottom: 0px;
}

.header .menu>ul>li:first-child {
  margin-left: 0px;
}

.header .menu>ul>li .sub-menu>ul>li>a {
  font-size: 15px;
  line-height: 1;
  color: var(--color-gray);
  display: inline-block;
}

.header .menu>ul>li ul.inner-sub-menu {
  display: none;
}

/* =====================================================
   MEGA MENU 
===================================================== */
.header .menu>ul>li .sub-menu.mega-menu {
  left: 50%;
  transform: translateX(-50%);
}

.header .menu>ul>li .sub-menu.mega-menu-column-4 {
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 15px;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item {
  flex: 0 0 25%;
  padding: 0 15px;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item .title {
  font-size: 14px;
  color: var(--color-primary);
  font-weight: 400;
  padding: 10px 0;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-top: 10px;
}

/* =====================================================
   HOVER COLORS 
===================================================== */
.header .menu>ul>li:hover>a,
.header .item-right a:hover,
.header .menu>ul>li .sub-menu>ul>li>a:hover,
.header .menu>ul>li .sub-menu>ul>li ul.inner-sub-menu>li>a:hover {
  color:#828282;
}

/* =====================================================
   HOMEPAGE
===================================================== */

/******BANNER*******/
.hero-banner {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

p.banner-description {
  font-size: 27px;
  margin-bottom: clamp(10px, 3vw, 30px);
}

span.sub-title {
  color: var(--color-dark);
  display: block;
}

.inner-container img {
  width: 100%;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.video-wrapper:after {
    content: '';
    display: block;
    padding-bottom: 56.5%;
}

/*******box-container*******/
.box-container {
  background: #f6f7f8;
  border: 1px dashed #91a1ad;
  border-radius: 4px;
  padding: 20px;
  max-width: 100%;
  width: 100%;
  text-align: center;
  /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);*/
}

.box-container .icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
}

.box-container .icon-box {
width: 90%;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    height: auto;
}

.box-container .icon-placeholder {
  font-size: 48px;
  color: #64748b;
  z-index: 1;
}

.box-container h3 {
  color: #0a2c47;
  width: 100%;
  margin-bottom: 0px;
      font-size: clamp(24px, 4vw, 32px);
}

.file-types {
  font-size: 12px;
  width: 100%;
  color: #5a738f;
  margin-bottom: 0px;
  line-height: 1.2;
  text-align: center;
}

.security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  color: #bbb6b9;
  font-size: 14px;
  margin-top: 0px;
  margin-bottom: 0px;
  line-height: 1;
  text-align: center;
}

.security-note::before {
  content: "🔒";
  font-size: 10px;
}

.patent-info {
  color: #bbb6b9;
  font-size: 12px;
  line-height: 1.3;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.service-container {
  display: flex;
  gap: 40px;
}

.service-container>div {
  width: 100%;
}

span.service-italic {
  font-style: italic;
  font-size: 20px;
  margin-bottom: 10px;
  display: inline-flex;
  font-family: "Playfair Display", serif;
}

.inner-items h4 {
  margin-bottom: 20px;
}

.get-Video {
  padding-top: 30px;
}

.pagination {
  width: 100%;
}

.pagination nav {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 30px;
}

.pagination nav div:last-child {
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.pagination nav div:last-child p.small.text-muted {
  margin-bottom: 0px;
}

.pagination nav div:last-child ul.pagination {
  margin-top: 0px;
  display: flex;
  justify-content: flex-end;
}

.pagination nav div:first-child ul {
  margin-top: 0px;
}

.pagination nav ul.pagination {
  gap: 10px;
}

li.page-item a.page-link {
  color: var(--color-primary);
}

.more-view .dots-btn {
  position: relative;
  width: 18px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
}

.more-view .dots-btn::before,
.more-view .dots-btn::after,
.more-view .dots-btn span {
  content: "";
  position: absolute;
  left: 50%;
  width: 4px;
  height: 4px;
  background: #333;
  border-radius: 50%;
  transform: translateX(-50%);
}

.more-view .dots-btn::before {
  top: 2px;
}

.more-view .dots-btn span {
  top: 7px;
}

.more-view .dots-btn::after {
  top: 12px;
}

/* .more-view {
  position: relative;
  overflow: visible;
} */
.more-view .dropdown-menu {
  width: 200px;
  position: absolute;
  display: flex;
  flex-direction: column;
  padding: 0px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  top: 60%;
  z-index: 999;
}

td.more-view {
  position: relative;
}

.more-view .dropdown-menu {
  display: none;
}

.more-view .dropdown-menu .dropdown-item {
  padding: 10px 20px;
  border-bottom: 1px solid #ddd;
}

.more-view .dropdown-menu>div:last-child {
  border-bottom: 0px;
}

.more-view .dropdown-menu .dropdown-item:hover {
  color: var(--color-primary);
}

/*======================================================
INSTANT DASHBOARD
=====================================================*/
.instant-dashboard section {
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.instant-dashboard .top-bar {
  background: var(--color-white);
  padding: 10px;
  border-bottom: 1px solid var(--color-border);
  border-radius: 8px 8px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.instant-dashboard .top-bar-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.instant-dashboard .back-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--color-dark);
  padding: 0;
}

.instant-dashboard .file-info h2 {
  margin: 0;
  color: var(--color-dark);
  line-height: 1;
  font-weight: 400;
  font-size: 18px;
}

.instant-dashboard .quote-id {
  font-size: 11px;
  color: var(--color-gray);
  margin-bottom: 0.25rem;
}

.instant-dashboard .top-bar-actions {
  display: flex;
  gap: 1rem;
}

.instant-dashboard img.quote--image {
  height: 60px;
  width: 60px;
  border: 1px solid #ddd;
  border-radius: 10px;
  object-fit: contain;
}

.instant-dashboard .btn {
  padding: 8px 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-primary);
}

.instant-dashboard .quote-id a {
  color: var(--color-primary);
}

.instant-dashboard .btn-cancel {
  background: var(--color-white);
  color: var(--color-dark);
  border: 1px solid var(--color-border);
}

.instant-dashboard .file-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.instant-dashboard .btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.instant-dashboard .section-content {
  padding: 10px;
  background: var(--color-white);
}

.instant-dashboard .content-grid {
  display: flex;
  gap: 10px;
}

.files-section,
.price-section {
  width: calc(100% / 4 - 5px);
}

.form-section {
  width: calc(100% / 2 - 5px);
}

/* Left Column - Files */
.instant-dashboard .files-section h3 {
  font-size: 14px;
  margin-bottom: 0.5rem;
}

.instant-dashboard .files-hint {
  font-size: 11px;
  color: var(--color-gray);
  margin-bottom: 1rem;
}

.instant-dashboard .upload-area {
  border: 1px dashed #cfe1fb;
  text-align: center;
  background: #f6f9ff;
  margin-bottom: 1rem;
  padding: 10px;
  text-align: center;
}

.instant-dashboard .upload-icon {
  font-size: 32px;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.instant-dashboard .upload-text {
  font-size: 11px;
  margin-bottom: 0.25rem;
  text-align: center;
}

.instant-dashboard .upload-size {
  font-size: 10px;
  color: var(--color-gray);
  margin-bottom: 0;
  text-align: center;
}

.instant-dashboard .file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  background: #f7f7f7;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

.instant-dashboard .file-name {
  font-size: 11px;
  color: var(--color-dark);
  margin-bottom: 0px;
}

.instant-dashboard .file-badge {
  color: var(--color-dark);
  padding: 4px;
  border-radius: 4px;
  font-size: 9px;
  margin-bottom: 0px;
  border: 1px solid var(--color-dark);
}

.instant-dashboard .model-viewer {
  background: #f7f7f7;
  border-radius: 8px;
  padding: 0px;
  text-align: center;
  margin-top: 1rem;
  position: relative;
}

.model-viewer p {
  padding-top: 10px;
  text-align: center;
}

.instant-dashboard .model-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 14px;
  overflow: hidden;
}

.instant-dashboard .model-dimensions {
  font-size: 9px;
  color: var(--color-gray);
  margin-top: 0px;
  margin-bottom: 0;
  padding: 10px;
}

.model-controls {
  position: absolute;
  top: 40px;
  right: 7px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.ctrl-btn {
  width: 25px;
  height: 25px;
  border-radius: 0px;
  background: #fff;
  border: 1px solid #ddd;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: 0.2s;
}

.ctrl-btn:hover {
  background: var(--color-primary);
  color: #fff;
}

.ctrl-btn:hover i {
  color: var(--color-white);
}

/* Middle Column - Form */
.instant-dashboard .form-section h3 {
  font-size: 16px;
  margin-bottom: 1.5rem;
  color: var(--color-dark);
}

.instant-dashboard .form-group {
  margin-bottom: 15px;
}

.instant-dashboard .form-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-dark);
  display: block;
  margin-bottom: 0.5rem;
}

.instant-dashboard .form-input,
.instant-dashboard .form-select {
  width: 100%;
  padding: 0.7rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-size: 12px;
  font-family: var(--font-primary);
  color: var(--color-dark);
  background-color: var(--color-white);
}

.instant-dashboard .form-input:focus,
.instant-dashboard .form-select:focus {
  outline: none;
  border-color: var(--color-primary);
}

.instant-dashboard .form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7rem center;
  padding-right: 2.5rem;
}

.instant-dashboard .link-text {
  color: var(--color-primary);
  font-size: 11px;
  cursor: pointer;
  text-decoration: none;
  display: inline;
  margin-bottom: 0.5rem;
}

.instant-dashboard .model-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instant-dashboard .price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 0;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  /* overflow: hidden; */
}

.instant-dashboard .price-table th {
  text-align: left;
  padding: 0.75rem;
  background: #f7f7f7;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-dark);
  border-bottom: 1px solid var(--color-border);
  text-align: end;
}

.instant-dashboard .price-table th:last-child,
.instant-dashboard .price-table td:last-child {
  color: var(--color-primary);
}

.instant-dashboard .price-table td {
  padding: 0.75rem;
  font-size: 11px;
  color: var(--color-gray);
  border-bottom: 1px solid var(--color-border);
  text-align: end;
}

.instant-dashboard .price-table tbody tr:last-child td {
  border-bottom: none;
}

.instant-dashboard .savings {
  color: var(--color-primary);
  font-weight: 500;
}

.form-section .form-group:not(:last-child) {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 15px;
}

.instant-dashboard .see-more {
  color: var(--color-dark);
  font-size: 11px;
  text-align: center;
  padding: 0.5rem;
  cursor: pointer;
  border: 1px solid var(--color-border);
}

.instant-dashboard .notes-area {
  width: 100%;
  min-height: 120px;
  padding: 0.7rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-size: 11px;
  font-family: var(--font-primary);
  resize: vertical;
}

/* Right Column - Price */
.instant-dashboard .price-section h3 {
  font-size: 16px;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.instant-dashboard .price-box {
  background: #ffffff;
  padding: 10px;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0px 0px 5px #ccc;
}

.price-box h4 {
  color: var(--color-dark);
  font-weight: 400;
  font-size: 16px;
  text-align: justify;
}

.instant-dashboard .price-label {
  font-size: 11px;
  color: var(--color-gray);
  margin-bottom: 0.5rem;
}

.instant-dashboard .price-amount {
  font-size: 26px;
  font-weight: 300;
  color: var(--color-gray);
  text-align: start;
}

.instant-dashboard .price-note {
  font-size: 10px;
  color: var(--color-gray);
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.extra-row {
  display: none;
}

/* =====================================================
           DASHBOARD SPECIFIC STYLES
        ===================================================== */
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.welcome-text {
  font-size: 24px;
  font-weight: 400;
  color: var(--color-dark);
  margin: 0;
}

.projects-title {
  font-size: 24px;
  font-weight: 400;
  color: var(--color-dark);
  margin: 10px;
}

/* Upload Section */
.upload-section {
  border-radius: 0px;
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  transition: all 0.3s ease;
  border: 1px dashed #cfe1fb;
  text-align: center;
  background: #f6f9ff;
}

.upload-section.drag-over {
  background: #e3f2fd;
  border-color: #0d5dd1;
}

.upload-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  /* background: linear-gradient(135deg, #0e6aed 0%, #5ba4ff 100%); */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: white;
}

.upload-title {
  font-size: 16px;
  color: var(--color-dark);
  margin-bottom: 8px;
  text-align: center;
}

.upload-subtitle {
  font-size: 12px;
  color: var(--color-gray);
  margin-bottom: 10px;
  text-align: center;
}

.dashboard--upload {
  width: 65% !important;
}

div#projectsList {
  width: 35%;
}

.upload-formats {
  font-size: 14px !important;
  color: var(--color-gray);
  margin-bottom: 10px;
  line-height: 1.6;
  text-align: center;
}

.upload-actions {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 10px;
}

.upload-patent-notice {
  font-size: 9px;
  color: var(--color-gray);
  margin: 0;
  text-align: center;
}

#fileInput {
  display: none;
}

.uploaded-files {
  margin-top: 20px;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.file-item {
  background: #f8f9fa;
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.file-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.file-name {
  font-size: 12px;
  color: var(--color-dark);
  font-weight: 500;
}

.file-size {
  font-size: 10px;
  color: var(--color-gray);
}

.remove-file {
  background: none;
  border: none;
  color: #dc3545;
  cursor: pointer;
  font-size: 16px;
  padding: 0 5px;
}

/* Recent Orders Section */
.orders-section {
  background: var(--color-white);
  border-radius: 8px;
  padding: 0px;
}

.section-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 20px;
}

.tabs {
  display: flex;
  gap: 30px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 25px;
}

.tab {
  padding: 10px 0;
  font-size: 13px;
  color: var(--color-gray);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.tab.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
  font-weight: 500;
}

.search-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.search-input {
  flex: 1;
  max-width: 300px;
  padding: 10px 15px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-size: 12px;
  font-family: var(--font-primary);
}

.search-input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.info-icon {
  width: 20px;
  height: 20px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--color-gray);
  cursor: pointer;
}

/* Table */
.orders-table {
  width: 100%;
  border-collapse: collapse;
}

.orders-table thead {
  background: #f8f9fa;
}

.orders-table th {
  padding: 5px;
  text-align: left;
  font-size: 10px;
  font-weight: 600;
  color: var(--color-dark);
  text-transform: uppercase;
}

.orders-table td {
  padding: 5px;
  border-bottom: 1px solid var(--color-border);
  font-size: 12px;
  color: var(--color-dark);
}

.quote-id {
  color: var(--color-primary);
  font-weight: 500;
  cursor: pointer;
}

.quote-id:hover {
  text-decoration: underline;
}

.product-thumb {
  width: 50px !important;
  height: 50px;
  border-radius: 4px;
  /* border: 1px solid var(--color-border); */
  object-fit: cover;
}

.status-badge {
  display: inline-block;
  padding: 4px 4px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 500;
  background: #e3f2fd;
  color: #1976d2;
  margin-bottom: 0px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
  font-size: 12px;
  color: var(--color-gray);
}

.pagination-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pagination-btn {
  padding: 5px 10px;
  border: 1px solid var(--color-border);
  background: white;
  border-radius: 4px;
  cursor: pointer;
  font-size: 11px;
  transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.page-number {
  padding: 5px 10px;
  border: 1px solid var(--color-border);
  background: white;
  border-radius: 4px;
  cursor: pointer;
  font-size: 11px;
  transition: all 0.3s ease;
}

.page-number.active {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.view-all-link {
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
}

.view-all-link:hover {
  text-decoration: underline;
}

/* Projects List Sidebar */
/* .projects-list {
	width: 380px !important;
	flex-shrink: 0;
} */

.project-card {
  background: var(--color-white);
  border-radius: 4px;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid var(--color-border);
}

.project-actions a.btn.btn-primary.black-border {
  text-align: center;
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0px;
}

.project-id {
  font-size: 11px;
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 5px;
}

.project-price {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-dark);
  margin: 0;
}

.project-thumb {
  height: fit-content;
  background: #f8f9fa;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  /* border: 1px solid var(--color-border); */
}

.project-details {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.detail-item {
  font-size: 10px;
  display: flex;
  gap: 5px;
}

.detail-label {
  display: block;
  margin-bottom: 0px;
  color: var(--color-dark);
  font-weight: 500;
  font-size: 10px;
}

/* .tab--content {
display: none;
} */
div#pageNumbers {
  display: flex;
  gap: 4px;
}

.detail-value {
  display: block;
  margin-bottom: 0px;
  color: var(--color-gray);
  font-size: 10px;
}

.project-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.btn-full {
  width: 100%;
  text-align: center;
}

.no-results {
  text-align: center;
  padding: 40px;
  color: var(--color-gray);
  font-size: 14px;
}

.dashboard--upload {
  width: 65%;
}

/* ===============================
   VIEW QUOTATION
================================ */
.View-Quotation__wrapper {
  width: 100%;
}

/* TITLE BAR */
.View-Quotation__titleBar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.View-Quotation__titleActions {
  display: flex;
  gap: 10px;
}

a#collapseAll {
  font-size: 12px;
  color: var(--color-primary);
}

/* LAYOUT */
.View-Quotation__layout {
  display: flex;
  gap: 25px;
}

/* PART CARD */
.View-Quotation__partCard {
  background: var(--color-white);
  border: 1px solid var(--color-border);
}

.View-Quotation__partTop {
  display: grid;
  grid-template-columns: 110px 1fr 140px;
  gap: 15px;
  padding: 15px;
  border-bottom: 1px solid var(--color-border);
}

.View-Quotation__preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.View-Quotation__version {
  font-size: 10px;
  border: 1px solid var(--color-border);
  padding: 2px 6px;
  margin-left: 6px;
  background: #f6f7f8;
}

.View-Quotation__fileActions {
  display: flex;
  gap: 5px;
  font-size: 11px;
}

.View-Quotation__fileActions a {
  padding: 2px 4px;
  line-height: 1;
  white-space: nowrap;
  font-size: 10px;
  margin-top: 0px !important;
}

.View-Quotation__fileActions a.danger {
  color: #898386;
}

/* QUANTITY */
.View-Quotation__quantity {
  text-align: right;
}

.View-Quotation__qtyBox {
  display: flex;
  justify-content: flex-end;
  gap: 0px;
}

.View-Quotation__qtyBox button {
  border: 1px solid var(--color-border);
  background: transparent;
  padding: 2px 8px;
  width: 25px;
  height: 25px;
}

.View-Quotation__qtyBox span {
  margin-bottom: 0px;
  display: inline-flex;
  padding: 5px;
  line-height: 1;
  width: 25px;
  height: 25px;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

/* PART BODY */
.View-Quotation__partBody {
  padding: 0px;
}

.View-Quotation__editConfig {
  color: var(--color-primary);
  font-size: 12px;
  display: inline-block;
  margin-bottom: 10px;
  border: 1px solid var(--color-primary);
  padding: 10px;
}

.View-Quotation__specList li {
  font-size: 11px;
  margin-bottom: 6px;
}

/* SIDEBAR */
.View-Quotation__priceCard {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 15px;
}

.View-Quotation__priceOption {
  border: 1px solid var(--color-border);
  padding: 12px;
  margin-bottom: 12px;
}

.View-Quotation__priceOption.is-active {
  border-color: var(--color-primary);
}

.View-Quotation__badge {
  background: #e8f1ff;
  color: var(--color-primary);
  font-size: 10px;
  padding: 2px 6px;
  display: inline-block;
}

/* NOTICES */
.View-Quotation__notice {
  font-size: 12px;
  padding: 10px;
  margin: 10px 0;
}
.View-Quotation__priceCard p {
    text-align: start;
}

.View-Quotation__notice.is-warning {
  background: #fff6e5;
}

.View-Quotation__notice.is-info {
  background: #eef4ff;
}

/* SUBTOTAL */
.View-Quotation__subtotal {
  display: flex;
  justify-content: space-between;
  margin: 2px 0;
  font-size: 12px;
}

/* PARTS HEADER */
.View-Quotation__partsHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0px;
  margin-bottom: 0px;
}

.View-Quotation__checkbox {
  display: flex;
  gap: 10px;
  align-items: center;
}

.View-Quotation__checkbox span {
  margin-bottom: 0px;
}

/* PART HEADER */
.View-Quotation__partHeader {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid var(--color-border);
    align-items: center;
}
.View-Quotation__partRight {
    display: none;
}
.View-Quotation__partLeft {
  display: flex;
  gap: 6px;
  align-items: flex-start;
}

.View-Quotation__partIndex {
  font-size: 12px;
}

.View-Quotation__partRight {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  flex-direction: column;
  flex-grow: 1;
}

.View-Quotation__repeat {
  display: flex;
  gap: 4px;
  align-items: center;
  font-size: 12px;
}

.View-Quotation__preview {
  width: 80px;
  height: 60px;
  border: 1px solid var(--color-border);
  /* margin-left: 10px; */
  object-fit: contain;
}

.View-Quotation__inlinePrice .made:last-child {
  flex-direction: column;
  align-items: flex-start;
}

.View-Quotation__partLeft div:last-child h2 {
  color: #0f6aed;
  font-size: 20px;
}

.View-Quotation__partLeft div:last-child {
  margin-left: 10px;
}

/* TOGGLE */
.View-Quotation__switch {
  position: relative;
  width: 36px;
  height: 18px;
  display: inline-block;
}

.View-Quotation__switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* track */
.View-Quotation__switch span {
  position: absolute;
  inset: 0;
  background: #ccc;
  border-radius: 20px;
  transition: background 0.3s;
  cursor: pointer;
}

/* knob */
.View-Quotation__switch span::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  left: 2px;
  top: 2px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s;
}

/* ✅ CHECKED STATE */
.View-Quotation__switch input:checked+span {
  background: var(--color-primary);
}

.View-Quotation__switch input:checked+span::after {
  transform: translateX(18px);
}

label.View-Quotation__radioRow {
  display: flex;
  align-items: center;
  gap: 5px;
}

label.View-Quotation__radioRow span {
  margin-bottom: 0px;
  font-size: 10px;
}

label.View-Quotation__radioRow strong {
  font-size: 12px;
}

.View-Quotation__details {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* INLINE PRICE */
.View-Quotation__inlinePrice {
  width: 260px;
  border: 1px dashed #cfe1fb;
  background: #f6f9ff;
  /* margin-bottom: 1rem; */
  padding: 10px;
  display: flex;
  flex-direction: column;
  height: fit-content;
}

.View-Quotation__inlinePrice p {
  margin-bottom: 0px;
}

.View-Quotation__inlinePrice .made {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.View-Quotation__inlinePrice .made span {
  margin-bottom: 0px;
}

.View-Quotation__inlinePrice .made h3 {
  margin: 0px;
  font-size: 18px;
  font-weight: 500;
}

/* PROMO */
.View-Quotation__promoRow {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--color-border);
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
  margin-top: 10px;
}

/* PROMO DROPDOWN */
.View-Quotation__promoDropdown {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition:
    max-height 0.3s ease,
    opacity 0.2s ease;
  margin-top: 8px;
}

.View-Quotation__promoDropdown.is-open {
  max-height: 100px;
  opacity: 1;
}

.View-Quotation__subtotal span {
  margin-bottom: 0px;
}

/* INPUT */
.View-Quotation__promoInput {
  width: 100%;
  padding: 8px;
  font-size: 12px;
  border: 1px solid var(--color-border);
  margin-bottom: 6px;
}

/* APPLY BUTTON */
.View-Quotation__promoApply {
  width: 100%;
  padding: 8px;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  font-size: 12px;
  cursor: pointer;
}

/* ICON */
.View-Quotation__promoIcon {
  font-weight: bold;
  transition: transform 0.3s;
  margin-bottom: 0px;
}

/* ===============================
   ACCORDION BODY
================================ */
.View-Quotation__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.View-Quotation__partBody {
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease,
    padding 0.25s ease;
  max-height: 0;
  opacity: 0;
}

.View-Quotation__partBody.is-open {
  max-height: 1000px;
  /* enough for content */
  opacity: 1;
  padding: 15px;
}

.View-Quotation__repeat span {
  margin-bottom: 0px;
  white-space: nowrap;
}

/* ===============================
   HEADER CLICK FEEDBACK
================================ */
.View-Quotation__partHeader {
  cursor: pointer;
  gap: 10px;
}

/* ===============================
   CHEVRON ROTATION
================================ */
.View-Quotation__chevron {
    transition: transform 0.3s ease;
    font-size: 14px;
    height: 100%;
    margin: 0 !important;
}

.View-Quotation__partCard.is-open .View-Quotation__chevron {
  transform: rotate(180deg);
}

/*================================
ORDER TRACKING
================================*/
.Order-Status-Table {
  display: flex;
  gap: 40px;
  font-family: Inter, sans-serif;
  padding: 30px;
  background: #fff;
}

/* LEFT CIRCLE */
.Order-Status-Table__summary {
  width: 180px;
}

.Order-Status-Table__circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: conic-gradient(#5b9bd5 0deg 252deg, #e6e6e6 252deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.Order-Status-Table__circle span {
  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 50%;
  font-size: 32px;
  font-weight: 600;
  color: #5b9bd5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0px;
}

/* TABLE */
.Order-Status-Table__table {
  width: 100%;
  border-collapse: collapse;
}

.Order-Status-Table__table td {
  padding: 4px;
  vertical-align: middle;
}

.Order-Status-Table__table .label {
  font-weight: 400;
  width: 208px;
  font-size: 12px;
  line-height: 1.2;
}

.Order-Status-Table__table .progress {
  width: 360px;
}

.Order-Status-Table__table .date {
  width: 120px;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
  white-space: nowrap;
}

/* PROGRESS BARS */
.bar {
  height: 26px;
  border: 1px solid #000;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.bar span {
  position: absolute;
  inset: 0;
  background: #1a0dab;
  color: #fff;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0px;
}

.bar.full span {
  width: 100%;
  margin-bottom: 0px;
}

.bar.sixty span {
  width: 60%;
  margin-bottom: 0px;
}

.bar.empty {
  background: transparent;
}

/* TRACKING */
.tracking button {
  width: 100%;
  height: 34px;
  border: 1px solid #000;
  background: #fff;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .View-Quotation__layout {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   MOBILE MENU 
===================================================== */
.mobile-menu-head,
.mobile-menu-trigger {
  display: none;
}

/* =====================================================
   LOGIN CONTAINER
===================================================== */
.login-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* =====================================================
   LOGIN FORM BOX
===================================================== */
.login-form {
  width: 100%;
  max-width: 380px;
  background: linear-gradient(135deg,
      rgba(14, 106, 237, 0.08),
      rgba(10, 44, 71, 0.08));
  padding: 30px 28px;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--color-border);
}

/* =====================================================
   LOGIN TITLE
===================================================== */
.login-form h2 {
  text-align: center;
  margin-bottom: 25px;
  color: var(--color-dark);
}

/* =====================================================
   FORM GROUP
===================================================== */
.form-group {
  position: relative;
  margin-bottom: 18px;
}

.form-group input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-size: 13px;
  font-family: var(--font-primary);
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(14, 106, 237, 0.15);
}

/* =====================================================
   PASSWORD ICON
===================================================== */
.password-field {
  padding-right: 42px;
}

.password-icon,
.password-icon-two {
  position: absolute;
  top: 39%;
  right: 10px;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-gray);
  font-size: 14px;
}

.password-icon:hover,
.password-icon-two:hover {
  color: var(--color-primary);
}

/* =====================================================
   OPTIONS (REMEMBER ME)
===================================================== */
.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 6px;
}

.remember-me label {
  font-size: 12px;
  color: var(--color-gray);
}

/* =====================================================
   SUBMIT BUTTON
===================================================== */
.submit-btn {
  width: 100%;
  height: 44px;
  border: none;
  border-radius: 6px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: #0c5ed3;
  box-shadow: 0 8px 18px rgba(14, 106, 237, 0.3);
}

/* =====================================================
   SIGNUP LINK
===================================================== */
.signup-link {
  text-align: center;
  margin-top: 18px;
  font-size: 12px;
}

.signup-link a {
  color: var(--color-primary);
  font-weight: 600;
}

.signup-link a:hover {
  text-decoration: underline;
}

.link-auth a.btn.btn--black {
  color: var(--color-white);
  border-radius: 10px;
  padding: 7px 10px;
  border: 1px solid var(--color-dark);
}

.link-auth a.btn.btn--black:hover {
  color: var(--color-dark);
}

/*===================================================
chekout page
===================================================*/
/* ===============================
   CHECKOUT FORM – ACCORDION
================================ */

.checkout-form .accordion-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.checkout-form .accordion-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.checkout-form .accordion-header {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.checkout-form .accordion-header h2 {
  margin: 0;
  font-size: 18px;
}

.checkout-form .edit-icon {
  font-size: 13px;
  color: var(--color-primary);
  cursor: pointer;
  margin-bottom: 0px;
}

/* ===============================
   ACCORDION CONTENT
================================ */

.checkout-form .accordion-content {
  display: none;
  padding: 20px 25px 25px;
}

.checkout-form .accordion-content.active {
  display: block;
}

/* ===============================
   FORM ELEMENTS
================================ */

.checkout-form .form-group {
  margin-bottom: 16px;
}

.checkout-form .form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-dark);
}

.checkout-form .form-group input,
.checkout-form .form-group select {
  width: 100%;
  padding: 10px 12px;
  font-size: 13px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.checkout-form .form-group input:focus,
.checkout-form .form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
}

/* ===============================
   FORM ACTIONS
================================ */

.checkout-form .form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 25px;
  gap: 12px;
}

.checkout-form .back-button {
  margin-bottom: 20px;
}

/* ===============================
   ADDRESS SUMMARY
================================ */

.checkout-form .address-summary-box {
  padding: 20px 25px;
  display: none;
}

.checkout-form .address-summary-box h4 {
  margin-bottom: 15px;
  font-size: 15px;
}

.checkout-form .address-row {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.checkout-form .address-info strong {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

.checkout-form .address-info p {
  margin: 3px 0;
  font-size: 13px;
}

/* ===============================
   CUSTOM RADIO (ADDRESS)
================================ */

.checkout-form .radio-wrap input {
  /* display: none; */
  appearance: none;
  position: absolute;
  height: 100%;
  width: 100%;
}

.checkout-form .radio-custom {
  width: 18px;
  height: 18px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  position: relative;
  display: inline-flex;
  justify-content: center;
}

label.radio-wrap {
  width: 18px;
  height: 18px;
  position: relative;
}

.View-Quotation__sidebar {
  width: 100%;
  max-width: 300px;
}

.checkout-form .radio-custom.checked::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  border-radius: 50%;
  top: 2px;
  left: 2px;
}

.checkout-form .accordion-content h3 {
  font-size: 16px;
}

.checkout-form .radio-card ul {
  list-style: disc;
  padding-left: 20px;
}

.checkout-form .radio-card ul p {
  margin-bottom: 0px;
}

/* ===============================
   EDIT & ADD LINKS
================================ */

.checkout-form .edit-link {
  margin-left: auto;
  background: none;
  border: none;
  font-size: 13px;
  color: var(--color-primary);
  cursor: pointer;
  padding: 4px 10px;
  background: #eef4ff;
  border-radius: 8px;
  line-height: 1;
  border: 0.5px solid var(--color-primary);
}

.checkout-form .add-address-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  font-size: 13px;
  color: var(--color-primary);
  cursor: pointer;
}

.checkout-form .add-address-link:hover {
  text-decoration: underline;
}

/* ===============================
   RADIO BOXES (DELIVERY)
================================ */

.checkout-form .section-group {
  margin: 0 0 25px;
}

.checkout-form .section-group h3 {
  font-size: 15px;
  margin-bottom: 12px;
}

.checkout-form .radio-box {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
  display: flex;
  gap: 12px;
  cursor: pointer;
}

.checkout-form .radio-box.selected {
  border-color: var(--color-primary);
  background: #f8f9ff;
}

.checkout-form .radio-box input {
  accent-color: var(--color-primary);
}

.checkout-form .radio-box label {
  flex: 1;
  font-size: 13px;
}

/* ===============================
   DELIVERY DATE
================================ */

.checkout-form .delivery-info strong {
  font-size: 16px;
  margin-bottom: 6px;
  display: block;
}

.checkout-form .delivery-info p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.checkout-form .price-tag {
  font-size: 15px;
  font-weight: 700;
  margin-left: 10px;
}

.part-description {
  margin-bottom: 20px;
}

.file-row {
  padding-bottom: 20px;
}

/* ===============================
   DISCLAIMER
================================ */

.checkout-form .disclaimer {
  display: flex;
  gap: 10px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 6px;
  margin: 20px 0;
}

.checkout-form .disclaimer input {
  accent-color: var(--color-primary);
}

.checkout-form .disclaimer label {
  font-size: 11px;
  line-height: 1.6;
}

.checkout-form .disclaimer a {
  color: var(--color-primary);
}

.part-descflex {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.part-descflex input {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.View-Quotation__priceOption.is-active {
  font-size: 14px;
}

.View-Quotation__priceOption.is-active p {
  text-align: start;
  margin-bottom: 2px;
  line-height: 1.2;
  font-size: 12px;
}

.View-Quotation__priceOption.is-active strong {
  font-weight: 600;
  font-size: 12px;
}

.View-Quotation__priceOption.is-active>div>div:nth-child(2) span {
  font-size: 12px;
}

.View-Quotation__checkbox span {
  text-align: start;
}

.section-group.add-special-instructions textarea {
  width: 100%;
  min-height: 150px;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
  display: flex;
  gap: 12px;
  cursor: pointer;
}

.btn-wrapperCstm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.btn-wrapperCstm>div {
  margin: 0px !important;
}

.part-descflex label {
  font-weight: 600;
}

.final-note {
  background: #ff000036;
  text-align: center;
  border: 1px solid red;
  padding: 10px;
  color: red;
  margin-bottom: 25px;
}

.btn-with-loader {
  position: relative;
  display: inline-flex;
}

.btn-with-loader img {
  position: absolute;
  left: -46px;
  height: 42px;
  width: 42px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.btn-with-loader-inside-btn img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 3px;
  filter: brightness(0) invert(1);
}

.top-bar-action {
  display: flex;
  width: 100%;
  gap: 14px;
  max-width: 400px;
  justify-content: end;
}

/* ============New Css 2026=================== */
.w-100 {
  width: 100%;
}

/* Image Inside Table */
.table-preview-img {
  max-width: 100%;
  max-height: 78px;
  border-radius: 10px;
  padding: 8px;
  /* background: #fafafa; */
  border: 1px solid #eee;
  transition: 0.3s ease;
}

.table-preview-img:hover {
  transform: scale(1.05);
}

/* Table Improvement */
.order-table-top {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
}

.order-table-top th {
  background: #f8f9fc;
  padding: 12px 15px;
  width: 35%;
  font-weight: 600;
  border-right: 1px solid #eee;
  text-align: left;
}

.order-table-top td {
  padding: 12px 15px;
}

.order-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 25px;
}

.order-table th {
  color: #333;
  font-weight: 600;
  width: 30%;
  padding: 12px 15px;
  border: none;
  border-right: 1px solid #eee;
  vertical-align: middle;
  text-align: left;
}

.order-table td {
  padding: 12px 15px;
  border: none;
  color: #555;
  background: #fff;
}

.order-table tr:not(:last-child) td,
.order-table tr:not(:last-child) th,
.order-table-top tr:not(:last-child) td,
.order-table-top tr:not(:last-child) th {
  border-bottom: 1px solid #eee;
}

.section-title {
  font-size: 16px;
  font-weight: 600;
  margin: 25px 0 12px;
  color: #2c3e50;
  border-left: 4px solid #231f20;
  padding-left: 10px;
}

.payment-table tr.table-active {
  background: #f0f6ff !important;
  font-size: 16px;
}

.order-card {
  border-radius: 15px;
}

.preview-image {
  max-height: 260px;
  padding: 10px;
  background: #fafafa;
  border-radius: 12px;
  border: 1px solid #eee;
}

.order-table thead tr th {
  background: #231f20;
  color: #fff;
  font-size: 20px;
}

.instant-dashboard img.quote--image2 {
  height: 60px;
  width: 60px;
  border-radius: 10px;
  object-fit: contain;
  display: block;
}

.part-config-img {
  border: 1px solid #ddd;
  text-align: center;
  height: 65px;
  width: 65px;
  border-radius: 3px;
  padding: 2px;
}

.more-view .dropdown-menu .dropdown-item a, .orders-table td a {
  color: var(--color-dark);
}
.destroy-quote {
      align-items: center;
    border: none;
    background: #0000;
    color: var(--color-dark);
    text-align: left;
    font-size: 12px;
    padding: 0;
}

.quote-image-wrapper img {
    display: block;
    border: none;
    width: 100% !important;
    height: 100%;
    object-fit: cover;
    transform: scale(1.5);
}

.quote-image-wrapper {
    border: 1px solid var(--color-border);
    height: 50px;
    width: 50px;
    padding: 0;
    overflow: hidden;
}
.order-table-top .quote-image-wrapper {
    width: 200px;
    height: 200px;
}

.order-table-top .quote-image-wrapper .table-preview-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    min-height: 100%;
}
.orders-table td.more-view {
    text-align: center;
}

.View-Quotation__titleActions > a.btn {
    white-space: nowrap;
}
/* =====================================================
   RESPONSIVE
===================================================== */
@media (min-width: 1920px) {
  .container {
    max-width: 1600px;
  }
}

@media (max-width: 968px) {
  .services-wrapper {
    flex-direction: column;
  }

  .services-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }

  .services-content {
    padding: 24px;
  }

  .action-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .header .menu>ul>li.menu-item-has-children:hover .sub-menu {
    margin-top: 10px;
    visibility: visible;
    opacity: 1;
  }
}

@media (max-width: 991px) {
  .header .item-center {
    order: 3;
    flex: 0 0 100%;
  }

  header.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header .item-left,
  .header .item-right {
    flex: 0 0 auto;
  }

  .mobile-menu-trigger span {
    margin-bottom: 0px;
  }

  .header .item-right {
    align-items: center;
  }

  .v-center {
    justify-content: space-between;
  }

  header.header>div:nth-child(2) {
    display: flex;
    justify-content: flex-end;
  }

  .header .mobile-menu-trigger {
    display: flex;
    height: 30px;
    width: 30px;
    margin-left: 0px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
  }

  .header .mobile-menu-trigger span {
    display: block;
    height: 2px;
    background-color: var(--color-dark);
    width: 24px;
    position: relative;
  }

  .header .mobile-menu-trigger span:before,
  .header .mobile-menu-trigger span:after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-dark);
  }

  .header .mobile-menu-trigger span:before {
    top: -6px;
  }

  .header .mobile-menu-trigger span:after {
    top: 6px;
  }

  .header .menu {
    position: fixed;
    width: 320px;
    background-color: var(--color-white);
    left: 0;
    top: 0;
    height: 100%;
    overflow: hidden;
    transform: translate(-100%);
    transition: all 0.5s ease;
    z-index: 1099;
  }

  .header .menu.active {
    transform: translate(0%);
  }

  .menu-overlay {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1098;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease;
  }

  .menu-overlay.active {
    visibility: visible;
    opacity: 1;
  }

  .header .menu>ul>li:first-child {
    margin-left: 25px;
  }

  ul.menu-main {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    padding: 0px 0px 40px;
  }

  .header-cta-wrapper {
    display: none;
  }

  main.page-wrapper {
    padding-top: 68px;
  }

  .header .container {
    margin: 0;
  }
          .header .menu>ul>li {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-left: 0px;
}
.dropdown-icon {
    display: flex;
    margin-bottom: 0px;
    align-items: center;
    justify-content: center;
}
    .header .menu>ul>li:first-child {
        margin-left: 0px;
    }
    /* .header .menu>ul>li {
    border-bottom: 1px solid #e6e6e6;
    padding: 10px 20px;
} */
    ul.menu-main {
        gap: 0px;
    }
    @keyframes slideLeft {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

@keyframes slideRight {
  from { transform: translateX(0); }
  to { transform: translateX(100%); }
}
.mobile-menu-head, .mobile-menu-trigger {
    display: flex;
    width: 100%;
    justify-content: space-between;
    /* padding: 20px 15px; */
}
}

@media (max-width: 1024px) {
  .instant-dashboard .content-grid {
    flex-direction: column;
  }

  .files-section,
  .price-section,
  .form-section,
  .dashboard--upload {
    width: 100%;
  }

  .inner-container {
    flex-direction: column;
  }

  .dashboard--upload,
  div#projectsList {
    width: 100% !important;
  }

  .View-Quotation__fileActions {
    flex-wrap: wrap;
  }

  .projects-list {
    width: 100%;
  }

  /* .View-Quotation__partLeft {
    flex-direction: column;
  } */

  .Order-Status-Table {
    padding: 10px;
    gap: 10px;
    flex-direction: column;
  }

  .View-Quotation__layout {
    flex-direction: column;
  }

  .View-Quotation__sidebar {
    width: 100%;
    max-width: 100%;
  }

  .View-Quotation__priceOption.is-active {
    font-size: 12px;
  }

  .View-Quotation__priceOption.is-active p {
    text-align: start;
    margin-bottom: 2px;
    line-height: 1.2;
    font-size: 12px;
  }

  .View-Quotation__priceOption.is-active strong {
    font-weight: 600;
    font-size: 12px;
  }

  .View-Quotation__priceOption.is-active>div>div:nth-child(2) span {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: clamp(20px, 4vw, 40px) 1.5rem;
    width: 100%;
    max-width: 100%;
  }

  .instant-dashboard .section-content {
    padding: 1.5rem;
  }

  .instant-dashboard .top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 40px 15px;
  }
}

@media (max-width: 500px) {
  main.page-wrapper {
    padding-top: 50px;
  }
}

@media (max-width: 480px) {
  .login-form {
    padding: 25px 20px;
  }
}

header.header.header-swip > .header-cta-wrapper {
    display: none;
}
nav.menu > a.btn-quote {
    display: none;
}
.link-auth span {
    font-size: 14px;
}

a#continue-to-checkout {
    margin-bottom: 10px;
}
@media (max-width: 991px){
/* =========================
   LAYOUT
========================= */
.header .item-center{
	order:3;
	flex:0 0 100%;
}
.header .item-left,
.header .item-right{
	flex:0 0 auto;
}
.v-center{
	justify-content:space-between;
}

/* =========================
   HAMBURGER
========================= */
.header .mobile-menu-trigger{
	display:flex;
	height:30px;
	width:30px;
	margin-left:0px;
	cursor:pointer;
	align-items:center;
	justify-content:center;
}
.header .mobile-menu-trigger span{
	display:block;
	height:2px;
	width:24px;
	background:#333;
	position:relative;
}
.header .mobile-menu-trigger span:before,
.header .mobile-menu-trigger span:after{
	content:"";
	position:absolute;
	left:0;
	width:100%;
	height:100%;
	background:#333;
}
.header .mobile-menu-trigger span:before{ top:-6px; }
.header .mobile-menu-trigger span:after{ top:6px; }

/* =========================
   MOBILE MENU PANEL
========================= */
.header .menu{
	position:fixed;
	top:0;
	left:0;
	width:320px;
	height:100%;
	background:#fff;
	z-index:1099;
	transform:translateX(-100%);
	transition:transform .4s ease;
	overflow:hidden;
}
.header .menu.active{
	transform:translateX(0);
}

/* =========================
   MOBILE HEADER
========================= */
.header .menu .mobile-menu-head{
	display:flex;
	height:50px;
	align-items:center;
	justify-content:space-between;
	border-bottom:1px solid rgba(0,0,0,.1);
	background:#fff;
	position:relative;
	z-index:20;
}

.header .menu .mobile-menu-head .go-back{
	width:50px;
	height:50px;
	border-right:1px solid rgba(0,0,0,.1);
	display:none;
	align-items:center;
	justify-content:center;
	cursor:pointer;
}
.header .menu .mobile-menu-head.active .go-back{
	display:flex;
}

.header .menu .current-menu-title{
	font-size:15px;
	font-weight:500;
	flex:1;
	text-align:center;
}

.header .menu .mobile-menu-close{
	width:50px;
	height:50px;
	border-left:1px solid rgba(0,0,0,.1);
	display:flex;
	align-items:center;
	justify-content:center;
	cursor:pointer;
	font-size:22px;
}

/* =========================
   SCROLL AREA
========================= */
.header .menu .menu-main{
	height:auto;
	overflow:hidden;
	position:relative;
}

/* =========================
   MAIN MENU ITEMS
========================= */
.header .menu .menu-main > li{
	position:relative;
	display:block;
}

.header .menu .menu-main > li > a{
	display:block;
	height:50px;
	line-height:50px;
	padding:0 50px 0 15px;
	border-bottom:1px solid rgba(0,0,0,.1);
	color:#000;
	text-decoration:none;
}

/* =========================
   DROPDOWN ICON
========================= */
.header .menu .dropdown-icon{
	position:absolute;
	top:0;
	right:0;
	width:50px;
	height:50px;
	display:flex;
	align-items:center;
	justify-content:center;
	cursor:pointer;
}
.header .menu .dropdown-icon svg{
	width:14px;
	height:14px;
	transition:transform .3s ease;
}

/* rotate arrow when open */
.has-inner-menu.accordion-open > .dropdown-icon svg{
	transform:rotate(180deg);
}

/* =========================
   SLIDE SUB MENU (LEVEL 2)
========================= */
.header .menu .sub-menu{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:#fff;
	transform:translateX(-100%);
	transition:transform .4s ease;
	overflow-y:auto;
	z-index:15;
	padding:0;
}

.header .menu .sub-menu.active{
	transform:translateX(0);
}

/* =========================
   SUB MENU ITEMS
========================= */
.header .menu .sub-menu li{
	position:relative;
}

.header .menu .sub-menu li > a{
	display:block;
	height:50px;
	line-height:50px;
	padding:0 50px 0 15px;
	border-bottom:1px solid rgba(0,0,0,.08);
	color:#000;
	text-decoration:none;
}
.sub-menu.single-column-menu.active { visibility: visible !important; z-index: 9999 !important; opacity: 1 !important; top: 25px; bottom: auto; position: fixed !important; } .menu-main > li, .has-inner-menu { position: relative; } .menu-item-has-children, .has-inner-menu{ position: relative; }
.header .menu>ul>li.menu-item-has-children .sub-menu ul>li>a { display: flex; width: 100%; align-items: center; justify-content: space-between; padding: 0px; border: 0px; height: 50px; } .sub-menu ul{ padding: 0px; } .header .menu>ul>li.menu-item-has-children .sub-menu ul>li { padding: 0px 15px; }
/* =========================
   INNER ACCORDION (LEVEL 3)
========================= */

.header .menu .inner-sub-menu{
	position:relative !important;
	background:#fff;
	overflow:hidden;

	display:block;
	max-height:0;
	transition:max-height .35s ease;
}

/* OPEN STATE */
.header .menu .inner-sub-menu.accordion-open{
	max-height:500px; /* adjust if needed */
  display: block !important;
}

/* inner links */
.header .menu .inner-sub-menu li a{
	display:block;
	height:50px;
	line-height:50px;
	padding:0 15px 0 30px;
	border-bottom:1px solid rgba(0,0,0,.05);
	text-decoration:none;
	color:#000;
	font-size:14px;
}

/* =========================
   OVERLAY
========================= */
.menu-overlay{
	position:fixed;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background:rgba(0,0,0,.5);
	z-index:1098;
	visibility:hidden;
	opacity:0;
	transition:.4s ease;
}
.menu-overlay.active{
	visibility:visible;
	opacity:1;
}
/* .header .menu>ul>li.menu-item-has-children .sub-menu ul>li.has-inner-menu.accordion-open > ul.accordion-open {
    position: relative;
    left: 0px !important;
    margin-bottom: 20px;
} */
 li.has-inner-menu, ul.inner-sub-menu{
  position: relative;
 }
li.has-inner-menu.accordion-open {
    position: relative;
}

ul.inner-sub-menu.accordion-open {
    position: relative !important;
    margin-bottom: 20px;
    left: 0px !important;
    right: auto !important;
}

.header .menu>ul>li .sub-menu li.has-inner-menu:hover>ul {

min-width: 100% !important;
}
.header .menu>ul>li .sub-menu li.has-inner-menu:hover>ul.inner-sub-menu.accordion-open{
  left: 0px !important;
}
.menutext {
    padding-left: 15px;
    font-weight: 600;
}
.mobile-menu-head.active .menutext {
    display: none;
}
header.header.header-swip {
    flex-direction: row-reverse;
}
header.header.header-swip>div:nth-child(2){
  justify-content: flex-start;
}
header.header.header-swip>div:nth-child(2) .header-item.item-right i {
    display: none;
}
header.header.header-swip>div:nth-child(2) {
    width: 60px;
    order: 3;
}
header.header.header-swip>div:nth-child(1){
  order: 2;
}
header.header.header-swip > .header-cta-wrapper a.btn-quote {
    display: none;
}
.header .logo a img{
  max-width: 200px;
}
header.header.header-swip > .header-cta-wrapper {
    display: block;
    padding-right: 15px;
    width: 40%;
    text-align: end;

}
header.header.header-swip>div:nth-child(1) .header-item.item-left.top--header {
    justify-content: center;
    flex-grow: 1;
}
.header-cta-wrapper {
    width: inherit;
}
    .link-auth a.btn.btn--black {
        display: block;
        text-align: center;
    }

    .link-auth, .link-auth a, .link-auth span {
        font-size: 12px;
        text-align: center;
    }
    nav.menu > a.btn-quote {
            display: block;
        text-align: center;
        width: 100%;
        margin: 0 auto;
        max-width: calc(100% - 30px);
}
.header .logo a {
    font-size: 20px;
    color: var(--color-black);
    font-weight: 700;
    display: flex;
    align-items: center;
    align-content: center;
}
.instant-dashboard .model-viewer {
    max-width: 100%;
}
}
@media (max-width: 600px){
      .View-Quotation__partLeft {
        /* flex-direction: column; */
        flex-wrap: wrap;
    }
    .View-Quotation__partLeft div:last-child h2 {
    font-size: 14px;
}
}
@media (max-width: 450px){
  .View-Quotation__details {
    flex-direction: column;
}
}