@charset "UTF-8";
.shop {
  background-color: white;
}
.shop .mainShopWrapper {
  background-color: white;
  min-height: 100vh;
  min-height: 100dvh;
}

/* AN Header */
#anHeader {
  width: 100%;
  position: relative;
  z-index: 99999;
  background-color: white;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1098039216);
}
#anHeader .mobile-menu-button-close {
  display: none;
}
#anHeader.show-mobile {
  position: fixed;
  top: 0px;
  left: 0px;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px;
  transition: 0.2s;
}
#anHeader.show-mobile .mobile-menu-button-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #1d349b;
  color: white;
  font-size: 29px;
  text-align: center;
  position: absolute;
  top: 20px;
  right: 20px;
}
#anHeader.show-mobile .inner {
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
#anHeader.show-mobile .left {
  flex: none;
}
#anHeader.show-mobile .mobile-menu-button {
  display: none !important;
}
#anHeader.show-mobile .right {
  display: flex !important;
  flex: none;
  flex-direction: column;
}
#anHeader.show-mobile .right .menu-items {
  display: flex;
  flex-direction: column;
  margin: 20px 0px;
  gap: 30px;
}
#anHeader .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: calc(100% - 20px);
  width: 1360px;
  margin: auto;
}
@media (max-width: 992px) {
  #anHeader .inner {
    padding: 10px 20px;
  }
}
#anHeader .inner .left .logo {
  height: 40px;
}
#anHeader .inner .mobile-menu-button {
  display: none;
}
@media (max-width: 992px) {
  #anHeader .inner .mobile-menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #1d349b;
    color: white;
    font-size: 29px;
    text-align: center;
    margin-left: 20px;
    flex: none;
  }
}
#anHeader .inner .right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  #anHeader .inner .right {
    display: none;
  }
}
#anHeader .inner .right .menu-items a {
  font-size: 18px;
  color: black;
  font-weight: 900;
  padding: 5px;
  margin: 0px 10px;
}
#anHeader .inner .right .menu-items a.highlighted {
  color: white;
  padding-left: 10px;
  padding-right: 10px;
  background-color: #1d349b;
}
#anHeader .inner .right .digital-partner {
  padding: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  background-color: black;
}
#anHeader .inner .right .digital-partner .logo-digital-partner {
  height: 40px;
}
#anHeader .inner .right .digital-partner .icon-wrapper {
  font-size: 24px;
  color: white;
  cursor: pointer;
}
#anHeader .inner .right .digital-partner .desc {
  font-size: 14px;
  font-weight: bold;
  color: white;
  line-height: 18px;
  margin: 0px;
}
#anHeader .inner .right .extra-items {
  display: flex;
  padding: 8px 16px;
  gap: 16px;
}
#anHeader .inner .right .extra-items .item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px; 
  color: black;
  font-weight: 500;
  cursor: pointer;
}
#anHeader .inner .right .extra-items .item:hover {
  color: #1d349b;
}
#anHeader .inner .right .extra-items .item.cart {
  padding: 8px 16px;
  position: relative;
}
#anHeader .inner .right .extra-items .item.cart i {
  font-size: 24px;
  color: #1d349b;
}
#anHeader .inner .right .extra-items .item.cart .counter {
  background-color: #1d349b;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 12px;
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 4px;
}
#anHeader .inner .right .extra-items .item.cart .logged-in-check {
  position: absolute;
  top: 2px;
  right: 4px;
  background-color: green;
  width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 10px;
}
#anHeader .inner .right .extra-items .item.cart .logged-in-check i {
  color: white;
  font-size: 10px;
}
#anHeader .inner .right .extra-items .item.language {
  position: relative;
}
#anHeader .inner .right .extra-items .item.language .language-dropdown {
  display: none;
}
#anHeader .inner .right .extra-items .item.language:hover .language-dropdown {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  background-color: white;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 99999;
  border: 1px solid #ddd;
}
#anHeader .inner .right .extra-items .item.language:hover .language-dropdown .item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 8px;
}
#anHeader .inner .right .extra-items .item.language:hover .language-dropdown .item:hover {
  background-color: #1d349b;
  color: white;
  transition: 0.2s;
}
#anHeader .inner .right .extra-items .item.language:hover .language-dropdown .item:hover .name {
  color: white;
}
#anHeader .inner .right .extra-items .item.language:hover .language-dropdown .item .flag {
  width: 24px;
  height: 16px;
  display: flex;
}
#anHeader .inner .right .extra-items .item.language:hover .language-dropdown .item .flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#anHeader .inner .right .extra-items .item.language:hover .language-dropdown .item .name {
  font-size: 14px;
  font-weight: bold;
  color: black;
}
#anHeader .inner .right .extra-items .item.language .ro-flag {
  width: 24px;
  height: 16px;
  display: flex;
}
#anHeader .inner .right .extra-items .item.language .ro-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#anHeader .inner .right .extra-items .item.language .name {
  font-size: 14px;
  font-weight: bold;
  color: black;
}

/* End of AN Header */
/* Hero Shop */
.heroShop {
  min-height: 50dvh;
  min-height: 50vh;
  background: url("https://www.elconet.ro/modules/cz_imageslider/views/img/a34fed2640404282bb1c44b88544cba00f3c8fcd_s7-1500-plc.jpg") no-repeat center center;
  background-position: center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.heroShop .shade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.5;
  z-index: 1;
}
.heroShop .inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  gap: 24px;
}
.heroShop .inner h1 {
  font-size: 40px;
  line-height: 48px;
  color: white;
  font-weight: 900;
  margin: 0;
  padding: 0;
}
.heroShop .inner p {
  font-size: 24px;
  line-height: 32px;
  color: white;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

/* End of Hero Shop */
#widget-products-listing .shopSidebar {
  position: sticky !important;
  top: 10px;
}

.containerWithSidebar {
  display: flex;
  gap: 30px;
  max-width: 1360px;
  margin: auto;
  padding: 30px;
  width: 100%;
}
@media (max-width: 992px) {
  .containerWithSidebar {
    flex-direction: column;
  }
}
.containerWithSidebar .shopSidebar {
  width: 300px;
  background-color: white;
  flex: none;
  position: relative;
}
@media (max-width: 992px) {
  .containerWithSidebar .shopSidebar {
    width: 100%;
  }
}
.containerWithSidebar .shopSidebar .search-wrapper input {
  border-radius: 0px !important;
  border: 1px solid #dddddd !important;
}
.containerWithSidebar .shopSidebar .shopSidebarContent {
  position: sticky;
  top: 10px;
  overflow-y: auto;
}
.containerWithSidebar .shopSidebar .shopSidebarContent .search-wrapper {
  position: relative;
}
.containerWithSidebar .shopSidebar .shopSidebarContent .search-wrapper .search-btn-trigger {
  height: 32px;
  width: 32px;
  background-color: #1d349b;
  border: 1px solid #1d349b;
  color: white;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 3px;
  right: 3px;
}
.containerWithSidebar .shopSidebar .shopSidebarContent .search-wrapper .search-btn-trigger:hover {
  background-color: white;
  color: #1d349b;
  transition: 0.2s;
}
@media (max-width: 992px) {
  .containerWithSidebar .shopSidebar .shopSidebarContent .category-container {
    max-height: 300px;
    overflow-y: auto;
  }
}
.containerWithSidebar .shopSidebar .sidebar-section-title {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 24px;
  color: black;
  opacity: 0.4;
}
.containerWithSidebar .shopSidebar .categories-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
@media (max-width: 992px) {
  .containerWithSidebar .shopSidebar .categories-wrapper {
    max-height: 200px;
    overflow-y: auto;
  }
}
.containerWithSidebar .shopSidebar .categories-wrapper .category {
  cursor: pointer;
  padding: 10px;
  border: 1px solid #ddd;
  background: #fff;
  margin-bottom: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: flex;
}
.containerWithSidebar .shopSidebar .categories-wrapper .category .arrow {
  flex: 1;
  display: flex;
  align-items: center;
}
.containerWithSidebar .shopSidebar .categories-wrapper .category .arrow:before {
  margin-left: auto;
}
.containerWithSidebar .shopSidebar .categories-wrapper .category.selected {
  background-color: #1d349b;
  border: 1px solid #1d349b;
  color: white;
}
.containerWithSidebar .shopSidebar .categories-wrapper .category.selected:before {
  color: white;
}
.containerWithSidebar .shopSidebar .categories-wrapper .category:hover {
  background: #e9ecef;
}
.containerWithSidebar .shopSidebar .categories-wrapper .children {
  display: none;
  margin-left: 20px;
}
.containerWithSidebar .shopSidebar .categories-wrapper .arrow {
  font-size: 12px;
}
.containerWithSidebar .shopSidebar .categories-wrapper .arrow.collapsed:before {
  content: "▶"; /* Right arrow */
}
.containerWithSidebar .shopSidebar .categories-wrapper .arrow.expanded:before {
  content: "▼"; /* Down arrow */
}
.containerWithSidebar .shopContent {
  flex: 1;
  background-color: white;
  overflow: hidden;
}

.wrapped-section .wrapped-section-title {
  font-size: 28px;
  line-height: 26px;
  font-weight: bold;
  color: black;
}

/* Product Card */
.product-card {
  position: relative;
  border: 1px solid #ddd;
  background-color: white;
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product-card .image-wrapper {
  display: block;
  height: 200px;
  overflow: hidden;
}
.product-card .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card .top-right-actions {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-card .top-right-actions .action {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border: 1px solid #ddd;
  cursor: pointer;
  border-radius: 16px;
}
.product-card .top-right-actions .action:hover {
  background-color: #1d349b;
  color: white;
  border: 1px solid #1d349b;
  transition: 0.2s;
}
.product-card .badges {
  position: absolute;
  z-index: 2;
  left: 0px;
  top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-card .badges .badge {
  width: fit-content;
  color: white;
  font-size: 14px;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 0px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  background-color: #1d349b;
}
.product-card .badges .badge.type-blue-1 {
  background-color: #1d349b;
  color: white;
}
.product-card .badges .badge.type-blue-2 {
  background-color: #0099ff;
  color: white;
}
.product-card .badges .badge.type-green-1 {
  background-color: #4ca868;
  color: white;
}
.product-card .meta {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  justify-content: space-between;
}
.product-card .meta .title {
  font-size: 18px;
  font-weight: bold;
  min-height: inherit;
  color: black;
  letter-spacing: -1px;
  /* max 2 lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}
.product-card .meta .pricing {
  display: flex;
  gap: 8px;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
}
.product-card .meta .pricing .left {
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.product-card .meta .pricing .left .old-price {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
  margin: 0;
}
.product-card .meta .pricing .left .price {
  font-size: 18px;
  font-weight: bold;
  color: #1d349b;
  margin: 0;
  margin-top: -4px;
}
.product-card .meta .stepper {
  display: flex;
}
.product-card .meta .stepper .input-wrapper {
  flex: 1;
}
.product-card .meta .stepper .input-wrapper input {
  border-radius: 0px;
  width: 70px;
  width: 100%;
}
.product-card .meta .stepper .button-wrapper {
  background-color: #1d349b;
  border-radius: 0px;
  color: white;
  border: 1px solid #1d349b;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 8px;
  cursor: pointer;
}
.product-card .meta .stepper .button-wrapper:hover {
  background-color: white;
  color: #1d349b;
  transition: 0.2s;
}

/* End of Product Card */
/* Products Wrapper */
.products-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.products-wrapper .item {
  width: calc(25% - 24px);
}
@media (max-width: 1200px) {
  .products-wrapper .item {
    width: calc(33.3333333333% - 24px);
  }
}
@media (max-width: 992px) {
  .products-wrapper .item {
    width: calc(50% - 12px);
  }
}

/* End of Products Wrapper */
/* Sidebar Offer Product */
.product-offer-wrapper {
  position: relative;
  background-color: #1d349b;
  border: 1px solid #1d349b;
  padding: 16px;
}
.product-offer-wrapper .product-offer-title {
  font-size: 16px;
  font-weight: bold;
  color: white;
}

/* End of Sidebar Offer Product */
/* Header Announcement Scrolling Bar */
#headerAnnouncementScrolling {
  background-color: #1d349b;
  padding: 10px 0;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
@media (min-width: 992px) {
  #headerAnnouncementScrolling {
    height: 43px;
  }
}
#headerAnnouncementScrolling.blackFriday {
  background-color: black;
}
#headerAnnouncementScrolling .inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 30px;
  width: fit-content;
  white-space: nowrap;
  animation: loop 30s linear infinite;
}
#headerAnnouncementScrolling .inner span {
  font-size: 14px;
  line-height: 16px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
  color: white;
}
#headerAnnouncementScrolling .inner span i {
  font-size: 20px;
  color: white;
}
@media (max-width: 992px) {
  #headerAnnouncementScrolling .inner span {
    font-size: 12px;
    line-height: 14px;
  }
  #headerAnnouncementScrolling .inner span i {
    font-size: 16px;
  }
}
#headerAnnouncementScrolling .fade {
  width: 100%;
  opacity: 0.5;
  position: absolute;
  background: linear-gradient(90deg, #000, transparent 30%, transparent 90%, #000);
  inset: 0;
  pointer-event: none;
}

@keyframes loop {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* End of Header Announcement Scrolling Bar */
/* Product Page */
.shop-product-page .title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.shop-product-page .title-wrapper .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  column-gap: 12px;
  row-gap: 2px;
  justify-content: flex-start;
  align-items: center;
}
.shop-product-page .title-wrapper .breadcrumbs a {
  font-size: 14px;
  font-weight: 600;
  color: #1d349b;
  text-decoration: none;
}
.shop-product-page .title-wrapper .breadcrumbs .sep {
  font-size: 14px;
  color: black;
  font-weight: 400;
  opacity: 0.4;
}
.shop-product-page .title-wrapper .product-title {
  text-align: left;
  font-size: 32px;
  line-height: 40px;
  font-weight: bold;
  margin: 0;
  padding: 0;
}

.product-details-content .main-details {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}
@media (max-width: 992px) {
  .product-details-content .main-details {
    flex-wrap: wrap;
  }
}
.product-details-content .main-details .image-wrapper {
  width: calc(50% - 16px);
  position: relative;
  border: 1px solid #ddd;
}
@media (max-width: 992px) {
  .product-details-content .main-details .image-wrapper {
    width: 100%;
  }
}
.product-details-content .main-details .image-wrapper .badges {
  position: absolute;
  z-index: 2;
  left: 0px;
  top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-details-content .main-details .image-wrapper .badges .badge {
  width: fit-content;
  color: white;
  font-size: 18px;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 0px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  background-color: #1d349b;
}
.product-details-content .main-details .image-wrapper .badges .badge.type-blue-1 {
  background-color: #1d349b;
  color: white;
}
.product-details-content .main-details .image-wrapper .badges .badge.type-blue-2 {
  background-color: #0099ff;
  color: white;
}
.product-details-content .main-details .image-wrapper .badges .badge.type-green-1 {
  background-color: #4ca868;
  color: white;
}
.product-details-content .main-details .image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 420px;
}
.product-details-content .main-details .price-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: calc(50% - 16px);
}
@media (max-width: 992px) {
  .product-details-content .main-details .price-details {
    width: 100%;
  }
}
.product-details-content .main-details .price-details .description {
  font-size: 18px;
  font-weight: bold;
  color: black;
  margin: 0;
  padding: 0;
}
.product-details-content .main-details .price-details .pricing {
  display: flex;
  gap: 8px;
}
.product-details-content .main-details .price-details .pricing .left {
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.product-details-content .main-details .price-details .pricing .left .old-price {
  font-size: 18px;
  color: #999;
  text-decoration: line-through;
  margin: 0;
}
.product-details-content .main-details .price-details .pricing .left .price {
  font-size: 22px;
  font-weight: bold;
  color: #1d349b;
  margin: 0;
  margin-top: -4px;
}
.product-details-content .main-details .price-details .stepper {
  display: flex;
}
.product-details-content .main-details .price-details .stepper .input-wrapper {
  flex: 1;
  max-width: 120px;
}
.product-details-content .main-details .price-details .stepper .input-wrapper input {
  border-radius: 0px;
  width: 70px;
  width: 100%;
}
.product-details-content .main-details .price-details .stepper .button-wrapper {
  background-color: #1d349b;
  border-radius: 0px;
  color: white;
  border: 1px solid #1d349b;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 8px;
  cursor: pointer;
}
.product-details-content .main-details .price-details .stepper .button-wrapper:hover {
  background-color: white;
  color: #1d349b;
  transition: 0.2s;
}

.product-details-table tr td {
  padding: 8px;
  border-bottom: 1px solid #ddd;
  font-size: 16px;
  font-weight: 500;
  color: black;
}
.product-details-table tr td:first-child {
  font-weight: bold;
  color: #1d349b;
}

/* End of Product Page */
.products-counter-text {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.products-counter-text:empty {
  display: none;
}
.products-counter-text p {
  margin: 0;
}
.products-counter-text a {
  font-size: 14px;
  font-weight: bold;
  color: #1d349b;
}

.custom-pagination {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
  padding: 30px 10px;
}
.custom-pagination a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border: 1px solid #999;
  color: black;
  font-size: 12px;
  font-weight: bold;
}
.custom-pagination a:hover, .custom-pagination a.active {
  background-color: #1d349b;
  color: white;
  border: 1px solid #1d349b;
  transition: 0.2s;
}

.tabs-wrapper-pdp {
  background-color: #e9ecef;
  display: flex;
  flex-wrap: wrap;
  padding-left: 16px;
}
.tabs-wrapper-pdp .tab {
  background-color: white;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: bold;
  color: black;
  cursor: pointer;
}
.tabs-wrapper-pdp .tab.selected, .tabs-wrapper-pdp .tab:hover {
  background-color: #0099ff;
  color: white;
  transition: 0.2s;
}

.tab-content {
  padding: 16px;
}

.shop-aux-page {
  position: relative;
}
.shop-aux-page .title {
  margin-top: 0px;
  background-color: #e9ecef;
  padding: 50px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-aux-page .title h2 {
  color: #1d349b;
  font-size: 34px;
  line-height: 42px;
  font-weight: bold;
  margin: 0;
  text-align: center;
}
.shop-aux-page .inner {
  max-width: 900px;
  width: 100%;
  padding: 0px 15px;
  margin: 0 auto;
}
.shop-aux-page .separator {
  margin: 50px 0px;
  padding: 0;
  height: 1px;
  background-color: black;
  opacity: 0.1;
  width: 100%;
}
.shop-aux-page .subtotal-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.shop-aux-page .subtotal-items .group {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.shop-aux-page .subtotal-items .group .key {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  color: black;
  opacity: 0.4;
}
.shop-aux-page .subtotal-items .group .value {
  font-size: 18px;
  font-weight: bold;
  color: black;
  margin: 0;
  padding: 0;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart-items .item {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 8px;
  border: 1px solid #dddddd;
}
.cart-items .item .image-wrapper {
  width: 100px;
  height: 100px;
  overflow: hidden;
}
.cart-items .item .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-items .item .details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cart-items .item .details .name {
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: bold;
  color: black;
}
.cart-items .item .details .price {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: bold;
  color: #1d349b;
}
.cart-items .item .actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.cart-items .item .actions .remove-from-cart-btn {
  width: 32px;
  height: 32px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border: 1px solid rgb(188, 12, 12);
  color: rgb(188, 12, 12);
}
.cart-items .item .actions .remove-from-cart-btn i {
  color: rgb(188, 12, 12);
}
.cart-items .item .actions .remove-from-cart-btn:hover {
  background-color: rgb(188, 12, 12);
  color: white;
  transition: 0.2s;
}
.cart-items .item .actions .remove-from-cart-btn:hover i {
  color: white;
}

/*# sourceMappingURL=shop.css.map */
