/*
Theme Name: Clarion Mercado
Theme URI: https://numerosdecasas.com.br/
Author: Codex
Author URI: https://openai.com/
Description: Tema WordPress moderno, minimalista e mobile first para catalogo de presentes personalizados com compra externa no Mercado Livre.
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.8
Requires PHP: 8.0
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: clarion-mercado
Tags: e-commerce, custom-logo, custom-menu, featured-images, editor-style, block-styles, wide-blocks
*/

:root {
  --cm-bg: #f7f5f2;
  --cm-paper: #ffffff;
  --cm-accent: #e58b43;
  --cm-accent-dark: #c96c25;
  --cm-beige: #ece7df;
  --cm-text: #2d2935;
  --cm-muted: #746f78;
  --cm-green: #dcf6a5;
  --cm-border: rgba(45, 41, 53, 0.12);
  --cm-shadow: 0 24px 70px rgba(45, 41, 53, 0.12);
  --cm-radius: 8px;
  --cm-font: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cm-text);
  background: var(--cm-bg);
  font-family: var(--cm-font);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* Compatibility layer for floating plugin widgets such as WhatsApp/chat buttons. */
body .elfsight-app,
body [class*="elfsight"],
body [id*="elfsight"],
body .eapps-widget,
body .joinchat,
body .floating-wpp,
body .chaty-widget,
body [data-elfsight-app-lazy],
body iframe[src*="elfsight"],
body iframe[src*="whatsapp"] {
  z-index: 999999 !important;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cm-container {
  width: min(100% - 32px, 1120px);
  margin-inline: auto;
}

.cm-topbar {
  min-height: 34px;
  display: grid;
  place-items: center;
  padding: 7px 16px;
  color: #1f1b24;
  background: linear-gradient(180deg, #f79a4b 0%, #f7b985 100%);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
}

.cm-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(236, 231, 223, 0.8);
  background: rgba(247, 245, 242, 0.92);
  backdrop-filter: blur(18px);
}

.cm-header__inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  align-items: start;
  gap: 12px;
  padding: 16px 0 12px;
}

.cm-logo {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  color: var(--cm-accent);
  font-size: clamp(2rem, 5vw, 3.35rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.cm-logo img {
  max-height: 68px;
  width: auto;
}

.cm-header__actions {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 6px;
}

.cm-icon-btn,
.cm-menu-toggle {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--cm-text);
  background: transparent;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.cm-icon-btn:hover,
.cm-menu-toggle:hover {
  border-color: var(--cm-border);
  background: #fff;
  transform: translateY(-1px);
}

.cm-icon-btn--cart {
  position: relative;
  line-height: 0;
}

.cm-cart-count {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--cm-accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  z-index: 2;
  pointer-events: none;
}

.cm-nav {
  grid-column: 1 / 3;
  grid-row: 2;
  width: 100%;
  margin-top: 2px;
  overflow: visible;
}

.cm-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.cm-nav li {
  position: relative;
}

.cm-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--cm-text);
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease;
}

.cm-nav a:hover {
  color: var(--cm-accent-dark);
  background: rgba(229, 139, 67, 0.09);
}

.cm-nav .menu-item-has-children > a::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 7px;
  border-right: 1.5px solid var(--cm-accent);
  border-bottom: 1.5px solid var(--cm-accent);
  transform: rotate(45deg) translateY(-1px);
}

.cm-nav .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 60;
  min-width: 220px;
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(236, 231, 223, 0.95);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(45, 41, 53, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.cm-nav .sub-menu li {
  width: 100%;
}

.cm-nav .sub-menu a {
  width: 100%;
  min-height: 0;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 0.84rem;
}

.cm-nav li:hover > .sub-menu,
.cm-nav li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cm-menu-toggle {
  display: none;
}

.cm-hero {
  padding: 20px 0 44px;
}

.cm-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.56fr) minmax(0, 1fr);
  align-items: center;
  gap: 0;
}

.cm-hero__media {
  grid-column: 2;
  min-height: clamp(420px, 58vw, 620px);
  display: grid;
  place-items: center;
  border-radius: var(--cm-radius);
  overflow: hidden;
  background: linear-gradient(180deg, var(--cm-hero-media-bg, #ff8b31) 0%, color-mix(in srgb, var(--cm-hero-media-bg, #ff8b31) 55%, white) 100%);
  box-shadow: var(--cm-shadow);
}

.cm-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cm-hero__card {
  position: relative;
  z-index: 2;
  width: min(360px, 100%);
  margin-left: 0;
  padding: clamp(28px, 5vw, 54px);
  border-radius: var(--cm-radius);
  background: var(--cm-hero-card-bg, #ffffff);
  box-shadow: 0 20px 60px rgba(45, 41, 53, 0.14);
}

.cm-hero__eyebrow,
.cm-feature__eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--cm-hero-eyebrow-color, var(--cm-text));
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cm-hero h1,
.cm-feature h2,
.cm-section-title,
.cm-newsletter h2 {
  margin: 0;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.cm-hero h1 {
  color: var(--cm-hero-title-color, var(--cm-text));
  font-size: clamp(2rem, 4.4vw, var(--cm-hero-title-size, 4.5rem));
}

.cm-hero p,
.cm-feature p,
.cm-newsletter p {
  color: var(--cm-muted);
}

.cm-hero p {
  color: var(--cm-hero-text-color, var(--cm-muted));
  font-size: var(--cm-hero-text-size, 18px);
}

.cm-hero__eyebrow {
  font-size: var(--cm-hero-eyebrow-size, 14px);
}

.cm-button,
.single_add_to_cart_button,
.button,
.wp-element-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 22px;
  border: 1px solid var(--cm-border);
  border-radius: var(--cm-radius);
  color: var(--cm-text);
  background: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.cm-button:hover,
.single_add_to_cart_button:hover,
.button:hover,
.wp-element-button:hover {
  color: #fff;
  border-color: var(--cm-accent);
  background: var(--cm-accent);
  box-shadow: 0 16px 34px rgba(229, 139, 67, 0.28);
  transform: translateY(-2px);
}

.cm-button--accent {
  color: #fff;
  border-color: var(--cm-accent);
  background: var(--cm-accent);
}

.cm-button--accent:hover {
  background: var(--cm-accent-dark);
}

.cm-feature {
  padding: 32px 0;
}

.cm-feature__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  overflow: hidden;
  border-radius: var(--cm-radius);
  background: var(--cm-block-bg, #fff);
  box-shadow: 0 18px 44px rgba(45, 41, 53, 0.06);
}

.cm-feature__inner--reverse .cm-feature__media {
  order: 2;
}

.cm-feature__media {
  min-height: 430px;
  background: var(--cm-block-bg, #fff);
}

.cm-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cm-feature__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(32px, 6vw, 72px);
  color: var(--cm-block-text, var(--cm-text));
}

.cm-feature h2,
.cm-section-title,
.cm-newsletter h2 {
  font-size: clamp(2rem, 4.4vw, 4rem);
}

.cm-feature__content p,
.cm-feature__content .cm-feature__eyebrow {
  color: var(--cm-block-text, var(--cm-text));
}

.cm-products {
  padding: 34px 0 62px;
  background: transparent;
}

.cm-products--beige {
  background: transparent;
}

.cm-section-title {
  margin-bottom: 26px;
}

.cm-products__grid,
.woocommerce ul.products {
  display: flex !important;
  flex-wrap: wrap;
  gap: clamp(18px, 3vw, 40px);
  align-items: stretch;
  padding: 0;
  margin: 0;
  list-style: none;
  clear: both;
}

.cm-product-card,
.woocommerce ul.products li.product {
  position: relative;
  flex: 0 0 calc(25% - 30px);
  max-width: calc(25% - 30px);
  display: flex;
  flex-direction: column;
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  clear: none !important;
  overflow: hidden;
  border-radius: var(--cm-radius);
  background: linear-gradient(180deg, #fff 0%, #fff 58%, var(--cm-beige) 100%);
  box-shadow: 0 18px 46px rgba(45, 41, 53, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none !important;
}

.woocommerce ul.products li.product.first,
.woocommerce ul.products li.product.last,
.related.products ul.products li.product.first,
.related.products ul.products li.product.last {
  clear: none !important;
}

.cm-product-card:hover,
.woocommerce ul.products li.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 58px rgba(45, 41, 53, 0.11);
}

.cm-feature__inner,
.cm-product-card,
.cm-newsletter {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease, box-shadow 180ms ease;
}

.cm-feature__inner.is-visible,
.cm-product-card.is-visible,
.cm-newsletter.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cm-product-card__image,
.woocommerce ul.products li.product a img {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: auto;
  object-fit: contain;
  padding: 22px;
}

.cm-product-card__body,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price {
  text-align: center;
}

.cm-product-card__body {
  padding: 0 18px 24px;
}

.cm-product-card h3,
.woocommerce-loop-product__title {
  min-height: 44px;
  margin: 0 0 7px;
  color: var(--cm-text);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
}

.cm-price,
.price {
  color: var(--cm-text);
  font-size: 0.88rem;
  font-weight: 600;
}

.cm-product-card .cm-button,
.woocommerce ul.products li.product .button {
  width: calc(100% - 28px);
  margin: 14px 14px 0;
}

.cm-product-card .button {
  width: calc(100% - 28px);
  margin: 14px 14px 0;
}

.cm-ml-note,
.cm-cart-ml-missing {
  color: #a05a16;
  font-size: 0.9rem;
  font-weight: 600;
}

.cm-cart-ml-link {
  color: var(--cm-accent-dark);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cm-cart-ml-list {
  display: grid;
  gap: 12px;
}

.cm-cart-ml-list__button {
  width: 100%;
}

.cm-newsletter {
  padding: clamp(54px, 8vw, 98px) 0;
  text-align: center;
  background:
    radial-gradient(circle at 50% 78%, rgba(245, 177, 188, 0.5), transparent 34%),
    linear-gradient(180deg, var(--cm-green) 0%, #eff8c7 58%, #f8e9d9 100%);
}

.cm-newsletter p {
  max-width: 600px;
  margin: 18px auto 28px;
}

.cm-newsletter form {
  width: min(100%, 360px);
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
  border: 1px solid rgba(45, 41, 53, 0.26);
  border-radius: var(--cm-radius);
  background: rgba(255, 255, 255, 0.35);
}

.cm-newsletter input[type="email"] {
  min-width: 0;
  flex: 1;
  border: 0;
  padding: 13px 16px;
  color: var(--cm-text);
  background: transparent;
  outline: 0;
}

.cm-newsletter button {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--cm-radius);
  background: transparent;
  cursor: pointer;
}

.cm-footer {
  padding: 34px 0;
  color: var(--cm-muted);
  background: var(--cm-bg);
  font-size: 0.84rem;
}

.cm-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cm-footer ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.cm-search-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: start center;
  padding: 110px 18px 18px;
  background: rgba(247, 245, 242, 0.92);
  backdrop-filter: blur(16px);
}

.cm-search-modal.is-open {
  display: grid;
}

.cm-search-modal form {
  width: min(100%, 720px);
  display: flex;
  gap: 10px;
}

.cm-search-modal input {
  flex: 1;
  border: 1px solid var(--cm-border);
  border-radius: var(--cm-radius);
  padding: 16px 18px;
  background: #fff;
}

.cm-breadcrumb {
  padding: 18px 0 0;
  color: var(--cm-muted);
  font-size: 0.82rem;
}

.cm-breadcrumb a {
  color: var(--cm-text);
}

.cm-page {
  padding: 48px 0 72px;
}

.cm-page__content {
  max-width: 820px;
}

.woocommerce div.product {
  display: grid;
  grid-template-columns: minmax(320px, 520px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(32px, 6vw, 72px);
  padding: 54px 0 80px;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  float: none;
  width: auto !important;
  margin: 0;
}

.woocommerce div.product div.images {
  position: static;
  max-width: 520px;
}

.woocommerce div.product .product_title {
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1.05;
}

.woocommerce div.product .price {
  font-size: 1.25rem;
}

.woocommerce div.product .summary {
  max-width: 560px;
}

.woocommerce div.product form.cart {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.woocommerce div.product form.cart .quantity {
  margin: 0;
}

.woocommerce div.product .summary .single_add_to_cart_button {
  min-width: 170px;
}

.woocommerce-product-gallery,
.woocommerce div.product div.images img {
  overflow: hidden;
  border-radius: var(--cm-radius);
  background: #fff;
  box-shadow: var(--cm-shadow);
}

.woocommerce div.product div.images img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: clamp(18px, 4vw, 44px);
}

.woocommerce div.product .woocommerce-tabs {
  grid-column: 1 / -1;
  max-width: 900px;
}

.related.products {
  display: block;
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 32px;
}

.related.products > h2 {
  margin-bottom: 24px;
}

.related.products ul.products {
  display: flex !important;
  flex-wrap: wrap;
  gap: 24px !important;
  align-items: stretch;
  width: 100%;
  max-width: none;
}

.related.products ul.products li.product {
  flex: 0 0 calc(25% - 18px);
  max-width: calc(25% - 18px);
  min-width: 0;
}

.related.products ul.products li.product:nth-child(2n+1),
.related.products ul.products li.product:nth-child(3n+1),
.related.products ul.products li.product:nth-child(4n+1) {
  clear: none !important;
}

.woocommerce .woocommerce-notices-wrapper {
  margin-bottom: 12px;
}

.woocommerce .woocommerce-notices-wrapper:empty {
  display: none;
}

.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error {
  border: 0;
  border-left: 4px solid var(--cm-accent);
  border-radius: var(--cm-radius);
  background: #fff;
  color: var(--cm-text);
  box-shadow: 0 8px 24px rgba(45, 41, 53, 0.08);
}

.cm-shop-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 8px 0 20px;
}

.cm-shop-filters__title {
  font-size: 0.88rem;
  color: var(--cm-muted);
}

.cm-shop-filters__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cm-shop-filters__list a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid var(--cm-border);
  border-radius: 999px;
  background: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 180ms ease;
}

.cm-shop-filters__list a:hover,
.cm-shop-filters__list a.is-active {
  color: #fff;
  border-color: var(--cm-accent);
  background: var(--cm-accent);
}

.woocommerce .woocommerce-ordering select {
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--cm-border);
  border-radius: var(--cm-radius);
  background: #fff;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  float: none !important;
}

.woocommerce .woocommerce-ordering {
  margin-left: auto;
}

@media (max-width: 900px) {
  .cm-header__inner {
    min-height: 82px;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    padding: 10px 0 8px;
  }

  .cm-logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    font-size: 2.4rem;
  }

  .cm-menu-toggle {
    grid-column: 1;
    grid-row: 1;
    display: inline-grid;
  }

  .cm-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: stretch;
    display: none;
    margin: 0;
    padding: 8px 0 14px;
    overflow: visible;
  }

  .cm-nav.is-open {
    display: block;
  }

  .cm-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .cm-nav a {
    display: block;
    min-height: 0;
    padding: 11px 0;
    font-size: 0.95rem;
    border-radius: 0;
  }

  .cm-nav .menu-item-has-children > a::after {
    float: right;
    margin-top: 6px;
  }

  .cm-nav .sub-menu {
    position: static;
    min-width: 0;
    display: none;
    padding: 4px 0 8px 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .cm-nav li:hover > .sub-menu,
  .cm-nav li:focus-within > .sub-menu {
    display: grid;
  }

  .cm-nav .sub-menu a {
    padding: 9px 0;
    font-size: 0.88rem;
  }

  .cm-hero__grid,
  .cm-feature__inner,
  .woocommerce div.product {
    grid-template-columns: 1fr;
  }

  .cm-hero__media {
    grid-column: 1;
    min-height: 360px;
  }

  .cm-hero__card {
    width: calc(100% - 28px);
    margin: -70px auto 0;
  }

  .cm-feature__inner--reverse .cm-feature__media {
    order: 0;
  }

  .cm-feature__media {
    min-height: 300px;
  }

  .cm-products__grid,
  .woocommerce ul.products,
  .related.products ul.products {
    gap: 18px;
  }

  .cm-product-card,
  .woocommerce ul.products li.product,
  .related.products ul.products li.product {
    flex-basis: calc(50% - 9px);
    max-width: calc(50% - 9px);
  }

  .woocommerce div.product div.images {
    position: static;
    max-width: 100%;
  }

  .woocommerce div.product .summary,
  .woocommerce div.product .woocommerce-tabs {
    max-width: 100%;
  }

  .cm-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .cm-container {
    width: min(100% - 24px, 1120px);
  }

  .cm-header__actions {
    gap: 4px;
  }

  .cm-icon-btn {
    width: 36px;
    height: 36px;
  }

  .cm-hero {
    padding-top: 12px;
  }

  .cm-hero__media {
    min-height: 300px;
  }

  .cm-products__grid,
  .woocommerce ul.products,
  .related.products ul.products {
    gap: 12px;
  }

  .cm-product-card,
  .woocommerce ul.products li.product,
  .related.products ul.products li.product {
    flex-basis: calc(50% - 6px);
    max-width: calc(50% - 6px);
  }

  .cm-product-card__image,
  .woocommerce ul.products li.product a img {
    padding: 12px;
  }

  .cm-product-card h3,
  .woocommerce-loop-product__title {
    font-size: 0.82rem;
  }

  .cm-product-card .cm-button,
  .woocommerce ul.products li.product .button {
    min-height: 42px;
    padding-inline: 10px;
    font-size: 0.78rem;
  }

  .cm-shop-filters {
    align-items: flex-start;
  }

  .woocommerce .woocommerce-ordering {
    float: none;
    width: 100%;
    margin-top: 10px;
  }

  .woocommerce .woocommerce-ordering select {
    width: 100%;
  }
}
