.catalog-filter-bar {
  padding: 32px 0;
  background: #fff;
    border-bottom: 1px solid #e8e8e8;
}

.filter-controls-row
	{
   display: flex;
    justify-content: space-between;
   align-items: center;
}

.filter-group {
    display: flex;
  align-items    :       center;
   gap: 12px;
}

.filter-icon {
   width  :22px;
   height: 22px;
    stroke: #5a5a5a;
	 stroke-width: 2;
    fill: none;
	
}

.filter-label {
         font-size: 15px;
    color: #2a2a2a;
    font-weight     :     500;
}

.results-count		{
    font-size: 14px;
  color: #5a5a5a;
}

.products-catalog-zone {
  padding: 85px 0;
    background    :   #f8f9fa;
}

.catalog-grid-layout {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
   gap: 42px;
}

.product-tile-unit {
    background: #fff;
  overflow: hidden;
   transition: all 0.35s ease;
    position: relative;
}

.product-tile-unit:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);


}

.product-thumbnail-box

{
   position: relative;
   height:     320px;
  overflow: hidden;
}

.product-thumbnail-box img {
   width: 100%;
   height: 100%;
  object-fit: cover;
	 transition: transform 0.5s ease;
}

.product-tile-unit:hover .product-thumbnail-box img {
  transform: scale(1.08); 
	
}

.product-badge-corner {
  position    :      absolute;

		top: 16px;

	  right: 16px;

	    z-index: 2;
}

.product-badge-corner span {
   display: inline-block;
	 padding: 6px 14px;
   font-size: 12px;
	 font-weight: 600;
   text-transform: uppercase;
    letter-spacing: 0.5px;
  color: #fff;
}

.badge-popular		{

	   background: #d97132;

}

.badge-new		{
    background: #2fa499;
}

.badge-limited {
   background: #a84cb8;
}

.quick-view-overlay {
  position: absolute;
       bottom: 0;
  left: 0;
    right: 0;
  background: rgba(42, 42, 42, 0.92);
    padding:    20px;
  transform: translateY(100%);
   transition    :        transform 0.35s ease;
}

.product-tile-unit:hover .quick-view-overlay {
  transform: translateY(0);
}

.feature-icons-row {
    display: flex;
   justify-content  :        space-around;
	gap: 16px;
}

.feature-icon-item

{
  display: flex;

          flex-direction: column;

  align-items: center;

    gap: 8px;
}



.feature-icon-item img {
    width: 24px;
    height     :     24px;
   stroke :       #fff;
   stroke-width: 2;
   fill     :    none;
}

.feature-icon-item span {
  font-size: 11px;
        color: #fff;
  font-weight: 500;
}

.product-details-section {
  padding: 28px 24px;
}

.product-meta-row {
  display: flex;
   justify-content     :    space-between;
    align-items: center;
    margin-bottom: 14px;
}

.collection-tag {
    font-size  :  12px;
	color: #d97132;
  font-weight: 600;
    text-transform: uppercase;
  letter-spacing: 0.8px;
	
}

.rating-display {


   display: flex;
    align-items: center;
   gap: 6px;
}

.rating-display img {
  width: 16px;
    height: 16px;
  stroke: #f9bf3f;
   stroke-width: 2;
  fill: #f9bf3f;
}

.rating-display span {
    font-size: 14px;
   font-weight: 600;
	 color    : #2a2a2a;
}

.product-name-heading {
    font-size: 22px;
		font-weight: 600;
    color: #2a2a2a;
  margin-bottom: 14px;
   line-height: 1.3;


}

.product-description-text
{
  color: #5a5a5a;
     font-size: 14.5px;
    line-height: 1.7;
   margin-bottom: 20px;
}

.product-specs-list {
  display: flex;
    flex-direction: column;
   gap: 10px;
   margin-bottom :     22px;
   padding-bottom: 22px;
   border-bottom: 1px solid #e8e8e8;
}

.spec-item {
          display: flex;
     align-items: center;
   gap: 10px;
}

.spec-item img {
  width    :      18px;
  height   :18px;
  stroke: #d97132;
    stroke-width: 2;
    fill: none;
    flex-shrink :  0;
}


.spec-item span {
    font-size:  13px;
  color: #5a5a5a;
}

.price-action-bar {
   display: flex;
  justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.price-display {
    display: flex;
  align-items: baseline;
	gap: 4px;
}

.currency-symbol {
   font-size: 16px;
       font-weight  : 500;
  color: #5a5a5a;
}

.price-amount {
   font-size: 32px;
  font-weight: 700;
    color: #2a2a2a;
  line-height: 1;
}

.product-cta-button {

   font-size: 14px;
				 font-weight: 600;
    background    :  #d97132;
  white-space: nowrap;
  gap: 8px;
    display: inline-flex;
  transition: all 0.3s ease;
  color: #fff;
   align-items: center;
    padding: 12px 24px;


}

.product-cta-button:hover		{
   background: #c65f28;
  transform: translateX(3px);
}

.product-cta-button img  {
   width: 16px;
    height: 16px;
    stroke: #fff;
      stroke-width   :     2.5;
  fill: none;
	
}

.features-highlight-strip {
  padding: 65px 0;
  background: #fff;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.features-row-display {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 35px;
}

.feature-column-item {
    display: flex;
    align-items: center;
   gap: 18px;
}

.feature-strip-icon {
   	width: 42px;
   height: 42px;
	stroke: #d97132;
  stroke-width: 2;
	fill: none;
  flex-shrink: 0;


}

.feature-text-content h4  {
   font-size: 16px;
	 font-weight: 600;
  color: #2a2a2a;
   margin-bottom    : 4px;
}

.feature-text-content p {
    font-size: 13px;
  color: #5a5a5a;
  margin :       0;
}

.info-banner-block {
   padding: 85px 0;
   background: #f8f9fa;
}

.banner-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 60px;
  align-items    :      center;
}

.banner-text-side h2 {
   font-size :  36px;
  font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 32px;
}

.inclusion-list {
   list-style   :       none;
}

.inclusion-list li {

    display: flex;
    align-items: center;
    gap: 14px;
  margin-bottom: 18px;
}

.inclusion-list li img {

	  width : 20px;
  height     :  20px;
    stroke: #d97132;
    stroke-width: 2.5;
   fill     :       none;
	flex-shrink: 0;

}

.inclusion-list li span {
    font-size: 16px;
  color: #5a5a5a;
     line-height    : 1.6;
}

.banner-image-side img {
                    width: 100%;
  height: auto;
}@media (max-width: 1200px) {
    .catalog-grid-layout {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 35px;
    }
}

@media (max-width: 992px) {
    .catalog-grid-layout {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 28px;
    }

    .banner-content-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .features-row-display {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .filter-controls-row {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .products-catalog-zone {
        padding: 65px 0;
    }

    .catalog-grid-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .product-thumbnail-box {
        height: 280px;
    }

    .price-action-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .product-cta-button {
        width: 100%;
        justify-content: center;
    }

    .features-row-display {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .banner-text-side h2 {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .info-banner-block,
    .features-highlight-strip {
        padding: 55px 0;
    }
}

@media (max-width: 480px) {
    .product-name-heading {
        font-size: 19px;
    }

    .product-description-text {
        font-size: 14px;
    }

    .price-amount {
        font-size: 28px;
    }

    .quick-view-overlay {
        padding: 16px;
    }

    .feature-icons-row {
        gap: 12px;
    }

    .feature-icon-item img {
        width: 20px;
        height: 20px;
    }

    .feature-icon-item span {
        font-size: 10px;
    }
}