
  
.shop-product-card {
  
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid #f0f0f0 !important;
  background-color: #f6f0f9af !important;
}

.shop-product-card:hover {
  box-shadow: 0 15px 30px rgba(138, 43, 226, 0.15) !important;
  border-color: rgba(138, 43, 226, 0.3) !important;
}

/* Image */

.shop-img-container {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.shop-main-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.shop-product-card:hover .shop-main-img {
  transform: scale(1.05);
}
.rating-pill {
  background: var(--success);
  color: white;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: 600;
}
/* Product Title */

.shop-product-title {
  font-size: 0.9rem;
  color: var(--text-main);
  line-height: 1.2rem;
  height: 2.4rem;

  display: -webkit-box;
  /* -webkit-line-clamp: 2; */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;

  margin-bottom: 4px;
}

.shop-product-card:hover .shop-product-title {
  color: var(--primary-color);
}

/* Price */

.shop-new-price { font-size: 14px; font-weight: 700; margin-top: 5px; }
.shop-old-price{ color: #888; text-decoration: line-through; font-size: 11px; margin-left: 4px; } 


/* Rating */

.shop-rating-pill {
  background: var(--success);
  color: white;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: 600;
}

/* Earnings */

.shop-earning-tag {
  background: #f1f3f6;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  color: #555;
  display: inline-block;
} 
.extra-small {
  font-size: 11px;
}

/* Responsive */

@media (max-width:576px){

  .shop-img-container{
    height:140px;
  }

  .shop-product-title{
    font-size:0.85rem;
  }

  .shop-new-price{
    font-size:1rem;
  }

}

/* View More Card */

.shop-view-more-card{
  background:#f8f9fa;
  border:1px solid #e0e0e0 !important;
  transition:all 0.3s ease-in-out;
  position:relative;
  padding:20px 10px;
}

.shop-view-more-card:hover{
  background:#ffffff;
  border-color:#2874f0 !important;
  box-shadow:0 4px 15px rgba(0,0,0,0.1) !important;
}

/* View More Icon */

.shop-icon-circle{
  width:55px;
  height:55px;
  background:#ffffff;
  border:1px solid #eee;
  color:#2874f0;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.2rem;
  transition:all 0.3s ease;
}

.shop-view-more-card:hover .shop-icon-circle{
  background:#2874f0;
  color:#fff;
  transform:scale(1.1);
  border-color:#2874f0;
}

/* View More Body */

.shop-view-more-body h6{
  font-size:1rem;
  letter-spacing:0.3px;
}

.shop-view-more-body p{
  font-size:0.8rem;
  line-height:1.2;
}

/* View All Button */

.shop-view-all-btn-link{
  font-size:0.85rem;
  font-weight:700;
  color:#2874f0;
  text-transform:uppercase;
  display:inline-flex;
  align-items:center;
  border-bottom:2px solid transparent;
  padding-bottom:2px;
  transition:all 0.3s ease;
}

.shop-view-more-card:hover .shop-view-all-btn-link{
  color:#fb641b;
  gap:8px;
}

/* Mobile */

@media (max-width:576px){

  .shop-view-more-card{
    min-height:250px;
  }

  .shop-icon-circle{
    width:45px;
    height:45px;
    font-size:1rem;
  }

}


:root {
    --amazon-orange: #febd69;
    --deal-red: #cc0c39;
    --price-black: #0f1111;
    --mrp-grey: #565959;
    --bg-light: #eaeded;
    --success-green: #008a00;
}

.deal-badge {
    position: absolute;
    top: 10px;
    left: 0;
    background: var(--deal-red);
    color: white;
    padding: 2px 10px;
    font-size: 11px;
    font-weight: bold;
    border-radius: 0 15px 15px 0;
    z-index: 5;
}

:root {
    --brand-green: #73c12c;
}

.text-green { color: var(--brand-green); }

.ecommerce-label {
    color: var(--brand-green);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.know-more-btn {
    text-decoration: none;
    color: var(--brand-green);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    transition: 0.3s;
}

.know-more-btn:hover {
    letter-spacing: 1px;
    color: #5ea124;
}

.about-card {
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
}

.about-card.active-card {
    background-color: var(--brand-green);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}


.icon-box {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: transparent;
    border: 2px solid var(--brand-green);
    border-radius: 50%;
    margin: 0 auto;
    font-size: 24px;
    color: var(--brand-green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-card.active-card .icon-box {
    border-color: #ffffff;
}

.card-link {
    text-decoration: none;
    color: var(--brand-green);
    font-weight: 700;
    font-size: 13px;
    margin-top: 15px;
    display: inline-block;
}
.btn-group-responsive{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.btn-create{
    background-color:#73c12c;
    color:#fff;
}


.team-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 15px;
    padding: 10px 5px;
    -ms-overflow-style: none;  
    scrollbar-width: none; 
}

.team-slider::-webkit-scrollbar {
    display: none; 
}


.product-item {
    min-width: 220px;
    flex: 0 0 auto;
}

@media (max-width: 576px) {
    .product-item {
        min-width: 170px;
    }
}


.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.7);
    color: #fff;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    z-index: 10;
    cursor: pointer;
}

.scroll-btn.left { left: -15px; }
.scroll-btn.right { right: -15px; }


.shop-main-img {
    width: 100%;
    height: 180px;
    object-fit: contain;
}
        


@media (max-width:576px){
    .btn-group-responsive a{
        width:100%;
        text-align:center;
    }
}
