/*
Theme Name: BQ Store
Author: Veenkes
Version: 1.0
*/


@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600&display=swap');

body {
  margin: 0; padding: 0;
  font-family: 'IBM Plex Sans', sans-serif !important;
  color: #2b2b2b;
  width: 100%; min-width: 320px;
}
* { box-sizing: border-box; }
a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
ul, li { list-style: none; padding: 0; margin: 0; }
button { border: 0; padding: 0; background: transparent; cursor: pointer; font-family: inherit; }
input, select { outline: none; font-family: inherit; }
img { max-width: 100%; height: auto; }


.header_wrapper {
  position: sticky; top: 0; left: 0; right: 0; width: 100%;
  display: flex; justify-content: space-between;
  padding: 20px 40px 15px;
  border-bottom: 1.5px solid #e8e9eb;
  background: #fff; margin-bottom: 50px; z-index: 1000;
}

.header_left, .header_right { align-items: flex-end; display: flex; gap: 24px; }

.header_logo { width: 40px; height: 64px; margin-right: 20px; }
.header_logo img { width: 100%; height: 100%; }

.header_search { font-style: italic; margin-right: 40px; opacity: 0.5; display: flex; align-items: center; }

.header_change {
  position: relative; margin-right: 15px; display: flex; align-items: center;
  cursor: pointer; white-space: nowrap;
}
.header_change span { font-weight: 500; font-size: 14px; text-transform: uppercase; margin-bottom: 16px; display: none; }  


.header_currencyHeader { display: flex; align-items: center; gap: 6px; text-transform: uppercase; font-size: 16px;}

.header_icon { margin-left: 6px; display: flex; align-items: center; transform: rotate(180deg); transition: 300ms; }
.header_change.active .header_icon { transform: rotate(0deg); }

.header_dropdown {
  z-index: 9999; left: 0; top: 100%; position: absolute; display: none; padding-top: 10px;
}
.header_change.active .header_dropdown { display: block; }

.header_dropdown .items { display: block; background: #f4f5f7; width: 114px; }
.header_dropdown .item {
  font-weight: 400; font-size: 16px; line-height: 22px; padding: 6px 0 6px 20px;
  color: #000; width: 100%; cursor: pointer; text-transform: uppercase;
}
.header_dropdown .item:hover {
  background: linear-gradient(0deg, rgba(35, 79, 51, 0.75), rgba(35, 79, 51, 0.75)), #f4f5f7; color: #fff;
}
.header_dropdown .item.active {
  background: linear-gradient(0deg, #234f33, #234f33), #f4f5f7; color: #fff;
}
.header_cart { position: relative; font-size: 16px; text-transform: uppercase; display: flex; align-items: center;}
.header_added {
  position: absolute; top: 37.5px; right: 0; width: 174px; height: 48px;
  background: #f4f5f7; font-size: 16px; line-height: 24px; color: #234f33;
  display: flex; align-items: center; justify-content: center;
}

.header_menu .items { display: flex; align-items: center; font-size: 16px; }
.header_menu .item {
  font-weight: 400; margin-right: 40px; padding-left: 20px; position: relative;
  display: flex; align-items: center; text-transform: uppercase; cursor: pointer;
  transition: all 0.2s ease; white-space: nowrap;
}
.header_menu .item .icon { margin-left: 10px; display: flex; align-items: center; transform: rotate(180deg); transition: 300ms; }
.header_menu .item:hover .icon { transform: rotate(0deg); }
.header_menu .item:hover .children { display: block; }

.header_menu .children {
  position: absolute; top: 15px; left: 0; display: none; z-index: 9999; padding-top: 20px;
}
.header_menu .children .items { display: block; background: #f4f5f7; width: max-content; }
.header_menu .children .item {
  font-weight: 400; font-size: 16px; line-height: 22px; padding: 6px 0 6px 20px;
  color: #000; width: 100%; margin-right: 40px;
}
.header_menu .children .item:hover { background: #000; }
.header_menu .children .item:hover a { color: #fff; }

.header_mobileMenu, .header_cartMobile { display: none; }

@media screen and (max-width: 1140px) { .header_menu .items .item:nth-child(6) { display: none; } }
@media screen and (max-width: 1040px) { .header_menu .items .item:nth-child(5) { display: none; } }
@media screen and (max-width: 930px) { .header_menu .items .item:nth-child(4) { display: none; } }
@media screen and (max-width: 840px) { 
  .header_menu .items .item:nth-child(3) { display: none; } 
  .header_wrapper { padding: 20px; }
}
@media screen and (max-width: 630px) {
  .header_wrapper { padding: 9px 24px 10px; margin-bottom: 45px; }
  .header_logo { width: 30px; height: 48px; margin-right: 0; }
  .header_menu { display: none; }
  .header_left { display: flex; align-items: center; justify-content: space-between; width: 100%; }
  .header_right { display: none; }
  .header_cart { margin-left: 0; }
  .header_mobileMenu, .header_cartMobile { display: block; }
  .header_mobileMenu .burger { width: 24px; height: 24px; display: block;}
}
@media screen and (max-width: 400px) { .header_wrapper { margin-bottom: 32px; } }
.mobile_wrapper {
  display: flex; flex-direction: column; position: fixed; top: 0; left: 0; right: 0;
  width: 100%; height: 100%; z-index: 2000; background: #fff; overflow: auto;
  transform: translateX(-100%); transition: transform 0.3s ease;
}
.mobile_wrapper.open { transform: translateX(0); }

.mobile_heading {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  border-bottom: 1.5px solid #e8e9eb; padding: 9px 24px 10px;
}
.mobile_close { width: 32px; height: 32px; }
.mobile_logo { width: 30px; height: 48px; }
.mobile_categories { padding: 40px 24px; }
.mobile_dropdown { position: relative; margin-bottom: 10px; }
.mobile_dropdown .category {
  display: flex; color: #000; padding: 10px 0; gap: 16px; font-style: normal;
  font-weight: 500; font-size: 16px; line-height: 24px; text-transform: uppercase;
  justify-content: space-between; align-items: center;
}
.mobile_dropdown .icon { display: flex; align-items: center; transform: rotate(180deg); transition: 0.3s; }
.mobile_dropdownMenu {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
}
.mobile_dropdownMenu li { padding: 0; }
.mobile_dropdownMenu a {
  display: block; color: #000; padding: 10px 0; font-weight: 400; font-size: 14px;
  line-height: 20px; text-transform: uppercase;
}
.mobile_dropdown > input[type='checkbox'] {
  opacity: 0; display: block; position: absolute; margin: 0; top: 0; width: 100%; height: 100%; cursor: pointer; z-index: 2;
}
.mobile_dropdown > input:checked ~ .mobile_dropdownMenu { max-height: 999px; }
.mobile_dropdown > input:checked + .category .icon { transform: rotate(0deg); }
.footer_wrapper {
  border-top: 1.5px solid #e8e9eb;
  padding: 32px 40px;
  margin-top: 65px;
  background: #fff;
}

.footer_top {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;  

}

.footer_logo {
  width: 40px;
  height: 64px;
  margin-right: 20px;
  flex-shrink: 0;  

}
.footer_logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer_column {
  display: flex;
  flex-direction: column;
  margin-right: 20px;
}
.footer_column span {
  font-weight: 550;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.footer_column a {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 20px;
  color: #2b2b2b;
  text-decoration: none;
  white-space: nowrap;  

}
.footer_column a:hover {
  text-decoration: underline;
}
.footer_column img {
  margin-right: 10px;
  width: 20px;
}
.footer_mobileLinks {
  display: none;
  width: 100%;
  border-top: 1.5px solid #e8e9eb;
  border-bottom: 1.5px solid #e8e9eb;
  padding: 24px 0;
  margin-bottom: 24px;
}

.footer_mobileLinks .mobile_dropdown {
  position: relative;
  list-style: none;
}
.footer_mobileLinks input[type="checkbox"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  opacity: 0;
  cursor: pointer;
  z-index: 10;
}

.footer_mobileLinks .category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  color: #000;
}

.footer_mobileLinks .icon {
  display: flex;
  align-items: center;
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.footer_mobileLinks .mobile_dropdownMenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.footer_mobileLinks input:checked ~ .mobile_dropdownMenu {
  max-height: 500px;  

}
.footer_mobileLinks input:checked + .category .icon {
  transform: rotate(0deg);
}

.footer_mobileLinks .mobile_dropdownMenu li a {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  text-transform: uppercase;
  color: #2b2b2b;
}
.footer_subscribe {
  text-transform: uppercase;
  max-width: 330px;
  width: 100%;
}
.footer_subscribe .title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}
.footer_subscribe .description {
  font-weight: 400;
  margin-bottom: 40px;
  font-size: 14px;
  line-height: 20px;
  color: #2b2b2b;
}
.footer_subscribe form {
  display: flex;
  width: 100%;
}
.footer_subscribe input {
  width: 100%;
  border: 1px solid #000;
  opacity: 0.5;
  padding: 12px 16px;
  font-size: 14px;
  margin-right: 6px;
  background: transparent;
  color: #000;
}
.footer_subscribe input:focus {
  opacity: 1;
  border-color: #234f33;
}
.footer_subscribe button {
  border: 1px solid #000;
  padding: 12px 22px;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 14px;
  background: transparent;
  transition: all 0.2s;
}
.footer_subscribe button:hover {
  background: #234f33;
  color: #fff;
  border-color: #234f33;
}
.footer_bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 14px;
  margin-top: 64px;
}
.footer_copyright {
  opacity: 0.5;
}
.footer_paymentMethods {
  display: flex;
  align-items: center;
  gap: 32px;
}
.footer_paymentMethods img {
  height: 24px;
  width: auto;
}

.footer_mobileLogo, 
.footer_socials { 
  display: none; 
}
@media (max-width: 1100px) {
  .footer_top {
    flex-wrap: wrap;  

  }
  .footer_subscribe {
    margin-left: auto;
    margin-top: 30px;
  }
}
@media (max-width: 880px) {
  .footer_top {
    justify-content: flex-start;
  }
  .footer_column {
    margin-right: 40px;
    margin-bottom: 30px;
  }
  .footer_subscribe {
    margin-left: 0;  

    width: 100%;
    max-width: 100%;  

  }
  .footer_bot .footer_paymentMethods {
    gap: 15px;
  }
}
@media (max-width: 600px) {
  .footer_wrapper {
    border-top: none;
    padding: 24px 16px;  

  }
  
  .footer_top {
    flex-direction: column;
    padding-bottom: 0;
  }
  .footer_logo, 
  .footer_column {
    display: none !important;
  }
  .footer_mobileLinks {
    display: block;
  }
  .footer_mobileLogo {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
  }
  .footer_mobileLogo img {
    height: 48px;
  }

  .footer_socials {
    display: flex;
    justify-content: center;
    padding: 16px 0 24px;
    gap: 20px;
    border-bottom: 1.5px solid #e8e9eb;
    width: 100%;
  }
  .footer_bot {
    flex-direction: column;
    margin-top: 24px;
    gap: 20px;
  }
  .footer_copyright {
    order: 2;  

    text-align: center;
    font-size: 12px;
  }
  .footer_paymentMethods {
    justify-content: center;
    flex-wrap: wrap;
  }
  .footer_subscribe {
    margin-top: 0;
    margin-bottom: 20px;
  }
}
.catalog_wrapper {
  width: 100%;
  min-height: 100vh;
  padding-bottom: 60px;
}
.catalog_subCatalogs {
  width: 100%;
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.catalog_subCatalog {
  display: flex;
  border: 1px solid #000;
  padding: 12px 22px;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 24px;
  cursor: pointer;
  transition: all 0.1s ease;
  color: #000;
  text-decoration: none;
}

.catalog_subCatalog:hover,
.catalog_subCatalog.active {
  background: #000;
  color: #fff;
}
.catalog_filterTopWrapper {
  padding: 0 40px;
}

.catalog_filterTop {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1.5px solid #e8e9eb;
  align-items: center;
}

.catalog_filterBtn,
.catalog_sortBtn {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  text-transform: uppercase;
  user-select: none;
}

.catalog_filterBtn span { margin-left: 8px; }
.catalog_sortBtn span { margin-right: 8px; }
.catalog_filterDrawer {
  display: none;  

  padding: 0 40px;
}

.catalog_filterBottom {
  padding-top: 24px;
  padding-bottom: 24px;
  border-bottom: 1.5px solid #e8e9eb;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.catalog_filterTitle {
  color: #000;
  font-size: 14px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
}
.catalog_priceFilter {
  display: flex;
  flex-direction: column;
  width: 300px;
}

.catalog_inputRange {
  width: 100%;

  padding: 0 10px; 
}
.catalog_colorsWrapper {
  display: flex;
  flex-direction: column;
  flex: 8;
}

.catalog_colors {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.catalog_colorItem {
  position: relative;
  width: 32px;
  height: 32px;
  cursor: pointer;
  border: 1px solid #e0e0e0; 
}

.catalog_colorItem.active {
  border: 4px solid #ede1d1;  

}
.catalog_colorItem.active:before {
  content: ''; position: absolute; width: 15px; height: 2px; background: #000;
  left: 4px; top: 11px; transform: rotate(-45deg);
}
.catalog_colorItem.active:after {
  content: ''; position: absolute; width: 10px; height: 2px; background: #000;
  left: -1px; top: 13px; transform: rotate(45deg);
}

.catalog_applyBtn {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  text-transform: uppercase;
  border: none;
  background: transparent;
  opacity: 0.5;

}
.catalog_applyBtn:hover { opacity: 1; }
.catalog_sortDrawer {
  display: none;
  position: absolute;
  right: 40px;
  z-index: 9999;
  background: #fff;  

  border: 1px solid #e8e9eb;
}

.catalog_sortList {
  display: flex;
  flex-direction: column;
  background: #f4f5f7;
}

.catalog_sortItem {
  padding: 6px 20px;
  font-size: 16px;
  text-transform: uppercase;
  cursor: pointer;
  background: #f4f5f7;
}

.catalog_sortItem:hover {
  background: linear-gradient(0deg, rgba(35, 79, 51, 0.75), rgba(35, 79, 51, 0.75)), #f4f5f7;
  color: #fff;
}
.catalog_sortItem.active {
  background: #000;
  color: #fff;
}

.catalog_margin { margin-bottom: 56px; }

.catalog_productsGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  gap: 6px;
  margin-top: 56px;
  padding: 0 40px;
}

.catalog_empty {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  height: 300px;
  width: 100%;
  grid-column: 1 / -1;
}

.catalog_loadMore {
  display: flex;
  margin: 32px auto;
  padding: 12px 22px;
  border: 1px solid #000;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  text-transform: uppercase;
}
.catalog_loadMore:hover {
  background-color: #000;
  color: white;
}

.product_wrapper {
  display: block;
  width: 100%;
  height: 350px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  transition: all 0.5s;
  cursor: pointer;
  background-color: #f4f5f7;
}

.product_wrapper:hover .product_inner {
  background: linear-gradient(180deg, rgba(244, 245, 247, 0) 0%, #f4f5f7 100%);
}

.product_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 8px;
  position: absolute;
  width: 100%;
  bottom: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
}

.product_title, .product_price {
  width: 50%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #2b2b2b;
}
.product_price { text-align: end; font-weight: 600; }
@media (max-width: 991px) {
  .catalog_productsGrid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .catalog_wrapper { padding: 0; }
  .catalog_filterTopWrapper { padding: 0 20px; }
  
  .catalog_filterBottom {
    justify-content: flex-start;
    flex-direction: column;
    gap: 30px;
  }
  .catalog_priceFilter { width: 100%; }
  .catalog_applyBtn { width: 100%; border: 1px solid #000; padding: 10px; opacity: 1; text-align: center;}
}

@media (max-width: 650px) {
  .catalog_productsGrid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .catalog_margin { margin-bottom: 24px; }
  .catalog_filterTopWrapper { padding: 0 16px; }
  .product_wrapper { margin-bottom: 52px; height: 280px; }
  .product_inner {
    flex-wrap: wrap;
    justify-content: unset;
    bottom: -47px;
    background: transparent !important; 
  }
  .product_title, .product_price { width: 100%; text-align: left; }
}
.catalog_priceFilter {
    width: 100%;

    margin-bottom: 20px;
    flex: 3;
}

.catalog_filterTitle {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 25px;  

    display: block;
    color: #2b2b2b;
}

.catalog_inputRange {
    padding: 0 6px;  

}
.price-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;  

    font-size: 12px;  

    text-transform: uppercase;
    color: #2b2b2b;
    font-weight: 500;
}
.catalog_applyBtn svg {
    transition: transform 0.3s ease;
}

.catalog_applyBtn:hover svg {
    transform: translateX(5px);  

}
.catalog_colors {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.catalog_colorItem {
    width: 32px;
    height: 32px;
    cursor: pointer;
    border: 1px solid #e0e0e0;
    position: relative;
    display: block;
}

.catalog_colorItem input {
    display: none;  

}
.catalog_colorItem.active {
    border: 4px solid #ede1d1;  

}

.catalog_colorItem.active:before {
    content: ''; position: absolute; width: 15px; height: 2px; background: #000;
    left: 50%; top: 50%; transform: translate(-50%, -50%) rotate(-45deg);
}
.catalog_colorItem.active:after {
    content: ''; position: absolute; width: 15px; height: 2px; background: #000;
    left: 50%; top: 50%; transform: translate(-50%, -50%) rotate(45deg);
}

.noUi-horizontal {
    height: 2px !important;
    border: 0 !important;
   
    box-shadow: none !important;
}

.noUi-connect {
 background: #234F33 !important;
}

.noUi-horizontal .noUi-handle {
    width: 12px !important;
    height: 12px !important;
    right: -7px !important;
    top: -5px !important;
}

.noUi-handle:after, .noUi-handle:before {
    display: none !important;
}

.noUi-handle {
    background: #000 !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.single_product_wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    padding: 0 40px;
    margin-bottom: 64px;
    margin-top: 40px;
}

.product_gallery {
    display: flex;
    gap: 20px;
    height: 600px;
}

.product_thumbnails {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100px;
    flex-shrink: 0;
    overflow-y: auto;
}

.product_thumb {
    width: 100%;
    height: 100px;
    cursor: pointer;
    opacity: 0.8;
    transition: 0.2s;
}
.product_thumb.active {
    opacity: 1;

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

.product_mainImage {
    flex-grow: 1;
    background-color: #f4f5f7;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product_mainImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product_about {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.product_top {
    display: flex;
    flex-direction: column;
    gap: 32px; 
    margin-bottom: 24px;
}

.product_titleRow {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 400;
}

.product_details {
    display: flex;
    justify-content: space-between;
    font-size: 14px; 
    text-transform: uppercase;
}
.product_detailsText {

    max-width: 400px;
    color: #000;
    font-weight: 400;
    line-height: 1.4;
}

.product_block {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.product_block span:first-child {
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    min-width: 100px;
}
.product_collectionName {
    color: #234f33;
    font-size: 14px;
    text-transform: uppercase;
}

.product_colors {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.product_colorItem {
    position: relative;
    width: 64px;
    height: 64px;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    border: 1px solid transparent;
    transition: border 0.2s;
}
.product_colorItem.active {
    border: 2px solid #000;
}

.product_sizes {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 400px;
}
.product_sizeItem {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px 16px;
    border: 1px solid #000;
    line-height: 1;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.2s;
}
.product_sizeItem.active {
    background: #234f33;
    color: #fff;
    border-color: #234f33;
}

.product_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.product_ask {
    display: flex;
    align-items: center;
    margin-right: 10px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
}
.product_ask img { margin-left: 8px; cursor: pointer; }


.product_tooltipIcon { position: relative; }
.product_tooltipText {
    position: absolute;
    width: 220px;
    padding: 10px;
    border-radius: 5px;
    bottom: 30px;
    left: 0;
    background-color: rgb(215, 215, 215);
    font-size: 11px;
    line-height: 1.3;
    letter-spacing: 0.16px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    pointer-events: none;
}
.product_tooltipIcon:hover .product_tooltipText {
    opacity: 1;
    visibility: visible;
}

.product_buttons {
    display: flex;
    gap: 20px;
}

.product_addButton {
    font-family: inherit;
    font-size: 16px;
    padding: 12px 22px;
    text-transform: uppercase;
    border: 1px solid #000;
    color: #fff;
    background: #000;
    cursor: pointer;
    transition: all 0.2s ease;
}
.product_addButton:hover {
    background: #234f33;
    border-color: #234f33;
}

.product_mobileTitle { display: none; width: 100%; margin-bottom: 20px; }

@media (max-width: 1030px) {
    .single_product_wrapper { grid-template-columns: 1fr; }
    .product_gallery { flex-direction: column-reverse; height: auto; }
    .product_thumbnails { flex-direction: row; width: 100%; height: auto; overflow-x: auto; }
    .product_thumb { width: 80px; height: 80px; flex-shrink: 0; }
    .product_mainImage { height: 400px; }
    
    .product_bottom {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    .product_buttons { width: 100%; }
    .product_addButton { width: 100%; text-align: center; }
    .product_ask { display: none; }
}

@media (max-width: 780px) {
    .single_product_wrapper { padding: 0 16px; margin-top: 20px; }
    .desktop-only { display: none; }
    .product_mobileTitle { display: block; }
    
    .product_titleRow { font-size: 20px; font-weight: 500; }
    .product_detailsMobile { font-size: 14px; line-height: 1.4; }
}

.product_relatedTitle {
    font-weight: 400;
    font-size: 28px;
    line-height: 32px;
    text-align: center;
    text-transform: uppercase;
}
.cart_container {
    width: 100%;
    margin: 0 auto;
    padding: 16px;  

    margin-bottom: 64px;
}
.cart_page_title {
    text-align: center;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 400;
    margin: 40px 0;
}
.cart_wrapper {
    width: 100%;
    display: flex;
    gap: 40px;
}

.cart_items_column {
    border-top: 1.5px solid #E8E9EB;
    width: 70%;
    margin-bottom: 64px;
}

.cart_review_column {
    width: 30%;
}
.cart_product {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    padding: 20px 0;  

    border-bottom: 1px solid #f4f5f7;  

}

.cart_product_image {
    width: 165px;
    height: 165px;  

    background: #f4f5f7;
    flex-shrink: 0;
}
.cart_product_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart_product_content {
    width: 30%;
    margin-left: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.cart_product_name {
    font-size: 18px;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 500;
}
.cart_product_name a {
    text-decoration: none;
    color: #000;
}
.cart_product_weight {
    color: #888;
    font-size: 0.9em;
}

.cart_product_sku {
    font-size: 16px;
    margin-bottom: 8px;
    color: #808692;
}

.cart_mobile_content {
    display: none;
}
.cart_add_remove {
    max-width: 126px;
    margin-left: 40px;
    margin-right: 40px;
    display: flex;
    gap: 18px;
    border: 1.5px solid #e8e9eb;
    padding: 12px;
    align-items: center;
}

.cart_qty_btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}
.cart_qty_btn img { width: 12px; height: auto; }
.cart_qty_btn:disabled { opacity: 0.5; cursor: default; }

.cart_qty_value {
    font-weight: 500;
    font-size: 16px;
}

.cart_product_price {
    width: 30%;
    display: flex;
    flex-direction: column;
    font-size: 24px;
    color: #000000;
    line-height: 1.2;
    text-align: left;
    margin-right: 20px;
    font-weight: 500;
}

.cart_delete_btn {
    margin-top: 3px;
    background: transparent;
    border: none;
    cursor: pointer;
}
.cart_total_container {
    width: 100%;
    padding: 24px;
    background: #f4f5f7;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.cart_review_top {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #e8e9eb;
    margin-bottom: 40px;
}

.cart_review_row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.cart_review_bottom {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.cart_next_btn {
    width: 100%;
    font-family: inherit;
    font-size: 18px;
    padding: 12px 22px;
    text-transform: uppercase;
    border: 1px solid #000000;
    color: #fff;
    background: #000;
    transition: all 0.2s ease;
    display: block;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
}
.cart_next_btn:hover {
    background: #234f33;
    color: #fff;
    border-color: #234f33;
}
.cart_discount input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #bfbfbf;
    text-transform: uppercase;
    font-size: 14px;
}
@media (max-width: 1100px) {
    .cart_total_container { font-size: 18px; }
    .cart_next_btn { font-size: 18px; }
}

@media (max-width: 980px) {
    .cart_total_container .top .row { flex-direction: column; gap: 10px; margin-bottom: 20px; }
    .cart_total_container .bottom { gap: 10px; padding-bottom: 20px; margin-bottom: 20px; }
}

@media (max-width: 820px) {
    .cart_product_price { font-size: 20px; }
}

@media(max-width: 800px) {
    .cart_wrapper { flex-wrap: wrap; gap: unset; }
    .cart_items_column { width: 100%; border-top: none; margin-bottom: 32px; }
    .cart_review_column { width: 100%; }
    .cart_total_container .top .row { flex-direction: row; gap: 10px; margin-bottom: 20px; }
}

@media (max-width: 600px) {
    .cart_total_container {
        display: flex; justify-content: space-between; background: #000; color: #fff;
        padding: 16px; flex-wrap: wrap; font-size: 16px; font-weight: 400; margin-bottom: 0;
    }
    .cart_review_top { width: 100%; border: none; margin: 0; padding-bottom: 10px; }
    .cart_review_row { margin-bottom: 10px !important; }  

    
    .cart_review_bottom {
        width: 40%; flex-direction: row; padding-bottom: 0; margin-bottom: 0; align-items: center;
    }
    .cart_next_btn {
        width: 58%; background: #fff; color: #000; font-size: 16px; max-height: 48px; max-width: 192px;
    }
    
    .cart_discount { display: none; }  

}

@media (max-width: 560px) {
    .cart_product {
        align-items: flex-start;
        position: relative;
    }
    .cart_product_image { width: 100px; height: 100px; margin-right: 6px; }
    .cart_add_remove, .cart_product_price, .cart_product_content { display: none; }
    .cart_delete_btn { position: absolute; top: 20px; right: 0; }

    .cart_mobile_content {
        display: flex; flex-wrap: wrap; flex-grow: 1;
        flex-direction: column; justify-content: space-between; min-height: 100px;
    }
    .cart_mobile_name {
        width: 100%; margin-bottom: 8px; font-weight: 500; font-size: 16px; line-height: 24px; text-transform: uppercase;
    }
    .cart_mobile_name a { color: #000; text-decoration: none; }
    
    .cart_mobile_price {
        font-weight: 600; font-size: 16px; margin-top: auto;
    }
    .cart_mobile_qty_controls {
        display: flex; gap: 15px; align-items: center; margin-top: 10px; border: 1px solid #e8e9eb; padding: 8px; width: max-content;
    }
}

@media (max-width: 430px) {
    .cart_total_container .bottom { flex-direction: column; align-items: flex-start; }
}
.checkout_container {
    width: 100%;
    margin: 0 auto;
    padding: 0 16px 80px;
}

.checkout_title {
    font-size: 24px;
    text-transform: uppercase;
    margin: 40px 0;
    font-weight: 500;
}

.checkout_wrapper {
    display: flex;
    gap: 40px;
}
.checkout_form_column {
    flex: auto;
    margin-right: 30px;
    width: 65%;
}
.checkout_form_grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}
.checkout_form_grid .form-row {
    flex: 0 0 48%;
    margin: 0;
}
.form-row-wide { width: 100%; }
.checkout_form_column input,
.checkout_form_column select,
.checkout_form_column textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #bfbfbf;
    font-size: 14px;
    font-family: 'IBM Plex Sans', sans-serif;
    text-transform: uppercase;
    outline: none;
    background: #fff;
    margin-bottom: 0;
}
.checkout_form_column input:focus { border-color: #234f33; }
.checkout_section_title {
    font-weight: 500;
    font-size: 20px;
    margin: 30px 0 20px;
    text-transform: uppercase;
}

.delivery_tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.delivery_tab {
    border: 1px solid #000;
    padding: 8px 16px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 14px;
    transition: 0.2s;
}
.delivery_tab.active {
    background: #234f33;
    color: #fff;
    border-color: #234f33;
}
.delivery_fields {
    margin-top: 20px;
}
.delivery_fields.hidden {
    display: none;
}
.delivery_info_text {
    font-size: 15px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.delivery_info_title {
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.payment_grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.payment_box {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    text-transform: uppercase;
    width: 165px;
    height: 165px;
    border: 1px solid #000;
    cursor: pointer;
    background: #fff;
    transition: 0.2s;
}
.payment_box img { max-width: 70%; }
.payment_box.active {
    background: #bdc8be;  

}
.checkout_review_column {
    width: 35%;
    flex: 0 0 335px;
}
.review_wrapper {
    background: #f4f5f7;
    padding: 24px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 18px;
}
.review_top {
    border-bottom: 1px solid #e8e9eb;
    margin-bottom: 20px;
    padding-bottom: 20px;
}
.review_row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}
.review_bottom {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.review_btn {
    width: 100%;
    background: #000;
    color: #fff;
    text-transform: uppercase;
    padding: 15px;
    border: 1px solid #000;
    cursor: pointer;
    font-size: 18px;
    transition: 0.2s;
}
.review_btn:hover {
    background: #234f33;
    border-color: #234f33;
}
@media (max-width: 900px) {
    .checkout_wrapper { flex-direction: column; }
    .checkout_form_column { width: 100%; margin-right: 0; }
    .checkout_review_column { width: 100%; flex: auto; }
    .payment_box { width: 47%; height: 120px; }
}
@media (max-width: 600px) {
    .checkout_form_grid .form-row { flex: 0 0 100%; }
    .payment_box { width: 100%; }
}

.delivery_block.hidden {
    display: none;
}
.delivery_block {
    margin-top: 20px;
    animation: fadeIn 0.3s;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}
.SectionTitle {
  text-align: center;
  margin-bottom: 40px;
  width: 100%;
  padding: 0 15px;
}

.SectionTitle h3 {
  text-transform: uppercase;
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  margin: 0;
  line-height: 56px;
  text-align: center;
  color: #000000;
}

.SectionTitle .description {
  margin-top: 8px;
  font-size: 16px;
  text-align: center;
  font-weight: 400;
}

.newin {
  width: 50%;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .SectionTitle {
    transition: opacity 0.3s ease;
    margin-bottom: 32px;
  }
  .SectionTitle h3 {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
  }
  .home {
    height: 64px;
  }
  .absolute {
    opacity: 0;
    position: absolute;
    width: 305px !important;
  }
  .isCenter {
    opacity: 1;
    right: 10%;
  }
  .newin {
    width: 90%;
  }
}

@media (max-width: 550px) { .isCenter { right: 6%; } }
@media (max-width: 520px) { .isCenter { right: 3%; } }
@media (max-width: 500px) { .isCenter { right: 0; } }
@media (max-width: 480px) { .isCenter { right: -4%; } }
@media (max-width: 460px) { .isCenter { right: -6%; } }
@media (max-width: 440px) { .isCenter { right: -8%; } }
@media (max-width: 430px) { .isCenter { right: -13%; } }
@media (max-width: 410px) { .isCenter { right: -16%; } }
@media (max-width: 400px) { .isCenter { right: -20%; } }
@media (max-width: 390px) { .isCenter { right: -23%; } }
@media (max-width: 375px) { .isCenter { right: -30%; } }
.ac-wrapper {
  margin: 64px 40px;
}

.ac-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;  

}
.ac-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.ac-wrapper p {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-top: 4px;
  margin-bottom: 6px;
  color: #000;  

}

.ac-twoBlocks {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.ac-item {
  width: 50%;
  display: flex;
  flex-direction: column;
}
.ac-item:first-of-type {
  margin-right: 3px;
}
.ac-item:last-of-type {
  margin-left: 3px;
}
@media (max-width: 900px) {
  .ac-wrapper {
    margin-top: 40px;
    margin-right: 15px;
    margin-left: 15px;
  }
  .ac-wrapper p {
    margin-bottom: 16px;
  }
  
  .ac-twoBlocks {
    flex-wrap: wrap;
  }
  
  .ac-item {
    width: 100%;
    height: auto;
  }
  
  .ac-item:first-of-type {
    margin-right: 0;
  }
  
  .ac-item:last-of-type {
    margin-left: 0;
  }
}
.sc-wrapper {
  margin: 56px 40px 64px;
}
.sc-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sc-block a, .sc-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}
.sc-wrapper p {
  text-transform: uppercase;
  font-size: 16px;
  margin-top: 4px;
  margin-bottom: 4px;
  color: #000;
}

.sc-block {
  width: 100%;
  margin-bottom: 40px;  

}
.sc-title {
  text-align: center;
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
  line-height: 32px;
  margin-top: 80px;
  margin-bottom: 40px;
  text-transform: uppercase;  

}
.sc-twoBlocks {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.sc-item {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.sc-item:first-of-type {
  margin-right: 3px;
}

.sc-item:last-of-type {
  margin-left: 3px;
}
.SectionTitle .description.newin {
    width: 50%;
    margin: 8px auto 0;
}
.sc-products-list {
    margin-bottom: 60px;
}
@media (max-width: 615px) {
  .sc-wrapper {
    margin: 24px 15px;
  }

  .sc-title {
    font-size: 24px;
    margin-top: 40px;  

  }

  .sc-block {
    margin-bottom: 16px;
  }
  .SectionTitle .description.newin {
      width: 90%;
  }

  .sc-twoBlocks {
    flex-wrap: wrap;
  }

  .sc-item {
    width: 100%;
  }

  .sc-item:first-of-type {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .sc-item:last-of-type {
    margin-left: 0;
  }
}
.sc-products-list ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 6px;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.sc-products-list ul.products::before,
.sc-products-list ul.products::after {
    display: none;
}
.sc-products-list ul.products li.product {
    display: flex;
    flex-direction: column;
    width: 100%;  

    margin: 0 !important;  

    text-align: center;  

    position: relative;
}
.sc-products-list ul.products li.product a.woocommerce-LoopProduct-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.sc-products-list ul.products li.product img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;  

    object-fit: cover;    

    display: block;
    margin-bottom: 12px;
}
.sc-products-list ul.products li.product .woocommerce-loop-product__title {
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.4;
    margin: 0 0 5px;
    padding: 0;
    color: #000;
    font-family: inherit;  

}
.sc-products-list ul.products li.product .price {
    display: block;
    font-size: 16px;
    color: #000;
    font-weight: 500;
    margin-bottom: 10px;
}
.sc-products-list ul.products li.product .price del {
    color: #999;
    font-size: 14px;
    margin-right: 5px;
    text-decoration: line-through;
}
.sc-products-list ul.products li.product .price ins {
    text-decoration: none;
    font-weight: 600;
}
.sc-products-list ul.products li.product .button {
    display: inline-block;
    border: 1px solid #000;
    background: transparent;
    color: #000;
    padding: 10px 20px;
    text-transform: uppercase;
    font-size: 13px;
    text-decoration: none;
    transition: 0.3s;
    margin-top: auto;  

}

.sc-products-list ul.products li.product .button:hover {
    background: #000;
    color: #fff;
}
@media (max-width: 1024px) {
    .sc-products-list ul.products {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .sc-products-list ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .sc-products-list ul.products li.product .woocommerce-loop-product__title {
        font-size: 14px; 
    }
    
    .sc-products-list ul.products li.product .price {
        font-size: 14px;
    }
}
.about-desktop-wrapper {
    display: block;
}
.about-mobile-wrapper {
    display: none;
}
@media (max-width: 1030px) {
    .about-desktop-wrapper {
        display: none;
    }
    .about-mobile-wrapper {
        display: block;
    }
}
.ab-aboutLogo {
  width: 837px;
  height: 520px;
  margin: 0 auto;
}
.ab-aboutLogo > div {
    width: 100%;
    height: 100%;
    padding-left: 30px;
}
.ab-aboutLogo img {
  width: 100%;
  height: 100%;
  background-size: cover;
}
.ab-imageContainer {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ab-imageTitle {
  text-align: center;
  position: absolute;
  font-weight: 400;
  font-family: 'IBM Plex Sans', sans-serif !important;
  font-size: 60px;
  font-style: italic;
  color: #000000;
  white-space: nowrap;
  top: 265px;
}

.ab-mansory {
  width: 100%;
  height: 928px;
  background-image: url('assets/images/mansory-min.png'); 
  background-position: top center;
  background-size: contain;
  background-repeat: no-repeat;
  text-align: center;
  padding-top: 600px;
  margin: 120px auto;
}
.ab-mansoryContent {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
.ab-mansoryContent hr {
  margin: 40px 0;
  border-top: 1px solid #000;
}
.ab-mansoryContentTitle {
  font-weight: 400;
  font-size: 40px;
  line-height: 56px;
  text-transform: uppercase;
}
.ab-mansoryContentDesc {
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  font-style: italic;
}

.ab-history {
  display: flex;
  align-items: center;
  justify-content: center;  

  padding-right: 40px;
}
.ab-m {
  display: flex;
  align-items: center;
  padding-left: 40px;
  margin: 200px 0;
  justify-content: center;
}
.ab-m img {
    width: 678px;
    height: 400px;
    object-fit: cover;
}

.ab-historyContent {
  max-width: 507px;
  margin: 0 40px;  

}
.ab-historyContent div:first-of-type {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.ab-historyContent div:last-of-type {
  font-size: 18px;
  line-height: 32px;
}

.ab-historyImages {
  display: flex;
}
.ab-historyImages img:first-of-type {
  width: 165px;
  height: 477px;
  margin-right: 6px;
  object-fit: cover;
}
.ab-historyImages img:last-of-type {
  width: 335px;
  height: 480px;
  object-fit: cover;
}

.ab-custom {
  display: flex;
  padding-right: 40px;
  justify-content: center;
}

.ab-customContent {
  max-width: 260px;
  margin: 0 40px 0 0;
  text-align: start;
  font-size: 18px;
  line-height: 32px;
}

.ab-customImages {
  display: flex;
  align-items: flex-end;
}
.ab-customImages img {
  object-fit: contain;
}
.ab-customImages img:first-of-type {
  width: 329px;
  height: 593px;
  margin-right: 6px;
}
.ab-customImages img:last-of-type {
  width: 336px;
  height: 456px;
}

.ab-ceo {
  width: 1210px;
  height: 634px;
  margin: 120px auto;
  padding: 77px 96px;
  position: relative;
  font-family: 'IBM Plex Sans', sans-serif !important;
}
.ab-tbq {
  color: #000000;
  position: absolute;
  width: 628px;
  font-weight: 400;
  font-size: 28px;
  font-style: italic;
  left: 486px;
  top: 170px;
  line-height: 48px;
}
.ab-founder {
  position: absolute;
  left: 486px;
  top: 438px;
  font-weight: 500;
  color: #234f33;
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
}

.ab-q1, .ab-q2 {
  position: absolute;
  width: 64px;
  height: 53px;
}
.ab-q1 { top: 0; left: 0; }
.ab-q2 { bottom: 0; right: 0; }

.ab-ceoImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ab-f {
  width: 100%;
  height: 918px;
  object-fit: contain;
}
.ab-git {
  font-weight: 400;
  font-size: 40px;
  line-height: 56px;
  text-transform: uppercase;
  margin-top: 120px;
  margin-bottom: 40px;
  text-align: center;
}

.ab-link {
  width: 100%;
  text-align: center;
  margin-bottom: 120px;
}
.ab-link a {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  text-transform: uppercase;
  color: #ffffff;
  background-color: black;
  padding: 12px 22px;
  text-decoration: none;
}
.mob-aboutLogo {
  width: 240px;
  height: 372px;
  margin: 0 auto;
}
.mob-aboutLogo > div {
    width: 100%;
    height: 100%;
}
.mob-aboutLogo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mob-imageContainer {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mob-imageTitle {
  text-align: center;
  position: absolute;
  font-weight: 400;
  font-family: 'IBM Plex Sans', sans-serif !important;
  font-size: 28px;
  font-style: italic;
  color: #000000;
  white-space: nowrap;
  top: 200px;
}

.mob-mansory {
  width: 100%;
  height: 280px;
  margin: 72px auto 0;
}
.mob-mansory img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mob-container {
  width: 100%;
  padding: 0 16px;
}

.mob-aboutTitle {
  font-weight: 400;
  font-size: 28px;
  line-height: 32px;
  text-align: center;
  margin-bottom: 24px;
}
.mob-title {
  font-weight: 400;
  font-size: 28px;
  line-height: 32px;
  margin-bottom: 24px;
  margin-top: 32px;
}
.mob-aboutDesc {
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
}

.mob-historyImages {
  display: flex;
  margin-top: 32px;
}
.mob-historyImages > div {
  width: 50%;
  height: 200px;
}
.mob-historyImages > div:first-of-type {
  margin-right: 6px;
}
.mob-historyImages > div:last-of-type {
  margin-top: 100px;
}
.mob-historyImages img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mob-customImages {
  display: flex;
  margin: 32px 0;
}
.mob-customImages > div {
  width: 50%;
  height: 240px;
}
.mob-customImages > div:first-of-type {
  margin-right: 6px;
}
.mob-customImages img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mob-content {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.mob-m {
  width: 343px;
  height: 200px;
  margin-top: 32px;
}
.mob-m img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mob-ceo {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  margin: 56px 0 24px;
}
.mob-ceo span {
  color: #234f33;  

}

.mob-ceoImg {
  width: 100%;
  height: 430px;
  margin-bottom: 24px;
}
.mob-ceoImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mob-ceoDesc {
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  margin: 12px 0;
}

.mob-q1, .mob-q2 {
  width: 24px;
  height: 20px;
}
.mob-q1 img, .mob-q2 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.mob-q2 {
  display: flex;
  margin-left: auto;
}

.mob-f {
  width: 100%;
  height: 269px;
  object-fit: cover;
  margin-top: 24px;
}

.mob-git {
  font-weight: 400;
  font-size: 28px;
  line-height: 32px;
  text-transform: uppercase;
  margin-top: 80px;
  margin-bottom: 40px;
  text-align: center;
}

.mob-link {
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
}
.mob-link a {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  text-transform: uppercase;
  color: #ffffff;
  background-color: black;
  padding: 12px 22px;
  text-decoration: none;
}
.cp-map {
  width: 100%;
  height: 320px;
  margin-top: -80px; 
}
.cp-map iframe {
    display: block;
}

.cp-contacts {
  margin: 64px 0;
}

.cp-title {
  font-weight: 400;
  font-size: 40px;
  line-height: 56px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 56px;
}

.cp-content {
  display: grid;
  grid-template-columns: 70% 30%;
  margin: 0 210px;
  gap: 0 20px;
}

.cp-content > div {
  margin-bottom: 32px;
}

.cp-contentTitle {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  margin-bottom: 8px;  

}

.cp-contentDesc {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.cp-contentDesc a {
    text-decoration: none;
    color: inherit;
}
.cp-contactForm {
  width: 100%;
  height: 264px;
  background-image: url('assets/images/email-min.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  color: white;
  padding: 64px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cp-contactFormOne {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cp-contactFormTwo {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.cp-contactFormThree {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.cp-contactFormThree input {
  width: 100%;
  max-width: 458px;
  height: 44px;
  border: 1px solid #ffffff;
  background-color: transparent;
  color: white;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  padding: 0 15px;  

  outline: none;
}

.cp-contactFormThree input::placeholder {
  color: white;
  opacity: 1;
}

.cp-contactFormThree button {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  width: 100%;
  max-width: 96px;
  height: 44px;
  color: white;
  background-color: black;
  border: 1px solid black;
  margin-left: 8px;
  cursor: pointer;
  transition: 0.2s;
}

.cp-contactFormThree button:hover {
    background-color: #333;
}
@media (max-width: 1030px) {
  .cp-map {
    margin-top: -45px;
    height: 160px;
  }
  .cp-contacts {
    margin: 40px 0;
  }
  .cp-title {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 40px;
  }
  .cp-content {
    grid-template-columns: 100%;
    margin: 0 16px;
  }
  
  .cp-contactFormThree {
      flex-direction: column;
  }
  .cp-contactFormThree input {
      max-width: 100%;
      margin-bottom: 10px;
  }
  .cp-contactFormThree button {
      max-width: 100%;
      margin-left: 0;
  }
  .cp-contactForm {
      height: auto;
  }
}
.search_trigger_btn {
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
    font-family: inherit;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}

.search_trigger_btn:hover {
    opacity: 0.6;
}
.search_overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.2); 
    backdrop-filter: blur(4px);
    
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.search_overlay.active {
    opacity: 1;
    visibility: visible;
}
.search_drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 500px;  

    height: 100%;
    background: #fff;
    z-index: 2001;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0,0,0,0.05);
}

.search_drawer.active {
    transform: translateX(0);
}


.search_drawer_header {
    margin: 60px 40px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    position: relative;
}

.search_drawer_form {
    flex-grow: 1;
    display: flex;
    align-items: center;
    position: relative;

}

.search_drawer_input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    background: transparent;
    border-radius: 0;
    
    padding: 12px 0;
    font-size: 20px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    outline: none;
    font-family: inherit;
    color: #000;
    transition: border-color 0.3s ease;
}

.search_drawer_input::placeholder {
    color: #ccc;
    font-weight: 300;
}
.search_drawer_input:focus {
    border-bottom-color: #000;
}
.search_drawer_input::-webkit-search-decoration,
.search_drawer_input::-webkit-search-cancel-button,
.search_drawer_input::-webkit-search-results-button,
.search_drawer_input::-webkit-search-results-decoration {
    display: none;
    -webkit-appearance: none;
}
.search_drawer_submit {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    padding: 0;
    opacity: 0;  

    pointer-events: none;
}
.search_drawer_close {
  position: absolute;
  right: 0;
    cursor: pointer;
    padding: 5px;
    opacity: 0.5;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.search_drawer_close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.search_drawer_close svg {
    width: 28px;
    height: 28px;
    stroke-width: 1px;  

}
.search_drawer_content {
    flex-grow: 1;
    overflow-y: auto;
    padding: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.search_drawer_content::-webkit-scrollbar {
    display: none;
}
.search_result_item {
    display: flex;
    align-items: flex-start;
    padding: 24px 40px;
    text-decoration: none;
    border-bottom: 1px solid #f9f9f9;
    transition: background 0.3s ease;
}

.search_result_item:hover {
    background: #fafafa;
}
.search_result_img_wrapper {
    display: block;
    width: 80px;
    height: 106px;  

    flex-shrink: 0;
    margin-right: 24px;
    background: #f7f7f7;
    position: relative;
    overflow: hidden;
}

.search_result_img_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.search_result_item:hover .search_result_img_wrapper img {
    transform: scale(1.05);
}
.search_result_info {
    flex: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.search_result_title {
    font-size: 14px;
    color: #000;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 6px;
    line-height: 1.4;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.search_result_price {
    font-size: 13px;
    color: #777;
    margin-bottom: 12px;
    font-weight: 400;
}

.search_result_item a { text-decoration: none; }
.search_colors {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.color_thumb_link {
    display: block;
    width: 32px; 
    height: 32px;
    background-color: #f4f4f4;
    border: 1px solid transparent;
    transition: border-color 0.2s ease;
    flex-shrink: 0;
    cursor: pointer;
}

.color_thumb_link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
}

.color_thumb_link:hover {
    border-color: #ccc;
}

.color_thumb_link.active {
    border-color: #000;
}

.search_result_item:last-of-type {
    margin-bottom: 65px !important;
}

.search_view_all {
    display: block;
    text-align: center;
    padding: 24px;
    background: #000;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s;
    margin-top: -1px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.search_view_all:hover {
    background: #333;
    color: #fff;
}
.search_loader, .search_no_results {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    color: #999;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
@media (max-width: 600px) {
    .search_drawer {
        width: 100%;
    }
    .search_drawer_header {
        margin: 30px 20px 20px;
    }
    .search_result_item {
        padding: 20px;
    }
    .search_drawer_input {
        font-size: 18px;
    }
   
}
.product_card {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    margin-bottom: 40px;  

    list-style: none;
    padding: 0;
}
.product_card__image-wrapper {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 4;
    
    background-color: #f7f7f7;  

    position: relative;
    overflow: hidden;  

    margin-bottom: 16px;  

    cursor: pointer;
}
.product_card__image-wrapper img {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    object-fit: contain; 
    padding: 0; 
    
    mix-blend-mode: multiply; 
    transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
    backface-visibility: hidden;
}
.product_card__image-wrapper .img-main {
    z-index: 1;
    opacity: 1;
}
.product_card__image-wrapper .img-hover {
    z-index: 2;
    opacity: 0;
}
.product_card:hover .img-hover {
    opacity: 1;
}
.product_card:hover .img-main {
    opacity: 0;
}
.product_card:hover img {
    transform: scale(1.05);
}
.product_badge {
    position: absolute;
    top: 12px; 
    left: 12px;
    z-index: 5;
    
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 8px;
}

.product_badge.new {
    background-color: #fff;
    color: #000;
}

.product_badge.sale {
    background-color: #a00;  

    color: #fff;
}
.product_card__actions {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product_card:hover .product_card__actions {
    transform: translateY(0);
}

.quick-add-btn {
    display: block;
    width: 100%;
    padding: 14px 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(4px);
    
    color: #000;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-top: 1px solid #eee;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.quick-add-btn:hover {
    background: #000;
    color: #fff;
}
.product_card__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.product_card__title {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
    margin-bottom: 6px;
    line-height: 1.4;
    letter-spacing: 0.5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product_card__price {
    font-size: 14px;
    color: #333;
    font-weight: 600;
    margin-bottom: 12px;
}

.product_card__price del {
    color: #999;
    font-weight: 400;
    font-size: 12px;
    margin-right: 8px;
    text-decoration: line-through;
}

.product_card__price ins {
    text-decoration: none;
    color: #a00;  

}
.product_card__colors {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;  

    margin-top: 4px;
    min-height: 34px; 
}

.color-thumb-card {
    display: block;
    width: 34px; 
    height: 34px;
    
    background-color: #f7f7f7;  

    border: 1px solid transparent; 
    
    transition: border-color 0.2s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.color-thumb-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    display: block;
}
.color-thumb-card:hover {
    border-color: #999;
}
.color-thumb-card.active {
    border-color: #000;
}
@media (max-width: 768px) {
    .product_card {
        margin-bottom: 30px;
    }
    
    .product_card__actions {
        display: none;
    }
    
    .img-hover {
        display: none !important;
    }
    
    .product_card:hover .img-main {
        opacity: 1;
    }
    
    .product_card__title {
        font-size: 13px;
    }
    
    .color-thumb-card {
        width: 30px; height: 30px;
    }
}
.product_mainImage {
    flex-grow: 1;
    height: 600px;  

    background-color: #f7f7f7; 
    
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product_mainImage img {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    padding: 40px; 
    mix-blend-mode: multiply; 
    
    display: block;
    transition: opacity 0.3s ease;
}
.product_thumbnails {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100px;  

    flex-shrink: 0;
    overflow-y: auto;
    scrollbar-width: none; 
}
.product_thumbnails::-webkit-scrollbar { display: none; }

.product_thumb {
    width: 100%;
    height: 100px;  

    
    background-color: #f7f7f7;  

    
    cursor: pointer;
    opacity: 0.5;  

    transition: opacity 0.2s ease, border-color 0.2s ease;

    
    display: flex;
    align-items: center;
    justify-content: center;
}

.product_thumb.active {
    opacity: 1;
   
}

.product_thumb:hover {
    opacity: 1;
}

.product_thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply; 
    padding: 5px;  

    display: block;
}
@media (max-width: 1030px) {
    .product_gallery {
        flex-direction: column-reverse; 
        height: auto;
    }
    
    .product_mainImage {
        height: 400px; 
    }
    
    .product_thumbnails {
        flex-direction: row;
        width: 100%;
        height: auto;
        overflow-x: auto;
        justify-content: flex-start;
    }
    
    .product_thumb {
        width: 80px;
        height: 80px;
        flex-shrink: 0;
    }
}

@media (max-width: 600px) {
    .product_mainImage {
        height: 350px;
        background-color: #f7f7f7; 
    }
    .product_mainImage img {
        padding: 20px; 
    }
}

.product_gallery {
    display: flex;
    align-items: flex-start;
    gap: 6px; 
    height: 507px;
    width: 100%;
}

.thumbnails_wrapper {
    position: relative;
    width: 165px;
    height: 100%;
    flex-shrink: 0;
}

.product_thumbnails {
    display: flex;
    flex-direction: column;
    gap: 6px; 
    width: 100%;
    height: 100%;
    overflow-y: auto; 
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}
.product_thumbnails::-webkit-scrollbar { display: none; }

.product_thumb {
    width: 100%;
    height: 165px;
    background-color: #f7f7f7;
    border: 2px solid transparent; 
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color 0.2s ease;
}

.product_thumb img {
    width: 100%; height: 100%;
    object-fit: contain; padding: 10px;
    mix-blend-mode: multiply; display: block;
}



.thumb_arrow {
    position: absolute;
    left: 0;
    width: 100%;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    color: #000;
}
.thumbnails_wrapper:hover .thumb_arrow {
    opacity: 1;
    visibility: visible;
}

.thumb_arrow:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #234f33;  

}

.thumb_prev { top: 0; }
.thumb_next { bottom: 0; }
.thumb_arrow.disabled {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none;
}
.product_mainImage {
    flex-grow: 1;
    height: 100%;
    background-color: #f7f7f7;
    position: relative;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}

.product_mainImage img {
    width: 100%; height: 100%;
    object-fit: contain; padding: 40px;
    mix-blend-mode: multiply;
}


@media (max-width: 1030px) {
    .product_gallery {
        flex-direction: column-reverse;
        height: auto;
        gap: 10px;
    }
    
    .thumbnails_wrapper {
        width: 100%;
        height: auto;
    }
    
    .thumb_arrow { display: none !important; }

    .product_thumbnails {
        flex-direction: row;
        height: auto;
        overflow-x: auto;
        overflow-y: hidden;
    }
    
    .product_thumb {
        width: 100px; height: 100px;
    }
    
    .product_mainImage {
        width: 100%; height: 500px;
    }
}

@media (max-width: 600px) {
    .product_mainImage { height: 350px; }
    .product_thumb { width: 80px; height: 80px; }
}
.search_result_img_wrapper {
    background-color: #f7f7f7; 
    position: relative;
    overflow: hidden;
}

.search_result_img_wrapper img {
    mix-blend-mode: multiply; 
    object-fit: contain; 
    padding: 0; 
}

.color_thumb_link {
    background-color: #f7f7f7;
    border: 1px solid transparent; 
}

.color_thumb_link img {
    mix-blend-mode: multiply;
    object-fit: contain;
}
.cart_product_image {
    width: 165px;
    height: 165px;
    flex-shrink: 0;
    background-color: #f7f7f7; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart_product_image img {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    mix-blend-mode: multiply; 
    padding: 10px; 
}
.product_accordions {
    margin-top: 30px;
    border-top: 1px solid #e8e9eb;  

}

.accordion_item {
    border-bottom: 1px solid #e8e9eb;  

}

.accordion_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    cursor: pointer;
    user-select: none;
    transition: color 0.2s ease;
}

.accordion_header span {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}
.accordion_icon {
    width: 12px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
.accordion_header.active .accordion_icon {
    transform: rotate(45deg);
}

.accordion_content {
    display: none;  

    padding-bottom: 24px;
    font-size: 14px;
    line-height: 1.5;
    color: #2b2b2b;
}

.accordion_content p {
    margin: 0 0 10px;
}


.bq_toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #000;
    color: #fff;
    padding: 16px 24px;
    z-index: 9999;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.bq_toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.product_addButton.view-cart-mode {
    background-color: #234f33;
    border-color: #234f33;
}

a.added_to_cart.wc-forward {
    display: none !important;
}
.cart_qty_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100px;  

}

.cart_qty_btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
}
.cart_qty_btn img { width: 12px; height: 12px; }
.cart_qty_input {
    width: 40px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    -moz-appearance: textfield;
    padding: 0;
    pointer-events: none;  

}
.cart_qty_input::-webkit-outer-spin-button,
.cart_qty_input::-webkit-inner-spin-button {
    -webkit-appearance: none; margin: 0;
}
.cart_mobile_qty_controls {
    display: none;  

}
.cart_discount {
    margin-top: 20px;
}
.promo-header {
    cursor: pointer; 
    display: flex; 
    justify-content: space-between; 
    padding: 24px;
    background: #f4f5f7;
    font-weight: 500;
    text-transform: uppercase;
}
#promo-content {
    background: #f4f5f7;
    padding: 0 24px 24px;
}
.promo-form {
    display: flex;
    gap: 10px;
}
.promo-btn {
    width: auto;
    font-size: 14px;
    padding: 12px 20px;
    margin: 0;
}
.cart_wrapper {
    transition: opacity 0.3s;
}
.cart_wrapper.processing {
    opacity: 0.5;
    pointer-events: none;  

}
.product_colors {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.product_colorItem {
    position: relative;
    width: 64px;
    height: 64px;
    cursor: pointer;
    background-color: #f7f7f7;
    
    border: 1px solid transparent;  

    transition: border 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product_colorItem img {
    width: 100%;
    height: 100%;
    object-fit: cover;  

    mix-blend-mode: multiply; 
    
    display: block;
}
.product_colorItem.active {
    border: 2px solid #000;
}
.product_wishlist_btn {
    position: absolute; top: 10px; right: 10px; z-index: 20;
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    background: #fff; border-radius: 50%;
    cursor: pointer; opacity: 0; transition: 0.2s;
    transform: translateY(-5px);
}
.product_card:hover .product_wishlist_btn { opacity: 1; transform: translateY(0); }
.product_wishlist_btn.active .heart-empty { display: none; }
.product_wishlist_btn.active .heart-filled { display: block !important; color: #000; }

@media (max-width: 768px) {
    .product_wishlist_btn { opacity: 1; transform: translateY(0); }
}
.profile_wrapper { margin: 0 auto; padding: 60px 40px; min-height: 60vh; }

.auth_container { max-width: 400px; margin: 0 auto; text-align: center; }
.auth_title { font-size: 20px; font-weight: 500; margin-bottom: 40px; text-transform: uppercase; }
.form_group { margin-bottom: 24px; text-align: left; }
.form_group label { font-size: 11px; text-transform: uppercase; color: #666; display: block; margin-bottom: 5px; }
.form_group input { width: 100%; border: none; border-bottom: 1px solid #ddd; padding: 10px 0; font-size: 16px; outline: none; transition: 0.3s; }
.form_group input:focus { border-color: #000; }

.auth_btn { width: 100%; padding: 15px; background: #000; color: #fff; text-transform: uppercase; border: none; cursor: pointer; margin-top: 10px; }
.auth_btn:hover { opacity: 0.8; }
.dashboard_container { display: flex; gap: 60px; }
.dashboard_sidebar { width: 250px; flex-shrink: 0; }
.user_greeting { font-size: 24px; text-transform: uppercase; margin-bottom: 40px; }
.dashboard_menu li { padding: 12px 0; cursor: pointer; text-transform: uppercase; color: #666; transition: 0.2s; }
.dashboard_menu li:hover, .dashboard_menu li.active { color: #000; font-weight: 500; }

.dashboard_content { flex-grow: 1; }
.tab_content { display: none; }
.tab_content.active { display: block; animation: fadeIn 0.4s; }
.tab_title { font-size: 16px; text-transform: uppercase; margin-bottom: 30px; font-weight: 600; }

.orders_list .order_item { border: 1px solid #eee; padding: 20px; margin-bottom: 15px; }
.order_header { display: flex; justify-content: space-between; font-size: 14px; text-transform: uppercase; }

@media (max-width: 900px) {
    .dashboard_container { flex-direction: column; }
    .dashboard_sidebar { width: 100%; padding-bottom: 20px; border-bottom: 1px solid #eee; }
    .dashboard_menu { display: flex; gap: 20px; overflow-x: auto; }
}


.card_wishlist_btn {
    position: absolute;
    top: 12px; 
    right: 12px;
    z-index: 30;  

    
    width: 32px;
    height: 32px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    
    cursor: pointer;
    color: #000;
    opacity: 1; 
    transform: none; 
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card_wishlist_btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.card_wishlist_btn.active .heart-empty { display: none; }
.card_wishlist_btn.active .heart-filled { display: block !important; }
.products-list-wrapper {
  padding: 0 40px;

  width: 100%;
}
.products-list-inner {
  gap: 6px;
}
.products-list-wrapper.list-grid-view .products-list-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.products-list-wrapper.scroll-view {
  overflow: hidden;  

}
.products-list-wrapper.scroll-view .scroll-inner {
  display: grid;
  grid-auto-flow: column;  

  grid-auto-columns: calc(25% - 5px);  

  gap: 6px;
  overflow-x: auto;  

  padding-bottom: 20px;  

  width: 100%;
  white-space: nowrap;
}
.custom-more-link {
    font-size: 18px;
    font-weight: 400;
    text-decoration: underline;
    text-transform: uppercase;
    margin-bottom: 40px;
    transition: opacity 0.2s;
}
.custom-more-link:hover {
    opacity: 0.8;
}
.scroll-list-button {
  display: none;  

  width: 100%;
  border: 1px solid #000;
  padding: 12px 22px;
  text-transform: uppercase;
  margin-top: 24px;
}
.scroll-list-button a {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #000;
}
.scroll-list-button:hover {
    background: #000;
    color: #fff;
}
.banner-wrapper {
  padding: 0 40px;
  display: flex;
  align-items: stretch;
  width: 100%;
  margin-bottom: 32px;
}
.b1-left {
  height: 55vh;
  width: 50%;
}
.b1-left .desktop-img { width: 100%; height: 100%; object-fit: cover; object-position: 100% 20%; cursor: pointer; }
.b1-left .mobile-img { display: none; }  


.b1-right {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  width: 50%;
  padding-left: 32px;
}
.b1-title {
  font-weight: 400;
  font-size: 38px;
  line-height: 56px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.b1-title span { font-style: italic; color: pink; }

.b1-desc {
  font-weight: 400; font-size: 16px; line-height: 24px; margin-bottom: 32px;
}

.b1-button {
    width: 100%; max-width: 200px; font-size: 16px;
    padding: 12px 22px; border: 1px solid #000000; text-transform: uppercase;
}
.b1-button a { color: #000; }
.b1-button:hover { background: #000; border-color: #000; }
.b1-button:hover a { color: #fff; }
.b2-wrapper {
    padding: 0 40px;
    margin-bottom: 40px;
}
.b2-banner {
    width: 100%; position: relative; height: 70vh;
}
.b2-banner img { height: 100%; object-fit: cover; width: 100%; cursor: pointer; }
.b2-content {
    position: absolute; left: 32px; bottom: 32px;
}
.b2-content .b2-title {
    font-weight: 400; font-size: 60px; line-height: 78px; text-transform: uppercase; margin-bottom: 16px;
}
.b2-content .b2-title span { font-style: italic; color: orange; }
.video-wrapper {
    display: flex;
    justify-content: center;
    margin: 100px auto 0 auto;
}
.video-iframe {
    width: 800px;
    height: 400px;
    display: block;
}
 

@media screen and (max-width: 1060px) {
  .b1-wrapper {
    flex-wrap: wrap;
  }
  .b1-left { width: 60%; }
  .b1-right { width: 40%; padding-left: 16px; }
  .products-list-wrapper { padding: 0 16px; }
  .products-list-wrapper.list-grid-view .products-list-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-list-wrapper.scroll-view .scroll-inner {
    grid-auto-columns: calc(50% - 5px);
  }
}
@media screen and (max-width: 890px) {
  .b1-wrapper {
    flex-direction: column;  

  }
  .b1-left, .b1-right { width: 100%; padding-left: 16px; }
  .b1-left { height: auto; }
}
@media screen and (max-width: 650px) {
  .video-wrapper { margin: 40px auto 0 auto; }
  .video-iframe { width: 320px; height: 170px; }

  .products-list-wrapper { margin-bottom: 24px; padding: 0 0; }
  .products-list-wrapper.list-grid-view .products-list-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-list-wrapper.scroll-view { padding-left: 16px; }
  .products-list-wrapper.scroll-view .scroll-inner {
      grid-auto-columns: calc(50% - 4px);  

  }
  .b1-wrapper { padding: 0; margin-bottom: 24px; }
  .b1-left { max-height: 280px; overflow: hidden; }
  .b1-right { padding: 0 16px; }
  .b1-left .desktop-img { display: none; }
  .b1-left .mobile-img { display: block; height: 280px; }
  
  .b1-title { font-size: 20px; line-height: 24px; font-weight: 500; }
  .b1-button { max-width: 100%; }

}


.main_slider_wrapper {
    position: relative;
    width: 100%;
    height: 70vh; 
    overflow: hidden;
    margin-bottom: 80px; 
    display: flex;  

    align-items: flex-start;
    justify-content: center;
}
.slider_images.center_square {
    width: 100%;
    max-width: 600px; 
    aspect-ratio: 4 / 3;  

    margin: 0 auto; 
    position: relative;
    height: auto;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center;
}

.orders_list .order_item { 
    border: 1px solid #e0e0e0; 
    padding: 20px; 
    margin-bottom: 25px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.order_header { 
    display: flex; 
    justify-content: space-between; 
    font-size: 13px; 
    text-transform: uppercase; 
    flex-wrap: wrap;
}

.order_details_info {
    margin-bottom: 10px !important;
}

.order_details_info .detail_block {
    display: inline-flex;
    gap: 5px;
    margin-right: 20px;
}

.woocommerce-error {
  display: none;
}

.woocommerce-message {
  display: none;
}