/** Shopify CDN: Minification failed

Line 524:0 Unexpected "#"

**/
.header-custom {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 30px 0; /* 50px top and bottom padding for more space */
}

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

.header-col {
  display: flex;
  align-items: center;
}

.header-left .logo-img {
  max-height: 45px;
}

.header-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header-search {
  display: flex;
  border: 2.5px solid #22201F; /* Linie mai groasă și culoare #22201F */
  border-radius: 25px;
  overflow: hidden;
  max-width: 400px;
  width: 100%;
  background: #fff;
}

.header-search input {
  border: none;
  padding: 8px 15px;
  flex: 1;
  outline: none;
}

.header-search button {
  border: none;
  background: none;
  padding: 0 12px;
  cursor: pointer;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-icon {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #000;
  font-size: 14px;
  text-decoration: none;
  position: relative;
}

.header-cart .cart-count {
  position: absolute;
  top: -6px;
  right: -10px;
  background: #e91e63;
  color: #fff;
  font-size: 12px;
  border-radius: 50%;
  padding: 2px 6px;
}

.header-account {
  flex-direction: row;
  align-items: center;
  gap: 0.5em;
}

.header-account-icon {
  font-size: 3em;
  display: flex;
  align-items: center;
  color: #222;
}

.header-account-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  margin-left: 10px;
}

.header-welcome,
.header-auth {
  font-size: 15px;
  font-weight: 500;
  color: #222;
}

.header-icon-large {
  font-size: 2.2em;
  display: flex;
  align-items: center;
  color: #222;
}

/* Wrapper */
.menu-custom-wrapper {
  position: relative;
  width: 100%;
  /* Alignments: sidebar geometry for topbar offsetting */
  --sidebar-width: 240px; /* keep in sync with .sidebar-menu width */
  --sidebar-offset: 0px;  /* horizontal offset of sidebar from the left */
}

/* Top bar menu (pink) */
.topbar-menu {
  background-color: #ff0080;
  padding: 0.8rem 0;
}

.topbar-chat-svg{
 height:25px;
padding-right:10px;
}
.topbar-chat-svg path{
    fill:#fff;
}

.topbar-chat-svg path:hover{
}


/* Make the topbar container full-width so we can align from the viewport left */
.topbar-menu > nav.container {
  max-width: 100%;
  padding-left: 30px;
  padding-right: 0;
}
.topbar-menu-item--contact{
right:15%;
position:absolute;
}
 .topbar-menu-list {
  display: flex;
  justify-content: flex-start;
  gap: 2rem;
  margin: 0; /* remove centering */
  padding: 0;
  list-style: none;
  /* Start where the sidebar ends */
  margin-left: calc(var(--sidebar-offset) + var(--sidebar-width));
  width: calc(100% - (var(--sidebar-offset) + var(--sidebar-width)));
  max-width: none; /* allow full remaining width */
}

.topbar-menu-item--contact { margin-left: auto; }

.topbar-menu-link {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease-in-out;
}

.topbar-menu-item a{
padding:5px;
}

.topbar-menu-item a:hover{
border: #eef2ff 1px solid;
border-radius:10px;
color:#fff!important
}

/* Layout row: sidebar + slider */
.content-row {
  display: flex;
  width: 100%;
  margin-top: 0;
}

/* Sidebar menu */
.sidebar-menu {
  border: 0; /* border only on the list */
  width: 240px;
  padding: 0;
  z-index: 10;
    height: 534px;
    background-color: #f3f5f7;
  position: relative;
}

/* Right submenu OVERLAY styles */
.right-submenu {
  position: absolute;
  top: 0; /* align with slider top - same level as menu */
  left: 0; /* flush with sidebar (attached to main menu) */
  width: 300px;
  max-height: calc(100% - 0px);
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  overflow: visible; /* no internal scroll by default */
  /* no horizontal layout margin when overlayed */
  margin-left: 0;
  display: none; /* hidden by default; JS will show when needed */
  z-index: 3; /* above slider image and dots */
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.right-submenu.visible {   opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Right submenu: multi-column layout when content exceeds available height */
.right-submenu .rs-columns {
  display: flex;
  align-items: flex-start;
  gap: 14px;            /* keep in sync with JS width calc */
  padding: 8px 10px;    /* inner spacing similar to existing list */
  box-sizing: border-box;
  flex-wrap: nowrap; /* Prevent columns from wrapping to a new line */
}
.right-submenu .rs-col {
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: var(--rs-col-min, 260px); /* Each column should have a minimum width */
}
.right-submenu .rs-col .right-submenu-item2 { margin: 0; }
.right-submenu .rs-col .right-submenu-link2 {
  display: block;
  padding: 6px 15px;
  white-space: normal; /* Improve text readability */
  word-break: break-word; /* Prevent overflow for long words */
  hyphens: auto; /* Enable hyphenation */
}

/* Sidebar title */
.sidebar-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3px 19px 4px 10px;
  font-weight: 600;
  border-bottom: 2px solid #333;
}

.sidebar-title-text {
  color: #333;
  font-weight: bold;
    font-size: 16px;
}
.sidebar-title::after {
  content: "";
  position: absolute;
  left: 2%;
  bottom: 4px; /* la 2px sub titlu */
  width: 96%;
  height: 2px;
  background-color: #000;
  top:32px;
}

.sidebar-title-icon {
    font-weight: bold;
    font-size: 20px;
  cursor: pointer;
}

/* Sidebar links */
.sidebar-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 0;              /* avoid double line under title */
}

.sidebar-menu-link {
  display: block;
  padding: 10px 10px 12px 15px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s ease-in-out;
}

.sidebar-menu-link:hover {
  background: #eef2ff;
}

.topbar-menu-item a{
    padding-left:5px;
padding-right:5px;
}

#shopify-section-template--26560685441371__nov_img_link_EdEi6z .collec-img__item{
    border: 2px solid black;
    padding: 53px!important;
    height: 330px;

    max-width:250px!important;
    border-radius: 10px!important;

}
#shopify-section-template--26560685441371__nov_img_link_EdEi6z .collec-img__item img{
    padding:20px!important;
}

.item-product .product__title{
    min-height:120px;
}

/* Image slider */
.sidebar-slider {
  flex: 1;
  position: relative;
  display: flex;
  gap: 16px;
  align-items: stretch;
  max-width: 1260px;
  height: 495px;
  margin-bottom: 60px;
  padding-right:100px;
}

.slider-viewport {
  flex: 1;
  overflow: hidden;
  position: relative; /* needed for overlay positioning */
}

.slider-track {
  display: flex;
  height: 100%;
  will-change: transform;
  transition: transform 0.7s cubic-bezier(.77,0,.18,1);
}

.slide {
  min-width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding-right: 0;
  transition: filter 0.5s;
}

.slider-track .slide {
  filter: brightness(1);
}

.slider-track .slide.active {
  filter: brightness(1.1) drop-shadow(0 2px 8px rgba(0,0,0,0.15));
}

/* Dots navigation */
.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 60px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.slider-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #ff0080;
  opacity: 0.6;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
}

.slider-dot.active {
  background: #ff0080;
  opacity: 1;
}

/* Right submenu (level 1 + level 2) */
.right-submenu-list,
.right-submenu-level2 {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}
.right-submenu-item { border-bottom: 1px solid #eef0f3; }
.right-submenu-item:last-child { border-bottom: 0; }
.right-submenu-link {
  display: block;
  padding: 10px 14px;
  color: #222;
  font-weight: 600;
  text-decoration: none;
}
.right-submenu-link:hover { background: #eef2ff; }
.right-submenu-level2 { padding: 6px 0 10px 14px; }
.right-submenu-item2 { margin: 0; }
.right-submenu-link2 {
  display: block;
  padding: 6px 10px;
  color: #444;
  text-decoration: none;
  font-weight: 500;
}
.right-submenu-link2:hover { background: #f3f4f6; }

/* Enhanced Level 3 submenu styling */
.right-submenu-level3 {
  list-style: none;
  margin: 6px 0 8px 12px; /* slight indent from level 2 */
  padding: 4px 0 6px 12px; /* inner spacing */
}
.right-submenu-item3 + .right-submenu-item3 { margin-top: 2px; }
.right-submenu-link3 {
  position: relative;
  display: block;
  padding: 8px 12px 8px 24px; /* room for chevron */
  color: #374151; /* gray-700 */
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  border-radius: 6px;
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.right-submenu-link3::before {
  content: '›';
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #9ca3af; /* gray-400 */
  transition: color 0.15s ease;
}
.right-submenu-link3:hover,
.right-submenu-link3:focus {
  background: #eef2ff; /* subtle highlight */
  color: #111827; /* gray-900 */
  transform: translateX(2px);
}
.right-submenu-link3:hover::before,
.right-submenu-link3:focus::before {
  color: #6366f1; /* indigo-500 */
}
.right-submenu-link3:focus-visible {
  outline: 2px solid #a5b4fc; /* indigo-300 */
  outline-offset: 1px;
}

/* Non-home: hide categories list until click; show when sidebar is open */
.menu-custom-wrapper.is-not-home .sidebar-menu-list { display: none; }
.menu-custom-wrapper.is-not-home .sidebar-menu{height:auto;}

.sidebar-menu.is-open .sidebar-menu-list {
  position: absolute;
  top: 37px;
  left: 0;         /* align with sidebar container */
  z-index: 99999;
  width: 100%;     /* fill sidebar width */
  display:block;
}
.sidebar-menu .sidebar-title{
    background-color: #f3f5f7;
    border: 1px solid #ddd;

    border-radius: 6px 6px 0 0;
}
.sidebar-menu.is-open .sidebar-menu-list{
    background-color: #f3f5f7;
    border: 1px solid #ddd;
    padding: 0;
}


/* Responsive padding for sidebar (tablet & desktop) */
@media (min-width: 768px) {
  /* Sidebar keeps its offset on larger screens */
  .menu-custom-wrapper { --sidebar-offset: 20%; }

  .sidebar-menu {
    margin-left: 11%;
    margin-top: -39px;
  }

  /* Ensure the topbar menu starts to the right of the sidebar (including its offset) */
  .topbar-menu-list {
    margin: 0;
    margin-left: calc(var(--sidebar-offset) + var(--sidebar-width));
    width: calc(100% - (var(--sidebar-offset) + var(--sidebar-width)));
  }
}

/* Center exactly-five slides in Swiper carousels */
.nov-swiper-carousel.center-when-5 .swiper-wrapper {
  margin-left: auto;
  margin-right: auto;
  justify-content: center !important;
}

/* Ensure slides don't try to float; Swiper uses flex */
.nov-swiper-carousel.center-when-5 .swiper-slide {
  float: none;
}


# de verificat si de editat
.product-form__item--submit .btnAddToCart{
  background:#ec028d!important;
  color:white!important;
}
.product-form__item--checkout .shopify-payment-button__button{
  border: 1px solid #ec028d!important;
}

#NovBreadcrumbs.breadcrumb_collection{
      padding-top: 50px!important;
    padding-bottom: 50px!important;
}

#shopify-section-template--26529131037019__nov_img_link_EdEi6z .collec-img__item{
    border: 2px solid black;
    padding: 53px!important;
    height: 330px;

    max-width:250px!important;
    border-radius: 10px!important;

}

.site-nav .site-nav__link--main{
    font-size:17px;
}

.site-nav--direc-cyb{
  right:-25px;
}

@media(min-width:768px){
    #header-sticky .bl_content{
        height:120px!important;
    }
    .contentstickynew_logo{
        padding-top:18px;
    }
}

.site-nav-direc-cyb-mob{
    top:20px!important;
    right:40px;
}

.mm-listview .mm-next{
    width:80px!important;
    right:20px!important;
}

.contentstickynew_menu .site-nav .site-nav__link--main{
    font-size:14px
}

.contentstickynew_menu  .site-nav .nav--lv1{
    padding:22px 15px;
}

.article__author{
  display:none!important;
}

.section-blog .article_cs>span:not(:last-child):after{
  content:"";
}

.section-image-link .collec-img__item{
    border: 2px solid black;
    padding:25px!important;
    border-radius:0px!important;

}

.block-policy-content .p-icon img{
    width:50px;
    max-width:50px;
}

.block-policy-content .policy-item{
    min-width:220px;
}

.policy__item--content img{
    width: 100px;
    max-width: 100px;
}

.jdgm-write-rev-link.jdgm-write-rev-link{
    background-color: #ec028d!important;
    border-color: #ec028d!important;
}

.jdgm-rev-widg .jdgm-star, .jdgm-revs-tab .jdgm-star, .jdgm-all-reviews .jdgm-star, .jdgm-gallery-popup .jdgm-star,
.jdgm-write-review-modal__stars .jdgm-star{
    color: #ec028d!important;
}

.product-form__item--submit .btnAddToCart {
    background: #ec028d !important;
    color: white !important;
}
.product-form__item--submit:hover .btnAddToCart{
    background: white!important ;
    color: #ec028d!important;
    border:1px solid #ec028d!important;
}

.product-form__item--checkout .shopify-payment-button__button{
    color: #ec028d!important;
}

.footer_newsletter{
    color:#ffffff;
}
.nov-footer .color-social .block_social a{
    color:#ffffff;
    border-color:#ffffff;
}

.nov-footer .color-social .block_social a:hover{
    color:#ffffff;
}
.copyright{
    color:#ffffff;
}

.product_price_b2b{
  color:#ec028d;
}

.product-single__stick-add .shopify-payment-button{
  display:none!important;
}

.product--item .product_price_b2b{
  font-size:15px;
}