/* Dark mode variables */
:root {
  --dark-bg: #1f1f1f;
  --dark-text: #ffffff;
  --dark-card-bg: #212121;
  --dark-border: #373636;
  --dark-shadow: rgba(0, 0, 0, 0.2);
  --dark-accent: #e4d3bf;
}

/* Light mode variables */
:root {
  --light-bg: #ffffff;
  --light-text: #000000;
  --light-card-bg: #f8f9fa;
  --light-border: #dee2e6;
  --light-shadow: rgba(0, 0, 0, 0.1);
  --light-accent: #6a461342;
}

/* Base styles */
* {
  margin: 0px;
  padding: 0px;
  transition: background-color 0.3s, color 0.3s;
  /* border: 1px solid red !important; */
}

body {
  background-color: var(--light-bg);
  color: var(--light-text);
}

/* Dark mode styles - using :host-context to work with Angular's view encapsulation */
:host-context(.dark-mode) {
  background-color: var(--dark-bg) !important;
  color: var(--dark-text) !important;
}

:host-context(.dark-mode) p,
:host-context(.dark-mode) h1,
:host-context(.dark-mode) h2,
:host-context(.dark-mode) h3,
:host-context(.dark-mode) h4,
:host-context(.dark-mode) h5,
:host-context(.dark-mode) h6,
:host-context(.dark-mode) div,
:host-context(.dark-mode) span {
  color: var(--dark-text) !important;
}

:host-context(.dark-mode) .card,
:host-context(.dark-mode) .modal-content,
:host-context(.dark-mode) .dropdown-menu,
:host-context(.dark-mode) .form-control,
:host-context(.dark-mode) .banner-wrapper {
  background-color: var(--dark-card-bg) !important;
  color: var(--dark-text) !important;
  border-color: var(--dark-border) !important;
}

:host-context(.dark-mode) .card-shadow {
  box-shadow: 3px 4px 4px 5px var(--dark-accent) !important;
}

:host-context(.dark-mode) .btn,
:host-context(.dark-mode) .button,
:host-context(.dark-mode) .try-on-button,
:host-context(.dark-mode) .cta-button,
:host-context(.dark-mode) .show-more-button {
  background-color: var(--dark-accent) !important;
  color: var(--dark-text) !important;
}

:host-context(.dark-mode) .form-control {
  background-color: var(--dark-card-bg) !important;
  color: var(--dark-text) !important;
  border-color: var(--dark-border) !important;
}

:host-context(.dark-mode) .form-control:focus {
  border-color: var(--dark-accent) !important;
  box-shadow: 0 0 0 0.2rem rgba(228, 211, 191, 0.25) !important;
}

/* Global dark mode styles that will work regardless of Angular's view encapsulation */
.dark-mode {
  background-color: var(--dark-bg) !important;
  color: var(--dark-text) !important;
}

.dark-mode ::ng-deep * {
  color: var(--dark-text) !important;
}

.dark-mode ::ng-deep .card,
.dark-mode ::ng-deep .modal-content,
.dark-mode ::ng-deep .dropdown-menu,
.dark-mode ::ng-deep .form-control,
.dark-mode ::ng-deep .banner-wrapper {
  background-color: var(--dark-card-bg) !important;
  color: var(--dark-text) !important;
  border-color: var(--dark-border) !important;
}

.dark-mode .dropdown-menu {
  opacity: 1;
  position: absolute;
  left: 60%;
  top: 35%;
  height: 75vh;
  /* overflow: auto; */
  background: #212529;
}

.toast-container {
  position: fixed !important;
  top: 20px !important;
  right: 20px !important;
  z-index: 9999 !important;
  pointer-events: none;
}

.dark-mode .dropdown-item {
  color: #fff !important;
}
.dark-mode .dropdown-item:hover {
  background-color: rgba(60, 66, 66, 1) !important;
  padding-left: 25px;
}

.dark-mode .ng-dropdown-panel .ng-dropdown-panel-items .ng-option,
.dark-mode .ng-select.ng-select-opened>.ng-select-container,
.dark-mode .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value
{
  background-color: #333 !important;
}

.dark-mode .ng-select .ng-option.ng-option-selected{
  background-color: #535252 !important;

}

.dark-mode .category-btn-active {
  background-color: rgba(60, 66, 66, 1);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
  padding: 22px 28px;
  color: white;
  color: rgba(255, 255, 255, 1);
  width: 100%;
  cursor: pointer;
}

.dark-mode .try-on-button,
.dark-mode .cta-button,
.dark-mode .show-more-button,
.dark-mode .fabric-label {
  color: black !important;
}

.spinner-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Full-screen height for the loading state */
  background-color: rgba(228, 211, 191, 0.2);
  /* Slightly transparent backdrop */
}

.spinner {
  position: relative;
  width: 80px;
  height: 80px;
}

.spinner .dot {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: rgb(80, 81, 85);
  border-radius: 50%;
  animation: spinner-animation 1.5s infinite ease-in-out;
}

.spinner .dot:nth-child(1) {
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  animation-delay: -0.4s;
}

.spinner .dot:nth-child(2) {
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  animation-delay: -0.2s;
}

.spinner .dot:nth-child(3) {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

@keyframes spinner-animation {
  0%,
  100% {
    transform: scale(1);
    background-color: rgba(228, 211, 191, 1);
  }
  50% {
    transform: scale(1.5);
    background-color: rgb(80, 81, 85);
  }
}

html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: Roboto, "Helvetica Neue", sans-serif;
}
.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: #f4e6d2 !important;
  text-transform: capitalize !important;
}

.accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: 0 0 0 0.25rem #6a461342 !important;
}
@font-face {
  font-family: "GE SS Two";
  src: url("/assets/fonts/NotoKufiArabic-VariableFont_wght.ttf")
    format("truetype");
  font-weight: 700;
  font-style: normal;
  color: black;
}

/* Apply the font globally */
* {
  font-family: "GE SS Two" !important;
}

.card-shadow {
  box-shadow: 3px 4px 4px 5px #e4d3bf !important;
}

/* Stock badge styling */
.stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 5px;
}

/* Stock status colors */
.in-stock {
  background-color: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

.low-stock {
  background-color: #fff8e6;
  color: #ff9800;
  border: 1px solid #f6d4a1;
}

.out-of-stock {
  background-color: #ffebee;
  color: #c62828;
  border: 1px solid #ffcdd2;
}

/* darkmood  */
.dark-mode {
  background: #1f1f1f !important;
  p,
  h1,
  h2,
  h6,
  div,
  span {
    color: white !important;
  }
  .banner-wrapper {
    background: #1f1f1f !important;
    border-color: #1f1f1f !important;
  }
  .dropdown-menu {
    opacity: 1;
    position: absolute;
    left: 60%;
    top: 35%;
    height: 75vh;
    /* overflow: auto; */
    background: #212529;
  }
  .dropdown-item {
    color: #fff !important;
  }
  .category-btn-active {
    background-color: rgba(60, 66, 66, 1);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
    padding: 22px 28px;
    color: white;
    color: rgba(255, 255, 255, 1);
    width: 100%;
    cursor: pointer;
  }

  .try-on-button,
  .cta-button,
  .show-more-button,
  .fabric-label {
    color: black !important;
  }

  .navigation-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 22px 70px;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #212121 !important;
    box-shadow: 0px 1px 6px rgba(176, 161, 144, 1);
  }
  .content-section {
    display: flex;
    margin-top: 58px;
    width: 100%;
    flex-direction: column;
    background-color: #212121;
    padding: 20px;
  }
  .collections-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: Poppins, sans-serif;
    justify-content: start;
    padding-top: 100px;
    background-color: #1f1f1f;
    /* color: white !important; */
    padding: 25px;
  }
  .product-info {
    display: flex;
    flex-direction: column;
    align-items: start;
    color: white;
    font-weight: 500;
    flex: 1;
  }
  .dressing-room-container {
    display: flex;
    flex-direction: column;
    font-family: Poppins, sans-serif;
    text-align: center;
    background: #1f1f1f;
  }
  .room-title {
    color: #fff;
    font-size: 46px;
    font-weight: 600;
    align-self: center;
  }
  .title-highlight {
    color: #fff;
  }
  .team-section {
    display: flex;
    flex-direction: column;
    font-family: Poppins, sans-serif;
    /* margin-top: 120px; */
    background: #1f1f1f;
  }
  .team-heading {
    color: #fff;
    font-size: 46px;
    font-weight: 600;
    line-height: 56px;
    text-align: center;
    margin: 0 auto;
    padding: 15px 15px;
    max-width: 100%;
  }
  .fabric-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
    background: #1f1f1f;
  }
  .fabric-headline {
    color: #fff;
    letter-spacing: 0.21px;
    text-align: center;
    align-self: center;
    width: 75%;
    font: 600 46px / 56px Poppins, sans-serif;
  }
  .testimonials-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #1f1f1f;
    padding: 50px;
  }
  .navigation-bar {
    background: #1f1f1f !important;
  }
  .navbar {
    position: relative;
    background-color: rgba(0, 0, 0, 0.87);
    z-index: 100;
    text-transform: capitalize;
    border-bottom: 2px solid #e4d3bf;
  }
  .mat-body,
  .mat-body-2,
  .mat-typography .mat-body,
  .mat-typography .mat-body-2,
  .mat-typography {
    font: 400 14px / 20px Roboto, sans-serif;
    letter-spacing: 0.0178571429em;
    background: #1f1f1f !important;
  }
  .product-card {
    position: relative;
    background: #272727 !important;
    height: inherit;
    width: 20rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
    cursor: pointer;
    color: white !important;
  }
  .modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    color: var(--bs-modal-color);
    pointer-events: auto;
    background-color: #212121;
    background-clip: padding-box;
    border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
    border-radius: var(--bs-modal-border-radius);
    outline: 0;
  }
  .swal2-show {
    animation: swal2-show 0.3s;
    background: #212529;
    color: white;
  }
  .card-header {
    background-color: #1e1e1e !important; /* Dark background for card header */
    color: #ffffff !important;
  }
  .table > :not(caption) > * > * {
    color: var(--bs-table-color-state, var(--bs-table-color-type, #e5eaefd3));
  }
  .mat-drawer-side {
    border-right: 0px solid #333 !important; /* Change border color to dark shade */
  }
  .banner-wrapper {
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.87);
    background: rgba(0, 0, 0, 0.87);
    width: 100%;
    /* position: relative; */
    /* top: 148px; */
  }
  /* Apply white text color to specific elements in dark mode */
  .mdc-list-item__primary-text,
  .mat-drawer-container,
  .mat-drawer,
  .card,
  .table {
    color: #ffffff !important;
  }

  --footer-background: var(--footer-background-dark);
  --footer-text-color: var(--footer-text-color-dark);
  --footer-link-color: var(--footer-link-color-dark);

  /* Card Styles in Dark Mode */
  .card {
    --bs-card-spacer-y: 1rem;
    --bs-card-spacer-x: 1rem;
    --bs-card-title-spacer-y: 0.5rem;
    --bs-card-title-color: #ffffff; /* Card title color in dark mode */
    --bs-card-subtitle-color: #d1d1d1; /* Card subtitle color */
    --bs-card-border-width: var(--bs-border-width);
    --bs-card-border-color: var(--bs-border-color-translucent);
    --bs-card-border-radius: var(--bs-border-radius);
    --bs-card-box-shadow: none;
    --bs-card-inner-border-radius: calc(
      var(--bs-border-radius) - (var(--bs-border-width))
    );
    --bs-card-cap-padding-y: 0.5rem;
    --bs-card-cap-padding-x: 1rem;
    --bs-card-cap-bg: rgba(var(--bs-body-color-rgb), 0.03);
    --bs-card-cap-color: #ffffff; /* Card caption color */
    --bs-card-height: auto;
    --bs-card-color: #ffffff;
    --bs-card-bg: #1e1e1e !important; /* Card background in dark mode */
    --bs-card-img-overlay-padding: 1rem;
    --bs-card-group-margin: 0.75rem;

    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: var(--bs-card-height);
    color: var(--bs-card-color);
    background-color: var(--bs-card-bg);
    border: var(--bs-card-border-width) solid var(--bs-card-border-color);
    border-radius: var(--bs-card-border-radius);
  }
  .card-shadow {
    box-shadow: 3px 4px 4px 5px #6a461342 !important;
  }
  .form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff; /* Text color for dark mode */
    appearance: none;
    background-color: #2d2d2d; /* Dark background for inputs */
    background-clip: padding-box;
    border: var(--bs-border-width) solid #121212; /* Dark border color */
    border-radius: var(--bs-border-radius);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;

    /* Focus state */
    &:focus {
      border-color: #81c784; /* Light green border on focus for visibility */
      box-shadow: 0 0 0 0.2rem rgba(129, 199, 132, 0.5); /* Light green focus shadow */
    }
  }
  .shop-page {
    & .filters-and-products {
      & .products {
        .product-card {
          position: relative;
          background: rgba(0, 0, 0, 0.87);
          height: inherit;
          width: 20rem;
          text-align: center;
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          margin-bottom: 20px;
          overflow: hidden;
          cursor: pointer;
        }
      }
    }
  }
  .textP {
    text-align: justify;
    text-wrap: auto;
    font-size: 16px;
    color: #ffffff !important;
  }
  .modal-title {
    font-size: 1.75rem;
    color: #fff;
  }
  .form-label {
    font-weight: 600;
    color: #fff;
  }
  .like-icon {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(0 0 0 / 62%) !important;
    border-radius: 50%;
  }
  .frame-265 span {
    cursor: pointer;
    font-size: 20px;
    color: white;
  }
  .product-section {
    & .product-details {
      .info {
        margin-top: 1rem;
        margin-left: 15px;
        margin-right: 15px;
        color: white;
      }
    }
  }
  .product-reviews-container {
    padding: 20px;
    margin: 5px;
    font-family: Arial, sans-serif;
    color: white;
  }
  .quantity-input {
    width: 40px;
    text-align: center;
    border: none;
    font-size: 22px;
    background-color: transparent;
    pointer-events: none;
    color: white;
  }
  div:where(.swal2-icon).swal2-success .swal2-success-fix {
    position: absolute;
    z-index: 1;
    top: 0.5em;
    left: 1.625em;
    width: 0.4375em;
    height: 5.625em;
    transform: rotate(-45deg);
    display: none;
  }
  div:where(.swal2-icon).swal2-success
    [class^="swal2-success-circular-line"][class$="left"] {
    top: -0.4375em;
    left: -2.0635em;
    transform: rotate(-45deg);
    transform-origin: 3.75em 3.75em;
    border-radius: 7.5em 0 0 7.5em;
    background: red;
    display: none;
  }
  div:where(.swal2-icon).swal2-success
    [class^="swal2-success-circular-line"][class$="right"] {
    top: -0.6875em;
    left: 1.875em;
    transform: rotate(-45deg);
    transform-origin: 0 3.75em;
    border-radius: 0 7.5em 7.5em 0;
    display: none;
  }
  .modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #212121;
    background-clip: padding-box;
    border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
    border-radius: var(--bs-modal-border-radius);
    outline: 0;
    color: white !important;
  }
  .quantity-input {
    width: 40px;
    text-align: center;
    border: none;
    font-size: 20px;
    background-color: transparent;
    pointer-events: none;
    color: white;
  }
  .form-section,
  .cart-section {
    background: #1e1e1e !important;
    padding: 20px;
    border: 1px solid #373636;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: white;
    width: 100%;
  }
  .quantity-input {
    width: 40px;
    text-align: center;
    border: none;
    font-size: 20px;
    background-color: transparent;
    pointer-events: none;
    color: white;
  }
  .payment-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #1f1f1f !important;
    color: white;
  }
  P {
    margin-top: 20px;
    font-size: 18px;
    line-height: 40px;
    color: white;
  }
  .fw-bold {
    font-weight: 700 !important;
    color: white;
  }
  .filters-container {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background-color: #1f1f1f;
    border-radius: 10px;
    width: 100%;
    gap: 10px;
  }
  .title {
    text-align: left;
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    font-family: Poppins, sans-serif;
  }
  .designer-card {
    background-color: #1f1f1f;
    border: 1px solid #e8e8e8;
    padding: 20px;
    max-width: 680px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    border: 1px solid #e8d8c6;
    align-items: center;
    gap: 15px;
    text-align: center;
    transition: transform 0.3s ease;
  }
  .banner-wrapper {
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: rgba(0, 0, 0, 0.87);
    width: 100%;
    /* position: relative; */
    /* top: 148px; */
  }
  .text-muted {
    --bs-text-opacity: 1;
    color: rgba(201, 210, 219, 0.75) !important;
  }
  .product-card {
    width: 23rem;
    background: rgba(0, 0, 0, 0.87);
  }
  .designer-card {
    background-color: rgba(0, 0, 0, 0.87);
    border: 1px solid #e8e8e8;
    padding: 20px;
    max-width: 680px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    border: 1px solid #e8d8c6;
    align-items: center;
    gap: 15px;
    text-align: center;
    transition: transform 0.3s ease;
  }
  .designer-info a {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
  }
  .wishlist-title {
    text-align: center;
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: bold;
    color: white;
  }
  .wishlist-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    flex-wrap: wrap;
    color: white;
  }
  .quantity-input {
    width: 40px;
    text-align: center;
    border: none;
    font-size: 20px;
    background-color: transparent;
    pointer-events: none;
    color: white;
  }
  .quantity-input {
    width: 40px;
    text-align: center;
    border: none;
    font-size: 20px;
    background-color: transparent;
    pointer-events: none;
    color: white;
  }
  .modal-title {
    font-size: 1.75rem;
    color: #fff;
  }
  .form-label {
    font-weight: 600;
    color: #fff;
  }
  h4 {
    font-weight: bold;
    color: #fff;
  }
  .dropdown-menu.show {
    display: block;
    text-align: justify;
    background: #1f1f1f;
  }
  .h4,
  h4 {
    font-size: calc(1.275rem + 0.3vw);
    color: white !important;
  }
  p {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #ffffff;
  }
  .text-capitalize {
    text-transform: capitalize !important;
    color: white;
  }
  .text-secondary {
    --bs-text-opacity: 1;
    color: rgb(227 227 227) !important;
  }
  .testimonials-subtitle {
    color: white;
    font: 400 20px / 1 Poppins, sans-serif;
    margin-top: 10px;
  }
  .opacity-50 {
    opacity: 0.5 !important;
    color: rgba(255, 255, 255, 0.781) !important;
  }
  .profile_1-5008 {
    overflow: hidden;
    background: rgba(0, 0, 0, 0.87);
  }
  .wishlist-container {
    margin: 0 auto;
    padding: 20px 60px;
    font-family: Poppins, sans-serif;
    color: #fff;
    background: #040404;
  }
  .form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: #fff;
  }
  .address-card {
    border: 1px solid #ddd;
    padding: 20px 30px;
    border-radius: 6px;
    margin-bottom: 15px;
    background-color: #040404;
  }
  .quantity-input {
    width: 40px;
    text-align: center;
    border: none;
    font-size: 20px;
    background-color: transparent;
    pointer-events: none;
    color: white;
  }
  .login-container {
    background-color: #212121 !important;
    padding: 30px 60px;
    font-family: Poppins;
    color: #ffffff !important;
  }

  /* Pop up Login */

  .modal-content {
    background-color: #2d2d2d;

    color: #e0e0e0;

    border: 1px solid #444;
    i {
      color: #fff;
    }

    .modal-header {
      border-bottom: 1px solid #444;

      .modal-title {
        color: #fff;
      }

      .btn-close {
        filter: invert(0.8);
      }
    }
  }

  /* Shared Style For Form Control*/

  .form-control {
    background-color: #2d2d2d !important;

    color: #ffffff;

    border: 1px solid #3d3d3d;

    &:focus {
      background-color: #2d2d2d;

      color: #ffffff;

      border-color: #0d6efd;

      box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    }

    &::placeholder {
      color: #868686;
    }
  }

  h2 {
    color: #ffffff 30px !important;
  }
  .product-info.banner-wrapper {
    display: flex;
    flex-direction: column;
    align-items: start;
    color: #fff;
    font-weight: 500;
    flex: 1;
  }
  .product-brand.banner-wrapper {
    color: #fff;
    font-size: 14px;
    line-height: 1;
    margin-top: 20px;
  }
  .team-heading.banner-wrapper {
    color: #fff;
    font-size: 46px;
    font-weight: 600;
    line-height: 56px;
    text-align: center;
    margin: 0 auto;
    padding: 0 15px;
    max-width: 100%;
  }
  .review-count.banner-wrapper {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    align-self: stretch;
    margin-top: 10px;
  }
  .room-title-accent.banner-wrapper {
    color: rgb(232 223 217);
  }
  .room-title.banner-wrapper {
    color: #fff;
    font-size: 46px;
    font-weight: 600;
    align-self: center;
  }
  .fabric-headline.banner-wrapper {
    color: #fff;
    letter-spacing: 0.21px;
    text-align: center;
    align-self: center;
    width: 75%;
    font: 600 46px / 56px Poppins, sans-serif;
  }
  .testimonial.banner-wrapper,
  .name.banner-wrapper {
    color: #ffdfcc;
  }
  .testimonials-container.banner-wrapper
    .card.banner-wrapper
    .face.front-face.banner-wrapper
    .designation.banner-wrapper {
    font-size: 0.8rem;
    color: #ffffff;
    letter-spacing: 0.8px;
  }
  .login-container {
    & .login-form {
      h2 {
        font-weight: bold;
        color: #fff;
      }
    }
  }

  /* Ng Select Styles */
.ng-select .ng-select-container {
  background-color: #333;
  border-color: #555;
  color: #fff;
}

.ng-select .ng-dropdown-panel {
  background-color: #333;
  border-color: #555;
}

.ng-select .ng-option {
  background-color: #333;
  color: black !important; 
}

.ng-select .ng-option.ng-option-selected {
  background-color: #555;
  color: white !important; 
}

.ng-select .ng-option-marked {
  background-color: #444 !important;
  color: white !important; 
}


  /* .ng-select .ng-select-container {
    background-color: #333;

    border-color: #555;

    color: #fff;
  }

  .ng-select .ng-dropdown-panel {
    background-color: #333;

    border-color: #555;
  }

  .ng-select .ng-option {
    background-color: #333;

    color: #fff;
  }

  .ng-select .ng-option-marked {
    background-color: #444 !important;
  } */

  .create-account-container {
    .form-section {
      flex: 1;
      padding: 2rem;
      /* background-color: rgba(0, 0, 0, 0.87); */
      display: flex;
      flex-direction: column;
      justify-content: center;
      color: white;
    }
  }
  .create-account-container {
    .image-section {
      flex: 1;
      background-color: rgba(0, 0, 0, 0.87);
      padding: 50px;
    }
  }
  .navigation-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 22px 70px;
    top: 0;
    z-index: 1000;
    background-color: #212529;
    width: 100% !important;
    box-shadow: 0px 1px 6px rgba(176, 161, 144, 1);
    color: white !important;
  }
  .nav-link {
    text-decoration: none;
    color: #fff;
    font: 500 16px Poppins, sans-serif;
    padding: 8px 12px;
    cursor: pointer;
  }
  .banner-wrapper {
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #212529;
    width: 100%;
    /* position: relative;
    top: 148px; */
  }
  .banner-wrapper.banner-wrapper {
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.87);
    width: 100%;
    /* position: relative; */
    /* top: 148px; */
  }
  .title-highlight.banner-wrapper {
    color: #fff;
  }
  .subtitle.banner-wrapper {
    color: #f8f9fa;
    font-size: 22px;
    font-weight: 400;
    line-height: 26px;
    margin-top: 10px;
  }

  .navbar {
    position: relative;

    background-color: #212529;

    z-index: 100;

    text-transform: capitalize;

    & .sub-navbar-wrapper {
      & .main-nav {
        & .nav-item {
          a {
            text-decoration: none;
            color: #fff;
            text-transform: capitalize;
            font-size: 18px;
          }
        }
      }
    }
  }
  .navbar {
    & .sub-navbar-wrapper {
      .sub-nav-section {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.87);
        display: flex;
        border-top: 1px solid #656464;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        padding: 1rem;
        box-sizing: border-box;
        z-index: 99;
        color: #fff;
      }
    }
  }
  .navbar {
    background-color: rgb(31 31 31) !important;
    color: #fff !important;

    & .sub-navbar-wrapper {
      .sub-nav-section {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgb(31 31 31) !important;
        display: flex;
        border-top: 1px solid #656464;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        padding: 1rem;
        box-sizing: border-box;
        z-index: 99;
        color: #fff !important;
      }
    }
  }
  .dropdown-item {
    text-transform: capitalize !important;
    font-weight: 700 !important;
    color: rgb(255, 255, 255) !important;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
  }
  .dropdown-item li {
    padding: 0px 25px 0px 0px;
    color: rgb(255, 255, 255) !important;
  }
  .dropdown-item[_ngcontent-ng-c1324061949] {
    text-transform: capitalize !important;
    font-weight: 700 !important;
    padding: 10px 10px 20px 10px;
    color: rgb(255, 255, 255) !important;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
  }
  .dropdown-item:hover {
    color: rgb(0, 0, 0) !important;
  }
  .title-highlight {
    color: rgb(238 228 222);
  }
  .subtitle {
    color: rgb(255 255 255 / 74%) !important;
  }
  .product-name {
    font-size: 20px;
    align-self: stretch;
    color: #dcd7cf !important;
  }
  .product-brand {
    color: #dcd7cf !important;
    font-size: 14px;
    line-height: 1;
    margin-top: 20px;
  }
  .review-count {
    color: #dcd7cf !important;
    font-size: 14px;
    font-weight: 500;
    align-self: stretch;
    margin-top: 10px;
  }
  .room-title-accent {
    color: rgb(208 195 187);
  }
  .room-title {
    color: rgb(255 255 255);
    font-size: 46px;
    font-weight: 600;
    align-self: center;
  }
  .team-heading {
    color: rgb(255 255 255);
    font-size: 46px;
    font-weight: 600;
    line-height: 56px;
    text-align: center;
    margin: 0 auto;
    padding: 49px 0 0 0;
    max-width: 100%;
  }
  .fabric-headline {
    color: rgb(255 255 255);
  }
  .testimonial,
  .name {
    color: #ffd9c3;
  }
  .testimonials-container .card .face.front-face .designation {
    font-size: 0.8rem;
    color: #e0e0e0;
    letter-spacing: 0.8px;
  }
  .table > :not(caption) > * > * {
    background-color: #1e1e1e !important;
  }
  .viewCart {
    color: #e0e0e0 !important;
  }
  .table th {
    color: #e0e0e0 !important;
  }
  .totals {
    background-color: #1e1e1e !important;
    color: #e0e0e0 !important;
  }
}

.dark-mode .dropdown-menu2.show {
  background-color: #212529 !important;
  color: #fff;
}
.dark-mode .dropdown-menu2 .menu-item {
  color: #fff;
}

.dark-mode .menu-item:hover,
.dark-mode .menu-item a span:hover,
.dark-mode .menu-item a:hover {
  color: #e4d3bf !important;
  transform: scale(1.1);
}

h1 {
  font-size: 45px !important;
  line-height: 50px !important;
}
h2 {
  font-size: 30px !important;
  line-height: 40px !important;
}
h3 {
  font-size: 28px !important;
  line-height: 28px !important;
}
h4 {
  font-size: 25px !important;
  line-height: 28px !important;
}
h5 {
  font-size: 16px !important;
  line-height: 28px !important;
}
h6 {
  font-size: 14px !important;
  line-height: 28px !important;
}
p,
label {
  line-height: 37px !important;
}
img {
  object-fit: cover !important;
}

.toast-notification {
  background-color: #333;
  color: white;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.toast-notification button {
  color: white;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.toast-notification button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Fabric Length Input Style */
input[type="number"] {
  width: 50%;
  padding: 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--light-text);
  background-color: var(--light-card-bg);
  border: 1px solid var(--light-border);
  border-radius: 8px;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  input[type="number"] {
    width: 100%;
  }
}

input[type="number"]:focus {
  border-color: #e4d3bf;
  box-shadow: 0 0 0 0.2rem rgba(228, 211, 191, 0.25);
  outline: none;
}

input[type="number"]::placeholder {
  color: #8a8a8a;
}

/* Dark mode styles for fabric length input */
:host-context(.dark-mode) input[type="number"] {
  background-color: var(--dark-card-bg);
  color: var(--dark-text);
  border-color: var(--dark-border);
}

:host-context(.dark-mode) input[type="number"]:focus {
  border-color: #e4d3bf;
  box-shadow: 0 0 0 0.2rem rgba(228, 211, 191, 0.25);
}

:host-context(.dark-mode) input[type="number"]::placeholder {
  color: #8a8a8a;
}

/* Unit Buttons Style */
.unit-btn {
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--light-text);
  background-color: var(--light-card-bg);
  border: 1px solid var(--light-border);
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.unit-btn:hover {
  background-color: #e4d3bf;
  color: #000;
  border-color: #e4d3bf;
}

.unit-btn.active-unit {
  background-color: #e4d3bf;
  color: #000;
  border-color: #e4d3bf;
}

/* Dark mode styles for unit buttons */
:host-context(.dark-mode) .unit-btn {
  background-color: var(--dark-card-bg);
  color: var(--dark-text);
  border-color: var(--dark-border);
}

:host-context(.dark-mode) .unit-btn:hover {
  background-color: #e4d3bf;
  color: #000;
  border-color: #e4d3bf;
}

:host-context(.dark-mode) .unit-btn.active-unit {
  background-color: #e4d3bf;
  color: #000;
  border-color: #e4d3bf;
}
