/*!***********************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./assets/src/scss/templates/categories/categories.scss ***!
  \***********************************************************************************************************************************************/
/**
 * Categories Template Styles
 * 
 * @package EduardShortcodes
 */
:root {
  --eduard-accent-color: #0086CD;
}

.eduard-categories-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.eduard-categories-nav {
  margin-bottom: 32px;
}

.eduard-categories-nav-desktop {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 768px) {
  .eduard-categories-nav-desktop {
    display: none;
  }
}

.eduard-categories-nav-mobile {
  display: none;
}
@media (max-width: 768px) {
  .eduard-categories-nav-mobile {
    display: block;
  }
}
.eduard-categories-nav-mobile .eduard-categories-mobile-swiper {
  overflow: visible;
}
.eduard-categories-nav-mobile .eduard-categories-mobile-swiper .swiper-slide {
  width: auto;
}

.eduard-category-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 12px 24px !important;
  font-size: 15px !important;
  font-weight: bold !important;
  line-height: 1.4 !important;
  color: var(--eduard-accent-color) !important;
  background: transparent !important;
  border: 2px solid var(--eduard-accent-color) !important;
  border-radius: 50px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  white-space: nowrap !important;
}
.eduard-category-btn:hover:not(.active) {
  border-color: #a1daf8 !important;
  background: #a1daf8 !important;
  color: #020101 !important;
}
.eduard-category-btn.active {
  color: #fff !important;
  background: var(--eduard-accent-color) !important;
  border-color: var(--eduard-accent-color) !important;
}
.eduard-category-btn.active:hover {
  opacity: 0.9 !important;
}
.eduard-category-btn:disabled, .eduard-category-btn.is-loading {
  opacity: 0.6 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
}

.eduard-products-container {
  position: relative;
}

.eduard-products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  min-height: 40px;
}

.eduard-products-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 768px) {
  .eduard-products-header-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

.eduard-products-heading {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
}

.eduard-see-all-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 1rem;
  font-weight: 400;
  color: var(--eduard-accent-color);
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.eduard-see-all-link:hover {
  opacity: 0.8;
}
.eduard-see-all-link svg {
  flex-shrink: 0;
}

.eduard-slider-nav {
  display: none;
  gap: 8px;
}

.eduard-products-container.is-loaded .eduard-slider-nav {
  display: flex;
}
.eduard-products-container.is-loaded .eduard-slider-pagination {
  display: flex;
}

.eduard-slider-prev,
.eduard-slider-next {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
  padding: 0 !important;
  color: #fff !important;
  background: var(--eduard-accent-color) !important;
  border: none !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}
.eduard-slider-prev svg,
.eduard-slider-next svg {
  width: 20px !important;
  height: 20px !important;
}
@media (min-width: 1024px) {
  .eduard-slider-prev:hover:not(:disabled),
  .eduard-slider-next:hover:not(:disabled) {
    background: #a1daf8 !important;
    color: #020101 !important;
  }
}
.eduard-slider-prev:disabled,
.eduard-slider-next:disabled {
  opacity: 0.4 !important;
  cursor: not-allowed !important;
}

.eduard-products-slider-wrapper {
  position: relative;
  overflow: visible !important;
}

.eduard-products-swiper {
  overflow: visible !important;
  display: none;
  padding-left: 15px;
  padding-bottom: 15px;
}
.eduard-products-swiper.loaded {
  display: block !important;
}
.eduard-products-swiper .swiper-wrapper {
  align-items: stretch;
  overflow: visible !important;
  padding-top: 8px;
  padding-bottom: 16px;
  margin-top: -8px;
  margin-bottom: -16px;
}
.eduard-products-swiper .swiper-slide {
  display: inline-block;
  height: auto;
  overflow: visible !important;
}

.eduard-slider-pagination {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.eduard-slider-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: color-mix(in srgb, var(--eduard-accent-color) 66%, transparent);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.eduard-slider-pagination .swiper-pagination-bullet-active {
  width: 24px;
  background: var(--eduard-accent-color);
  border-radius: 4px;
}

.eduard-product-card {
  display: inline-flex !important;
  flex-direction: column;
  height: 100%;
  width: 100%;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2) !important;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 1;
}
.eduard-product-card:hover {
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.3) !important;
  z-index: 10;
}
.eduard-product-card .woocommerce-price-suffix {
  display: block;
  margin-top: 0px;
  color: #576168;
  font-size: 12px;
  font-weight: 600;
}
.eduard-product-card .eduard-detail-title {
  color: #000;
}

.eduard-product-thumbnail {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
}
.eduard-product-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eduard-product-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0086CD 0%, #004d7a 50%, #00334d 100%);
}

.eduard-product-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px;
}

.eduard-product-name {
  margin: 0 0 10px !important;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  color: #1a1a1a;
}

.eduard-product-description {
  margin: 0 0 16px;
  font-size: var(--e-global-typography-text-font-size);
  line-height: var(--e-global-typography-text-line-height);
  color: var(--e-global-color-text) !important;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.eduard-product-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
  margin-top: auto;
}
@media (max-width: 1024px) {
  .eduard-product-details {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

.eduard-product-detail {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
}

.eduard-detail-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  color: var(--eduard-accent-color);
}
.eduard-detail-icon svg, .eduard-detail-icon i {
  display: block;
  width: 100%;
  height: 100%;
}

.eduard-detail-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.3;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.eduard-detail-title {
  font-size: 13px;
  font-weight: 600;
  color: #666;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

.eduard-detail-value {
  font-size: 13px;
  font-weight: 400;
  color: #333;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

.eduard-product-price {
  grid-column: 1/-1;
  line-height: normal;
  font-size: 18px;
  font-weight: 700;
  color: var(--e-global-color-primary) !important;
  text-align: center;
  margin-top: 8px;
}
.eduard-product-price .wc-gzd-sale-price-label {
  display: block;
  font-size: 0.7em;
  font-weight: 400;
  opacity: 0.7;
}
.eduard-product-price del {
  display: block;
  font-size: 0.7em;
  font-weight: 400;
  opacity: 0.7;
}
.eduard-product-price ins {
  text-decoration: none;
  color: var(--e-global-color-primary) !important;
}
.eduard-product-price .woocommerce-Price-amount,
.eduard-product-price .amount {
  color: var(--e-global-color-primary) !important;
}

.eduard-detail-icon svg.eduard-icon {
  width: 18px !important;
  height: 18px !important;
  fill: currentColor;
}

.eduard-skeleton-wrapper {
  display: flex;
  gap: 20px;
  padding-left: 15px;
  padding-bottom: 15px;
}
.eduard-skeleton-wrapper.hidden {
  display: none;
}

.eduard-skeleton-card {
  flex-shrink: 0;
  width: calc((100% - 60px) / 3.3);
  height: 100%;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .eduard-skeleton-card {
    width: calc((100% - 20px) / 1.2);
  }
}

.eduard-skeleton-slide .eduard-skeleton-card {
  width: 100%;
}

.eduard-skeleton-thumbnail {
  width: 100%;
  padding-top: 56.25%;
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: eduard-skeleton-shimmer 1.5s infinite;
}

.eduard-skeleton-content {
  padding: 20px;
}

.eduard-skeleton-title {
  height: 22px;
  width: 80%;
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  border-radius: 4px;
  margin-bottom: 12px;
  animation: eduard-skeleton-shimmer 1.5s infinite;
}

.eduard-skeleton-text {
  height: 14px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  border-radius: 4px;
  margin-bottom: 8px;
  animation: eduard-skeleton-shimmer 1.5s infinite;
}
.eduard-skeleton-text:nth-child(2) {
  width: 100%;
}
.eduard-skeleton-text:nth-child(3) {
  width: 90%;
}
.eduard-skeleton-text:nth-child(4) {
  width: 70%;
  margin-bottom: 16px;
}

.eduard-skeleton-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
}
@media (max-width: 1024px) {
  .eduard-skeleton-details {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

.eduard-skeleton-row {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.eduard-skeleton-row .eduard-skeleton-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  border-radius: 4px;
  animation: eduard-skeleton-shimmer 1.5s infinite;
}
.eduard-skeleton-row .eduard-skeleton-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0;
}
.eduard-skeleton-row .eduard-skeleton-label {
  height: 12px;
  width: 60px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  border-radius: 4px;
  animation: eduard-skeleton-shimmer 1.5s infinite;
}
.eduard-skeleton-row .eduard-skeleton-value {
  height: 13px;
  width: 100px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  border-radius: 4px;
  animation: eduard-skeleton-shimmer 1.5s infinite;
}

.eduard-skeleton-price {
  grid-column: 1/-1;
  height: 22px;
  width: 80px;
  margin-top: 8px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  border-radius: 4px;
  animation: eduard-skeleton-shimmer 1.5s infinite;
}

@keyframes eduard-skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.eduard-no-products {
  padding: 60px 20px;
  text-align: center;
  color: #666;
  font-size: 16px;
}

/* Allow slides to peek outside the container */
.eduard-products-swiper {
  overflow: visible;
}

/* Desktop partial slide effect */
@media (max-width: 769px) {
  .eduard-products-swiper {
    padding-right: 18%;
  }
}
@media (min-width: 769px) {
  .eduard-products-swiper {
    padding-right: 9%;
  }
}

/*# sourceMappingURL=categories.css.map*/