.filterdropdown {
  display: block;

  background-color: white;

  border: 1px solid #ddd;

  padding: 4px 8px;
}
     .invalid-label {
        font-size: 12px;
        line-height: 15px;
        text-align: left;
        color: red;
      }

      .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background: #fff;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        position: relative;
        z-index: 1000;
      }

      .logo-content img {
        height: 40px;
        width: auto;
      }

      .utilities {
        display: flex;
        gap: 15px;
        font-size: 0.9rem;
      }

      .location-icon {
        display: flex;
        align-items: center;
        gap: 5px;
      }

      .location-icon a {
        color: #333;
        text-decoration: none;
      }

      .mobile-menu-toggle {
        display: none;
        font-size: 24px;
        cursor: pointer;
        z-index: 1001;
      }

      /* DESKTOP NAVIGATION */
      @media (min-width: 992px) {
        .main-nav {
          display: flex;
          gap: 25px;
          align-items: center;
        }

        .main-nav-item,
        .page-nav-item {
          cursor: pointer;
          padding: 10px 0;
          position: relative;
          font-weight: 600;
          text-transform: uppercase;
          text-decoration: none;
          color: #333;
        }

        .mega-menu,
        .submenu {
          display: none;
          position: absolute;
          background: #fff;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          z-index: 100;
        }

        .mega-menu {
          top: 100%;
          left: 0;
          width: 100%;
          min-width: 250px;
        }

        .main-nav-item:hover .mega-menu {
          display: block;
        }

        .submenu {
          top: 0;
          left: 100%;
          min-width: 200px;
        }

        .menu-item {
          position: relative;
          padding: 10px 15px;
          border-bottom: 1px solid #eee;
          display: flex;
          justify-content: space-between;
        }

        .menu-item a {
          text-decoration: none;
          color: #333;
          display: block;
          width: 100%;
        }

        .menu-item:hover {
          background: #f5f5f5;
        }

        .menu-item:hover > .submenu {
          display: block;
        }

        .back-btn {
          display: none;
        }
      }

      /* MOBILE NAVIGATION */
      @media (max-width: 991px) {
        .mobile-menu-toggle {
          display: block;
          order: 3;
        }

        .utilities {
          display: none;
        }

        .main-nav {
          position: fixed;
          top: 0;
          left: -100%;
          width: 85%;
          max-width: 400px;
          height: 100vh;
          background: #fff;
          flex-direction: column;
          padding: 60px 0 20px 0;
          overflow-y: auto;
          overflow-x: hidden;
          transition: left 0.3s ease-in-out;
          box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
          z-index: 1001;
        }

        .main-nav.active {
          left: 0;
        }

        .main-nav-item,
        .page-nav-item {
          display: block;
          padding: 15px 20px;
          border-bottom: 1px solid #eee;
          font-weight: 600;
          cursor: pointer;
          text-decoration: none;
          color: #333;
          position: relative;
          width: 100%;
        }

        .main-nav-item {
          display: flex;
          justify-content: space-between;
          align-items: center;
        }

        /* Only show arrow for items with mega-menu */
        .main-nav-item.has-submenu::after {
          content: '\f054';
          font-family: "Font Awesome 6 Free";
          font-weight: 900;
          font-size: 12px;
          color: #999;
        }

        .mega-menu,
        .submenu {
          position: fixed;
          top: 0;
          left: 100%;
          width: 85%;
          max-width: 400px;
          height: 100vh;
          background: #fff;
          transition: left 0.3s ease-in-out;
          z-index: 1002;
          overflow-y: auto;
          overflow-x: hidden;
          padding-top: 0;
        }

        .mega-menu.active,
        .submenu.active {
          left: 0;
        }

        .back-btn {
          display: block;
          padding: 15px 20px;
          background: #f0f0f0;
          cursor: pointer;
          font-weight: bold;
          color: #333;
          border-bottom: 1px solid #ddd;
          position: sticky;
          top: 0;
          z-index: 10;
        }

        .menu-container {
          width: 100%;
        }

        .menu-column {
          width: 100%;
        }

        .menu-item {
          padding: 15px 20px;
          border-bottom: 1px solid #eee;
          display: flex;
          justify-content: space-between;
          align-items: center;
          cursor: pointer;
          position: relative;
        }

        .menu-item a {
          text-decoration: none;
          color: #333;
          flex: 1;
        }

        .menu-item .icon {
          margin-left: 10px;
          color: #999;
          font-size: 14px;
        }

        .menu-overlay {
          display: none;
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0, 0, 0, 0.5);
          z-index: 999;
        }

        .menu-overlay.active {
          display: block;
        }
      }

      #blink {
        font-size: 20px;
        font-weight: bold;
        color: red;
        transition: 0.5s;
      }

      .dealer-block {
        padding: 50px 0;
        background-color: #f8f8f8;
      }

      .dealer-content {
        padding: 30px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
      }

      .home-banner-carousel {
        height: 600px;
      }

      .home-banner-carousel .carousel-inner,
      .home-banner-carousel .carousel-item,
      .home-banner-carousel img {
        height: 100%;
      }

      .home-banner-carousel img {
        object-fit: cover;
      }

      @media (max-width: 768px) {
        .home-banner-carousel {
          height: 350px;
        }
      }

      .dealer-content h3 {
        font-size: 28px;
        margin-bottom: 20px;
        color: #333;
      }

      .dealer-content p {
        margin-bottom: 25px;
        line-height: 1.6;
        color: #666;
      }

      .dealer-image {
        height: 350px;
        overflow: hidden;
      }

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

      .btn {
        display: inline-block;
        padding: 12px 24px;
        text-decoration: none;
        border-radius: 4px;
        font-weight: 600;
        transition: all 0.3s ease;
      }

      .desk-primary-btn-white {
        background-color: #fff;
        color: #333;
        border: 2px solid #333;
      }

      .desk-primary-btn-white:hover {
        background-color: #333;
        color: #fff;
      }

      .padding_removal {
        padding: 0;
      }

      .swiper {
        width: 100%;
        height: 474px;
      }

      .swiper-pagination {
        bottom: 10px !important;
      }

      .swiper-pagination-bullet {
        background: white;
        opacity: 0.8;
      }

      .swiper-pagination-bullet-active {
        background: white;
        opacity: 1;
      }

      .swiper-button-next,
      .swiper-button-prev {
        color: white;
        background: rgba(0, 0, 0, 0.3);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        --swiper-navigation-size: 20px;
      }

      .swiper-button-next:hover,
      .swiper-button-prev:hover {
        background: rgba(0, 0, 0, 0.5);
      }

      @media (max-width: 991px) {
        .dealer-block {
          padding: 40px 0;
        }

        .dealer-content h3 {
          font-size: 24px;
          margin-bottom: 15px;
        }

        .dealer-content {
          padding: 25px;
        }

        .dealer-image {
          height: 300px;
        }

        .swiper {
          height: 400px;
        }
      }

      @media (max-width: 768px) {
        .dealer-block {
          padding: 30px 0;
        }

        .dealer-section {
          display: flex;
          flex-direction: column;
        }

        .dealer-content {
          padding: 20px;
          order: 1;
        }

        .dealer-content h3 {
          font-size: 22px;
          margin-bottom: 12px;
        }

        .dealer-content p {
          margin-bottom: 20px;
          font-size: 15px;
        }

        .col-sm-6 {
          width: 100%;
          max-width: 100%;
        }

        .dealer-image {
          height: 280px;
          order: 2;
          margin-top: 20px;
        }

        .swiper {
          height: 350px;
        }

        .swiper-button-next,
        .swiper-button-prev {
          width: 35px;
          height: 35px;
          --swiper-navigation-size: 18px;
        }
      }

      @media (max-width: 576px) {
        .dealer-block {
          padding: 20px 0;
        }

        .dealer-content {
          padding: 15px;
          text-align: center;
        }

        .dealer-content h3 {
          font-size: 20px;
          margin-bottom: 10px;
        }

        .dealer-content p {
          margin-bottom: 15px;
          font-size: 14px;
          line-height: 1.5;
        }

        .btn {
          padding: 10px 20px;
          font-size: 14px;
        }

        .dealer-image {
          height: 250px;
          margin-top: 15px;
        }

        .swiper {
          height: 300px;
        }

        .swiper-button-next,
        .swiper-button-prev {
          width: 30px;
          height: 30px;
          --swiper-navigation-size: 16px;
        }

        .swiper-pagination {
          bottom: 5px !important;
        }
      }

      @media (max-width: 480px) {
        .dealer-content h3 {
          font-size: 18px;
        }

        .dealer-content p {
          font-size: 13px;
        }

        .dealer-image {
          height: 220px;
        }

        .swiper {
          height: 250px;
        }

        .swiper-button-next,
        .swiper-button-prev {
          display: none;
        }
      }
.filterdropdown-menu {
  min-width: 204px;

  margin: 0px;

  left: 0px;

  padding: 6px;
}

.filter-btn {
  display: inline-block;

  margin-bottom: 0;

  font-weight: normal;

  text-align: center;

  vertical-align: middle;

  -ms-touch-action: manipulation;

  touch-action: manipulation;

  cursor: pointer;

  background-image: none;

  border: 1px solid #fff;

  white-space: nowrap;

  padding: 4px 10px;

  font-size: 12px;

  line-height: 1.42857143;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  color: #616161;

  background-color: #fff;
}

.dropdown:hover > .dropdown-menu {
  display: block;
}

.error {
  color: #f00;

  font-weight: 300;
}

.hlmenu {
  background: #3a3a3a;

  color: #fff !important;

  padding: 6px !important;
}

.hlmenu:hover {
  background: #fff;

  color: #000 !important;

  padding: 13px 6px !important;
}

@media only screen and (max-width: 991px) {
  .dropdown-menu {
    position: relative;

    margin-top: 10px;

    width: 91% !important;

    left: 4.5% !important;
  }

  .divmenu {
    padding: 20px;
  }

  .mobile-menu-wrapper.open-menu {
    height: calc(95vh);
  }
}
.logo-text {
  display: grid;
  justify-content: center;
  text-align: center;
  width: 200px;
}
.header {
  margin: auto;

  display: flex;

  justify-content: space-between;

  align-items: center;

  border-bottom: 1px solid #ddd;

  height: 78px;

  position: relative;

  padding: 0 15px;

  background: white !important;

  color: black;
}

.logo-nav {
  position: absolute;

  left: 15px;
}

/*.logo-nav img {*/

/*  height: 65px;*/

/*  width: 150px;*/

/*  object-fit: cover;*/

/*}*/

.logo-nav img {
    height: 50px;
    object-fit: cover;
    padding: 3px;
    margin-top: 10px;}

/*.main-nav {*/

/*  display: flex;*/

/*  gap: 16px;*/

/*  margin-left: 175px;*/

/*}*/

.main-nav {
    display: flex
;
    gap: 16px;
    /* margin-left: 234px; */
    width: 60%;
    margin: 0px auto;
}


.page-nav-item {
  font-weight: bold;

  position: relative;

  padding: 8px 0;

  cursor: pointer;

  transition: color 0.3s ease;

  font-size: 15px;
}

.main-nav-item {
  font-weight: bold;

  position: relative;

  padding: 8px 0;

  cursor: pointer;

  transition: color 0.3s ease;

  font-size: 15px;
}

.main-nav-item:hover {
  color: #e63946;
}

.main-nav-item::after {
  content: "▼";

  font-size: 7px;

  margin-left: 4px;

  vertical-align: middle;

  transition: transform 0.3s ease;
}

.main-nav-item:hover::after {
  transform: rotate(180deg);
}

.utilities {
  display: flex;

  gap: 12px;

  align-items: center;

  font-size: 15px;

  position: absolute;

  right: 15px;
}

.search-icon,
.location-icon {
  cursor: pointer;

  transition: transform 0.3s ease;

  white-space: nowrap;
}

.search-icon:hover,
.location-icon:hover {
  transform: scale(1.05);
}

.mega-menu {
  position: absolute;

  top: 100%;

  left: 0;

  width: 100%;

  background-color: #fff;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

  display: none;

  z-index: 1000;

  transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);

  opacity: 0;

  transform: translateY(-10px);
}

.main-nav-item:hover .mega-menu {
  display: flex;

  opacity: 1;

  transform: translateY(0);
}

.menu-container {
  max-width: 1200px;

  margin: auto;

  display: flex;

  width: 100%;

  border-top: 3px solid #e63946;
}

.menu-column {
  min-width: 220px;

  border-right: 1px solid #eee;

  background-color: #fff;
}

.menu-column:last-child {
  border-right: none;
}

.menu-item {
  padding: 8px 16px;

  border-bottom: 1px solid #eee;

  cursor: pointer;

  position: relative;

  display: flex;

  justify-content: space-between;

  align-items: center;

  color: #333;

  transition: all 0.3s ease;

  font-size: 15px;
}

.menu-item:hover {
  background-color: #f9f9f9;

  color: #e63946;

  padding-left: 20px;
}

.menu-item .icon {
  color: #e63946;

  transition: transform 0.3s ease;

  font-size: 10px;
}

.menu-item:hover > .icon {
  transform: rotate(0deg) translateX(3px);
}

.submenu {
  display: none;

  position: absolute;

  left: 100%;

  top: 0;

  min-width: 220px;

  background-color: #fff;

  border-left: 1px solid #eee;

  box-shadow: 5px 0 15px rgba(0, 0, 0, 0.05);

  z-index: 1001;

  opacity: 0;

  transform: translateX(20px);

  transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.menu-item:hover > .submenu {
  display: block;

  opacity: 1;

  transform: translateX(0);
}

.sub-submenu {
  display: none;

  position: absolute;

  left: 100%;

  top: 0;

  min-width: 220px;

  background-color: #fff;

  border-left: 1px solid #eee;

  box-shadow: 5px 0 15px rgba(0, 0, 0, 0.05);

  z-index: 1002;

  opacity: 0;

  transform: translateX(20px);

  transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.submenu .menu-item:hover > .sub-submenu {
  display: block;

  opacity: 1;

  transform: translateX(0);
}

.category-header {
  font-weight: bold;

  color: #222;

  font-size: 15px;
}

.color-item {
  padding: 8px 16px;

  border-bottom: 1px solid #eee;

  cursor: pointer;

  transition: all 0.3s ease;

  display: flex;

  justify-content: space-between;

  align-items: center;

  font-size: 15px;

  position: relative;
}

.color-item:hover {
  background-color: #f9f9f9;

  color: #e63946;

  padding-left: 20px;
}

.color-container {
  min-width: 220px;
}

.red-accent {
  border-left: 3px solid #e63946;
}

.highlight-active {
  background-color: #f9f9f9;
}

.menu-item::before,
.color-item::before {
  content: "";

  position: absolute;

  left: 0;

  top: 0;

  height: 100%;

  width: 0;

  background-color: rgba(230, 57, 70, 0.05);

  transition: width 0.3s ease;
}

.menu-item:hover::before,
.color-item:hover::before {
  width: 100%;
}

.main-nav-item,
.menu-item,
.color-item {
  transition-delay: 0.1s;
}

.main-nav-item:hover,
.menu-item:hover,
.color-item:hover {
  transition-delay: 0s;
}

.submenu .menu-item,
.sub-submenu .menu-item {
  opacity: 0;

  transform: translateX(10px);

  animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;

    transform: translateX(0);
  }
}

.submenu .menu-item:nth-child(1) {
  animation-delay: 0.05s;
}

.submenu .menu-item:nth-child(2) {
  animation-delay: 0.1s;
}

.submenu .menu-item:nth-child(3) {
  animation-delay: 0.15s;
}

.submenu .menu-item:nth-child(4) {
  animation-delay: 0.2s;
}

.submenu .menu-item:nth-child(5) {
  animation-delay: 0.25s;
}

.submenu .menu-item:nth-child(6) {
  animation-delay: 0.3s;
}

.sub-submenu .menu-item:nth-child(1) {
  animation-delay: 0.05s;
}

.sub-submenu .menu-item:nth-child(2) {
  animation-delay: 0.1s;
}

.sub-submenu .menu-item:nth-child(3) {
  animation-delay: 0.15s;
}

.sub-submenu .menu-item:nth-child(4) {
  animation-delay: 0.2s;
}

.ii {
  margin-right: 5px;
}

/* Mobile menu button */

.mobile-menu-toggle {
  display: none;

  position: absolute;

  right: 15px;

  cursor: pointer;

  z-index: 1010;

  font-size: 24px;
}

/* Mobile back button */

.back-btn {
  display: none;

  padding: 10px 15px;

  background-color: #f5f5f5;

  color: #333;

  font-weight: bold;

  cursor: pointer;

  border-bottom: 1px solid #ddd;
}

.back-btn i {
  margin-right: 5px;
}

/* MOBILE RESPONSIVE STYLES */

@media (max-width: 991px) {
  .utilities {
    display: none;

    position: static;

    flex-direction: column;

    width: 100%;

    gap: 0;

    margin-top: 10px;
  }

  .utilities.show-mobile {
    display: flex;
  }

  .location-icon {
    padding: 12px 15px;

    border-bottom: 1px solid #eee;

    width: 100%;
  }

  .search-icon {
    padding: 12px 15px;

    border-bottom: 1px solid #eee;

    width: 100%;
  }
}

@media (max-width: 768px) {
  .header {
    height: auto;

    padding: 15px;

    flex-wrap: wrap;
  }

  .logo-nav {
    position: relative;

    left: 0;

    display: flex;

    justify-content: center;

    width: 100%;
  }

  .mobile-menu-toggle {
    display: block;

    top: 20px;
  }

  .main-nav {
    display: none;

    flex-direction: column;

    width: 100%;

    margin-left: 0;

    background-color: #fff;

    position: absolute;

    top: 67px;

    left: 0;

    z-index: 1009;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

    max-height: 80vh;

    overflow-y: auto;
  }

  .main-nav.show-mobile {
    display: flex;
  }

  .main-nav-item {
    padding: 15px;

    border-bottom: 1px solid #eee;
  }

  .main-nav-item::after {
    float: right;
  }

  .mega-menu {
    position: fixed;

    top: 0;

    height: 100%;

    transform: translateX(100%);

    transition: transform 0.3s ease;

    display: block;

    opacity: 1;
  }

  .menu-container {
    flex-direction: column;

    height: 100%;

    overflow-y: auto;
  }

  .menu-column {
    width: 100%;

    border-right: none;

    border-bottom: 1px solid #eee;
  }

  .submenu,
  .sub-submenu {
    position: fixed;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    transform: translateX(100%);

    box-shadow: none;

    z-index: 1003;

    transition: transform 0.3s ease;

    display: block;

    opacity: 1;
  }

  .back-btn {
    display: block;
  }

  /* Mobile navigation classes */

  .show-mega-menu .mega-menu {
    transform: translateX(0);
  }

  .show-submenu .submenu {
    transform: translateX(0);
  }

  .show-sub-submenu .sub-submenu {
    transform: translateX(0);
  }

  /* Hide hover animations on mobile */

  .menu-item:hover,
  .color-item:hover {
    background-color: transparent;

    padding-left: 16px;
  }

  .menu-item::before,
  .color-item::before {
    display: none;
  }
}

.product-card {
  background-color: #111;

  border: 1px solid #222;

  border-radius: 0;

  margin-bottom: 30px;

  padding: 0;

  overflow: hidden;
}
.sorting-bar {
  background-color: #000; /* Black background */
  padding: 15px 20px;
  border-radius: 8px;
  color: #fff;
}

.results-info {
  font-size: 15px;
  color: #ddd;
}

.btn-black {
  background-color: #1c1c1c;
  color: #fff;
  border: 1px solid #444;
}

.btn-black:hover {
  background-color: #333;
  color: #fff;
}

.dropdown-menu-dark {
  background-color: #222;
  border: none;
}

.dropdown-menu-dark .dropdown-item {
  color: #eee;
}

.dropdown-menu-dark .dropdown-item:hover {
  background-color: #333;
  color: #fff;
}

.product-img {
  background-color: #111;

  display: flex;

  justify-content: center;

  align-items: center;

  width: 100%;
}

.product-img img {
  max-height: 80%;

  max-width: 80%;
}

.product-info {
  padding: 15px;
}

.product-name {
  font-size: 22px;

  margin-bottom: 5px;
}

.product-brand {
  font-size: 14px;

  margin-bottom: 10px;

  letter-spacing: 1px;
}

.product-dimensions {
  font-size: 12px;

  color: #888;
}

.categories-title,
.series-title {
  color: #f00;

  margin-bottom: 15px;
}

.filter-section {
  background-color: #111;

  padding: 15px;

  border: 1px solid #222;
}

.filter-section label {
  display: block;

  margin-bottom: 10px;
}

.filter-item {
  margin-left: 20px;

  margin-bottom: 8px;
}

.reset-btn {
  width: 100%;

  background-color: #fff;

  color: #000;

  border: none;

  padding: 8px;

  margin-top: 15px;
}

.results-info {
  color: #888;

  font-size: 14px;

  margin-bottom: 20px;
}

.dropdown-toggle {
  background-color: transparent;

  color: #fff;

  border: none;

  text-align: right;
}

.plus-minus {
  float: right;

  font-weight: bold;
}

.toggle-section {
  cursor: pointer;
}

.chat-button {
  position: fixed;

  bottom: 30px;

  right: 30px;

  width: 50px;

  height: 50px;

  background-color: #000;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  border: 1px solid #333;

  cursor: pointer;

  z-index: 1000;
}

/* Animation styles */

.collapsible-content {
  max-height: 1000px;

  overflow: hidden;

  transition: max-height 0.3s ease-in-out;
}

.collapsible-content.collapsed {
  max-height: 0;
}

/* Pagination styles */

.pagination {
  margin-top: 20px;

  margin-bottom: 40px;

  justify-content: center;
}

.pagination .page-item .page-link {
  background-color: #111;

  color: #fff;

  border-color: #333;

  margin: 0 3px;

  border-radius: 0;
}

.pagination .page-item.active .page-link {
  background-color: #f00;

  border-color: #f00;

  color: #fff;
}

.pagination .page-item .page-link:hover {
  background-color: #222;

  color: #fff;
}

.pagination .page-item.disabled .page-link {
  background-color: #111;

  color: #555;
}



















.logo-nav {
  display: flex;
  align-items: center;
  height: 55px;
 }

.logo-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-content h1 {
  margin: 0;
  font-size: 2.8rem;
  font-weight: 900;
  color: #2c3e50;
  letter-spacing: 1px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.logo-content h1 span {
  color: #e74c3c;
}

.tagline {
  margin: 0px 
  !important;
  font-size: 0.95rem;
  font-style: italic;
  color: #7f8c8d;
  letter-spacing: 0.3px;
  text-align: center;
}









  .size-dr-wrapper {
    margin: 12px 0;
  }

  .size-dr-label {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 15px;
    color: #212529;
  }

  .size-dr-select {
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 15px;
    border: 1px solid #ced4da;
    background: #f8f9fa;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
  }

  .size-dr-select:focus {
    border-color: #0d6efd;
    background: #fff;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  }

  .size-dr-select option {
    padding: 10px;
    font-size: 15px;
  }

  .size-dr-icon {
    position: absolute;
    top: 42px;
    right: 15px;
    pointer-events: none;
    color: #6c757d;
    font-size: 18px;
  }

  .size-dr-position-relative {
    position: relative;
  }


   .cm-modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(5px);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 99999;
        opacity: 1;
    }

    @keyframes cmFadeIn {
        to { opacity: 1; }
    }

    @keyframes cmFadeOut {
        to { opacity: 0; }
    }

    .cm-modal {
        background: white;
        border-radius: 20px;
        padding: 25px;
        max-width: 500px;
        width: 90%;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
        transform: translateY(0);
        position: relative;
        z-index: 100000;
    }

    @keyframes cmSlideUp {
        to { transform: translateY(0); }
    }

    .cm-close-btn {
        position: absolute;
        top: 10px;
        right: 15px;
        background: none;
        border: none;
        font-size: 24px;
        color: #999;
        cursor: pointer;
        transition: color 0.2s;
    }

    .cm-close-btn:hover {
        color: #333;
    }

    .cm-modal h2 {
        color: #333;
        margin-bottom: 5px;
        font-size: 24px;
        font-weight: 600;
    }

    .cm-modal p {
        color: #666;
        margin-bottom: 20px;
        line-height: 1.4;
        font-size: 14px;
    }

    .cm-form-row {
        display: flex;
        gap: 15px;
        margin-bottom: 20px;
    }

    .cm-form-group {
        margin-bottom: 20px;
        flex: 1;
    }

    .cm-form-group label {
        display: block;
        margin-bottom: 5px;
        color: #333;
        font-weight: 500;
        font-size: 13px;
    }

    .cm-form-group input,
    .cm-form-group textarea {
        width: 100%;
        padding: 12px;
        border: 2px solid #e1e5e9;
        border-radius: 8px;
        font-size: 14px;
        transition: all 0.3s ease;
        font-family: inherit;
        box-sizing: border-box;
    }

    .cm-form-group input:focus,
    .cm-form-group textarea:focus {
        outline: none;
        border-color: #667eea;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        transform: translateY(-1px);
    }

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

    .cm-submit-btn {
        width: 100%;
        padding: 12px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .cm-submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    }

    @media (max-width: 480px) {
        .cm-modal {
            padding: 20px;
            margin: 20px;
        }
        
        .cm-modal h2 {
            font-size: 20px;
        }

        .cm-form-row {
            flex-direction: column;
            gap: 0;
        }
    }