/** Shopify CDN: Minification failed

Line 540:1 Unexpected "{"

**/
.header-new {
  display: none;
}
.header-new .nav-hover-image, 
.header-new .nb_flex-row .mega-col.image-col:hover .nav-regular-image {
    display:none;
}
.header-new .nb_flex-row .mega-col.image-col:hover .nav-hover-image {
    display: block;
}
.header-new .mega-flex-col{
    display:flex;
    align-items: center;
    gap: 10px;
}
.header-new .nb_mobile-menu-panel .header_item .menu-link:nth-last-child(1){
    border-top: 0; 
    margin-top: 0;
    padding-top: 0;
}
.header-new .mega-col .mega-col-inner {
  border: 1px solid #9f9f9f;
  display: block;
  border-radius: 10px;
  padding: 20px;
}
.header-new .navnew-submenuText {
  text-align: center;
  display: block;
  font-weight: 600;
  margin-top: 15px;
}
.header-new .nb_mega-menu .nb_flex-row {
  padding: 42px 0;
}

.header-new .nb_flex-row .mega-col.image-col {
  max-width: 260px;
  width: 100%;
}
.header-new .mega-col .mega-col-inner {
    padding: 13px 20px;
    height: 177px;
}
.header-new .header_item.header_navigation.header_desktop ul.menu.header_item a {
    color: #6D645A;
}

/* 20 may mobile menu css */

.ham-btn {
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.ham-btn .bar {
  position: absolute;
  width: 22px;
  height: 2px;
  background: #282828;
  border-radius: 2px;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.ham-btn .bar:nth-child(1) {
  transform: translateY(-6px);
}
.ham-btn .bar:nth-child(2) {
  transform: translateY(0);
}
.ham-btn .bar:nth-child(3) {
  transform: translateY(6px);
}
/* open state → X */
.ham-btn.open .bar:nth-child(1) {
  transform: rotate(45deg);
}
.ham-btn.open .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.ham-btn.open .bar:nth-child(3) {
  transform: rotate(-45deg);
}

/* Logo */
.logo {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 700;
  color: #e8721c;
  text-decoration: none;
  position: relative;
}

.hdr-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}
.hdr-icons a {
  display: flex;
  align-items: center;
  color: #1a1a1a;
  text-decoration: none;
}
.hdr-icons a:hover {
  opacity: 0.65;
}

/* Page body */
.page-body {
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.hero-block {
  background: rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 13px;
}
.skel {
  height: 13px;
  border-radius: 4px;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.07) 25%,
    rgba(0, 0, 0, 0.12) 50%,
    rgba(0, 0, 0, 0.07) 75%
  );
  background-size: 200% 100%;
  animation: sk 1.6s infinite;
}
.skel.s {
  width: 52%;
}
@keyframes sk {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* ── OVERLAY ── */
.overlay {
  position: fixed;
  top:118px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.32);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.overlay.on {
  opacity: 1;
  pointer-events: auto;
}

/* ══════════════════════════════
       DRAWER — left panel below nav
    ══════════════════════════════ */
.drawer {
  position: fixed;
  top: 118px;
  left: 0;
  bottom: 0;
  width: 390px;
  max-width: 100%;
  background: #fef7dd;
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.1);
}
.drawer.on {
  transform: translateX(0);
}

/* ── Drawer body ── */
.drw-body {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 0;
}

/* ── Main panel ── */
.main-panel {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  transition:
    transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-panel.out {
  transform: translateX(-40px);
  opacity: 0;
  pointer-events: none;
}
.product-item {
  display: flex;
  gap: 12px;
  align-items: center;
  font-family: Poppins;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  line-height: 120%;
  color: #000000;
  padding: 8px;
  letter-spacing: 0;
}
/* #brandsPanel {
    padding: 30px 20px;
} */
#aboutPanel {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
/* Nav rows */
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  height: 54px;
  text-decoration: none;
  color: #000000;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: border 0.15s;
  font-family: Poppins;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid transparent;
  line-height: 120%;
  border-radius: 8px;
  letter-spacing: 0;
}
#mainPanel {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  border: none;
  gap: 22px;
}

.nav-row:hover {
  border: 2px solid #ec7824;
}
.nav-row .chev {
  color: #282828;
  flex-shrink: 0;
}
.nav-row .chev svg {
  width: 18px;
  height: 18px;
  display: block;
}

/* ── Sub panel ── */
.sub-panel {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  background: #fef7dd;
  padding: 30px 20px;
  transform: translateX(100%);
  transition:
    transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  pointer-events: none;
}
.sub-panel.on {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

/* Sub rows */
.sub-row {
  display: flex;
  align-items: center;
  height: 54px;
  text-decoration: none;
  color: #000000;
  transition: background 0.15s;
  font-family: Poppins;
  font-weight: 600;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0;
}

/* Product rows — text only */
.prod-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  height: 56px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
  text-decoration: none;
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 400;
  transition: background 0.15s;
}
.prod-row:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.09);
  margin-top: 8px;
}
.prod-row:hover {
  background: rgba(0, 0, 0, 0.025);
}

/* Stagger for sub items */
.sub-panel.on .sub-row,
.sub-panel.on .prod-row {
  animation: slideIn 0.32s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.sub-panel.on *:nth-child(1) {
  animation-delay: 0.03s;
}
.sub-panel.on *:nth-child(2) {
  animation-delay: 0.08s;
}
.sub-panel.on *:nth-child(3) {
  animation-delay: 0.13s;
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(14px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Main items stagger on open */
.drawer.on .nav-row {
  animation: dropIn 0.36s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.drawer.on .nav-row:nth-child(1) {
  animation-delay: 0.07s;
}
.drawer.on .nav-row:nth-child(2) {
  animation-delay: 0.12s;
}
.drawer.on .nav-row:nth-child(3) {
  animation-delay: 0.17s;
}
@keyframes dropIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Drawer footer ── */
.drw-footer {
  flex-shrink: 0;
  border-top: 0.5px solid #000000;
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 18px;
  position: relative;
}
.flag-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.flag-btn:hover {
  opacity: 0.7;
}
.flag-svg {
  width: 24px;
  height: 16px;
  border-radius: 2px;
  display: block;
  flex-shrink: 0;
}
.flag-chev {
  display: flex;
  align-items: center;
  transition: transform 0.28s;
}
.flag-chev svg {
  width: 14px;
  height: 14px;
}
.flag-btn.open .flag-chev {
  transform: rotate(180deg);
}

.ftr-links {
  display: flex;
  gap: 22px;
}
.ftr-links a {
  text-decoration: none;
  color: #000000;
  font-family: Poppins;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0;
}

/* ── Country popup ── */
.country-pop {
  position: absolute;
  bottom: 105%;
  left: 0px;
  right: 0;
  width: 230px;
  border-radius: 5px;
  background: #fef7dd;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 5;
}
.country-pop.on {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.c-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px;
  cursor: pointer;
  background: white;
  transition: background 0.15s;
}
.c-row span {
  font-family: Poppins;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #000000;
  letter-spacing: 0;
}
.c-row:hover {
  background: #eceeea;
}
.c-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.c-name {
  font-size: 13px;
  color: #000000;
}
.c-code {
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
}

/* scrollbar */
.main-panel::-webkit-scrollbar,
.sub-panel::-webkit-scrollbar {
  width: 2px;
}
.main-panel::-webkit-scrollbar-thumb,
.sub-panel::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.12);
  border-radius: 2px;
}
.navnew-submenuText {
    color: #000000;
} 
.menu.header_item  .icon-arrow svg,
.menu.header_item  .icon-arrow svg path {
    fill: #6D645A !important;
    stroke: #6D645A !important;
} 
@media(max-width:1024px){

  .header-new  .header_account {
    display: none;
}
.header-new  .header_icons.header_item {
    gap: 20px;
}
.header-new  .cart-button-2,.header-new .search_button {
    padding: 0;
}{
  padding:0;
}
.header_container {
    padding: 15px 20px !important;
}
.header-new  .header_logo img {
    width: 100px;
    object-fit: contain;
    height: 28px;
}
}