.logo.logo-width-1 a img {
    width: 101px;
}
/* Card cleanup */
.card-1 {
    background: transparent;
    padding: 0;
    text-align: center;
}

/* Card container */
.card-1 {
    background: #f6f7fb;
    border-radius: 22px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: none;
    transition: transform 0.3s ease;
}

/* Image wrapper */
.card-1 figure {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Image */
.card-1 figure img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 0;
}

/* Title text */
.card-1 h5 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #1d1d1f;
    line-height: 1.3;
}

/* Link text */
.card-1 h5 a {
    color: inherit;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;   /* force 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Hover effect (very subtle, same style) */
.card-1:hover {
    transform: translateY(-4px);
}



/* ============================= */
/* PRODUCT GRID – 6 PER ROW */
/* ============================= */

.product-grid-4 {
    display: flex;
    flex-wrap: wrap;
}

/* 6 items per row */
.product-grid-4 > [class*="col-"] {
    flex: 0 0 16.666666%;
    max-width: 16.666666%;
}
/* REMOVE NOT AVAILABLE OVERLAY COMPLETELY */
.product-img-action-wrap::after {
    display: none !important;
}

/* KEEP IMAGE CLEAR */
.product-img img {
    filter: none !important;
    opacity: 1 !important;
}

/* REMOVE DARK BACKGROUND */
.product-img-action-wrap {
    background: transparent !important;
}

/* OPTIONAL: Slight grayscale ONLY if product is disabled */
.product-cart-wrap.out-of-stock .product-img img {
    filter: grayscale(20%);
    opacity: 0.95;
}

/* CLEAN CARD LOOK */
.product-cart-wrap {
    border-radius: 18px;
    background: #fff;
}

/* REMOVE EXTRA ICON CLUTTER */
.product-action-1 {
    display: none !important;
}
/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 1200px) {
    .product-grid-4 > [class*="col-"] {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (max-width: 768px) {
    .product-grid-4 > [class*="col-"] {
        flex: 0 0 50%;
        max-width: 50%;
    }
}





.slider-box {
  width: 100%;
  max-width: 1200px;      /* boxed */
  height: 420px;
  margin: 40px auto;     /* center */
  border-radius: 16px;
  overflow: hidden;      /* required for radius */
  border: 1px solid #ddd;
  background: #fff;
}

.slider-image {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("https://primekashmir.store/storage/untitled-design-20-1.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain; /* ✅ SHOW FULL IMAGE */
  cursor: pointer;
}


.team-section {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

.team-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.team-desc {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #666;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  justify-items: center;
}

/* Card */
.team-card {
  max-width: 220px;
}

.team-card img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 4px solid #ff9800;
}

.team-card h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.team-card span {
  font-size: 14px;
  font-weight: 600;
  color: #ff9800;
}

.team-card p {
  font-size: 13px;
  color: #555;
  margin-top: 8px;
  line-height: 1.4;
}

/* Tablet */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Phone View */
@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-card img {
    width: 140px;
    height: 140px;
  }
}

/* Small Phones */
@media (max-width: 400px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}