/* ===== DESIGN AGENT: Premium Shop UI ===== */

/* font + background */
body {
  background: #f7f8fa;
}

/* container a bit wider */
.ast-container {
  max-width: 1240px;
}

/* card look for product boxes */
.woocommerce ul.products li.product {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  padding: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform .18s ease, box-shadow .18s ease;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.10);
}

/* product image */
.woocommerce ul.products li.product a img {
  border-radius: 14px;
  margin-bottom: 12px;
}

/* title */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 16px;
  line-height: 1.25;
  margin: 8px 0 10px;
  font-weight: 700;
}

/* price */
.woocommerce ul.products li.product .price {
  font-size: 16px;
  font-weight: 800;
}

/* add to cart button */
.woocommerce ul.products li.product .button {
  border-radius: 12px !important;
  padding: 12px 14px !important;
  font-weight: 800 !important;
  width: 100%;
  text-align: center;
}

/* header cleaner */
.site-header {
  background: #fff;
  box-shadow: 0 2px 18px rgba(0,0,0,0.06);
}

/* nicer notices */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-radius: 12px;
}

/* single product page */
.single-product .product {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* buy button */
.single-product .single_add_to_cart_button {
  border-radius: 12px !important;
  padding: 14px 18px !important;
  font-weight: 900 !important;
}/* ===== PRO DESIGN PACK ===== */

/* Header premium */
.site-header {
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    backdrop-filter: blur(6px);
}

/* Cart icon badge */
.ast-header-cart .count {
    background: #ff3b30 !important;
    color: #fff !important;
    border-radius: 50px;
    font-size: 12px;
    padding: 2px 7px;
}

/* Product cards */
.woocommerce ul.products li.product {
    background: #fff;
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    transition: all .25s ease;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.10);
}

/* Product image smooth */
.woocommerce ul.products li.product img {
    border-radius: 14px;
}

/* Title cleaner */
.woocommerce-loop-product__title {
    font-weight: 700;
    font-size: 15px;
}

/* Price bold */
.woocommerce ul.products li.product .price {
    font-weight: 800;
}

/* Add to cart PRO button */
.woocommerce ul.products li.product .button {
    background: #111 !important;
    color: #fff !important;
    border-radius: 12px !important;
    padding: 12px !important;
    width: 100%;
    text-align: center;
}

.woocommerce ul.products li.product .button:hover {
    background: #ff3b30 !important;
}