/* Devyom Textile — Theme CSS */

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 45%, #0ea5e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section label */
.section-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #1e40af;
}

/* Image placeholder */
.img-placeholder {
  background: linear-gradient(135deg, #eff4ff 0%, #dce8ff 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #1e40af;
  font-size: .75rem;
  font-weight: 600;
}

/* Tab pane */
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* Filter active */
.filter-btn.active {
  background: #1e40af;
  color: #fff;
  border-color: #1e40af;
}

/* Service tab active */
.svc-tab.active {
  background: #1e40af;
  color: #fff;
  border-color: #1e40af;
}

/* Industry section anchor offset */
.ind-section { scroll-margin-top: 80px; }

/* Step connector */
@media (min-width: 1024px) {
  .step-line:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(50% + 28px);
    width: calc(100% - 56px);
    height: 2px;
    background: linear-gradient(to right, #1e40af, #dce8ff);
  }
}

/* Pulse animation */
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
.pulse { animation: pulse-dot 1.8s ease-in-out infinite; }

/* Grid overlay */
.grid-bg {
  background-image: linear-gradient(#fff 1px, transparent 1px), linear-gradient(90deg, #fff 1px, transparent 1px);
  background-size: 48px 48px;
}

/* WooCommerce product card */
.woocommerce ul.products li.product {
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  overflow: hidden;
  transition: box-shadow .3s, transform .3s;
  background: #fff;
}
.woocommerce ul.products li.product:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,.1);
  transform: translateY(-3px);
}
.woocommerce ul.products li.product .price {
  color: #1e40af;
  font-weight: 700;
  font-size: 1.125rem;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: .875rem;
  font-weight: 700;
  color: #111827;
}
.woocommerce ul.products li.product a.add_to_cart_button {
  display: block;
  width: 100%;
  text-align: center;
  background: #1e40af;
  color: #fff;
  font-weight: 700;
  padding: 10px;
  border-radius: 10px;
  font-size: .8rem;
  transition: background .2s;
}
.woocommerce ul.products li.product a.add_to_cart_button:hover {
  background: #1e3a8a;
}
