.sv-product-cat-single {
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: var(--transition);
}
.sv-product-cat-single.sv-style1 {
  min-height: 460px;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: start;
  align-items: end;
  border-radius: var(--boxBorderRadius);
}
.sv-product-cat-single.sv-style1::before {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, #000 100%);
  width: 100% !important;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.sv-product-cat-single.sv-style1 .sv-product-cat-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: bottom right;
}
.sv-product-cat-single.sv-style1 .sv-product-cat-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sv-product-cat-single.sv-style1 .sv-product-cat-content {
  width: 100%;
  padding: 36px;
  position: relative;
  z-index: 2;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sv-product-cat-single.sv-style1 .sv-product-cat-content .sv-product-cat-title {
  margin-bottom: 0;
}
.sv-product-cat-single.sv-style1 .sv-product-cat-content .sv-product-cat-title a:hover {
  color: var(--secondaryColor);
}
.sv-product-cat-single.sv-style1:hover::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.8) 100%);
}
.sv-product-cat-single.sv-style1:hover .sv-product-cat-image {
  transform: scale(1.1);
}
.sv-product-cat-single.sv-style1:hover .sv-product-cat-content {
  margin-bottom: 0;
}
.sv-product-cat-single.sv-style2 {
  background: var(--whiteColor);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 20px;
  text-align: center;
  border: 1px solid var(--borderColor);
}
.sv-product-cat-single.sv-style2 .sv-product-cat-image {
  position: relative;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
}
.sv-product-cat-single.sv-style2 .sv-product-cat-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.sv-product-cat-single.sv-style2 .sv-product-cat-content .sv-product-cat-title a {
  color: var(--titleColor);
}
.sv-product-cat-single.sv-style2 .sv-product-cat-content .sv-product-cat-title a:hover {
  color: var(--primaryColor);
}
.sv-product-cat-single.sv-style2:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primaryColor);
}
.sv-product-cat-single.sv-style2:hover .sv-product-cat-image img {
  transform: scale(1.1);
}
.sv-product-cat-single.sv-style3 {
  padding: 10px;
}
.sv-product-cat-single.sv-style3 .sv-product-cat-inner {
  display: block;
  text-align: center;
  padding: 30px 20px;
  background: #f9f9f9;
  border-radius: 20px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-decoration: none;
}
.sv-product-cat-single.sv-style3 .sv-product-cat-inner .sv-product-cat-image-wrap {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.sv-product-cat-single.sv-style3 .sv-product-cat-inner .sv-product-cat-image-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.sv-product-cat-single.sv-style3 .sv-product-cat-inner .sv-product-cat-content .sv-product-cat-title {
  color: var(--titleColor);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}
.sv-product-cat-single.sv-style3 .sv-product-cat-inner .sv-product-cat-content .sv-product-cat-count {
  color: var(--bodyColor);
  font-size: 14px;
  margin-bottom: 0;
}
.sv-product-cat-single.sv-style3 .sv-product-cat-inner:hover {
  background: #fff;
  border-color: var(--secondaryColor);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.sv-product-cat-single.sv-style3 .sv-product-cat-inner:hover .sv-product-cat-image-wrap img {
  transform: scale(1.1);
}
.sv-product-cat-single.sv-style3 .sv-product-cat-inner:hover .sv-product-cat-title {
  color: var(--secondaryColor);
}
.sv-product-cat-single .top-left {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 5;
}
.sv-product-cat-single .top-right {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 5;
}
.sv-product-cat-single .sv-product-cat-btn {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--whiteColor);
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sv-product-cat-single .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sv-product-cat-grid-layout {
  display: grid;
  grid-template-columns: repeat(var(--sv-grid-xs, 1), 1fr);
  gap: 30px;
}
@media (min-width: 576px) {
  .sv-product-cat-grid-layout {
    grid-template-columns: repeat(var(--sv-grid-sm, 2), 1fr);
  }
}
@media (min-width: 768px) {
  .sv-product-cat-grid-layout {
    grid-template-columns: repeat(var(--sv-grid-md, 3), 1fr);
  }
}
@media (min-width: 992px) {
  .sv-product-cat-grid-layout {
    grid-template-columns: repeat(var(--sv-grid-lg, 4), 1fr);
  }
}
@media (min-width: 1200px) {
  .sv-product-cat-grid-layout {
    grid-template-columns: repeat(var(--sv-grid-xl, 4), 1fr);
  }
}
@media (min-width: 1400px) {
  .sv-product-cat-grid-layout {
    grid-template-columns: repeat(var(--sv-grid-xxl, 4), 1fr);
  }
}

.sv-cat-tab-row {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.sv-cat-tab-nav {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--borderColor);
}

.sv-cat-tab-nav-item {
  border-bottom: 1px solid var(--borderColor);
  padding: 15px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.sv-cat-tab-nav-inner {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  border-radius: 12px;
  gap: 20px;
  transition: all 0.3s ease;
  background: transparent;
  border: 1px solid transparent;
}
@media (max-width: 575px) {
  .sv-cat-tab-nav-inner {
    padding: 8px 12px;
    gap: 12px;
  }
}

.sv-cat-tab-nav-inner:focus,
.sv-cat-tab-nav-inner:focus-visible,
.sv-cat-tab-nav-inner:hover {
  outline: none;
  border: none;
}

.sv-cat-tab-nav-item.active .sv-cat-tab-nav-inner {
  background: #fffafa;
  border: 1px solid var(--primaryColor);
}

.sv-cat-tab-accent-bar {
  width: 4px;
  height: 40px;
  border-radius: 2px;
  flex-shrink: 0;
}

.sv-cat-tab-index {
  font-size: 24px;
  font-weight: 700;
  color: #b0b0b0;
  min-width: 35px;
}

.sv-cat-tab-nav-main {
  flex-grow: 1;
}

.sv-cat-tab-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--titleColor);
}

.sv-cat-tab-subtitle {
  font-size: 14px;
  color: var(--textColor);
  display: block;
}

.sv-cat-tab-nav-meta {
  text-align: right;
  min-width: 60px;
}

.sv-cat-tab-count-number {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--titleColor);
}

.sv-cat-tab-count-text {
  font-size: 11px;
  font-weight: 600;
  color: #b0b0b0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sv-cat-tab-nav-icon {
  width: 40px;
  min-width: 40px;
  height: 40px;
  border: 1px solid var(--borderColor);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primaryColor);
  transition: all 0.3s ease;
}

.sv-cat-tab-nav-item.active .sv-cat-tab-nav-icon {
  background: var(--primaryColor);
  color: var(--whiteColor);
  border-color: var(--primaryColor);
}

/* Content Area */
.sv-cat-tab-content-area {
  flex: 1;
  position: relative;
  min-height: 500px;
}
@media (max-width: 575px) {
  .sv-cat-tab-content-area {
    min-height: 300px;
  }
}

.sv-cat-tab-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  border-radius: 20px;
  overflow: hidden;
  transform: translateY(20px);
}

.sv-cat-tab-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
}

.sv-cat-tab-panel-inner {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 60px;
  color: var(--whiteColor);
  min-height: 500px;
}
@media (max-width: 575px) {
  .sv-cat-tab-panel-inner {
    padding: 30px;
    min-height: 300px;
  }
}

.sv-cat-tab-panel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}

.sv-cat-tab-panel-content {
  position: relative;
  z-index: 2;
  max-width: 100%;
  width: 100%;
}

.sv-cat-tab-panel-index {
  font-size: 100px;
  font-weight: 900;
  opacity: 0.1;
  line-height: 1;
  margin-bottom: -20px;
}

.sv-cat-tab-panel-title {
  font-size: 42px;
  font-weight: 700;
  margin: 0 0 15px;
  color: var(--whiteColor);
}

.sv-cat-tab-panel-description {
  font-size: 16px;
  opacity: 0.8;
  margin-bottom: 25px;
  line-height: 1.6;
}

.sv-cat-tab-panel-meta {
  margin-bottom: 30px;
}

.sv-cat-tab-panel-count {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.sv-cat-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primaryColor);
  color: var(--whiteColor);
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.sv-cat-tab-btn:hover {
  background: var(--primaryColor);
  transform: translateX(5px);
}

@media (max-width: 991px) {
  .sv-cat-tab-row {
    flex-direction: column;
  }
  .sv-cat-tab-nav {
    flex: none;
  }
}/*# sourceMappingURL=product-cat.css.map */