:root {
  --eclobel-green: #56622f;
  --eclobel-green-dark: #333b1d;
  --eclobel-pink: #dfa0a9;
  --eclobel-pink-dark: #c9828f;
  --eclobel-cream: #fbf6ef;
  --eclobel-soft: #f7ece8;
  --eclobel-white: #ffffff;
  --eclobel-text: #20231f;
  --eclobel-muted: #6f6f67;
  --eclobel-shadow: 0 22px 55px rgba(63, 72, 34, 0.10);
}

/* Página tienda */
.eclobel-shop-page {
  background: var(--eclobel-cream);
  color: var(--eclobel-text);
  overflow: hidden;
}

/* Hero tienda */
.eclobel-shop-hero {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: center;
  padding: 110px 24px 90px;
  background:
    linear-gradient(90deg, rgba(251,246,239,0.96) 0%, rgba(251,246,239,0.82) 45%, rgba(251,246,239,0.35) 100%),
    url("https://eclobelflowers.com/wp-content/uploads/2026/07/eclobel-hero-about.jpg");
  background-size: cover;
  background-position: center;
}

.eclobel-shop-hero__content {
  position: relative;
  width: min(1180px, 100%);
  margin: 0 auto;
  z-index: 2;
}

.eclobel-shop-eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--eclobel-green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.eclobel-shop-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.96;
  letter-spacing: -2px;
  color: var(--eclobel-text);
}

.eclobel-shop-hero p {
  max-width: 640px;
  margin: 26px 0 0;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.65;
  color: var(--eclobel-muted);
}

.eclobel-shop-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.eclobel-shop-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 0;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.eclobel-shop-btn--primary {
  background: var(--eclobel-green);
  color: var(--eclobel-white) !important;
}

.eclobel-shop-btn--secondary {
  background: var(--eclobel-pink);
  color: var(--eclobel-white) !important;
}

.eclobel-shop-btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

/* Contenedor */
.eclobel-shop-products-section {
  padding: 84px 24px 100px;
}

.eclobel-shop-container {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.eclobel-shop-intro {
  max-width: 720px;
  margin-bottom: 42px;
}

.eclobel-shop-intro h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: -1px;
}

.eclobel-shop-intro p {
  margin: 18px 0 0;
  color: var(--eclobel-muted);
  font-size: 18px;
  line-height: 1.7;
}

/* Barra superior */
.eclobel-shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 34px;
  padding: 18px 22px;
  background: var(--eclobel-white);
  border-radius: 22px;
  box-shadow: 0 12px 35px rgba(63, 72, 34, 0.07);
}

.eclobel-shop-result-count .woocommerce-result-count {
  margin: 0;
  color: var(--eclobel-muted);
  font-size: 15px;
}

.eclobel-shop-ordering .woocommerce-ordering {
  margin: 0;
}

.eclobel-shop-ordering select {
  min-height: 46px;
  border: 1px solid rgba(86, 98, 47, 0.18);
  border-radius: 14px;
  padding: 0 14px;
  background: var(--eclobel-cream);
  color: var(--eclobel-text);
}

/* Grid productos */
.woocommerce .eclobel-shop-page ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin: 0;
}

.woocommerce .eclobel-shop-page ul.products::before,
.woocommerce .eclobel-shop-page ul.products::after {
  display: none;
}

.woocommerce .eclobel-shop-page ul.products li.product {
  width: auto !important;
  float: none !important;
  margin: 0 !important;
  background: var(--eclobel-white);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--eclobel-shadow);
  border: 1px solid rgba(86, 98, 47, 0.08);
  text-align: left;
  transition: all 0.25s ease;
}

.woocommerce .eclobel-shop-page ul.products li.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(63, 72, 34, 0.14);
}

.woocommerce .eclobel-shop-page ul.products li.product a img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin: 0;
  border-radius: 0;
}

.woocommerce .eclobel-shop-page ul.products li.product .woocommerce-loop-product__title {
  padding: 22px 22px 0;
  margin: 0;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 800;
  color: var(--eclobel-text);
}

.woocommerce .eclobel-shop-page ul.products li.product .price {
  display: block;
  padding: 10px 22px 0;
  margin: 0;
  color: var(--eclobel-green);
  font-size: 18px;
  font-weight: 800;
}

.woocommerce .eclobel-shop-page ul.products li.product .price del {
  color: var(--eclobel-muted);
  opacity: 0.65;
}

.woocommerce .eclobel-shop-page ul.products li.product .price ins {
  text-decoration: none;
}

.woocommerce .eclobel-shop-page ul.products li.product .button {
  margin: 18px 22px 24px;
}

/* Botones WooCommerce */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.added_to_cart {
  background: var(--eclobel-green) !important;
  color: var(--eclobel-white) !important;
  border-radius: 0 !important;
  min-height: 48px;
  padding: 14px 22px !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  text-decoration: none !important;
  border: none !important;
  transition: all 0.25s ease;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.added_to_cart:hover {
  background: var(--eclobel-pink-dark) !important;
  color: var(--eclobel-white) !important;
  transform: translateY(-2px);
}

/* Etiqueta oferta */
.woocommerce span.onsale {
  min-height: auto;
  min-width: auto;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--eclobel-pink) !important;
  color: var(--eclobel-white) !important;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Paginación */
.woocommerce nav.woocommerce-pagination {
  margin-top: 54px;
}

.woocommerce nav.woocommerce-pagination ul {
  border: none;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: none;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  min-width: 42px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--eclobel-white);
  color: var(--eclobel-green);
  border-radius: 50%;
  font-weight: 800;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--eclobel-green);
  color: var(--eclobel-white);
}

/* Carrito y checkout */
.woocommerce-cart .entry-content,
.woocommerce-checkout .entry-content {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 70px 0;
}

.woocommerce table.shop_table {
  border: 1px solid rgba(86, 98, 47, 0.12);
  border-radius: 24px;
  overflow: hidden;
  background: var(--eclobel-white);
  box-shadow: 0 18px 45px rgba(63, 72, 34, 0.07);
}

.woocommerce table.shop_table th {
  color: var(--eclobel-green-dark);
  font-weight: 800;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  min-height: 48px;
  border: 1px solid rgba(86, 98, 47, 0.18);
  border-radius: 14px;
  padding: 10px 14px;
  background: var(--eclobel-white);
}

/* Responsive */
@media (max-width: 1100px) {
  .woocommerce .eclobel-shop-page ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .eclobel-shop-hero {
    min-height: 52vh;
    padding: 82px 20px 70px;
    background:
      linear-gradient(180deg, rgba(251,246,239,0.94) 0%, rgba(251,246,239,0.86) 100%),
      url("https://eclobelflowers.com/wp-content/uploads/2026/07/eclobel-hero-about.jpg");
    background-size: cover;
    background-position: center;
  }

  .eclobel-shop-products-section {
    padding: 64px 20px 80px;
  }

  .eclobel-shop-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .woocommerce .eclobel-shop-page ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 560px) {
  .eclobel-shop-hero h1 {
    font-size: 46px;
  }

  .eclobel-shop-hero p,
  .eclobel-shop-intro p {
    font-size: 16px;
  }

  .eclobel-shop-hero__buttons {
    flex-direction: column;
  }

  .eclobel-shop-btn {
    width: 100%;
  }

  .woocommerce .eclobel-shop-page ul.products {
    grid-template-columns: 1fr;
  }

  .woocommerce-cart .entry-content,
  .woocommerce-checkout .entry-content {
    width: min(100% - 32px, 1180px);
    padding: 50px 0;
  }
}