.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.shop-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
}

.shop-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.shop-card:hover img {
  transform: scale(1.08);
}

.scp-menu,
.sct-footer {
  background-color: #19355d !important;
}
.sct-top-bar {
  background-color: #da2328 !important;
  border-bottom: 1px #da2328 solid !important;
}
.scw-storelogo.h1 a {
  color: #19355d !important;
}

.shop-category-section {
  padding: 60px 40px;
  text-align: center;
}

.shop-category-title,
.bestsellers-header,
.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #003b73;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.category-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  align-items: flex-start;
  gap: 45px;
}

.category-card {
  text-decoration: none;
  color: #003b73;
  transition: 0.3s ease;
}

.category-card:hover {
  transform: translateY(-6px);
}

.category-image {
  border-radius: 50%;
  overflow: hidden;
  background: #e8e8e8;
  margin-bottom: 22px;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.category-card:hover img {
  transform: scale(1.05);
}

.category-name {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.category-image {
  border-radius: 50%;
  overflow: hidden;
  background: #e8e8e8;
  margin-bottom: 22px;
  position: relative;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Zoom Effect */
.category-card:hover .category-image img {
  transform: scale(1.15);
}
.bestsellers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  gap: 20px;
}
.scp-products .scp-product {
  width: 100% !important;
}
.owl-wrapper {
  width: 100% !important;
}
.shop-job-section {
  width: 100%;
  padding-top: 80px;
}

.shop-job-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.shop-job-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.shop-job-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
  display: block;
}

.shop-job-card:hover img {
  transform: scale(1.08);
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay h2 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: underline;
}

@media (max-width: 992px) {
  .shop-job-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .overlay h2 {
    font-size: 14px;
  }
  .category-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
.owl-item {
  width: 100% !important;
}
.scp-p-title {
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 300px;
}
/* Responsive */

@media (max-width: 768px) {
  .shop-category-section {
    padding: 40px 20px;
  }

  .shop-category-title,
  .bestsellers-header,
  .section-title {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .category-wrapper {
    gap: 25px;
  }

  .category-name {
    font-size: 18px;
  }
  .category-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 🔥 Responsive */
@media (max-width: 1200px) {
  .shop-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1024px) {
  .bestsellers-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .scp-p-title {
    max-width: 250px;
  }
}
@media (max-width: 480px) {
  .category-wrapper {
    justify-content: center;
  }

  .category-image {
    width: 140px;
    height: 140px;
  }

  .shop-category-title,
  .bestsellers-header,
  .section-title {
    font-size: 18px;
  }

  .category-name {
    font-size: 16px;
  }
  .bestsellers-grid {
    grid-template-columns: 1fr;
  }
}
.scw-content a{
  color: white !important;
}
.sc_openwindow{
  margin-left: 5px;
}