/* product Page styles — fonts from main.css @font-face only (no Google Fonts) */

#productDisplay,
#productMainDisplay {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Long-form product text: bundled serif; tracking helps small sizes stay clear */
#productDisplay .product-description,
#productMainDisplay .product-description {
  font-family: 'Source Serif 4', Georgia, serif;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

  img .prodImage{
    border-radius: 6px !important;
  }


  :root {
    --main-color: #29394f00;
    --main-color-2: #29394f;
    --main-blue-hover: #485377;
    --product-list-item-bg: #16263c;
    --main-active: #041429;
    --text-color-dark: #222935;
    --main-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;

    /* Probably remove it, not used */
    --main-color: #29394f;
    --main-color-2: #29394f;
    --main-blue-hover: #485377;
    --product-list-item-bg: #16263c;
    --main-active: #041429;
    --text-color-dark: #222935;
    --main-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }
  
 
  #productDisplay{
    width:100vw;
    height: var(--prod-pg-main-height) !important;
    background: var(--sec-default-bgColor);
    margin:  var(--sec-margin);   
   
  }
  #productMainDisplay{
    width:100vw;
    height: var(--prod-pg-mainDetail-height) !important;
    background: var(--sec-default-bgColor);
    margin:  var(--sec-margin);   
   
  }
  .productView{
    height: var(--prod-pg-productView-height) !important;
    color: var(--uni-dark-fontColor)!important;

    padding: 20px !important;
  /*  padding: 20px;
    margin: 10px; 
     border: 1px solid black; */
    width: 960px !important;
  }
  .productRowListing{
    height: 530px;
    margin: 30px;
    padding: 20px;
  }


  .productDetailView{
    height: var(--prod-pg-productDetailView-height) !important;
    color: var(--uni-dark-fontColor)!important;

    padding: 20px !important;
  /*  padding: 20px;
    margin: 10px; 
     border: 1px solid black; */
    width: 960px !important;
  }
  
  .product-right-col {
    /*  grid-column: span 9;
    display: grid;
    grid-template-rows: repeat(5, 210); */
    /* border: 2px solid black;
    border-radius:6px;  */
    width: 960px !important;
    margin-left:0px;
    margin-right:0px;
    margin-bottom:10px;
   /* height: var(--prod-pg-main-height); */
   height: 100%;
    
  }
  .product-left-col {
 /*   grid-column: span 3;
  display: grid;
  grid-template-rows: repeat(5, 32navbar5px); */
 /* border: 2px solid black; */
  width: 240px !important;
  margin-left:30px;
  margin-right:20px;
  border-radius:6px;
  margin-bottom:40px;
  padding-bottom: 40px;
 /* height: var(--prod-pg-main-height); */
 height: auto;
  padding-top: 4px;
}

.productPageadsbygoogle{
  background: var( --sec-description-bgColor);
  width: 230px !important;
  border-radius: 6px;
  margin-top: 20px !important;
  margin-bottom: 20px !important;
    height: var(--prod-pg-ad-height);
}


.prodInfoRow{ 
  /* border: 1px solid black;  */
  margin: 5px !important;
  width: auto !important;
  height:500px;
}
.productImageRow{
  /*   
  margin: 20px !important;
  padding: 10px !important;*/
  width: 100% !important;
  height: 400px !important;
  margin: 20px !important;
  padding: 0px !important;
}

.generalDescription{
  display: flex;
    width: 100%;
    background:var(--sec-description-bgColor);
    height: 100%;
    margin: 10px;   
    border-radius: 10px;
    min-height: 600px !important;
  }

.productDescription{
display: 1;
  width: 50%;
  background:var(--sec-description-bgColor);
  height: 100%;
  margin: 10px;
  padding: 30px !important;
  border-radius: 10px;
  min-height: 600px !important;
}

.productDetailDescription{
display: 1;
  width: 98%;
  background:var(--sec-description-bgColor);
  height: 100%;
  margin: 10px;
  padding: 30px !important;
  border-radius: 10px;
  min-height: 300px !important;
}
.product-description {
  white-space: pre-wrap; /* Preserves both spaces and line breaks */
  word-wrap: break-word; /* Ensures long words don't overflow */
}
.productDescription h5, .productDetailDescription h5{
  padding: 2px 10px;
  font-size: 16px;
}
.productImage{
  display:flex;  
  justify-content: center;
  align-items: flex-start;
  width: 40%;
  height: 100%;
  background: transparent;
  margin: 20px;
  border-radius: 10px;  
 
}
.listingImageCard{
  border: none !important;
  height: 500px !important;
  
}
.listingImageCard img{
  object-fit: cover;
  height: 300px !important;
}
.imageCard{
  border: none !important;
  height: 100% !important;
 margin: 10px;
}

.mainDP{
  border: none !important;
  border-radius: 7px;
  max-height: 100%;
  width: 100%;
  object-fit: cover;
   cursor: pointer;
  transition: transform 0.2s ease;
  
}
.mainDP:hover {
  transform: scale(1.02);
}
.collectionImages {
  border: none !important;
  border-radius: 7px;
  height: 400px !important;
  width: 100%;
  object-fit: scale-down;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.collectionImages:hover {
  transform: scale(1.02);
}

/* Image popup container */
.image-popup-wrapper {
  position: relative;
  display: inline-block;
}

/* Hotspot overlay - only the center 70% triggers popup */
.image-popup-hotspot {
  position: absolute;
  top: 15%;
  left: 15%;
  width: 70%;
  height: 70%;
  cursor: pointer;
  z-index: 1;
}
/* The popup image */
.image-popup {
  display: none;
  position: fixed;
  z-index: 9999;
  background: white;
  border: 3px solid #333;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  max-width: 90vw;
  max-height: 90vh;
  padding: 5px;
  pointer-events: none;
}

.image-popup img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 5px;
}

/* Show popup only when hovering the hotspot */
.image-popup-wrapper .image-popup-hotspot:hover ~ .image-popup,
.image-popup-wrapper.touch-active .image-popup {
  display: block;
}

/* Hover effect on hotspot area */
.image-popup-hotspot:hover {
  background: rgba(255, 255, 255, 0.1);
}
  .itemHeading{
    margin-left: 10px;
    font-size: 17px;
  font-weight: 600;  
  text-align: center;
  }
  .itemQty{
    float: left;
    margin-left: 10px;

    font-size: 15px;
  font-weight: 700;
  }  
.itemPrice{
  float: right;
  margin-right: 10px;
  font-size: 15px;
  font-weight: 700;
}
.addToCartIcon{
  float: center;
  /* margin-right:10px; */
  padding: 10px;
  font-size: 20px !important;
  color: var(--uni-dark-fontColor);
}
.addToCartIcon:hover{
  text-shadow: 0 0 5px rgba(5, 114, 32, 0.8), 0 0 10px rgba(5, 114, 32, 0.8), 0 0 20px rgba(5, 114, 32, 0.8), 0 0 30px rgba(5, 114, 32, 0.8), 0 0 40px rgba(5, 114, 32, 1), 0 0 50px rgba(5, 114, 32, 1), 0 0 60px rgba(5, 114, 32, 1);
  color:var(--uni-light-fontColor);
}
.itemCategoryDisplay{
   float: right;  
    font-size: 15px;
  font-weight: 700;
}
.itemCategory{   
    font-size: 15px;
  font-weight: 700;
  color: rgba(5, 114, 32, 0.8) !important;
  
}


/* Solution B - Pill design with golden background */
.itemFeatureIndicator {
  font-size: 15px;
  font-weight: 700;
  color: white !important;
  float: left !important;
  
  /* Pill styling */
  background: linear-gradient(135deg, rgba(241, 174, 29, 0.95), rgba(218, 156, 26, 0.95));
  border-radius: 20px;
  padding: 4px 12px;
  
  /* Subtle effects */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  
  /* Optional border */
  border: 1px solid rgba(180, 130, 20, 0.8);
  
  /* For better spacing */
  margin-left: 10px;
  display: inline-block;
  line-height: 1.2;
}

/* Hover effect (optional) */
.itemFeatureIndicator:hover {
  background: linear-gradient(135deg, rgba(255, 190, 40, 0.95), rgba(235, 170, 35, 0.95));
  transform: translateY(-1px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  transition: all 0.2s ease;
}

#qrIcon{
  float: right;
 /* margin-right:10px; */
  padding: 10px;
  font-size: 20px !important;
  color: var(--uni-dark-fontColor);

}
#qrIcon:hover{
  text-shadow: 0 0 5px rgba(5, 114, 32, 0.8), 0 0 10px rgba(5, 114, 32, 0.8), 0 0 20px rgba(5, 114, 32, 0.8), 0 0 30px rgba(5, 114, 32, 0.8), 0 0 40px rgba(5, 114, 32, 1), 0 0 50px rgba(5, 114, 32, 1), 0 0 60px rgba(5, 114, 32, 1);
  color:var(--uni-light-fontColor);

}
.product-share-btn{
   float: right;
 /* margin-right:10px; */
  padding: 10px;
  font-size: 20px !important;
  color: var(--uni-light-fontColor);
}
.product-share-btn:hover{
 text-shadow: 0 0 5px rgba(5, 114, 32, 0.8), 0 0 10px rgba(5, 114, 32, 0.8), 0 0 20px rgba(5, 114, 32, 0.8), 0 0 30px rgba(5, 114, 32, 0.8), 0 0 40px rgba(5, 114, 32, 1), 0 0 50px rgba(5, 114, 32, 1), 0 0 60px rgba(5, 114, 32, 1);
  color:var(--uni-light-fontColor);
}
.description-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  display: inline-block;
  width: 50ch; /* You can adjust this value as needed */
}
.cartDetails{
  height: 50px !important;
  /* border: 1px solid black;  */
  margin: 20px;
  width: 200px !important;
}
/* Product Category Display   */


.cartIcon{
  margin-left: 4px;
  margin-right: 4px;
   font-size: 2rem !important; 
}
.cartTotal{
  margin-left: 30px;
}

.cart-wrapper {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: var(--main-box-shadow);
  max-width: 230px;
  
  height: 50px;
}
.iconRow{
  flex-direction: row;
  text-align: center;
  padding:2px;
  
}

.iconRow .fa{
font-size: 30px !important;

}
.iconRow .fa:hover {
  /* Glow Effect on hover */
  text-shadow: 0 0 5px rgba(5, 114, 32, 0.8), 0 0 10px rgba(5, 114, 32, 0.8), 0 0 20px rgba(5, 114, 32, 0.8), 0 0 30px rgba(5, 114, 32, 0.8), 0 0 40px rgba(5, 114, 32, 1), 0 0 50px rgba(5, 114, 32, 1), 0 0 60px rgba(5, 114, 32, 1);
  color:var(--uni-light-fontColor);
}
  /* 
.iconRow .fa-shopping-cart:hover {
  margin-left: 60%;
  left: 0;
}
.iconRow .fa-user:hover {
 margin-right: 60%;
  right: 0;
}*/
.categorySearchListing{
  display: inline-block;
  height: 50px !important;
  /* border: 1px solid black;  */
  /* margin: 20px; */
  width: 100% !important;
}
.dropdown-content {
  font-size: 14px;
  display: flex;
  align-items: center;
  padding: 16px;
  transition: 0.2s linear;
  cursor: pointer; 
  width: 250px;
  margin-left: auto;
  margin-right: auto;
}
.categoryDropdown{
  border: none !important;
  outline: none !important;
  background: none !important;
}
.categoryDropdownOptions{
  font-size: 14px;  
}
.app-filter-wrapper {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: var(--main-box-shadow);
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  height: 50px;
  padding-right: 5px;
}
.app-filter-wrapper label{
  padding: 5px;
  font-size: 14px;
  margin: 10px;
}

.filter-search-input {
  border: none;
  appearance: none;
  padding: 0 16px;
  outline: none;
  font-size: 15px;
  line-height: 40px;
  caret-color: var(--main-color);
  color: var(--text-color-dark);
  position: relative;
  flex: 1;
  max-width: 300px !important;

  &:before {
    content: "";
    position: absolute;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23afb6cc' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-search' viewBox='0 0 24 24'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='M21 21l-4.35-4.35'/%3E%3C/svg%3E%0A");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    background-color: red;
    left: 0;
    top: 50%;
    transform: translatey(-50%);
    display: inline-block;
  }

  &::placeholder {
    color: #afb6cc;
  }
}
.searchBttn, .clearSearchBttn, .refreshPageBttn{
  color: black;
  width: fit-content;
  margin-left: 5px; /* Center the button horizontally */
margin-right: 5px; /* Center the button horizontally */
font-family: 'Work Sans', 'DM Sans', system-ui, sans-serif;
font-size: 12px;
font-weight: 500;
letter-spacing: 0.02em;
}

.searchBttn:hover{
  box-shadow:
  -7px -7px 20px 0px rgba(255, 255, 255, .9),
  -4px -4px 5px 0px rgba(255, 255, 255, .9),
  7px 7px 20px 0px rgba(0, 0, 0, .2),
  4px 4px 5px 0px rgba(0, 0, 0, .3);
transition: all 0.3s ease;
}
.clearSearchBttn:hover{
  box-shadow:
  -7px -7px 20px 0px rgba(255, 255, 255, .9),
  -4px -4px 5px 0px rgba(255, 255, 255, .9),
  7px 7px 20px 0px rgba(0, 0, 0, .2),
  4px 4px 5px 0px rgba(0, 0, 0, .3);
transition: all 0.3s ease;
}

.refreshPageBttn:hover{
  box-shadow:
  -7px -7px 20px 0px rgba(255, 255, 255, .9),
  -4px -4px 5px 0px rgba(255, 255, 255, .9),
  7px 7px 20px 0px rgba(0, 0, 0, .2),
  4px 4px 5px 0px rgba(0, 0, 0, .3);
transition: all 0.3s ease;
}
.filterBttn{
  color: black;
  width: fit-content;
  margin-left: auto; /* Center the button horizontally */
margin-right: auto; /* Center the button horizontally */
font-family: 'Work Sans', 'DM Sans', system-ui, sans-serif;
font-size: 12px;
font-weight: 500;
letter-spacing: 0.02em;
}

.filterBttn:hover{
  box-shadow:
  -7px -7px 20px 0px rgba(255, 255, 255, .9),
  -4px -4px 5px 0px rgba(255, 255, 255, .9),
  7px 7px 20px 0px rgba(0, 0, 0, .2),
  4px 4px 5px 0px rgba(0, 0, 0, .3);
transition: all 0.3s ease;
}
.selectedProductItem{
  color: black;
  font-family: 'Playfair Display', serif;

}

/** Updated sort and category filter css **/
 /* Sorting Controls Styling */
  .sorting-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }
  
  .sort-dropdown {
    position: relative;
  }
  
  .sort-btn {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #495057;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .sort-btn:hover {
    background-color: #e9ecef;
    border-color: #ced4da;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  .sort-btn:active,
  .sort-btn:focus {
    background-color: #e9ecef;
    border-color: #ced4da;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }
  
  .sort-btn .sort-icon {
    font-size: 14px;
    opacity: 0.8;
  }
  
  .sort-btn .sort-text {
    font-weight: 500;
  }
  
  .sort-btn.active {
    background-color: #6c757d;
    color: white;
    border-color: #6c757d;
  }
  
  .sort-btn.active .sort-icon {
    color: white;
    opacity: 1;
  }
  
  .sort-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    min-width: 200px;
    padding: 8px 0;
    margin: 2px 0 0;
    font-size: 14px;
    color: #212529;
    text-align: left;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: fadeIn 0.2s ease;
  }
  
  .sort-dropdown-menu.show {
    display: block;
  }
  
  .sort-dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    text-decoration: none;
    transition: all 0.2s ease;
  }
  
  .sort-dropdown-item:hover {
    background-color: #f8f9fa;
    color: #16181b;
  }
  
  .sort-dropdown-item.active {
    background-color: #6c757d;
    color: white;
  }
  
  .sort-dropdown-item.active .check-icon {
    opacity: 1;
  }
  
  .sort-dropdown-item .option-content {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .sort-dropdown-item .option-text {
    font-size: 13px;
    font-weight: 500;
  }
  
  .sort-dropdown-item .option-icon {
    font-size: 12px;
    width: 16px;
    text-align: center;
  }
  
  .sort-dropdown-item .check-icon {
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.2s ease;
  }
  
  .clear-sort-btn {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #dc3545;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  
  .clear-sort-btn:hover {
    background-color: #dc3545;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* ============================================= */
/* CATEGORY DROPDOWN STYLING (Matching Sort UI) */
/* ============================================= */

.category-filter-container {
  margin: 20px auto 30px;
  max-width: 320px;
}

.category-dropdown-wrapper {
  position: relative;
}

.category-select-wrapper {
  position: relative;
}

.category-select-btn {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  color: #495057;
  padding: 10px 16px;
  border-radius: 6px;
  width: 100%;
  text-align: left;
  transition: all 0.3s ease;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 500;
}

.category-select-btn:hover {
  background-color: #e9ecef;
  border-color: #ced4da;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.category-select-btn:active,
.category-select-btn:focus {
  background-color: #e9ecef;
  border-color: #ced4da;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  outline: none;
}

.category-select-btn.active {
  background-color: #6c757d;
  color: white;
  border-color: #6c757d;
}

.category-select-btn .btn-text {
  display: flex;
  align-items: center;
  gap: 8px;
}

.category-select-btn .btn-icon {
  font-size: 14px;
  opacity: 0.8;
}

.category-select-btn .btn-label {
  font-weight: 500;
}

.category-select-btn .btn-arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.category-select-btn[aria-expanded="true"] .btn-arrow {
  transform: rotate(180deg);
}

.category-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1000;
  display: none;
  max-height: 300px;
  overflow-y: auto;
  padding: 8px 0;
  margin: 4px 0 0;
  font-size: 14px;
  color: #212529;
  text-align: left;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  animation: fadeIn 0.2s ease;
}

.category-dropdown-menu.show {
  display: block;
}

.category-dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.category-dropdown-item:hover {
  background-color: #f8f9fa;
  color: #16181b;
}

.category-dropdown-item.selected {
  background-color: #6c757d;
  color: white;
}

.category-dropdown-item.selected .check-icon {
  opacity: 1;
}

.category-dropdown-item .option-content {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.category-dropdown-item .option-text {
  font-size: 13px;
  font-weight: 500;
}

.category-dropdown-item .check-icon {
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* Category filter form adjustments */
.category-filter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.category-filter-form .filterBttn {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  color: #495057;
  padding: 10px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  width: 100%;
}

.category-filter-form .filterBttn:hover {
  background-color: #e9ecef;
  border-color: #ced4da;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.category-filter-form .filterBttn:active {
  transform: translateY(0);
}

/* Hide the original select element */
.categoryDropdown {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Scrollbar styling for dropdown */
.category-dropdown-menu::-webkit-scrollbar {
  width: 6px;
}

.category-dropdown-menu::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.category-dropdown-menu::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}

.category-dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* ============================================= */
/* RESPONSIVE ADJUSTMENTS */
/* ============================================= */

@media only screen and (min-width: 961px) and (max-width: 1200px) {
  .category-filter-container {
    max-width: 280px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 960px) {
  .category-filter-container {
    max-width: 280px;
  }
}

@media only screen and (min-width: 569px) and (max-width: 767px) {
  .category-filter-container {
    max-width: 260px;
  }
}

@media only screen and (min-width: 240px) and (max-width: 568px) {
  .category-filter-container {
    max-width: 240px;
  }
  
  .category-select-btn {
    padding: 8px 12px;
    font-size: 13px;
  }
  
  .category-dropdown-item {
    padding: 6px 12px;
    font-size: 12px;
  }
}

/* ============================================= */
/* ANIMATIONS */
/* ============================================= */

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}
/** EOF sort and category filter **/

 
/*  Produdt listing cart title css  */
.h3topHeading{
  margin-bottom: 0px !important;
  height: 40px !important;
  font-weight: 600;
}
.h4topHeading{
  margin-bottom: 0px !important;
  height: 30px !important;
  font-weight: 600;
}

.col-md-4{
  width: 33.33% !important;
}

.activeCategoryListing{
 left: 0;
  height: 50px !important;
  /* border: 1px solid black;  */
  margin: 0px;
  width: 35% !important;
  display: inline-block;
}

.categories{
  text-align: center;
}

.prodCounter{
  height: auto;
  display: inline-block;
  justify-content: center;
  padding: 15px;
  text-align: center;
 
}

.activeCategoryListing .btn{
  background: #020407d6 !important;  
  font-weight:700;
  padding: 17px;
  
}
.activeCategoryListing .btn-active{
  background: #f6f7f8d6 !important;  
  font-weight:700;
  padding: 17px;
  color:rgba(5, 114, 32, 0.8);
}
.categoryName{
    font-size: 18px;
    font-weight:600;
    width: fit-content;

}
#pagination{
  justify-items: center !important;
  text-align: center;
  margin: 40px 0;
}
.paginationSpanStyle{
  padding: 10px; margin: 10px; text-align: center
}/* App page descriptor style definition */

#pagination button{
  border: none !important;
  display: solid;
}
.oos{
  color: red !important;
}



@media only screen and (min-width: 961px) and (max-width: 1200px){
  .productImageRow{
    height: 100%;
  }
  .productDescription{
    width: 100%;
    margin: auto;
  }
  .productImage{
    width: 100%;
    margin: auto;
    padding-top:10px;
  }
  .latestDeals, .hotDeals{
    flex-direction: column;
    max-width: 95%;
    width: 95%;
  margin: 10px 10px;
  padding: 0 20px;  
  }  

  .categorySearchListing{   
    width: 100% !important;
    text-align: center;
    
  }
  .dropdown-content{
    width: 250px;
    margin-left: auto;
    margin-right: auto;
  }
  .app-filter-wrapper {    
    max-width: 450px !important;
   text-align: center;
   margin: auto;
  }
  .filter-search-input {
    width: 250px !important;
  }
  #pagination {
    text-align: center !important;
    justify-self: center;
    width: 100%;
    margin: 30px auto !important;
  }
  #pagination button{
    text-align: center !important;

  }
}

@media only screen and (min-width: 768px) and (max-width: 960px){
  .productImageRow{
    height: 100%;
  }
  .productDescription{
    width: 100%;
    margin: auto;
  }
  .productImage{
    width: 100%;
    margin: auto;
    padding-top:10px;
  }
  
  .latestDeals, .hotDeals{
    flex-direction: column;
    max-width: 95%;
    width: 95%;
  margin: 10px 10px;
  padding: 0 20px;  
  }  

  .categorySearchListing{   
    width: 100% !important;
    text-align: center;
    
  }
  .dropdown-content{
    width: 250px;
    margin-left: auto;
    margin-right: auto;
  }
  .app-filter-wrapper {    
    max-width: 450px !important;
   text-align: center;
   margin-left: auto;
   margin-right: auto;
  }
  .filter-search-input {
    width: 250px !important;
  }
  #pagination {
    text-align: center !important;
    justify-self: center;
    width: 100%;
    margin: 30px auto !important;
  }
  #pagination button{
    text-align: center !important;
  }
   .btn-group.prd-bttn-ribbon .navbar-cart-icon {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .btn-group.prd-bttn-ribbon .navbar-cart-icon a {  
    align-items: center;
    justify-content: center;   
  }
 
}
@media only screen and (min-width: 569px) and (max-width: 767px){
  .dealSection{
    width:100% !important;
    margin: auto;
  }
  .productImageRow{
    height: 100%;
  }
.productDescription{
  width: 100%;
  margin: auto;
}
.productImage{
  width: 100%;
  margin: auto;
  padding-top:10px;
}

.latestDeals, .hotDeals{
  flex-direction: column;
  max-width: 95%;
  width: 95%;
margin: 10px 10px;  
}  

.categorySearchListing{   
  width: 100% !important;
}
.dropdown-content {   
  margin-left: auto;
  margin-right: auto;
}
.app-filter-wrapper {    
  max-width: 450px !important;   
    margin-left: auto;
    margin-right: auto;

}
.filter-search-input {
  width: 210px !important;
}
#pagination {
  text-align: center !important;
  justify-self: center;
  width: 100%;
  margin: 30px auto !important;
}
#pagination button{
  text-align: center !important;
}
  .btn-group.prd-bttn-ribbon .navbar-cart-icon {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .btn-group.prd-bttn-ribbon .navbar-cart-icon a {  
    align-items: center;
    justify-content: center;   
  }
}
@media only screen and (min-width: 240px) and (max-width: 568px){
  .dealSection{
    width:100% !important;
    margin: auto;
  }
  .productImageRow{
    height: 100%;
  }
  .productDescription, .productDetailDescription{
    width: 100%;
    margin: auto;
  }

  .productImage{
    width: 100%;
    margin: auto;
    padding-top:10px;
  }
  .latestDeals, .hotDeals{
    flex-direction: column;
    max-width: 90%;
    width: 90%;
  margin: 10px 10px;  
  }  

  .categorySearchListing{   
    width: 100% !important;
  }
  .app-filter-wrapper {    
    max-width: 350px !important;
   padding-right: 5px !important;
  }
  .filter-search-input {
    width: 130px !important;
  }
  .dropdown-content {   
    margin-left: auto;
    margin-right: auto;
  }
  #pagination {
    text-align: center !important;
    justify-self: center;
    width: 100%;
    margin: 30px auto !important;
  }
  #pagination button{
    text-align: center !important;

  }
   .btn-group.prd-bttn-ribbon .navbar-cart-icon {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .btn-group.prd-bttn-ribbon .navbar-cart-icon a {  
    align-items: center;
    justify-content: center;   
  }
 .searchBttn, .clearSearchBttn, .refreshPageBttn{
margin-left: auto;
margin-right: auto;
 }
}
