
/** shop-page **/

.shop-page-section .item-shorting{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 18px 24px;
  margin-bottom: 40px;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(40, 22, 8, 0.07);
  border: 1px solid #ece4dc;
  gap: 18px;
  flex-wrap: wrap;
  min-height: 64px;
  transition: box-shadow 0.2s;
}
.shop-page-section .item-shorting:focus-within,
.shop-page-section .item-shorting:hover {
  box-shadow: 0 8px 32px rgba(40, 22, 8, 0.12);
}

.collection-filter,
.collection-sort-box,
.collection-toolbar__left > * {
  background: #f6f7f9;
  border-radius: 999px;
  padding: 8px 18px;
  margin-right: 10px;
  margin-bottom: 6px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #ece4dc;
  box-shadow: 0 2px 8px rgba(40,22,8,0.03);
  font-size: 15px;
  transition: box-shadow 0.2s, border-color 0.2s;
  min-width: 120px;
}
.collection-filter:focus-within,
.collection-sort-box:focus-within,
.collection-toolbar__left > *:focus-within {
  border-color: #c99059;
  box-shadow: 0 4px 16px rgba(201,144,89,0.08);
}

.collection-filter > summary {
  border: none;
  background: transparent;
  font-weight: 500;
  font-size: 15px;
  color: #2a241d;
  padding: 0;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.collection-filter > summary:focus {
  color: #c99059;
}

.collection-sort-box select,
.collection-filter__panel select,
.collection-sort-box .select-box select {
  border: none;
  background: transparent;
  font-size: 15px;
  padding: 6px 12px;
  border-radius: 8px;
  outline: none;
  color: #2a241d;
  min-width: 120px;
  appearance: none;
  box-shadow: none;
  transition: background 0.2s;
}
.collection-sort-box select:focus,
.collection-filter__panel select:focus {
  background: #f6f7f9;
}

/* 
  IMPORTANT: 
  For the price filter dropdown to be anchored correctly, 
  .collection-filter__panel MUST be a direct child of .collection-filter, 
  and .collection-filter MUST have position: relative.
  If using a JS dropdown or portal, ensure the panel is rendered inside the filter button/container.
*/
.collection-filter {
  position: relative !important;
  z-index: 10;
}
.collection-filter__panel {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  min-width: 260px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(40,22,8,0.10);
  border: 1px solid #ece4dc;
  padding: 18px 18px 20px;
  background: #fff;
  margin-top: 0;
  z-index: 100;
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}
.collection-filter__panel .range-bar,
.collection-filter__panel .range-box {
  margin-bottom: 10px;
}
.collection-filter__panel .filter-btn {
  width: 100%;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 0;
  margin-top: 8px;
  transition: background 0.2s;
}
.collection-filter__panel .filter-btn:hover,
.collection-filter__panel .filter-btn:focus {
  background: #c99059;
}
@media (max-width: 575.98px) {
  .collection-filter {
    position: relative;
  }
  .collection-filter__panel {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    min-width: unset;
    width: 100vw;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 8px 32px rgba(40,22,8,0.18);
    z-index: 1200;
    margin-left: -16px;
    margin-right: -16px;
    max-width: none;
  }
}

.collection-sort-box {
  background: #f6f7f9;
  border-radius: 999px;
  padding: 8px 18px;
  margin-right: 10px;
  margin-bottom: 6px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #ece4dc;
  box-shadow: 0 2px 8px rgba(40,22,8,0.03);
  font-size: 15px;
  transition: box-shadow 0.2s, border-color 0.2s;
  min-width: 180px;
}
.collection-sort-box select {
  border: none;
  background: transparent;
  font-size: 15px;
  padding: 6px 16px;
  border-radius: 999px;
  outline: none;
  color: #2a241d;
  min-width: 120px;
  appearance: none;
  box-shadow: none;
  transition: background 0.2s;
  margin-left: 8px;
  box-shadow: 0 1px 4px rgba(40,22,8,0.04);
  border: 1px solid #ece4dc;
}
.collection-sort-box select:focus {
  background: #f6f7f9;
  border: 1px solid #c99059;
}

@media (max-width: 767.98px) {
  .shop-page-section .item-shorting,
  .collection-filter,
  .collection-sort-box,
  .collection-toolbar__left > * {
    display: none !important;
  }
}
@media (max-width: 767.98px) {
  .shop-page-section .item-shorting {
    flex-direction: column;
    align-items: stretch;
    padding: 10px 8px;
    gap: 10px;
    margin-bottom: 24px;
  }
  .shop-page-section .item-shorting .left-column,
  .shop-page-section .item-shorting .right-column {
    width: 100%;
    justify-content: center;
    margin-bottom: 6px;
  }
  .shop-page-section .item-shorting .right-column {
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
  }
}

.shop-page-section .item-shorting .left-column .text p{
  font-size: 14px;
  color: var(--title-color);
}

.shop-page-section .item-shorting .left-column .text p span{
  font-weight: 700;
}

.shop-page-section .item-shorting .right-column{
  position: relative;
  display: flex;
  align-items: center;
}

.shop-page-section .item-shorting .right-column p{
  font-size: 14px;
  color: #7C7C7C;
  margin-right: 10px;
}

.shop-page-section .item-shorting .right-column .short-box{
  position: relative;
  display: flex;
  align-items: center;
}

.shop-page-section .item-shorting .right-column .select-box{
  min-height: 30px;
}

.shop-page-section .item-shorting .right-column .short-box .nice-select{
  font-size: 14px;
  line-height: 30px;
  color: var(--title-color);
  text-transform: capitalize;
}

.shop-page-section .item-shorting .right-column .short-box .nice-select:before{
  color: var(--title-color);
}

.shop-page-section .item-shorting .right-column .short-box .nice-select .list{
  min-width: 120px;
}

.shop-page-section .item-shorting .right-column .menu-box{
  position: relative;
  display: flex;
  align-items: center;
}

.shop-page-section .item-shorting .right-column .menu-box button{
  position: relative;
  display: inline-block;
  width: 28px;
  height: 28px;
  line-height: 24px;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 5px;
  text-align: center;
  font-size: 14px;
  color: #7C7C7C;
  cursor: pointer;
  transition: all 500ms ease;
}

.shop-page-section .item-shorting .right-column .menu-box button.on{

}

.shop-page-section .item-shorting .right-column .menu-box button img{
  display: inline-block;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 500ms ease;
}

.shop-page-section .item-shorting .right-column .menu-box button.on img{
  opacity: 1;
  filter: grayscale(0%);
}

.wrapper.list .shop-list-content{
  display: block;
}

.wrapper.list .shop-grid-content{
  display: none
}

.wrapper.grid .shop-list-content{
  display: none;
}

.wrapper.grid .shop-grid-content{
  display: block
}

.shop-page-section .wrapper .inner-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px 10px;
}
@media (min-width: 600px) {
  .shop-page-section .wrapper .inner-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .shop-page-section .wrapper .inner-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1200px) {
  .shop-page-section .wrapper .inner-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 28px 16px;
  }
}
@media (min-width: 1500px) {
  .shop-page-section .wrapper .inner-container {
    grid-template-columns: repeat(5, 1fr);
    gap: 36px 16px;
  }
}
/* Remove float and width from .shop-block-two */
.shop-page-section .wrapper .inner-container .shop-block-two{
  width: auto;
  float: none;
}

.shop-page-section .shop-block-two .inner-box .lower-content h5{
  max-height: 24px;
}

.shop-page-section .cta-section .inner-container{
  padding-top: 82px;
  padding-bottom: 82px;
}

.shop-block-seven .inner-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 35px 40px;
  border: 1px solid #E5E5E5;
  margin-bottom: 30px;
  transition: all 500ms ease;
}

.shop-block-seven .inner-box:hover{
  border-color: #fff;
  box-shadow: 0px 24px 54px 0px rgba(0, 0, 0, 0.07);
}

.shop-block-seven .inner-box .image-box{
  position: relative;
  display: block;
  width: 277px;
}

.shop-block-seven .inner-box .image-box img{
  width: 100%;
  transition: all 500ms ease;
}

.shop-block-seven .inner-box:hover .image-box img{
  transform: scale(0.9);
}

.shop-block-seven .inner-box .image-box .discount-product{
  left: 10px;
  top: 7px;
}

.shop-block-seven .inner-box .content-box{
  position: relative;
  display: block;
}

.shop-block-seven .inner-box .content-box .text{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 20px;
  color: var(--title-color);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.shop-block-seven .inner-box .content-box h4{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 14px;
}

.shop-block-seven .inner-box .content-box h4 a{
  display: inline-block;
}

.shop-block-seven .inner-box .content-box h4 a:hover{
  text-decoration: underline;
}

.shop-block-seven .inner-box .content-box h5{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 24px;
  color: #E92530;
  margin-bottom: 10px;
}

.shop-block-seven .inner-box .content-box h5 del{
  font-size: 16px;
  font-weight: 400;
  color: #7C7C7C;
  margin-left: 10px;
}

.shop-block-seven .inner-box .content-box .rating{
  margin-bottom: 10px;
}

.shop-block-seven .inner-box .content-box .theme-btn{
  background: transparent;
  border: 1px solid;
  border-width: 1px;
  color: var(--theme-color) !important;
  padding: 8.5px 70px;
}

.shop-block-seven .inner-box .content-box .theme-btn:hover{
  border-color: var(--secondary-color);
  color: #fff !important;
}

.shop-block-seven .inner-box .feature-content{
  position: relative;
  display: block;
  border-left: 1px solid #D9D9D9;
  padding: 30px 0px 50px 60px;
}

.shop-block-seven .inner-box .feature-list li{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 28px;
  padding-left: 16px;
}

.shop-block-seven .inner-box .feature-list li:before{
  position: absolute;
  content: '';
  background: var(--secondary-color);
  width: 5px;
  height: 5px;
  left: 0px;
  top: 12px;
  border-radius: 50%;
}

.shop-banner .slide-item{
  padding: 110px 120px;
}

.shop-sidebar .table-outer {
  overflow-x: auto;
  position: relative;
  width: 100%;
}

.shop-sidebar .sidebar-table {
  min-width: 1585px;
  width: 100%;
}

.shop-sidebar .sidebar-table tbody{
  vertical-align: top;
}

.shop-sidebar .sidebar-table .widget-title{
  margin-bottom: 25px;
}

.shop-sidebar .sidebar-table tbody tr td{
  padding-right: 60px;
  width: 280px;
}

.shop-sidebar .sidebar-table tbody tr td:last-child{
  padding: 0px;
}

.shop-sidebar .sidebar-table tbody tr .filter-widget{
  width: 220px;
}

.shop-sidebar.style-two .category-list li label{
  display: block;
}

.shop-sidebar.style-two .category-list li{
  position: relative;
}

.shop-sidebar .category-list li span{
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 14px;
  color: var(--title-color);
}

.shop-sidebar .category-list li .check-box input:checked + label span{

}

.shop-page-section .item-shorting .left-column{
  position: relative;
  display: flex;
  align-items: center;
}

.shop-page-section .item-shorting .left-column .filter-button button{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  color: #fff;
  text-transform: capitalize;
  padding: 8px 20px;
  width: 180px;
  text-align: left;
}

.shop-page-section .item-shorting .left-column .filter-button button i{
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 7px;
}

.shop-page-section .our-shop.fluid .wrapper .inner-container .shop-block-two{
  width: 16.666%;
}


/** rtl-css **/

.rtl .shop-page-section .item-shorting .right-column .menu-box button.mr_10{
  margin-right: 0px;
  margin-left: 10px;
}

.rtl .shop-page-section .item-shorting .right-column p{
  margin-right: 0px;
  margin-left: 10px;
}

.rtl .shop-block-seven .inner-box .feature-content{
  padding-left: 0px;
  padding-right: 60px;
  border-left: none;
  border-right: 1px solid #D9D9D9;
}

.rtl .shop-block-seven .inner-box .feature-list li{
  padding-left: 0px;
  padding-right: 16px;
}

.rtl .shop-block-seven .inner-box .feature-list li:before{
  left: inherit;
  right: 0px;
}

/** responsive-css **/

@media only screen and (max-width: 1200px){
  .shop-page-section .wrapper .inner-container .shop-block-two{
    width: 33.333%;
  }
}

@media only screen and (max-width: 991px){
 .shop-page-section .wrapper .inner-container .shop-block-two{
  width: 50%;
 }
}

@media only screen and (max-width: 767px){
  .shop-block-seven .inner-box{
    display: block;
  }

  .shop-page-section .wrapper .inner-container .shop-block-two{
    width: 100%;
  }

  .shop-block-seven .inner-box .feature-content{
    padding: 0px;
    border: none;
    margin-top: 30px;
  }

  .shop-sidebar{
    margin-bottom: 40px;
  }

  .rtl .shop-block-seven .inner-box .feature-content{
    padding-right: 0px;
    border: none;
  }

  .shop-banner .slide-item{
    padding: 100px 30px;
  }
}

@media only screen and (max-width: 599px){
  .shop-page-section .item-shorting{
    display: block;
    text-align: center;
  }

  .shop-page-section .item-shorting .right-column{
    justify-content: center;
  }
}

@media only screen and (max-width: 499px){
  .shop-block-seven .inner-box .image-box{
    width: 100%;
  }

  .shop-block-seven .inner-box .content-box .theme-btn{
    padding-left: 30px;
    padding-right: 30px;
  }

  .shop-block-seven .inner-box{
    padding-left: 30px;
    padding-right: 30px;
  }

  .shop-page-section .item-shorting .right-column .short-box{
    margin-right: 15px;
  }

  .rtl .shop-page-section .item-shorting .right-column .short-box{
    margin-left: 15px;
    margin-right: 0px;
  }

}











































