/* 
    ==========================================================================
    TABLE OF CONTENTS
    ==========================================================================
    0.  VARIABLES & DESIGN TOKENS
    1.  GLOBAL DEFAULTS & RESET
    2.  TYPOGRAPHY & FONTS
    3.  LAYOUT & WRAPPERS
    4.  NAVIGATION & HEADER
    5.  GENERIC COMPONENTS (CARDS, BUTTONS)
    6.  PORTFOLIO & SLIDERS
    7.  FORMS & INPUTS
    8.  WOOCOMMERCE: GLOBAL
    9.  WOOCOMMERCE: PRODUCT PAGE
    10. WOOCOMMERCE: CART
    11. WOOCOMMERCE: CHECKOUT (WCA-)
    12. WOOCOMMERCE: MY ACCOUNT (WCA-)
    13. WOOCOMMERCE: UTILITIES & BADGES
    ==========================================================================
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

/* â”€â”€ 0. VARIABLES & DESIGN TOKENS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
  /* Brand */
  --base-color: #f47722;
  --base-color-dark: #cc5f1a;
  --base-color-soft: #fdf1e9;
  --base-color2: #d6d1ca;

  /* Neutral palette */
  --charcoal-blue: #232323;
  --dark-gray: #3d3d3c;
  --medium-gray: #7b7a7a;
  --light-medium-gray: #f5f5f5;
  --border-color: #e4e4e4;
  --white: #ffffff;

  /* Typography */
  --alt-font: 'Montserrat', sans-serif;
  --primary-font: 'Montserrat', sans-serif;
  --font-size-base: 15px;
  --font-size-sm: 13px;
  --font-size-xs: 12px;
  --line-height-base: 1.65;

  /* Spacing scale */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;

  /* Border radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 50px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, .08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, .12);
  --shadow-brand: 0 8px 25px rgba(244, 119, 34, .28);

  /* WCA (My Account + Checkout) component tokens */
  --wca-brand: var(--base-color);
  --wca-brand-dark: var(--base-color-dark);
  --wca-brand-mid: #2e4285;
  --wca-brand-soft: var(--base-color-soft);
  --wca-surface: #f4f6fb;
  --wca-card: #ffffff;
  --wca-text: var(--charcoal-blue);
  --wca-text-light: var(--dark-gray);
  --wca-muted: var(--medium-gray);
  --wca-border: var(--border-color);
  --wca-radius: 14px;
  --wca-radius-sm: 9px;
  --wca-shadow: 0 4px 28px rgba(30, 45, 90, .09);
  --wca-shadow-sm: 0 2px 10px rgba(30, 45, 90, .06);
  --wca-success: #2e7d32;
  --wca-success-bg: #e8f5e9;
  --wca-warning: #ed6c02;
  --wca-warning-bg: #fff4e5;
  --wca-danger: #d32f2f;
  --wca-danger-bg: #fdecea;
}

/* â”€â”€ 1. GLOBAL DEFAULTS & RESET â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body {
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--dark-gray);
  font-family: var(--primary-font);
}





.shop-sidebar .shop-filter li .product-cb {
  width: 16px;
  height: 16px;
  border: 1px solid var(--medium-gray);
  display: inline-block;
  border-radius: 100%;
  position: absolute;
  left: -24px;
  top: 6px;
}



/* â”€â”€ 4. NAVIGATION & HEADER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.navbar .navbar-nav .simple-dropdown .dropdown-menu li a {
  padding-bottom: 0;
}

.opacity-extra-medium {
  opacity: 0.6;
}

.bg-gradient-bottom-dark-transparent {
  background-image: linear-gradient(to top, #000000, rgb(0 0 0 / 38%), rgba(37, 44, 62, 0.42), rgba(37, 44, 62, 0), rgba(37, 44, 62, 0));
}


/* â”€â”€ 7. FORMS & INPUTS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
input,
select,
textarea,
.form-control,
.form-select.mobi {
  /* padding: 6px 15px; */
  width: 100%;
  max-width: 100%;
  resize: none;
  margin-bottom: 0;
  padding-right: 0px;
  outline: none;
  border-radius: 8px;
  font-size: 16px;
  border: 0px;
  color: var(--medium-gray);
  line-height: inherit;
  word-break: normal;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}


.trp-shortcode-switcher {

  display: inline-block;
  overflow: hidden;
  padding: 2px 0;
  border: var(--border, none);
  border-radius: var(--border-radius, 5px);
  background: #ffffffb8;
  width: auto;
  box-shadow: none;
}


.navbar .navbar-nav .simple-dropdown .dropdown-menu li {
  padding: 0;
}

@media (max-width: 991px) {
  [data-mobile-nav-style=full-screen-menu] .navbar-full-screen-menu-inner .navbar-nav .nav-item .dropdown-toggle {
    color: #585857;
    top: 10px;
    right: 0;
  }
}

.portfolio-slider .portfolio-box:hover {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.border-base-color {
  border-color: var(--base-color) !important;
}

.text h1 {
  font-size: 40px;
  font-weight: 600;
  line-height: 42px;
}



.opacity-medium {
  opacity: 0.7;
}

.overlay-bg {
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 1;
  top: 0;
  left: 0;
  z-index: 0;
}


.bg-degradat {
  background: #F47722;
  background: -webkit-linear-gradient(180deg, rgba(244, 119, 34, 1) 15%, rgba(250, 146, 77, 1) 100%);
  background: -moz-linear-gradient(180deg, rgba(244, 119, 34, 1) 15%, rgba(250, 146, 77, 1) 100%);
  background: linear-gradient(180deg, rgba(244, 119, 34, 1) 15%, rgba(250, 146, 77, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F47722", endColorstr="#FA924D", GradientType=0);
}

.extra-large-icon li {
  margin: 0;
}

.navbar .navbar-nav .dropdown .dropdown-menu li a {
  padding-left: 0;
  color: var(--dark-gray) !important;
}

.navbar .navbar-nav .dropdown .dropdown-menu li a:hover {
  padding-left: 0;
  color: var(--base-color) !important;
}

.navbar .navbar-nav .dropdown .dropdown-menu .navbar .navbar-nav .nav-item:hover .nav-link,
.navbar .navbar-nav .nav-item.active .nav-link {
  color: RED;
}


.text-base-color {
  color: var(--base-color);
}


header.sticky.sticky-active [data-header-hover=light] .widget-text,
header.sticky.sticky-active [data-header-hover=light] .widget-text a {
  color: #ffffff;
}



.btn.btn-blau {
  background-color: #00bca0;
  color: var(--white);
}


.btn.btn-blau:hover,
btn.btn-blau:active {
  background: #00bca0;
  color: var(--white);
  border-color: #00bca0;
}

.btn.btn-dark-gray {
  background-color: var(--base-color2);
  color: var(--white);
}

.btn.btn-box-shadow.btn-dark-gray:hover,
.btn.btn-box-shadow.btn-dark-gray:active {
  background: var(--base-color2);
  color: var(--white);
  border-color: var(--base-color2);
}


.bg-base-color2 {
  background-color: var(--base-color2);
}


header.sticky.sticky-active .header-reverse .header-icon .icon>a {
  color: var(--dark-gray);
}



@media (max-width: 991px) {
  header .navbar-brand .mobile-logo {
    visibility: visible !important;
    opacity: 1 !important;
    width: auto !important;
    max-height: 38px;
  }

  [data-mobile-nav-style=full-screen-menu] .navbar-full-screen-menu-inner .navbar-nav .nav-item.active .nav-link {
    opacity: 1;
    color: var(--base-color);
  }


  [data-mobile-nav-style=full-screen-menu] .navbar-full-screen-menu-inner .navbar-nav .nav-item:hover .nav-link {
    color: var(--base-color);
  }
}




@media (max-width: 991px) {
  [data-mobile-nav-style=full-screen-menu] .navbar-full-screen-menu-inner .navbar-nav .nav-item .nav-link {
    display: inline-block;
    line-height: 25px;
    font-size: 17px;
    font-weight: 500;
    color: var(--dark-gray);
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}


.box {
  height: 270px;
  overflow: hidden;
}

@supports (object-fit: cover) {
  .box img {
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .box img {
    width: 100%;

  }

}



.box2 {
  height: 400px;
  overflow: hidden;
}

@supports (object-fit: cover) {
  .box2 img {
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .box2 img {
    width: 100%;

  }

}






.hamburger-menu-simple .menu-item-list .nav-link {
  font-size: 25px;
  line-height: 34px;
  left: 0;
  color: var(--dark-gray);
  padding: 0;
  margin: 6px;
}


.btn.btn-base-color {
  color: var(--white);
}

.btn.btn-base-color {
  background-color: var(--base-color);
  color: var(--white);
  border-radius: 10px;
}



.opacity-menu {
  background: #000000;
  background: linear-gradient(to bottom, #000000, rgb(0 0 0 / 38%), rgba(37, 44, 62, 0.42), rgba(37, 44, 62, 0), rgba(37, 44, 62, 0));
}


.outside-box-top-95px {
  margin-top: -95px;
}


@media (hover: hover) and (pointer: fine) {
  .custom-cursor .circle-cursor-inner {
    width: 20px;
    height: 20px;
    left: -5px;
    cursor: help;
    display: none;
    top: -5px;
    background: var(--dark-gray);
  }
}

.bg-groc {
  background-color: var(--white);
}

@media (hover: hover) and (pointer: fine) {
  .custom-cursor .circle-cursor-outer {
    margin-left: -15px;
    margin-top: -15px;
    width: 30px;
    display: none;
    height: 30px;
    border: 1px solid var(--base-color);
    z-index: 10000000;
    opacity: 0.8;
    -webkit-transition: 0.1s;
    transition: 0.1s;
  }
}


@media (max-width: 991px) {


  .navbar .navbar-nav .dropdown .dropdown-menu li,
  .navbar-modern-inner .navbar-nav .dropdown .dropdown-menu li,
  .navbar-full-screen-menu-inner .navbar-nav .dropdown .dropdown-menu li {
    padding: 0 15px 0;
    text-align: center;
  }




  [data-mobile-nav-style=full-screen-menu] .navbar-full-screen-menu-inner .navbar-nav .nav-item .dropdown-menu a {
    color: #3d3d3c;
    opacity: 1;
    font-size: 17px;
    line-height: 17px;
    text-align: center;
  }
}

@media (max-width: 991px) {

  .navbar.bg-transparent,
  .navbar-modern-inner.bg-transparent,
  .navbar-full-screen-menu-inner.bg-transparent {
    background-color: #ffffff !important;
  }
}

.navbar-collapse-show[data-mobile-nav-style=full-screen-menu] .navbar-full-screen-menu-inner {
  top: 0;
  visibility: visible !important;
  transition: all 0.2s ease-in;
  transition-delay: 0.2s;
}


header.sticky .navbar-brand {
  padding: 20px 0 20px 0;
}





header.sticky.sticky-active .header-reverse .header-push-button .push-button span {
  background: var(--dark-gray);
}




header.sticky.sticky-active .header-reverse {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  border-color: transparent !important;
  background-color: #ffffff !important;
  box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {

  .navbar.header-dark .header-icon .icon>a,
  .navbar-modern-inner.header-dark .header-icon .icon>a,
  .navbar-full-screen-menu-inner.header-dark .header-icon .icon>a {
    color: var(--dark-gray);
  }
}

a.added_to_cart.wc-forward {
  display: none;
}


.navbar .navbar-nav .dropdown .dropdown-menu a {
  color: var(--medium-gray);
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
  padding-bottom: 0px;
  display: block;
}

.navbar .navbar-nav .dropdown .dropdown-menu {
  margin: 0;
  padding: 15px 10px 25px 30px;
  width: 250px;
  border: 0;
  top: 100%;
  background-color: #ffffff;
  box-shadow: 0 45px 45px 0 rgba(0, 0, 0, 0.05);
  -webkit-animation: hide-animation 0.5s;
  animation: hide-animation 0.5s;
  -webkit-border-radius: 0;
  border-radius: 5px;
}

header .header-top-bar+.navbar {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  top: 30px;
}

.text ul {}

.text li {
  list-style: disc;
  list-style-position: outside;
}

.text h2 {
  font-size: 28px;
  line-height: 36px;
  font-weight: 500;
}

.docs {
  background-color: #accee5;
  color: #2b2b2b;
  font-size: 17px;
  padding: 18px 30px;
  margin-top: 30px;
  border: 1px solid #3f3f3f;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}


.docs:hover {
  background-color: #e4f3fd;
  color: #2b2b2b;
  font-size: 17px;
  padding: 18px 30px;
  margin-top: 30px;
  border: 1px solid #3f3f3f;
}


.t-shadow {
  text-shadow: 0px 0px 10px #000000ba;
}

.navbar .navbar-nav .nav-item:hover .nav-link,
.navbar .navbar-nav .nav-item.active .nav-link {
  opacity: 1;
  color: var(--base-color);
}

.bg-2 {
  background-color: #AEACE6;
}

.sticky-wrap a {
  color: #bdbdbd !important;
}

.navbar .navbar-nav .nav-link {
  font-weight: 700;
  font-size: 15px;
  padding: 10px 15px;
}



.text h3 {
  font-size: 22px;
  margin-bottom: 16px;
  line-height: 32px;
  font-weight: 500;
}




input.numero {

  height: 61px;

}



.header-cart-icon .header-cart .cart-item-list {
  display: none;
  left: auto;
  right: 0;
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.1);
  border-radius: 0;
  background-color: #ffffff;
  border: 0;
  padding: 0;
  min-width: 250px;
  margin: 0;
  position: absolute;
  border-radius: 6px;
  padding: 10px 30px 25px;
  min-width: 260px;
  z-index: 1;
  top: 100%;
}

.header-cart-icon .header-cart .cart-item-list .cart-total .btn.btn-large {
  font-size: 12px;
  padding: 11px 20px;
  border-width: 1px;
  border-radius: 10px;
}

input,
select,
textarea,
.form-control,
.form-select {
  /* padding: 6px 15px; */
  width: 100%;
  max-width: 100%;
  resize: none;
  margin-bottom: 18px;
  outline: none;
  border-radius: 8px;
  font-size: 16px;
  border: 1px solid #e4e4e4;
  color: var(--medium-gray);
  line-height: inherit;
  word-break: normal;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a:hover {
  color: var(--base-color);
  text-decoration: none;
}



.text-base-color2,
.btn-link.text-base-color2 {
  color: var(--base-color2);
}

.icon-with-text-style-10 .feature-box-icon:before {
  width: 100%;
  height: 50%;
  background-color: #accee5;
  opacity: 0.12;
  z-index: -1;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: rotate(-40deg);
  -ms-transform: rotate(-40deg);
  transform: rotate(-40deg);
  -webkit-transform-origin: bottom center;
  -ms-transform-origin: bottom center;
  transform-origin: bottom center;
  -webkit-transition: 0.4s cubic-bezier(0.12, 0, 0.39, 0);
  transition: 0.4s cubic-bezier(0.12, 0, 0.39, 0);
}

.icon-with-text-style-10:hover .feature-box-icon i {
  color: #ffffff;
}


.accept {
  width: inherit;
}

#cmplz-document,
.editor-styles-wrapper .cmplz-unlinked-mode {
  font-size: 14px;
  margin-top: 0;
  max-width: none;
  text-justify: inter-word;
}



.anima img {
  -webkit-transition: all 750ms cubic-bezier(.12, 0, .39, 0);
  transition: all 750ms cubic-bezier(.12, 0, .39, 0);
  will-change: transform;
}


.anima img:hover {
  -webkit-transform: scale(1.1);
  transform: scale(0.90);
}

.btn-gradient-fuel-yellow-blue {
  background-image: linear-gradient(to right, #1c2e50, #354e7d, #1c2e50);
  background-size: 200% auto;
  color: var(--white);
}

.fs-22 {
  font-size: 22px;
  line-height: 31px;
}

.counter-style-04 .vertical-counter:before {
  content: attr(data-text);
  display: inline-block;
  margin-left: 3px;
  word-break: normal;
}

.counter-style-04 .vertical-counter:after {
  content: attr(data-text2);
  display: inline-block;
  margin-left: 3px;
  font-size: 30px;
  padding-top: 13px;
  padding-left: 7px;
  line-height: 28px;
  word-break: normal;
}


.bt-sleeve {
  background-color: #a22136 !important;
  border: none;
  background: rgb(232, 81, 112);
  background: -moz-linear-gradient(0deg, rgba(232, 81, 112, 1) 0%, rgba(170, 16, 52, 1) 68%);
  background: -webkit-linear-gradient(0deg, rgba(232, 81, 112, 1) 0%, rgba(170, 16, 52, 1) 68%);
  background: linear-gradient(0deg, rgba(232, 81, 112, 1) 0%, rgba(170, 16, 52, 1) 68%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e85170", endColorstr="#aa1034", GradientType=1);
}

.bt-adco {
  background-color: #093d85 !important;
  border: none;
  background: rgb(132, 196, 179);
  background: -moz-linear-gradient(0deg, rgba(132, 196, 179, 1) 0%, rgba(20, 77, 146, 1) 68%);
  background: -webkit-linear-gradient(0deg, rgba(132, 196, 179, 1) 0%, rgba(20, 77, 146, 1) 68%);
  background: linear-gradient(0deg, rgba(132, 196, 179, 1) 0%, rgba(20, 77, 146, 1) 68%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#84c4b3", endColorstr="#144d92", GradientType=1);
}

.bt-bol {
  background-color: #ff5200 !important;
  border: none;
  background: rgb(248, 233, 104);
  background: -moz-linear-gradient(0deg, rgba(248, 233, 104, 1) 0%, rgba(234, 95, 10, 1) 68%);
  background: -webkit-linear-gradient(0deg, rgba(248, 233, 104, 1) 0%, rgba(234, 95, 10, 1) 68%);
  background: linear-gradient(0deg, rgba(248, 233, 104, 1) 0%, rgba(234, 95, 10, 1) 68%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f8e968", endColorstr="#ea5f0a", GradientType=1);
}

.bg-blaus {
  background-image: linear-gradient(to right, #9cc7b4, #4762a8, #9cc7b4);
}


.bg-blau {
  background-color: #accee5;
}

.btn i {
  position: relative;
  /* right: -30px; */
}

footer .footer-logo img {
  max-height: 40px;
}

.text-verd {
  color: #9cc7b4;
}

.text-blau {
  color: #accee5;
}

h1,
.h1 {
  font-size: 44px;
  line-height: 57px;
}

h1,
.h1 {
  line-height: 46px;
}


.sticky-wrap.shadow-in {
  left: 20px;
  opacity: 1;
  box-shadow: none !important;
  /* transform: translateY(-50%); */
  color: beige;
  mix-blend-mode: difference;
}



.navbar .navbar-nav .nav-link {
  font-size: 15px;
  font-weight: 500;
}

.btn.btn-transparent-light-gray {
  background-color: #accee5;
  border-color: var(--extra-medium-gray);
  color: white;
}

header .navbar-brand {
  margin-right: 0;
  vertical-align: middle;
  padding: 20px 0 20px 0;
  display: inline-block;
  font-size: 0;
}

header .navbar-brand img {
  max-height: 45px;
  /* height: 35px; */
}


.main-content {
  position: relative;
  z-index: 2;
  /* background: #ecebe7; */
}


.box-h {
  height: 450px;
  overflow: hidden;
}

@supports (object-fit: cover) {
  .box-h img {
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .box-h img {
    width: 100%;

  }

}




.box-v {
  height: 200px;
  overflow: hidden;
}

@supports (object-fit: cover) {
  .box-v img {
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .box-v img {
    width: 100%;

  }

}







footer a {
  color: #D7D7D7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
}


footer {
  background-color: #141414;
}

.card {
  --bs-card-spacer-y: 13px;
  --bs-card-spacer-x: 13px;
  --bs-card-title-spacer-y: 7px;
  --bs-card-border-width: var(--bs-border-width);
  --bs-card-border-color: var(--bs-border-color-translucent);
  --bs-card-border-radius: var(--bs-border-radius);
  --bs-card-inner-border-radius: calc(var(--bs-border-radius) -(var(--bs-border-width)));
  --bs-card-cap-padding-y: 7px;
  --bs-card-cap-padding-x: 13px;
  --bs-card-cap-bg: rgba(var(--bs-body-color-rgb), 0.03);
  --bs-card-bg: var(--bs-body-bg);
  --bs-card-img-overlay-padding: 13px;
  --bs-card-group-margin: 10px;
  display: flex;
  min-width: 0;
  height: var(--bs-card-height);
  word-wrap: break-word;
  background-color: var(--bs-card-bg);
  background-clip: border-box;
  border: none;
  border-radius: inherit;
}





.um a.um-button,
.um a.um-button.um-disabled:active,
.um a.um-button.um-disabled:focus,
.um a.um-button.um-disabled:hover,
.um input[type=submit].um-button,
.um input[type=submit].um-button:focus {
  background: #accee5;
}


.um a.um-button:hover,
.um input[type=submit].um-button:hover {
  background-color: #77a6c5;
}











.form-control {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #9b9b9b;
  color: #434343;
  /* o el color que quieras */
}

.bg-transparent {
  background-color: transparent;
}



input::placeholder {

  opacity: 0.9;

}

.placeholder-light::placeholder {
  color: rgba(255, 255, 255, 0.1);
  /* Placeholder en color claro */
}

.border-color-transparent-white-very-light {
  border-color: rgba(255, 255, 255, 0.3);
  /* Borde claro */
}



.gm-style .gm-style-iw-c {
  padding: 15px 20px 20px 20px !important;
  border-radius: 0;
  max-width: 330px !important;
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.gm-style .gm-style-iw-tc::after {
  background: #ffffff;
}


.gm-ui-hover-effect {
  opacity: 0.8;
  top: -5px !important;
  right: -23px !important;
  width: 25px !important;
  display: block !important;
  height: 15px !important;
}


.gm-ui-hover-effect>span {
  background-color: #000;
  margin: 0 !important;
  height: 18px !important;
}

.bg-color {
  background: rgb(150, 193, 181);
  background: -moz-linear-gradient(90deg, rgba(150, 193, 181, 1) 0%, rgba(112, 150, 182, 1) 47%, rgba(71, 98, 167, 1) 100%);
  background: -webkit-linear-gradient(360deg, rgba(150, 193, 181, 1) 0%, rgba(112, 150, 182, 1) 47%, rgba(71, 98, 167, 1) 100%);
  background: linear-gradient(360deg, rgba(150, 193, 181, 1) 0%, rgba(112, 150, 182, 1) 47%, rgba(71, 98, 167, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#96c1b5", endColorstr="#4762a7", GradientType=1);
}


.header-cart-icon .header-cart {
  display: inline-block;
  padding: 0;
}



.header-cart-icon .cart-count {
  position: absolute;
  top: -7px;
  right: 4px;
  width: 17px;
  height: 17px;
  font-weight: 600;
  text-align: center;
  font-size: 10px;
  line-height: 18px;
  font-weight: 600;
  /* background-color: #ffffff; */
  color: var(--base-color);
  -webkit-border-radius: 100%;
  border-radius: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}






button[name="update_cart"] {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
}


div.uimob500 .um-col-121,
div.uimob500 .um-col-122,
div.uimob500 .um-col-131,
div.uimob500 .um-col-132,
div.uimob500 .um-col-133 {
  float: left;
  width: auto;
  margin: 2px;
}

@media (max-width: 991px) {

  div.uimob500 .um-col-121,
  div.uimob500 .um-col-122,
  div.uimob500 .um-col-131,
  div.uimob500 .um-col-132,
  div.uimob500 .um-col-133 {
    float: left;
    width: 100%;
    margin: 2px;
  }

}

.um .um-field.meva-classe input {
  background-color: #f5f5f5;
  border: 2px solid #ccc;
}


button[name="update_cart"] {
  display: none !important;
}






.punts h1,
.punts h2,
.punts h3,
.punts h4,
.punts h5 {
  font-size: 24px;
  margin: 0;
  font-weight: 600;
  line-height: 30px;
}













.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button {
  background-color: var(--dark-gray);
  color: #fff !important;
  border-radius: 4px;
  width: auto !important;
  text-transform: uppercase;
  /* margin-top: 30px; */
  font-size: 15px;
  border: 2px solid transparent !important;
  font-size: 14px !important;
  padding: 18px 34px !important;
  font-size: 14px;
  padding: 18px 34px;
  -webkit-transition: all 300ms ease-in-out !important;
  transition: all 300ms ease-in-out !important;
  font-weight: 400;
  border: none;
}


.woocommerce .row {}




.woocommerce form .form-row .required {
  color: #ae4224;
  font-weight: 700;
  border: 0 !important;
  text-decoration: none;
  visibility: hidden;
}

.woocommerce-info {
  border-top-color: #9b8568;
}


.woocommerce-info::before {
  color: #9b8568;
}


.woocommerce .quantity .qty {
  width: 6.631em;
  text-align: center;
}

.woocommerce form .form-row {
  padding: 3px;
  margin: 0 0 6px;
  display: block;
}

.woocommerce .woocommerce-additional-fields h3 {
  margin-top: 0;
}

.woocommerce .col2-set .col-1,
.woocommerce-page .col2-set .col-1,
.woocommerce .col2-set .col-2,
.woocommerce-page .col2-set .col-2 {
  max-width: unset;
}


#add_payment_method #payment div.payment_box::before,
.woocommerce-cart #payment div.payment_box::before,
.woocommerce-checkout #payment div.payment_box::before {
  content: "";
  display: block;
  border: 1em solid #ffffff;
  border-right-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
  position: absolute;
  top: -0.75em;
  left: 0;
  margin: -1em 0 0 2em;
}

#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  padding: 1em;
  margin: 1em 0;
  font-size: .92em;
  border-radius: 2px;
  line-height: 1.5;
  background-color: #ffffff;
  color: #515151;
}


.wca-actions-flex a.button {
  font-size: 11px !important;
  padding: 6px 14px !important;
  line-height: 1.4 !important;
  height: 34px !important;
  min-height: unset !important;
}

#add_payment_method #payment ul.payment_methods,
.woocommerce-cart #payment ul.payment_methods,
.woocommerce-checkout #payment ul.payment_methods {
  text-align: left;
  padding: 1em;
  border-bottom: 1px solid #cfc8d8;
  margin: 0;
  list-style: none outside;
}


#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
  background: #f5f5f5;
  padding: 25px 15px;
  border-radius: 5px;
}

.woocommerce #content table.cart img,
.woocommerce table.cart img,
.woocommerce-page #content table.cart img,
.woocommerce-page table.cart img {
  height: auto;
  width: 160px;
}

.woocommerce-cart-form {
  margin-top: 50px;
}

.wpml-ls-legacy-list-horizontal {
  border: 0;
  padding: 0px;
  clear: both;
  display: inline-block;
}


.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
  border: none;
  padding: 20px;
  margin: 0;
  text-align: left;
  border-radius: 5px;
}

.woocommerce .woocommerce-customer-details,
.woocommerce .woocommerce-order-details,
.woocommerce .woocommerce-order-downloads {
  margin-bottom: 2em;
  padding: 0;
}


.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt {
  background-color: #ff7700;
  color: #fff !important;
  -webkit-font-smoothing: antialiased;
  /* width: 100% !important; */
  float: none !important;
  text-align: right !important;
}


.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:hover {
  background-color: #ae4224b3;
  color: #fff;
}

.single_add_to_cart_button[type=button]:not(:disabled),
.single_add_to_cart_button[type=reset]:not(:disabled),
.single_add_to_cart_button[type=submit]:not(:disabled),
.single_add_to_cart_button button:not(:disabled) {
  cursor: pointer;
  font-size: 13px !important;
  letter-spacing: 1px !important;
  background: #f47722 !important;
  border-color: #f47722 !important;
  color: #ffffff !important;
  border: 2px solid !important;
  /* font-size: 11px !important; */
  -webkit-border-radius: 4px;
  border-radius: 11px;
  letter-spacing: 0.5px !important;
  padding: 13px 24px !important;
  text-transform: uppercase;
  font-weight: 500 !important;
}

.woocommerce .woocommerce-customer-details .additional-fields:last-child,
.woocommerce .woocommerce-customer-details .addresses:last-child {
  margin-bottom: 0;
  padding: 0;
}

/* Amaga el preu principal nomÃƒÂ©s en productes variables */
.product-type-variable .product-info .price {
  display: none;
}

/* Assegura que el preu de la variant seleccionada (que apareix a baix) SÃƒÂ que es vegi */
.product-type-variable .single_variation .price {
  display: block !important;
}


.woocommerce-billing-fields h3,
.woocommerce-additional-fields h3,
h3.perso,
h3#order_review_heading,
legend,
.woocommerce-Address-title h3,
.cart_totals h2,
.woocommerce h2 {
  border: 0;
  border-radius: 0;
  font-size: 25px;
  margin: 0;
  color: #3d3d3c;
  padding: 20px 0px;
  font-weight: 500;
  vertical-align: baseline;
  word-break: break-word;
}



.woocommerce .cart .button,
.woocommerce .cart input.button {
  float: none;
  margin: 0;
  padding: 10px 22px !important;
  background-color: #80a7be;
}

.woocommerce-form-login input {
  padding: 0px;
  width: 19px;
  height: 12px;


}



.woocommerce-message {
  border-top-color: #b8d354;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  padding: 1em 2em 1em 3.5em;
  margin: 0 0 0em;
  position: relative;
  background-color: #d9d2cc26;
  font-weight: 500;
  margin-bottom: 50px;
  font-size: 15px;
  border: 1px solid #ddd;
  color: #3d3d3c;
  /* border-top: 3px solid #720eec; */
  list-style: none outside;
  width: auto;
  word-wrap: break-word;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
  display: block;
  margin-bottom: 20px;
}

.woocommerce-MyAccount-navigation {
  padding: 0;
  background-color: #f9f9f9;
}


.woocommerce form .form-row::after,
.woocommerce form .form-row::before,
.woocommerce-page form .form-row::after,
.woocommerce-page form .form-row::before {
  content: " ";
  display: table;
}



.woocommerce .cart .button:hover,
.woocommerce .cart input.button:hover {
  float: none;
  margin: 0;
  padding: 10px 22px !important;
  background-color: transparent;
  color: #80a7be !important;
  border-color: #80a7be !important;
}


.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button:hover {
  background-color: #dcd7e300;
  text-decoration: none;
  background-image: none;
  /* border: 2px solid var(--dark-gray) !important; */
  color: var(--white) !important;
}


.wc-block-components-form .wc-block-components-text-input input[type=email],
.wc-block-components-form .wc-block-components-text-input input[type=number],
.wc-block-components-form .wc-block-components-text-input input[type=password],
.wc-block-components-form .wc-block-components-text-input input[type=tel],
.wc-block-components-form .wc-block-components-text-input input[type=text],
.wc-block-components-form .wc-block-components-text-input input[type=url],
.wc-block-components-text-input input[type=email],
.wc-block-components-text-input input[type=number],
.wc-block-components-text-input input[type=password],
.wc-block-components-text-input input[type=tel],
.wc-block-components-text-input input[type=text],
.wc-block-components-text-input input[type=url] {
  border: 1px solid #aaaaaa !important;

}

.wc-blocks-components-select .wc-blocks-components-select__select {

  border: 1px solid #aaaaaa !important;

}

.wp-block-woocommerce-checkout-order-summary-block {
  /* border: 1px solid hsla(0, 0%, 7%, .11); */
  border-radius: 5px;
  background-color: #f7f7f7;
  padding: 25px 10px;
}


.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: normal;
}

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: auto;
  user-select: none;
  -webkit-user-select: none;
}

.woocommerce form .form-row .input-text,
.woocommerce form .form-row select {
  font-family: inherit;
  font-weight: 400;
  letter-spacing: normal;
  padding: .5em;
  display: block;
  background-color: var(--wc-form-color-background, #fff);
  border: var(--wc-form-border-width) solid rgb(170 170 170);
  border-radius: var(--wc-form-border-radius);
  color: var(--wc-form-color-text, #000);
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  line-height: normal;
  height: auto;
}













.wca-btn,
.woocommerce-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  padding: 8px 18px !important;
  border-radius: var(--wca-radius-sm) !important;
  border: 1.5px solid var(--wca-brand) !important;
  color: var(--wca-brand) !important;
  background: var(--base-color);
  padding: 17px !important;
  cursor: pointer;
  transition: all .16s !important;
  text-decoration: none !important;
  white-space: nowrap;
}



.woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.woocommerce-MyAccount-navigation ul li {
  margin-bottom: 5px;
  list-style: none;
}

.woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 10px 15px;
  border-radius: 6px;
  color: #333;
  text-decoration: none;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li a:hover {
  background-color: #87acc5;
  color: #fff;
}


.woocommerce-breadcrumb a {
  color: #fff;
}


/* === RESPONSIVE === */
@media screen and (max-width: 768px) {
  .woocommerce-account .woocommerce {
    flex-direction: column;
  }

  .woocommerce-MyAccount-navigation,
  .woocommerce-MyAccount-content {
    width: 100%;
  }

  .woocommerce-MyAccount-navigation {
    order: 0;
    margin-bottom: 20px;
  }

  .woocommerce-MyAccount-content {
    order: 1;
  }
}


body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link) {
  min-height: 3em;
  color: white;
  /* margin-top: 20px; */
  padding: 13px !important;
  font-weight: 500 !important;
  border-color: var(--base-color) !important;
  border-radius: 11px;
  font-size: 14px !important;
  background-color: var(--base-color) !important;
}



body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link):focus {
  box-shadow: none;
  box-shadow: none;
  outline: 2px solid #f47722;
  background-color: transparent;
  color: var(--base-color);
}


.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name,
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name {
  display: block;
  font-size: 18px;
  line-height: 20px;
  line-height: 18px;
  font-weight: 600;
  max-width: max-content;
}


.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__prices,
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__prices {
  font-size: 17px;
  line-height: 23px;
  color: #f47722;
  font-weight: 600;
}

.wc-block-components-product-metadata {
  font-size: 14px;
  line-height: 24px;
}

.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__prices,
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__prices {
  font-size: 17px;
  line-height: 23px;
}

.wca-sidebar {
  background: var(--wca-card);
  border-radius: var(--wca-radius);
  box-shadow: none;
  overflow: hidden;
  position: sticky;
  top: 24px;
  border: 1px solid #d9d9d9;
}


.wca-card {
  background: var(--wca-card);
  border-radius: 5px;
  box-shadow: none;
  margin-bottom: 20px;
  padding: 28px 30px;
  animation: wca-fadein .35s ease both;
  border: 1px solid #ddd;
}


.wp-block-woocommerce-checkout .wc-block-components-checkout-place-order-button .wc-block-components-button {
  background-color: #333 !important;
  color: white !important;
  border-radius: 12px !important;
  padding: 12px 25px !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  display: table !important;
  margin: 0 auto 15px auto !important;
}

/* Efecte hover */
.wp-block-woocommerce-checkout .wc-block-components-checkout-place-order-button .wc-block-components-button:hover {
  background-color: #111 !important;
}



.wc-block-components-checkout-place-order-button {
  background-color: var(--dark-gray);
  /* Fons fosc */
  color: #fff !important;
  border-radius: 4px;
  width: auto !important;
  text-transform: uppercase;
  font-size: 15px;
  border: 2px solid transparent !important;
  font-size: 14px !important;
  padding: 18px 34px !important;
  font-size: 14px;
  padding: 18px 34px;
  -webkit-transition: all 300ms ease-in-out !important;
  transition: all 300ms ease-in-out !important;
  font-weight: 400;
  border: none;
}

.wc-block-components-checkout-place-order-button:hover {
  background-color: white;
  color: var(--dark-gray) !important;
  border: 2px solid var(--dark-gray) !important;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.wc-block-components-checkout-place-order-button__text {
  display: inline-block;
}

.wc-block-components-button__text {
  display: flex;
  align-items: center;
  justify-content: center;
}


.wc-block-components-totals-coupon__button {
  background-color: #7ba3bb;
  color: rgb(0, 0, 0);
  transition: 300ms ease-in-out;
  color: #fff;
  border: 2px solid #7ba3bb !important;
  -webkit-transition: all 300ms ease-in-out !important;
  transition: all 300ms ease-in-out !important;
}


.wc-block-components-totals-coupon__button:hover {
  background-color: transparent;
  transition: 300ms ease-in-out;
  color: #7ba3bb;
  border: 2px solid #7ba3bb !important;
}












/* Formularis */



/* Formularis */





.wpcf7-spinner {
  /* visibility: hidden; */
  display: inline-block;
  background-color: #23282d;
  opacity: 0.75;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 100%;
  padding: 0;
  margin: 0 24px;
  position: relative;
  display: flow;
  margin: 0 auto;
}





.formu p {
  margin: 0;
}

.formu br {
  display: none;
}

/* per si queda algun <br> despistat */
.formu {
  --b: #676767;
  --b-focus: #000000;
  --icon: #999;
  font-size: 16px;
}

.formu .cf7-est {
  /* max-width:620px; */
}

/* cada camp */
.formu .field {
  /* margin:20px 0; */
  position: relative;
}

/* label */
.formu label {
  display: block;
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
}

/* inputs */
.formu .input,
.formu input[type="text"],
.formu input[type="email"],
.formu input[type="tel"],
.formu textarea {
  width: 100%;
  /* padding: 14px 16px; */
  padding-left: 24px;
  /* espai reservat per la icona */
  /* border:1px solid var(--b); */
  background: #fff;
  /* margin-bottom: 30px; */
  font-size: 16px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
  box-sizing: border-box;
}

.formu .input:focus,
.formu input[type="text"]:focus,
.formu input[type="email"]:focus,
.formu input[type="tel"]:focus,
.formu textarea:focus {
  border-color: var(--b-focus);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, .05);
}

/* ---- ICONES AMB ::BEFORE AL WRAP DE CF7 ---- */
/* el wrap de CF7 ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â©s el <span class="wpcf7-form-control-wrap"> */
.formu .field .wpcf7-form-control-wrap {
  position: relative;
  /* ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ncora pel ::before */
  display: block;
  /* assegurar que ocupa ample del camp */
}


/* icones especÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â­fiques per camp
   (prioritza data-name; CF7 el posa per defecte; 
   si no, queda el fallback per classe del nom del camp) */

/* Nom i cognoms */
.formu .field .wpcf7-form-control-wrap[data-name="est-name"]::before,
.formu .field .wpcf7-form-control-wrap.est-name::before {
  content: "";
  height: 19px;
  left: 16px;
  position: absolute;
  top: 28px;
  transform: translateY(-50%);
  width: 19px;
  z-index: 10;
  background-image: url("../img/fibra/user-solid.svg");
  background-repeat: no-repeat;
}

/* E-mail */
.formu .field .wpcf7-form-control-wrap[data-name="est-mail"]::before,
.formu .field .wpcf7-form-control-wrap.est-mail::before {
  content: "";
  height: 19px;
  left: 16px;
  position: absolute;
  top: 29px;
  transform: translateY(-50%);
  width: 19px;
  z-index: 10;
  background-image: url("../img/fibra/envelope-solid.svg");
  background-repeat: no-repeat;
}


/* TelÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¨fon */
.formu .field .wpcf7-form-control-wrap[data-name="est-phone"]::before,
.formu .field .wpcf7-form-control-wrap.est-phone::before {
  content: "";
  height: 22px;
  left: 16px;
  position: absolute;
  top: 29px;
  transform: translateY(-50%);
  width: 22px;
  z-index: 10;
  background-image: url("../img/fibra/phone-solid-full.svg");
  background-repeat: no-repeat;
}

/* checkbox group */
.formu .field--choices .field__legend {
  display: block;
  font-weight: 500;
  margin-bottom: 12px;
}

.formu .wpcf7-list-item {
  margin-right: 22px;
  display: inline-block;
  margin-left: 0;
}

.formu .wpcf7-list-item label {
  font-weight: 500;
}

.formu label {
  display: flex;
  align-items: flex-start;
  /* Alinia el checkbox amb la primera lÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â­nia */
  gap: 8px;
  /* espai entre checkbox i text */
}

.formu input[type="checkbox"] {
  flex-shrink: 0;
  /* Evita que el checkbox es redueixi */
  width: 18px;
  height: 18px;
}

.formu .wpcf7-acceptance label {

  font-weight: 500;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 20px;
}



/* newsletter i privacitat */
.formu .field--newsletter,
.formu .field--privacy {
  margin-top: 18px;
}

.formu .field--privacy a {
  text-decoration: underline;
}

/* botÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â³ */
.formu .btn,
.formu input.wpcf7-submit {
  display: inline-block;
  padding: 14px 26px;
  background: #000;
  color: #fff;
  /* border:none; */
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  font-size: 18px;
  text-transform: capitalize;
}

.formu .btn:hover,
.formu input.wpcf7-submit:hover {
  opacity: .9;
}

/* (opcional) ajust del missatge dÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢error de CF7 perquÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¨ no ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œempenyiÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â lÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢icona */
.formu .wpcf7-not-valid-tip {
  margin-bottom: 18px;
  /* separaciÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â³ sota el camp */
  font-size: 13px;
  line-height: 1.3;
  color: #c00;
}










/*Bases moduls*/




.wrap-image-left {
  float: left;
  margin: 0 16px 13px 0;
  width: min(36%);
  shape-outside: inset(0 round 8px);
}

.wrap-image-right {
  float: right;
  margin: 0 0 13px 16px;
  width: min(36%);

  shape-outside: inset(0 round 8px);
}


.text .wrap-image-left li {}

.text .wrap-image-right li {}


.img-text::after {
  content: "";
  display: block;
  clear: both;
}

@media(max-width:768px) {

  .wrap-image-left,
  .wrap-image-right {
    float: none;
    width: 100%;
    margin: 0 0 13px 0;
    shape-outside: none;
    display: block;
  }
}


/* Galeria: no alineable ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ sempre flotant a l'esquerra */
.gallery-float-left {
  float: right;
  max-width: min(40%);
  /* margin: 0 1.25rem 1rem 0; */
}

/* Imatge ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âºnica: alineable via ACF ('Dreta' o esquerra per defecte) */
.wrap-image-left {
  float: left;
  max-width: min(40%, 420px);
  margin: 0 16px 13px 0;
}

.wrap-image-right {
  float: right;
  max-width: min(40%, 420px);
  margin: 0 0 13px 16px;
}

/* Envoltar bÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â© el text quan hi ha floats */
.img-text::after {
  content: "";
  display: block;
  clear: both;
}

/* Hover de la capa de galeria (per si no el tens ja) */
.gallery-image img {
  transition: transform .5s ease;
}

.gallery-box:hover .gallery-image img {
  transform: scale(1.05);
}

.gallery-hover {
  opacity: 0;
  transition: all .4s ease;
}

.gallery-box:hover .gallery-hover {
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {

  .gallery-float-left,
  .wrap-image-left,
  .wrap-image-right {
    float: none;
    max-width: 100%;
    margin: 0 0 13px 0;
  }
}



/* Element flotant perquÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¨ el text l'envolti */
.gallery-float {
  float: right;
  width: min(45%, 420px);
  margin: 0 0 13px 20px;
  /* espai a l'esquerra i sota */
  shape-outside: polygon(100% 0, 100% 100%, 0 100%, 0 17%);
  shape-margin: 12px;
  aspect-ratio: var(--thumb-ratio, 4/3);
  /* dona alÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§ada abans que carregui la img */
}

/* Retall diagonal tambÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â© per a l'overlay */
.thumb-clip {
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 17%);
}

/* Imatge dins la targeta */
.thumb-clip img {
  display: block;
  width: 100%;
  height: auto;
}

/* MÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â²bil/tablet: sense float ni shape; 100% d'ample */
@media (max-width: 991.98px) {
  .gallery-float {
    float: none;
    width: 100%;
    margin: 0 0 13px 0;
    shape-outside: none;
    aspect-ratio: auto;
  }

  .thumb-clip {
    clip-path: none;
  }
}

/* Clearfix per contenidors que tallin floats */
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}








/* ---- Radios i checkboxes alineats correctament ---- */
.wpcf7 form .wpcf7-list-item {
  display: inline-flex;
  align-items: center;
  margin-right: 0;
  /* espai entre opcions */
  margin-bottom: 8px;
  /* petita separaciÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â³ vertical per lÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â­nies llargues */
  margin-right: 15px;
  white-space: nowrap;
  /* evita que el text es talli o baixi sota el cercle */
}

.wpcf7 form .wpcf7-list-item label {
  display: contents;
  align-items: center;
  font-weight: 400;
  cursor: pointer;
}

.wpcf7 form .wpcf7-list-item input[type="radio"],
.wpcf7 form .wpcf7-list-item input[type="checkbox"] {
  margin-right: 5px;
  accent-color: #ea530e;
  /* color del cercle quan estÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â  seleccionat */
  width: 34px;
  height: 20px;
  margin-bottom: 0;
  flex-shrink: 0;
}

/* ---- Ajust per pantalles petites ---- */
@media (max-width: 600px) {
  .wpcf7 form .wpcf7-list-item {
    display: flex;
    flex-wrap: wrap;
    white-space: normal;
    /* permet que el text faci salt de lÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â­nia si cal */
  }
}









/* Estilitza el preu de la variant especÃƒÂ­fica quan apareix */
.woocommerce-variation-price .price {
  font-size: 36px;
  color: #232323;
  /* Ajusta al color del teu tema */
  font-weight: 700;
  margin-bottom: 20px;
  display: block;
}

/* Amaga el preu principal si la variant estÃƒÂ  activa (com a seguretat) */
.variation-selection-active .entry-summary>.price {
  display: none;
}




/* Overlay i spinner */
#wc-cart-loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  z-index: 9999;
  display: none;
}

#wc-cart-loading-overlay::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  margin-top: -24px;
  margin-left: -24px;
  border: 4px solid #ccc;
  border-top: 4px solid #333;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Assegurem que el contenidor tingui position: relative */
.wp-block-woocommerce-cart {
  position: relative;
  margin-top: 35px;
}





























.spin {
  animation: spin 1.2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

















/* â”€â”€ Grid SHOP HOME â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#shop-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
  transition: opacity .25s ease;
}

#shop-products-grid.is-fading {
  opacity: 0;
  pointer-events: none;
}

@keyframes shopItemIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#shop-products-grid .grid-item {
  animation: shopItemIn .35s ease both;
}

@media (max-width: 1399px) {
  #shop-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  #shop-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  #shop-products-grid {
    grid-template-columns: 1fr;
  }
}

/* â”€â”€ BotÃ³ Filtros â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#shop-filter-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  background: #1a1a1a;
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
}

#shop-filter-btn:hover {
  background: #2e2e2e;
}

#shop-filter-badge {
  display: none;
  background: #fff;
  color: #1a1a1a;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  line-height: 1.4;
}

#shop-filter-badge.visible {
  display: inline-block;
}

/* â”€â”€ Overlay â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#shop-filter-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  z-index: 99998;
  opacity: 0;
  transition: opacity .3s ease;
}

#shop-filter-overlay.is-visible {
  opacity: 1;
}

/* â”€â”€ Modal â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#shop-filter-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #fff;
  flex-direction: column;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .32s ease, transform .32s ease;
}

#shop-filter-modal.is-open {
  display: flex;
}

#shop-filter-modal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.shop-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid #ebebeb;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1;
}

.shop-modal-header>span {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: .01em;
}

#shop-filter-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #1a1a1a;
  line-height: 1;
  transition: opacity .2s;
}

#shop-filter-modal-close:hover {
  opacity: .45;
}

.shop-modal-body {
  padding: 28px 24px;
  flex: 1;
}

.shop-modal-footer {
  padding: 16px 24px 44px;
  position: sticky;
  bottom: 0;
  background: #fff;
  border-top: 1px solid #ebebeb;
}

#shop-filter-apply {
  width: 100%;
  background: #1a1a1a;
  color: #fff;
  border: none;
  padding: 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
}

#shop-filter-apply:hover {
  background: #2e2e2e;
}

body.shop-modal-open {
  overflow: hidden;
}

header .navbar [class*=col-] {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}


@media only screen and (max-width: 768px) {

  #mega-menu-wrap-main_menu #mega-menu-main_menu li.mega-menu-item.mega-toggle-on>ul.mega-sub-menu,
  #mega-menu-wrap-main_menu #mega-menu-main_menu li.mega-menu-megamenu.mega-menu-item.mega-toggle-on ul.mega-sub-menu {
    display: block;
    padding-left: 1%;
    padding-right: 1%;
  }
}



ul.mega-sub-menu ul.menu {
  padding: 0;
}


#mega-menu-wrap-main_menu #mega-menu-main_menu li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row .mega-menu-column>ul.mega-sub-menu>li.mega-menu-item {
  padding: 15px;
  width: 100%;
  padding-bottom: 0;
}













/* â”€â”€ Grid â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#shop-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
  transition: opacity .25s ease;
}

#shop-products-grid.is-fading {
  opacity: 0;
  pointer-events: none;
}

@keyframes shopItemIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#shop-products-grid .grid-item {
  animation: shopItemIn .35s ease both;
}

@media (max-width: 1399px) {
  #shop-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  #shop-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  #shop-products-grid {
    grid-template-columns: 1fr;
  }
}

/* â”€â”€ BotÃ³ Filtros â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#shop-filter-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  background: #f47722;
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
}

#shop-filter-btn:hover {
  background: #f47722d9;
}

#shop-filter-badge {
  display: none;
  background: #fff;
  color: #1a1a1a;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  line-height: 1.4;
}

#shop-filter-badge.visible {
  display: inline-block;
}

/* â”€â”€ Overlay â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#shop-filter-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  z-index: 99998;
  opacity: 0;
  transition: opacity .3s ease;
}

#shop-filter-overlay.is-visible {
  opacity: 1;
}

/* â”€â”€ Modal â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#shop-filter-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #fff;
  flex-direction: column;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .32s ease, transform .32s ease;
}

#shop-filter-modal.is-open {
  display: flex;
}

#shop-filter-modal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.shop-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid #ebebeb;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1;
}

.shop-modal-header>span {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: .01em;
}

#shop-filter-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #1a1a1a;
  line-height: 1;
  transition: opacity .2s;
}

#shop-filter-modal-close:hover {
  opacity: .45;
}

.shop-modal-body {
  padding: 28px 24px;
  flex: 1;
}

.shop-modal-footer {
  padding: 16px 24px 44px;
  position: sticky;
  bottom: 0;
  background: #fff;
  border-top: 1px solid #ebebeb;
}

#shop-filter-apply {
  width: 100%;
  background: #ff7700;
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
}

#shop-filter-apply:hover {
  background: #ff7700cf;
}

body.shop-modal-open {
  overflow: hidden;
}

/* â”€â”€ Estat actiu dels filtres â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* Especificitat alta per sobreescriure el tema */
#shop-cat-filter .shop-cat-link,
#shop-cat-filter .shop-subcat-link,
#shop-cat-filter-modal .shop-cat-link-modal,
#shop-subcat-filter .shop-subcat-link,
#shop-subcat-filter-modal .shop-subcat-link-modal {
  position: relative;
  color: var(--dark-gray, #3d3d3c);
  font-weight: 400;
  transition: color .2s, font-weight .2s;
}

#shop-cat-filter .shop-cat-link.active,
#shop-cat-filter .shop-subcat-link.active,
#shop-cat-filter-modal .shop-cat-link-modal.active,
#shop-subcat-filter .shop-subcat-link.active,
#shop-subcat-filter-modal .shop-subcat-link-modal.active {
  color: var(--base-color, #f47722) !important;
  font-weight: 600 !important;
}

/* Checkbox visual (el requadre que ja tens al tema) */
#shop-cat-filter .shop-cat-link.active .product-category-cb,
#shop-cat-filter .shop-subcat-link.active .product-category-cb,
#shop-cat-filter-modal .shop-cat-link-modal.active .product-category-cb,
#shop-subcat-filter .shop-subcat-link.active .product-category-cb,
#shop-subcat-filter-modal .shop-subcat-link-modal.active .product-category-cb {
  background-color: var(--base-color, #f47722) !important;
  border-color: var(--base-color, #f47722) !important;
}



/* MÃ²bil: forÃ§a scroll i alÃ§ada mÃ xima als submenus */
@media (max-width: 950px) {
  .mega-menu-wrap #mega-menu-main_menu {
    max-height: 80vh;
    overflow-y: auto;
  }

  .mega-menu-wrap .mega-sub-menu {
    position: relative !important;
    width: 100% !important;
    box-shadow: none !important;
  }
}







/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   16. CLASSIC CHECKOUT SHORTCODE STYLING (wca-)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.wca-checkout-wrapper {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 32px;
  align-items: start;
  margin-top: 20px;
}

@media (max-width: 900px) {
  .wca-checkout-wrapper {
    grid-template-columns: 1fr;
  }

  .wca-checkout-wrapper .wca-card {
    padding: 20px 20px;
  }
}

.wca-checkout-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.wca-checkout-right {
  position: sticky;
  top: 30px;
}

.wca-checkout-wrapper .wca-card {
  background: var(--white, #ffffff);
  border-radius: 12px;
  box-shadow: 0 4px 28px rgba(30, 45, 90, .06);
  border: 1px solid var(--extra-medium-gray, #e4e4e4);
  padding: 28px 32px;
  margin-top: 0px;
}

.wca-checkout-wrapper .wca-card-notice {
  padding: 16px 24px;
  background: var(--very-light-gray, #f7f7f7);
  border-left: 4px solid var(--base-color, #2946f3);
}

.wca-checkout-wrapper .wca-card-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--dark-gray, #232323);
  margin-top: 0;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--extra-medium-gray, #e4e4e4);
  display: flex;
  align-items: center;
  gap: 10px;
}

.wca-checkout-wrapper .wca-card-title i {
  color: var(--base-color, #2946f3);
}

/* Fix double columns inside left wrapper (overrides default WooCommerce CSS) */
.woocommerce .wca-checkout-wrapper .col2-set .col-1,
.woocommerce .wca-checkout-wrapper .col2-set .col-2 {
  width: 100% !important;
  float: none !important;
  margin-bottom: 0px !important;
}


.woocommerce label {
  /* width: 100%; */
  display: contents;
}

.woocommerce input {
  padding: 6px 15px;
  width: 4%;
  /* max-width: 100%; */
  resize: none;
  display: inline;
  margin-bottom: 1px;
  outline: none;
  border-radius: 8px;
  font-size: 16px;
  border: 1px solid #e4e4e4;
  color: var(--medium-gray);
  line-height: inherit;
  word-break: normal;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#add_payment_method #payment ul.payment_methods li input,
.woocommerce-cart #payment ul.payment_methods li input,
.woocommerce-checkout #payment ul.payment_methods li input {
  margin: 0 0em 0 0;
  display: inline;
  width: 20px;
}

.woocommerce .wca-checkout-wrapper .col2-set {
  display: flex;
  flex-direction: column;
  /* gap: 24px; */
}

#add_payment_method #payment ul.payment_methods li,
.woocommerce-cart #payment ul.payment_methods li,
.woocommerce-checkout #payment ul.payment_methods li {
  line-height: 2;
  text-align: left;
  margin: 0;
  font-weight: 400;
  list-style: none;
}


.woocommerce table.shop_table td {
  border-top: 0px;
  padding: 9px 12px;
  vertical-align: middle;
  line-height: 1.5em;
  text-align: center;
  font-size: 14px;
}



.woocommerce table.shop_table tbody th,
.woocommerce table.shop_table tfoot td,
.woocommerce table.shop_table tfoot th {
  font-weight: 700;
  font-size: 14px;
  border-top: 1px solid rgba(0, 0, 0, .1);
}

/* Inputs form-row */
.wca-checkout-wrapper .form-row {
  margin-bottom: 16px;
  width: 100%;
}

.wca-checkout-wrapper .form-row-first,
.wca-checkout-wrapper .form-row-last {
  width: 48%;
  float: left;
}

.wca-checkout-wrapper .form-row-last {
  float: right;
}

.wca-checkout-wrapper .form-row label {
  font-size: 13px;
  font-weight: 600;
  color: var(--medium-gray, #717580);
  margin-bottom: 6px;
  display: block;
}

.wca-checkout-wrapper .form-row input.input-text,
.wca-checkout-wrapper .form-row select,
.wca-checkout-wrapper .form-row textarea {
  border: 1.5px solid var(--extra-medium-gray, #e4e4e4);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--dark-gray, #232323);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}

.wca-checkout-wrapper .form-row input.input-text:focus,
.wca-checkout-wrapper .form-row select:focus,
.wca-checkout-wrapper .form-row textarea:focus {
  border-color: var(--base-color, #2946f3);
  box-shadow: 0 0 0 3px rgba(41, 70, 243, 0.12);
  outline: none;
}

/* Coupon wrapper */
.wca-coupon-wrap {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.wca-coupon-wrap input {
  flex: 1;
  border: 1.5px solid var(--extra-medium-gray, #e4e4e4);
  border-radius: 8px;
  padding: 10px 14px;
  outline: none;
}

.wca-coupon-wrap input:focus {
  border-color: var(--base-color, #2946f3);
}

.wca-coupon-wrap button {
  background: var(--dark-gray, #232323);
  color: #fff;
  border: 2px solid var(--dark-gray, #232323);
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, color .2s;
}

.wca-coupon-wrap button:hover {
  background: transparent;
  color: var(--dark-gray, #232323);
}

/* Order review table */
.wca-table {
  width: 100%;
  border-collapse: collapse;
}

.wca-table th,
.wca-table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--extra-medium-gray, #e4e4e4);
  text-align: left;
  font-size: 12px;
  color: var(--dark-gray, #232323);
}

.wca-table thead th {
  color: var(--medium-gray, #717580);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 10px;
}


.wca-table tfoot th,
.wca-table tfoot td {
  padding: 14px 0;
}

.wca-table tfoot .order-total th,
.wca-table tfoot .order-total td {
  border-top: 2px solid var(--extra-medium-gray, #e4e4e4);
  border-bottom: none;
  font-size: 15px;
  font-weight: 800;
}

.wca-table .product-total,
.wca-table .cart-subtotal td,
.wca-table .order-total td {
  text-align: right;
}

.wca-payment-section {
  margin-top: 24px;
}

.wca-payment-section .wc_payment_methods {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.wca-payment-section .wc_payment_method {
  border: 1.5px solid var(--extra-medium-gray, #e4e4e4);
  border-radius: 8px;
  margin-bottom: 10px;
  padding: 14px 16px;
  background: #fff;
}

.wca-payment-section .wc_payment_method input[type="radio"] {
  accent-color: var(--base-color, #2946f3);
  margin-right: 8px;
}

.wca-payment-section .payment_box {
  background: var(--very-light-gray, #f7f7f7);
  border-radius: 6px;
  padding: 12px 16px;
  margin-top: 12px;
  font-size: 11px;
  color: var(--medium-gray, #717580);
}

/* Button primary */
.wca-btn-primary {
  background: var(--base-color, #2946f3);
  color: #fff;
  border: 2px solid var(--base-color, #2946f3);
  border-radius: 8px;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all .2s;
}

.wca-btn-primary:hover {
  background: transparent;
  color: var(--base-color, #2946f3);
}

.wca-payment-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 21px;
  color: var(--medium-gray, #717580);
  margin-top: 16px;
}

.wca-secure-note {
  text-align: center;
  font-size: 11px;
  color: var(--medium-gray, #717580);
  margin-top: 16px;
}

/* Fix float issues */
.wca-checkout-wrapper .col2-set::after {
  content: "";
  display: table;
  clear: both;
}

/* ========================================================= 
   Amagar cupÃ³ natiu de WooCommerce (form-coupon.php)
   quan s'usa el wrapper personalitzat (form-checkout.php)
   ========================================================= */
.woocommerce-checkout .woocommerce-form-coupon-toggle,
.woocommerce-checkout form.checkout_coupon.woocommerce-form-coupon:not(.wca-coupon-hidden) {
  display: none !important;
}














/* ===== Scrollbar CSS =====  */


/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 12px;
}

*::-webkit-scrollbar-track {
  background: #ffffff;
}

*::-webkit-scrollbar-thumb {
  background-color: var(--base-color2);
  border: 3px solid #ffffff;
  border-radius: 0px;
}
















/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BOTONS WOOCOMMERCE â€” Estil unificat del tema
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Base compartida: tots els botons WooCommerce */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input[type="submit"].button,
.woocommerce #respond input#submit,
.woocommerce .button.alt,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce .woocommerce-message a.button,
.woocommerce .woocommerce-info a.button {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  font-family: var(--alt-font) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: .04em;
  background-color: var(--base-color) !important;
  color: #fff !important;
  border: 2px solid var(--base-color) !important;
  border-radius: 10px !important;
  padding: 10px 22px !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .12) !important;
  transition: background .3s ease, color .3s ease !important;
  text-decoration: none !important;
  cursor: pointer;
  line-height: 18px;
}



.wc-block-components-product-details.wc-block-components-product-details Especificitat: (0, 2, 0) {
  font-size: 14px;
  line-height: 1.4;
  margin: .5em 0;
}


.wc-block-cart .wp-block-woocommerce-cart-order-summary-block {
  border-bottom: 1px solid color-mix(in srgb, currentColor 20%, transparent);
  font-size: 15px;
  line-height: 25px;
  margin-bottom: 5px !important;
  padding-bottom: 5px !important;
  margin-bottom: 16px;
}


.wc-block-components-product-metadata .wc-block-components-product-metadata__description>p,
.wc-block-components-product-metadata .wc-block-components-product-metadata__variation-data {
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
}


/* Hover */
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input[type="submit"].button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce .button.alt:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
  background-color: transparent !important;
  color: var(--base-color) !important;
}

/* â”€â”€ Icones per context (Font Awesome 6) via ::before â”€â”€ */

/* Afegir al carret â€” producte simple */
.woocommerce a.button.product_type_simple::before,
.woocommerce a.button.add_to_cart_button:not(.product_type_variable):not(.product_type_grouped)::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f07a";
  /* fa-cart-shopping */
}

/* Seleccionar opcions â€” producte variable */
.woocommerce a.button.product_type_variable::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f06e";
  /* fa-eye */
}

/* Ver productos â€” producte agrupat */
.woocommerce a.button.product_type_grouped::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f0cb";
  /* fa-list-ol */
}

/* Producte extern */
.woocommerce a.button.product_type_external::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f08e";
  /* fa-arrow-up-right */
}

/* Afegir al carret â€” pÃ gina producte individual */
.woocommerce button.single_add_to_cart_button::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f07a";
  /* fa-cart-shopping */
}

/* Procedir al checkout */
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f023";
  /* fa-lock */
}

/* Actualitzar carret */
.woocommerce button[name="update_cart"]::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f2f1";
  /* fa-arrows-rotate */
}

/* Aplicar cupÃ³ */
.woocommerce button[name="apply_coupon"]::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f02b";
  /* fa-tag */
}

/* Continuar comprant / tornar */
.woocommerce a.button.wc-forward::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f060";
  /* fa-arrow-left */
}

/* Login / registre */
.woocommerce button[name="login"]::before,
.woocommerce button[name="register"]::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f2f6";
  /* fa-right-to-bracket */
}

/* Submit genÃ¨ric */
.woocommerce #respond input#submit::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f00c";
  /* fa-check */
}

/* BotÃ³ "Procedir al checkout" ample */
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  width: 100%;
  justify-content: center;
  font-size: 15px !important;
  padding: 14px 28px !important;
}

/* â”€â”€ Miniatura producte a la taula Tu pedido (checkout) â”€â”€ */
.woocommerce-checkout-review-order-table td.product-thumb {
  width: 54px;
  padding: 8px 4px 8px 0;
  vertical-align: middle;
}

img.wca-order-thumb {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--extra-medium-gray, #e4e4e4);
  display: block;
}

/* â”€â”€ Ajustament miniatura integrada al nom del producte â”€â”€ */
.wca-table.woocommerce-checkout-review-order-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

.wca-table.woocommerce-checkout-review-order-table th.product-name,
.wca-table.woocommerce-checkout-review-order-table td.product-name {
  width: 55%;
}

.wca-table.woocommerce-checkout-review-order-table th.product-total,
.wca-table.woocommerce-checkout-review-order-table td.product-total {
  width: 45%;
}

.wca-checkout-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wca-checkout-item-thumb {
  flex-shrink: 0;
  width: 48px;
}

.wca-checkout-item-info {
  flex-grow: 1;
  line-height: 1.4;
  min-width: 0;
  overflow-wrap: break-word;
  /* Ensure long words wrap properly without breaking the flex layout */
}

.woocommerce-checkout-review-order-table td.product-thumb {
  display: none;
  /* Eliminar si s'havia quedat rastre */
}

/* â”€â”€ Estil per al botÃ³ personalitzat .wca-btn (CupÃ³ i altres) â”€â”€ */
.wca-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--alt-font) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  background-color: var(--base-color) !important;
  color: #fff !important;
  border: 2px solid var(--base-color) !important;
  border-radius: 10px !important;
  padding: 8px 20px !important;
  box-shadow: 0 4px 12px rgba(255, 102, 0, .2) !important;
  transition: all .3s ease !important;
  cursor: pointer;
  line-height: 18px;
  height: 48px;
  /* Ajustat a l'alÃ§ada de l'input */
}

.wca-btn:hover {
  background-color: transparent !important;
  color: var(--base-color) !important;
  box-shadow: 0 6px 16px rgba(255, 102, 0, .3) !important;
}

.wca-coupon-wrap {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.wca-input-coupon {
  flex-grow: 1;
  height: 48px !important;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   ORDER RECEIVED (THANK YOU) PAGE
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body.woocommerce-order-received {
  background: #f9f9f9 !important;
  font-family: 'Montserrat', sans-serif !important;
}

/* Hide theme elements */
body.woocommerce-order-received h1.entry-title,
body.woocommerce-order-received .page-title,
body.woocommerce-order-received .entry-header,
body.woocommerce-order-received .woocommerce-breadcrumb {
  display: none !important;
}

/* Force full width container */
body.woocommerce-order-received .woocommerce,
body.woocommerce-order-received .woocommerce-page .woocommerce {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
}

.bp-breadcrumb {
  background: #fff;
  padding: 8px 0;
  border-bottom: 1px solid #eeeeee;
  font-size: 11px;
}

.bp-breadcrumb a {
  color: #f47722;
  text-decoration: none;
}

.bp-breadcrumb a:hover {
  text-decoration: underline;
}

.bp-breadcrumb .sep {
  margin: 0 5px;
  color: #777;
}

.bp-hero {
  background: #f47722;
  color: #fff;
  padding: 52px 13px 39px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bp-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 150%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 50%),
    radial-gradient(circle at 80% -50%, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 50%);
}

.bp-hero>* {
  position: relative;
  z-index: 1;
}

.bp-check-icon {
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, .2);
  border: 3px solid rgba(255, 255, 255, .4);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 39px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.bp-hero h2 {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 29px !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin-bottom: 8px !important;
  letter-spacing: -0.5px;
}

.bp-subtitle {
  opacity: .9;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 13px;
}

.bp-order-badge {
  display: inline-block;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
}

.bp-bacs-hero {
  margin-top: 35px;
  max-width: 700px;
  color: #000000;
  margin-left: auto;
  margin-right: auto;
  background: rgb(255 255 255 / 77%);
  padding: 30px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.25);
  text-align: left;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bp-bacs-hero h2,
.bp-bacs-hero .wc-bacs-bank-details-heading {
  font-size: 1.25rem !important;
  margin-bottom: 20px !important;
  text-align: center;
  border-bottom: 1px solid rgb(0 0 0 / 20%);
  padding-bottom: 15px;
  color: #3d3d3c !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bp-bacs-hero .woocommerce-bacs-details {
  margin: 0;
}

.bp-bacs-hero .wc-bacs-bank-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bp-bacs-hero .wc-bacs-bank-details li {
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.bp-bacs-hero .wc-bacs-bank-details li:last-child {
  margin-bottom: 0;
  list-style: none;
}

.bp-bacs-hero .wc-bacs-bank-details strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 5px;
  color: #3d3d3c;
}

.bp-bacs-hero .wc-bacs-bank-details span {
  display: block;
  opacity: 0.9;
  margin-bottom: 2px;
}


.bp-wrap {
  margin: 0 auto;
  padding: 39px 0 65px;
}

.bp-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #eeeeee;
  padding: 26px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  margin-bottom: 26px;
}

.bp-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #202020;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bp-card-title i {
  color: #f47722;
  font-size: 17px;
  line-height: 1;
}

.bp-tracker {
  display: flex;
  align-items: flex-start;
  padding: 7px 0;
}

.bp-step {
  flex: 1;
  text-align: center;
  position: relative;
}

.bp-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 17px;
  left: 55%;
  width: 90%;
  height: 3px;
  background: #eeeeee;
  z-index: 0;
}

.bp-step.done:not(:last-child)::after {
  background: #f47722;
}

.bp-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #eeeeee;
  color: #777;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin: 0 auto 8px;
  position: relative;
  z-index: 1;
}

.bp-step.done .bp-dot {
  background: #f47722;
  color: #fff;
}

.bp-step.active .bp-dot {
  background: #202020;
  color: #fff;
  box-shadow: 0 0 0 5px rgba(244, 119, 34, .15);
}

.bp-step-lbl {
  font-size: 10px;
  font-weight: 600;
  color: #777;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 18px;
}

.bp-step.done .bp-step-lbl,
.bp-step.active .bp-step-lbl {
  color: #202020;
}

.bp-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}

@media(min-width:768px) {
  .bp-meta {
    grid-template-columns: repeat(4, 1fr);
  }
}

.bp-meta-box {
  background: #fcfcfc;
  border: 1px solid #eeeeee;
  border-radius: 12px;
  padding: 16px 10px;
  text-align: center;
}

.bp-meta-box .lbl {
  font-size: 9px;
  font-weight: 600;
  color: #777;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 5px;
}

.bp-meta-box .val {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #202020;
}

.bp-meta-box .val.st {
  color: #f47722;
}

.bp-table {
  width: 100%;
  border-collapse: collapse;
}

.bp-table thead th {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #777;
  border-bottom: 2px solid #eeeeee;
  padding: 13px 10px;
}

.bp-table tbody td {
  padding: 16px 10px;
  border-bottom: 1px solid #eeeeee;
  font-size: 14px;
  vertical-align: middle;
}

.bp-table tbody tr:last-child td {
  border-bottom: none;
}

.bp-flex-prod {
  display: flex;
  align-items: center;
  gap: 13px;
}

.bp-img-wrap {
  width: 64px;
  height: 64px;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #fff;
}

.bp-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bp-prod-name {
  font-weight: 700;
  color: #202020;
  margin-bottom: 1px;
  display: block;
}

.bp-sku {
  font-size: 10px;
  color: #777;
}

.bp-qty {
  color: #777;
  font-weight: 600;
  font-size: 12px;
}

.bp-line-total {
  font-weight: 700;
  color: #202020;
  text-align: right;
  white-space: nowrap;
}

.bp-totals {
  margin-top: 13px;
  border-top: 2px solid #eeeeee;
  padding-top: 7px;
}

.bp-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #eeeeee;
  font-size: 13px;
}

.bp-total-row:last-child {
  border-bottom: none;
}

.bp-total-row .tl {
  color: #777;
  font-weight: 500;
}

.bp-total-row .ta {
  font-weight: 600;
  color: #202020;
}

.bp-total-row.grand {
  padding-top: 16px;
}

.bp-total-row.grand .tl {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #202020;
}

.bp-total-row.grand .ta {
  font-family: 'Montserrat', sans-serif;
  font-size: 19px;
  color: #f47722;
  font-weight: 800;
}

.bp-addr-lbl {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #f47722;
  margin-bottom: 10px;
}

.bp-addr-body {
  font-size: 14px;
  line-height: 23px;
  color: #444;
}

.bp-addr-body strong {
  color: #202020;
  display: block;
  font-size: 13px;
  margin-bottom: 3px;
}

.bp-pay-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fdf2ea;
  color: #f47722;
  border: 1px solid rgba(244, 119, 34, 0.2);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 700;
}

.bp-notice {
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: 12px;
  padding: 16px 20px;
  color: #795548;
  font-size: 12px;
}

.bp-btn {
  background: #f47722;
  color: #fff !important;
  border: none;
  border-radius: 50px;
  padding: 10px 26px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all .3s ease;
  box-shadow: 0 4px 12px rgba(244, 119, 34, 0.3);
}

.bp-btn:hover {
  background: #e06610 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(244, 119, 34, 0.4);
}

.bp-btn-outline {
  background: transparent;
  color: #f47722 !important;
  border: 2px solid #f47722;
  border-radius: 50px;
  padding: 9px 23px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all .3s ease;
}

.bp-btn-outline:hover {
  background: rgba(244, 119, 34, 0.05) !important;
  transform: translateY(-2px);
}

.bp-help {
  background: #fdf2ea;
  border: 1px solid rgba(244, 119, 34, 0.1);
  border-radius: 16px;
  padding: 26px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.bp-help-icon {
  font-size: 33px;
  color: #f47722;
  flex-shrink: 0;
}

.bp-help h6 {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 700 !important;
  color: #202020 !important;
  margin-bottom: 7px !important;
  font-size: 14px !important;
}

.bp-help p {
  font-size: 12px;
  color: #555;
  margin: 0 0 13px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   WOOCOMMERCE MI CUENTA â€” DiseÃ±o Premium Unificado
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

:root {
  --wca-brand: #f47722;
  --wca-surface: #f8f8f8;
  --wca-card: #ffffff;
  --wca-border: #eeeeee;
  --wca-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

:where(.woocommerce) .select2-container .select2-dropdown,
:where(.woocommerce) .select2-container .select2-selection {
  background-color: var(--wc-form-color-background, #fff);
  border: var(--wc-form-border-width) solid rgb(170 170 170 / 46%);
  border-radius: 7px;
}


body.wca-account-page {
  background: var(--wca-surface) !important;
  font-family: 'Montserrat', sans-serif !important;
}

/* --- Header --- */
.wca-header {
  background: #fff;
  padding: 40px 0;
  border-bottom: 1px solid var(--wca-border);
}

.wca-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.wca-header-user {
  display: flex;
  align-items: center;
  gap: 20px;
}

.wca-avatar-wrap img,
.wca-avatar-initial {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fdf2ea;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wca-brand);
  color: #fff;
  font-weight: 800;
  font-size: 20px;
}

.wca-avatar-wrap img {
  border: 4px solid #fdf2ea;
}

.wca-header-text h1 {
  font-size: 23px !important;
  font-weight: 700 !important;
  color: #202020 !important;
  margin: 0 0 5px 0 !important;
  line-height: 1 !important;
}

.wca-header-text h1 span {
  color: var(--wca-brand);
}

.wca-header-text p {
  font-size: 13px;
  color: #777;
  margin: 0;
}

@media (max-width: 768px) {
  .wca-header-flex {
    flex-direction: column;
    text-align: center;
  }

  .wca-header-user {
    flex-direction: column;
  }
}

/* Force child elements to use Montserrat, excluding icons */
.wca-wrapper *:not(i):not([class*="fa-"]),
.woocommerce-account .woocommerce *:not(i):not([class*="fa-"]) {
  font-family: 'Montserrat', sans-serif !important;
}

/* â”€â”€ MAIN ACCOUNT WRAPPER â”€â”€ */
.wca-wrapper {
  display: grid !important;
  grid-template-columns: 280px 1fr !important;
  gap: 30px !important;
  align-items: start !important;
  padding: 0px 0 !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

@media (max-width: 991px) {
  .wca-wrapper {
    grid-template-columns: 1fr !important;
    padding: 20px 15px !important;
  }
}

/* --- Sidebar --- */
.wca-sidebar {
  background: #fff !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
  border: 1px solid #eee !important;
  overflow: hidden !important;
  position: sticky !important;
  top: 100px !important;
  z-index: 10 !important;
}

.wca-nav {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.wca-nav a {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 14px 20px !important;
  color: #333 !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  border-bottom: 1px solid #f5f5f5 !important;
}

.wca-nav li:last-child a {
  border-bottom: none !important;
}

.wca-nav li:hover a,
.wca-nav li.is-active a {
  background: rgba(244, 119, 34, 0.05) !important;
  color: var(--wca-brand) !important;
}

/* --- Stats Grid (Resumen) --- */
.wca-stats {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 20px !important;
  margin-top: 10px !important;
}

.wca-stat {
  flex: 1 !important;
  min-width: 180px !important;
  background: #fff !important;
  border: 1px solid #eee !important;
  border-radius: 12px !important;
  padding: 24px 15px !important;
  text-align: center !important;
  transition: transform 0.2s ease !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.wca-stat:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05) !important;
}

.wca-stat-icon {
  width: 50px !important;
  height: 50px !important;
  margin: 0 auto 15px auto !important;
  border-radius: 10px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 18px !important;
}

.wca-stat-value {
  font-size: 25px !important;
  font-weight: 600 !important;
  color: #f56809 !important;
  margin-bottom: 4px !important;
  display: block !important;
}

.wca-stat-label {
  font-size: 12px !important;
  color: #777 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  font-weight: 600 !important;
}

/* --- Cards --- */
.wca-card {
  background: #fff !important;
  border-radius: 16px !important;
  border: 1px solid #eee !important;
  padding: 30px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
  margin-bottom: 25px !important;
}

.wca-card-title {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #202020 !important;
  margin-bottom: 25px !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  border-bottom: 2px solid #f8f8f8 !important;
  padding-bottom: 15px !important;
}

/* Buttons */
.wca-btn {
  border-radius: 11px !important;
  font-weight: 500 !important;
  padding: 10px 24px !important;
  box-shadow: 0 4px 10px rgba(244, 119, 34, 0.2) !important;
}

.wca-btn-primary {
  width: auto !important;
  display: inline-flex !important;
}

/* Header fix */
.wca-header {
  padding: 60px 0 30px !important;
}

.wca-avatar-wrap img,
.wca-avatar-initial {
  width: 70px !important;
  height: 70px !important;
  border: 4px solid #fff !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.wca-header-text h1 {
  font-size: 21px !important;
  max-width: 600px !important;
}

/* --- Forms (Account Details & Addresses) --- */
.wca-form-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 20px !important;
  margin-bottom: 20px !important;
}

@media (max-width: 600px) {
  .wca-form-grid {
    grid-template-columns: 1fr !important;
  }
}

.woocommerce-address-fields__field-wrapper,
.woocommerce-EditAccountForm {
  max-width: 800px;
}


.text-muted.d-block p {
  margin-bottom: 5px;
  border-bottom: 1px solid #ddd;
}

.woocommerce-account .woocommerce-MyAccount-content input.input-text,
.woocommerce-account .woocommerce-MyAccount-content select,
.woocommerce-account .woocommerce-MyAccount-content textarea,
.wca-input {
  width: 100% !important;
  display: block !important;
  background: #fff !important;
  border: 1px solid #ddd !important;
  border-radius: 8px !important;
  padding: 12px 15px !important;
  font-size: 13px !important;
  font-family: 'Montserrat', sans-serif !important;
  color: #333 !important;
  transition: all 0.2s ease !important;
}

.woocommerce-account .woocommerce-MyAccount-content input:focus {
  border-color: var(--wca-brand) !important;
  box-shadow: 0 0 0 3px rgba(244, 119, 34, 0.1) !important;
  outline: none !important;
}

.woocommerce-account .woocommerce-MyAccount-content label {
  display: block !important;
  margin-bottom: 8px !important;
  font-weight: 700 !important;
  font-size: 11px !important;
  color: #444 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

/* --- Addresses Layout --- */
.wca-address-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 25px !important;
  margin-top: 25px !important;
}

@media (max-width: 768px) {
  .wca-address-grid {
    grid-template-columns: 1fr !important;
  }
}

.wca-address-block {
  background: #fbfbfb !important;
  border: 1px solid #eee !important;
  border-radius: 12px !important;
  padding: 25px !important;
  position: relative !important;
  transition: all 0.3s ease !important;
}

.wca-address-block:hover {
  background: #fff !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05) !important;
  border-color: var(--wca-brand) !important;
}

.wca-address-type {
  font-size: 12px !important;
  font-weight: 700 !important;
  color: var(--wca-brand) !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  margin-bottom: 15px !important;
  display: flex !important;
  align-items: center !important;
}

.wca-address-block address {
  font-style: normal !important;
  line-height: 1.8 !important;
  font-size: 14px !important;
  color: #555 !important;
  font-family: 'Montserrat', sans-serif !important;
}

.wca-address-edit {
  position: absolute !important;
  top: 24px !important;
  right: 20px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #3d3d3c !important;
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  gap: 5px !important;
  transition: color 0.2s ease !important;
}

.wca-address-edit:hover {
  color: var(--wca-brand) !important;
}

/* --- Mobile Nav Toggle --- */
.wca-mobile-nav-toggle {
  width: 100% !important;
  background: #fff !important;
  border: none !important;
  padding: 15px 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  color: var(--wca-brand) !important;
  text-align: left !important;
  cursor: pointer !important;
  border-bottom: 2px solid #f8f8f8 !important;
}

.wca-mobile-nav-toggle i {
  transition: transform 0.3s ease !important;
}

.wca-mobile-nav-toggle.is-active i {
  transform: rotate(180deg) !important;
}

@media (min-width: 992px) {
  .wca-mobile-nav-toggle {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .wca-nav {
    display: none;
  }

  .wca-sidebar {
    position: relative !important;
    top: 0 !important;
    margin-bottom: 20px !important;
  }
}

/* --- Tables (Orders, Downloads) --- */
.woocommerce-table--order-details,
.woocommerce-orders-table,
.woocommerce-MyAccount-downloads {
  border: none !important;
  border-radius: 12px !important;
  overflow: hidden;
}

.woocommerce-table thead th,
.woocommerce-orders-table thead th {
  background: var(--wca-surface);
  color: #777;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 15px 20px;
  border: none;
}



.vat-description {
  font-size: 13px;
  margin-top: 10px;
}


.woocommerce-table tbody td,
.woocommerce-orders-table tbody td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--wca-border);
  font-size: 13px;
  vertical-align: middle;
}

.woocommerce-orders-table__cell-order-number {
  white-space: nowrap;
  font-weight: 700;
}

.woocommerce-orders-table__cell-order-number a {
  color: var(--wca-brand) !important;
  text-decoration: none;
}

/* Buttons in account */
.woocommerce-MyAccount-content .button {
  background: var(--wca-brand) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 8px 20px !important;
  font-weight: 700 !important;
  font-size: 11px !important;
  transition: all 0.3s ease !important;
}

.woocommerce-MyAccount-content .button:hover {
  background: #e06610 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(244, 119, 34, 0.3);
}

/* Addresses */
.woocommerce-Address {
  background: var(--wca-surface);
  border-radius: 12px;
  padding: 20px;
  height: 100%;
}

.woocommerce-Address address {
  font-style: normal;
  line-height: 1.8;
  font-size: 12px;
  color: #555;
}

.woocommerce-Address-title h3 {
  font-size: 13px !important;
  margin-bottom: 15px !important;
  color: #202020 !important;
}

.edit {
  color: var(--wca-brand);
  font-weight: 700;
  text-decoration: none;
}

/* â”€â”€ WOOCOMMERCE ACCOUNT: VARIABLES & UTILITIES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
  --wca-brand: #ff7700;
  --wca-brand-mid: #2e4285;
  --wca-accent: #f47722;
  --wca-accent-light: #fff1f0;
  --wca-surface: #f4f6fb;
  --wca-card: #ffffff;
  --wca-text: #1a1e2e;
  --wca-muted: #3d3d3c;
  --wca-border: #e2e6f3;
  --wca-success: #1a7a4a;
  --wca-success-bg: #e6f9f0;
  --wca-warning: #9a6010;
  --wca-warning-bg: #fff4e0;
  --wca-danger: #b82020;
  --wca-danger-bg: #fde8e8;
  --wca-radius: 14px;
  --wca-radius-sm: 9px;
  --wca-shadow: 0 4px 28px rgba(30, 45, 90, .09);
  --wca-shadow-sm: 0 2px 10px rgba(30, 45, 90, .06);
}

/* Utility Classes for removing inline styles in PHP */
.wca-logout-btn {
  /* font-size: 11px !important; */
  /* padding: 7px 16px !important; */
}


.shop_table.woocommerce-checkout-review-order-table {
  border: 0px !important;
}


.wca-card .wca-coupon-card {
  padding: 0 !important;
  box-shadow: none !important;
  border: 0px !important;
}

.wca-text-muted {
  color: var(--wca-muted) !important;
}

.wca-text-muted-sm {
  color: var(--wca-muted) !important;
  font-size: 13px !important;
}

.wca-text-muted-xs {
  color: var(--wca-muted) !important;
  font-size: 10px !important;
}

.wca-icon-dim {
  opacity: 0.35 !important;
}

.wca-delay-05s {
  animation-delay: 0.05s !important;
}

.wca-delay-10s {
  animation-delay: 0.1s !important;
}

.wca-delay-15s {
  animation-delay: 0.15s !important;
}

/* Dashboard Stat Icons */
.wca-stat-icon-blue {
  background: #eef1fb !important;
}

.wca-stat-icon-success {
  background: var(--wca-success-bg) !important;
}

.wca-stat-icon-light-blue {
  background: #e8eeff !important;
}

.wca-stat-icon-warning {
  background: var(--wca-warning-bg) !important;
}

.wca-brand-color {
  color: var(--wca-brand) !important;
}

.wca-success-color {
  color: var(--wca-success) !important;
}

.wca-blue-color {
  color: #3050a0 !important;
}

.wca-warning-color {
  color: var(--wca-warning) !important;
}

/* View Order Hero & Notes */
.bp-view-order-hero {
  border-radius: 12px !important;
  margin-bottom: 30px !important;
  padding: 33px 13px !important;
}

.bp-view-order-icon {
  width: 60px !important;
  height: 60px !important;
  font-size: 26px !important;
}

.bp-view-order-title {
  font-size: 24px !important;
}

.bp-view-order-subtitle {
  margin-bottom: 0 !important;
}

.bp-notes-list {
  list-style: none !important;
  padding: 0 !important;
}

.bp-note-item {
  margin-bottom: 15px !important;
  background: #f9f9f9 !important;
  padding: 15px !important;
  border-radius: 8px !important;
  border-left: 4px solid var(--wca-brand) !important;
}

.bp-note-desc {
  font-size: 12px !important;
  line-height: 1.5 !important;
}

.bp-note-date {
  font-size: 10px !important;
  color: #888 !important;
  margin-top: 5px !important;
}

.bp-meta-sm {
  font-size: 10px !important;
}

.bp-var-desc {
  font-size: 12px;
  color: #555;
  margin-top: 5px;
  line-height: 1.5;
}

.bp-discount-text {
  color: #e63946 !important;
}

.bp-mail-link {
  color: #f47722 !important;
}

/* General spacings & fonts */
.wca-font-sm {
  font-size: 11px !important;
}

.wca-font-md {
  font-size: 12px !important;
}

.wca-font-xs {
  font-size: 10px !important;
}

.wca-italic {
  font-style: italic !important;
}

.wca-border-top-section {
  border-top: 1px solid var(--wca-border) !important;
}

.wca-flex-center-gap {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

/* â”€â”€ ORDERS TABLE ENHANCEMENTS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.wca-actions-flex {
  display: flex;
  flex-wrap: wrap;
  margin-top: 8px;
  gap: 10px;
  justify-content: end;
}

.wca-actions-flex .wca-btn {
  background: var(--wca-brand) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 4px 12px rgba(244, 119, 34, 0.2) !important;
  padding: 0 12px !important;
  line-height: 18px !important;
  height: 33px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  border-radius: 6px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.2s ease !important;
  min-height: auto !important;
}

.wca-actions-flex .wca-btn:hover {
  background: var(--wca-brand-mid) !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 15px rgba(244, 119, 34, 0.3) !important;
}


.woocommerce table.my_account_orders td,
.woocommerce table.my_account_orders th {
  padding: 4px 8px;
  vertical-align: middle;
  text-align: center;
}

.wca-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1;
}

.wca-badge-completed {
  background: var(--wca-success-bg);
  color: var(--wca-success);
}

.wca-badge-processing {
  background: #eef1fb;
  color: #3050a0;
}

.wca-badge-on-hold,
.wca-badge-pending {
  background: var(--wca-warning-bg);
  color: var(--wca-warning);
}

.wca-badge-cancelled,
.wca-badge-failed {
  background: var(--wca-danger-bg);
  color: var(--wca-danger);
}

.wca-order-total-text {
  font-weight: 700;
  color: var(--wca-text);
}

.woocommerce-orders-table__row td {
  border-bottom: none !important;
  padding-bottom: 8px !important;
}

.wca-actions-row td {
  padding: 0 20px 20px !important;
  border-bottom: 1px solid var(--wca-border) !important;
}

.woocommerce-orders-table__cell-order-date {
  color: var(--wca-muted);
  font-size: 12px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FIX COMPLET: Taula de "Mis Pedidos" â€” columnes horitzontals
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* 1) Contenidor amb scroll horitzontal si cal */
.woocommerce-MyAccount-content .table-responsive {
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
}

/* 2) ForÃ§a la taula a mida mÃ­nima visible */
.woocommerce-MyAccount-content .woocommerce-orders-table,
.woocommerce-MyAccount-content table.my_account_orders,
.woocommerce-MyAccount-content .wca-table {
  width: 100% !important;
  min-width: 480px !important;
  table-layout: auto !important;
  border-collapse: collapse !important;
  display: table !important;
}

/* 3) CapÃ§aleres â€” sempre visibles i sense salt de lÃ­nia */
.woocommerce-MyAccount-content .woocommerce-orders-table thead,
.woocommerce-MyAccount-content table.my_account_orders thead,
.woocommerce-MyAccount-content .wca-table thead {
  display: table-header-group !important;
}

.woocommerce-MyAccount-content .woocommerce-orders-table thead th,
.woocommerce-MyAccount-content table.my_account_orders thead th,
.woocommerce-MyAccount-content .wca-table thead th {
  display: table-cell !important;
  white-space: nowrap !important;
  padding: 12px 16px !important;
  text-align: left !important;
  vertical-align: middle !important;
}

/* 4) Files com a files de taula */
.woocommerce-MyAccount-content .woocommerce-orders-table tbody tr,
.woocommerce-MyAccount-content table.my_account_orders tbody tr,
.woocommerce-MyAccount-content .wca-table tbody tr {
  display: table-row !important;
}

/* 5) CelÂ·les com a celÂ·les â€” elimina el mode card de WC */
.woocommerce-MyAccount-content .woocommerce-orders-table tbody td,
.woocommerce-MyAccount-content table.my_account_orders tbody td,
.woocommerce-MyAccount-content .wca-table tbody td {
  display: table-cell !important;
  white-space: nowrap !important;
  padding: 12px 16px !important;
  text-align: left !important;
  vertical-align: middle !important;
}

/* 6) Elimina el ::before que WooCommerce posa en mode responsive */
.woocommerce-MyAccount-content .woocommerce-orders-table td::before,
.woocommerce-MyAccount-content table.my_account_orders td::before,
.woocommerce-MyAccount-content .wca-table td::before,
.shop_table_responsive td::before {
  display: none !important;
  content: none !important;
}

/* 7) La columna Total pot tenir text llarg */
.woocommerce-orders-table__cell-order-total,
.woocommerce-orders-table__cell-order-total strong {
  white-space: normal !important;
}


.wca-wrapper.wca-checkout-wrapper {
  grid-template-columns: 6fr 4fr !important;
}

/* â”€â”€ WOOCOMMERCE: CHECKOUT BUTTON ENHANCEMENT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.wca-checkout-wrapper #place_order {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 16px 32px !important;
  font-size: 14px !important;
  margin-top: 20px;
  font-weight: 500 !important;
  background-color: var(--wca-brand) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 10px !important;
  box-shadow: 0 8px 25px rgba(244, 119, 34, 0.3) !important;
  transition: all 0.3s ease !important;
  margin-top: 10px !important;
  cursor: pointer !important;
}

.wca-checkout-wrapper #place_order:hover {
  background-color: var(--wca-brand-dark) !important;
  background-color: var(--base-color) !important;
  /* box-shadow: 0 12px 35px rgba(244, 119, 34, 0.4) !important; */
  transform: translateY(-2px) !important;
}

@media (max-width: 991px) {
  .wca-wrapper.wca-checkout-wrapper {
    grid-template-columns: 1fr !important;
  }

  /* Hide product image in mobile checkout */
  .wca-checkout-wrapper .wca-checkout-item-thumb {
    display: none !important;
  }
}

/* Align text to left in checkout table */
.wca-checkout-wrapper .shop_table td,
.wca-checkout-wrapper .shop_table th {
  text-align: left !important;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   AESTHETIC UNIFICATION - Applied globally so WooCommerce pages
   match the rest of the website.
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ Typography: enforce global font & sizes in WooCommerce â”€â”€ */
.woocommerce,
.woocommerce-page,
.woocommerce-account,
.woocommerce-checkout {
  font-family: var(--primary-font) !important;
  font-size: var(--font-size-base) !important;
  color: var(--dark-gray);
}

/* Body copy inside WC sections */
.woocommerce p,
.woocommerce td,
.woocommerce th,
.woocommerce li,
.woocommerce label,
.wca-wrapper p,
.wca-wrapper td,
.wca-wrapper th,
.wca-wrapper li,
.wca-wrapper label {
  font-size: var(--font-size-base) !important;
  line-height: var(--line-height-base) !important;
  font-family: var(--primary-font) !important;
}

/* Heading scale â€” same across all sections */
.woocommerce h1,
.wca-wrapper h1 {
  font-size: 28px !important;
  font-weight: 700;
  color: var(--charcoal-blue);
}

.woocommerce h2,
.wca-wrapper h2 {
  font-size: 22px !important;
  font-weight: 600;
  color: var(--charcoal-blue);
}

.woocommerce h3,
.wca-wrapper h3,
.woocommerce-billing-fields h3,
.woocommerce-additional-fields h3,
h3#order_review_heading,
.woocommerce-Address-title h3,
.cart_totals h2 {
  font-size: 18px !important;
  font-weight: 600 !important;
  color: var(--charcoal-blue) !important;
  padding: 16px 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
}

.woocommerce h4,
.wca-wrapper h4 {
  font-size: 16px !important;
  font-weight: 600;
  color: var(--charcoal-blue);
}

.woocommerce h5,
.wca-wrapper h5 {
  font-size: 15px !important;
  font-weight: 600;
}

/* â”€â”€ Button unification â”€â”€ */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  font-family: var(--primary-font) !important;
  font-size: 13px !important;
  text-transform: none !important;
  font-weight: 500 !important;
  border-radius: var(--radius-md) !important;
  padding: 10px 24px !important;
  background-color: var(--base-color) !important;
  color: var(--white) !important;
  border: 2px solid var(--base-color) !important;
  transition: all 0.25s ease !important;
  box-shadow: var(--shadow-brand) !important;
  cursor: pointer !important;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  background-color: var(--base-color-dark) !important;
  border-color: var(--base-color-dark) !important;
  box-shadow: 0 12px 32px rgba(244, 119, 34, .36) !important;
  transform: translateY(-1px);
}

.woocommerce a.button.alt,
.woocommerce button.button.alt {
  background-color: var(--charcoal-blue) !important;
  border-color: var(--charcoal-blue) !important;
  box-shadow: var(--shadow-md) !important;
}

.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover {
  background-color: var(--dark-gray) !important;
  border-color: var(--dark-gray) !important;
}

/* â”€â”€ Card / box unification â”€â”€ */
.woocommerce .woocommerce-MyAccount-content,
.wca-card,
.wca-checkout-wrapper .wca-card {
  /* border-radius: var(--radius-md) !important; */
  /* box-shadow: var(--shadow-md) !important; */
  /* border: 1px solid var(--border-color) !important; */
}

/* â”€â”€ Form inputs in WC & WCA â”€â”€ */
.woocommerce input.input-text,
.woocommerce select,
.woocommerce textarea,
.wca-wrapper input,
.wca-wrapper select,
.wca-wrapper textarea {
  font-family: var(--primary-font) !important;
  font-size: var(--font-size-base) !important;
  border: 1px solid var(--border-color) !important;
  border-radius: var(--radius-sm) !important;
  padding: 10px 14px !important;
  color: var(--dark-gray) !important;
  background-color: var(--white) !important;
  transition: border-color 0.2s ease !important;
  box-shadow: none !important;
}

.woocommerce input.input-text:focus,
.woocommerce select:focus,
.woocommerce textarea:focus,
.wca-wrapper input:focus,
.wca-wrapper select:focus,
.wca-wrapper textarea:focus {
  border-color: var(--base-color) !important;
  outline: none !important;
}

/* â”€â”€ WooCommerce notification messages â”€â”€ */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  font-family: var(--primary-font) !important;
  font-size: var(--font-size-base) !important;
  border-radius: var(--radius-sm) !important;
}

/* â”€â”€ Table â€” coherent with site style â”€â”€ */
.woocommerce table.shop_table {
  font-size: var(--font-size-base) !important;
  border-collapse: collapse !important;
}

.woocommerce table.shop_table th {
  font-size: var(--font-size-sm) !important;
  text-transform: uppercase !important;
  letter-spacing: .05em !important;
  color: var(--medium-gray) !important;
  font-weight: 600 !important;
  padding: 12px 16px !important;
  border-bottom: 1px solid #ddd;
}

.woocommerce table.shop_table td {
  padding: 14px 16px !important;
  vertical-align: middle !important;
}

/* â”€â”€ Order date / muted text â€” minimum 13px â”€â”€ */
.woocommerce-orders-table__cell-order-date,
.wca-wrapper .wca-muted,
time {
  font-size: var(--font-size-sm) !important;
  color: var(--medium-gray);
}

/* â”€â”€ Name fields: each on its own full-width line â”€â”€ */
/* Checkout / Billing / Shipping / Account */
p#billing_first_name_field,
p#billing_last_name_field,
p#shipping_first_name_field,
p#shipping_last_name_field,
p#account_first_name_field,
p#account_last_name_field {
  width: 100% !important;
  float: none !important;
  clear: both !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   DARK COLOR UNIFICATION â€” WooCommerce & WCA
   Replaces all hardcoded dark tones (#232323, #202020, #333, etc.)
   with var(--dark-gray) so the palette is controlled from one place.
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ Body text & general content â”€â”€ */
.woocommerce,
.woocommerce-page,
.woocommerce-account,
.woocommerce-checkout,
.wca-wrapper {
  color: var(--dark-gray) !important;
}

/* â”€â”€ Headings â”€â”€ */
.woocommerce h1,
.woocommerce h2,
.woocommerce h3,
.woocommerce h4,
.woocommerce h5,
.woocommerce h6,
.wca-wrapper h1,
.wca-wrapper h2,
.wca-wrapper h3,
.wca-wrapper h4,
.wca-wrapper h5,
.wca-wrapper h6,
.wca-card-title,
.wca-header-text h1,
.bp-card-title,
.bp-hero h2,
.bp-total-row.grand .tl,
.bp-total-row.grand .ta,
.bp-prod-name,
.bp-meta-box .val {
  color: var(--dark-gray) !important;
}

/* â”€â”€ Table cells â”€â”€ */
.woocommerce table.shop_table td,
.woocommerce table.shop_table th,
.wca-table td,
.wca-table th,
.bp-table tbody td,
.bp-table thead th {
  color: var(--dark-gray) !important;
}

/* â”€â”€ Order data inside account â”€â”€ */
.woocommerce-orders-table__cell-order-number a,
.wca-order-total-text,
.bp-line-total,
.bp-addr-body strong {
  color: var(--dark-gray) !important;
}

/* â”€â”€ WCA card title â”€â”€ */
.wca-card-title,
.wca-header-text h1 {
  color: var(--dark-gray) !important;
}

/* â”€â”€ Buttons with dark background â”€â”€ */
.wca-coupon-wrap button,
.wca-btn-primary,
#shop-filter-btn,
#shop-filter-apply,
.shop-modal-header>span {
  background-color: var(--dark-gray) !important;
  border-color: var(--dark-gray) !important;
}

/* â”€â”€ Checkout billing/shipping headings â”€â”€ */
.woocommerce-billing-fields h3,
.woocommerce-additional-fields h3,
h3#order_review_heading,
.woocommerce-Address-title h3,
.cart_totals h2,
.woocommerce h2 {
  color: var(--dark-gray) !important;
}

/* â”€â”€ Meta boxes on order received â”€â”€ */
.bp-meta-box .val {
  color: var(--dark-gray) !important;
}

/* â”€â”€ Address body text â”€â”€ */
.bp-addr-body,
.woocommerce-Address address {
  color: var(--dark-gray) !important;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   WOOCOMMERCE: HEAVY ORDER NOTICE STYLING (RED BUT NON-BLOCKING)
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.wca-heavy-order-msg {
  color: var(--wca-danger, #d32f2f) !important;
  font-weight: 500 !important;
  display: block;
}

/* Classic WooCommerce notice override */
.woocommerce-info:has(.wca-heavy-order-msg) {
  border-top-color: var(--wca-danger, #d32f2f) !important;
  background-color: var(--wca-danger-bg, #fdecea) !important;
}

.woocommerce-info:has(.wca-heavy-order-msg)::before {
  color: var(--wca-danger, #d32f2f) !important;
}

/* WooCommerce Blocks notice override */
.wc-block-components-notice-banner.is-info:has(.wca-heavy-order-msg),
.wc-block-components-notice-banner.is-warning:has(.wca-heavy-order-msg) {
  border-left-color: var(--wca-danger, #d32f2f) !important;
  background-color: var(--wca-danger-bg, #fdecea) !important;
}

/* ============================================================
   12. WOOCOMMERCE: MY ACCOUNT (WCA-) â€” PREMIUM STYLES
   ============================================================ */

/* â”€â”€ RESET WOOCOMMERCE DEFAULTS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.woocommerce-account .woocommerce {
  background: var(--wca-surface);
  min-height: 60vh;
}

/* â”€â”€ ACCOUNT WRAPPER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.wca-wrapper {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  margin: 0;
  padding: 0;
  align-items: start;
}

@media (max-width: 900px) {
  .wca-wrapper {
    grid-template-columns: 1fr;
  }
}

/* â”€â”€ HERO / WELCOME BANNER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.wca-hero {
  padding: 0;
  position: relative;
  overflow: hidden;
}

.wca-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.wca-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 52px;
  clip-path: ellipse(58% 100% at 50% 100%);
}

.wca-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.wca-hero-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  border: 2.5px solid rgba(255, 255, 255, .4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  color: #fff;
  margin: 0 auto 14px;
  backdrop-filter: blur(6px);
  transition: transform .3s;
}

.wca-hero-avatar:hover {
  transform: scale(1.06);
}

.wca-hero-avatar img {
  width: 60%;
  height: 60%;
  border-radius: 60%;
  object-fit: cover;
}

.wca-hero h1 {
  font-size: 1.75rem;
  margin-bottom: 6px;
  font-weight: 700;
}

.wca-hero p {
  color: rgba(255, 255, 255, .68);
  font-size: .88rem;
  margin: 0;
}

/* â”€â”€ SIDEBAR NAVIGATION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.wca-sidebar {
  background: var(--wca-card);
  border-radius: 5px !important;
  box-shadow: var(--wca-shadow);
  overflow: hidden;
  position: sticky;
  top: 24px;
}

.wca-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wca-nav li {
  border-bottom: 1px solid var(--wca-border);
}

.wca-nav li:last-child {
  border-bottom: none;
}

.wca-nav a,
.woocommerce-MyAccount-navigation ul li a {
  display: flex !important;
  align-items: center;
  gap: 11px;
  padding: 13px 20px !important;
  color: #000000 !important;
  font-size: .88rem !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  transition: background .15s, color .15s, padding-left .18s !important;
  position: relative;
}

.wca-nav a::before,
.woocommerce-MyAccount-navigation ul li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--wca-brand);
  transform: scaleY(0);
  transition: transform .18s;
  border-radius: 0 3px 3px 0;
}

.wca-nav a:hover,
.woocommerce-MyAccount-navigation ul li a:hover,
.wca-nav li.is-active a,
.woocommerce-MyAccount-navigation ul li.is-active a {
  color: var(--wca-brand) !important;
  padding-left: 26px !important;
}

.wca-nav a:hover::before,
.woocommerce-MyAccount-navigation ul li a:hover::before,
.wca-nav li.is-active a::before,
.woocommerce-MyAccount-navigation ul li.is-active a::before {
  transform: scaleY(1);
}

.wca-nav a i {
  width: 18px;
  text-align: center;
  color: var(--wca-muted);
  font-size: .9rem;
  transition: color .15s;
}

.wca-nav a:hover i,
.wca-nav li.is-active a i {
  color: var(--wca-brand);
}

.wca-nav-badge {
  margin-left: auto;
  background: var(--base-color);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  line-height: 1.5;
}

.wca-nav li.wca-logout a {
  color: var(--wca-danger) !important;
}

.wca-nav li.wca-logout a i {
  color: var(--wca-danger);
}

.wca-nav li.wca-logout a:hover {
  background: var(--wca-danger-bg) !important;
}

/* â”€â”€ CONTENT CARDS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.wca-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.wca-card {
  background: var(--wca-card);
  border-radius: var(--wca-radius);
  box-shadow: var(--wca-shadow);
  padding: 28px 30px;
  animation: wca-fadein .35s ease both;
}

@media (max-width: 768px) {
  .wca-card {
    padding: 20px 15px !important;
    overflow: hidden !important;
  }
}

@keyframes wca-fadein {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wca-card-title {
  font-family: var(--primary-font);
  font-size: 1.15rem;
  color: var(--wca-brand);
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 1.5px solid var(--wca-border);
  display: flex;
  align-items: center;
  gap: 9px;
}

.wca-card-title i {
  font-size: .95rem;
  opacity: .7;
}

/* â”€â”€ STAT CARDS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.wca-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .wca-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

.wca-stat {
  background: #ffffff;
  border: 1px solid var(--wca-border);
  border-radius: var(--wca-radius-sm);
  padding: 18px 14px;
  text-align: center;
  transition: box-shadow .2s, transform .2s;
  cursor: default;
}

.wca-stat:hover {
  box-shadow: var(--wca-shadow-sm);
  transform: translateY(-3px);
}

.wca-stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 1rem;
}

.wca-stat-value {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--wca-brand);
  line-height: 1;
}

.wca-stat-label {
  font-size: .76rem;
  color: var(--wca-muted);
  margin-top: 4px;
}

/* â”€â”€ ORDER TABLE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.wca-table {
  width: 100% !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  table-layout: auto !important;
  margin: 0 !important;
}

.wca-table thead th {
  background: var(--wca-surface) !important;
  color: var(--wca-muted) !important;
  font-size: .75rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: .7px !important;
  padding: 14px 16px !important;
  border-bottom: 1px solid var(--wca-border) !important;
}

.wca-table thead th:first-child {
  border-radius: 8px 0 0 0 !important;
}

.wca-table thead th:last-child {
  border-radius: 0 8px 0 0 !important;
  text-align: right !important;
}

.wca-table tbody tr.order {
  display: table-row !important;
  transition: background .12s !important;
}

.wca-table tbody tr.order:hover td {
  background: #fafbfd !important;
}

.wca-table tbody td {
  display: table-cell !important;
  padding: 16px 16px !important;
  font-size: .88rem !important;
  border-bottom: 1px solid var(--wca-border) !important;
  vertical-align: middle !important;
  white-space: nowrap !important;
  color: var(--dark-gray) !important;
}

.wca-table tbody tr:last-child td {
  border-bottom: none !important;
}

.wca-table td:last-child {
  text-align: right !important;
}

.wca-table .woocommerce-orders-table__cell-order-number { width: 12%; }
.wca-table .woocommerce-orders-table__cell-order-date { width: 22%; }
.wca-table .woocommerce-orders-table__cell-order-status { width: 18%; }
.wca-table .woocommerce-orders-table__cell-order-total { width: 48%; white-space: normal !important; }

/* Actions row styling for desktop */
.wca-table tbody tr.wca-actions-row td {
  padding: 0 16px 15px !important;
  border-bottom: 1px solid var(--wca-border) !important;
}

.wca-table tbody tr:last-child.wca-actions-row td {
  border-bottom: none !important;
}

/* â”€â”€ RESPONSIVE ORDERS TABLE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1200px) {
  /* Hidem la columna Total de forma agressiva per evitar problemes en responsive */
  .woocommerce-account table.woocommerce-orders-table th.woocommerce-orders-table__header-order-total,
  .woocommerce-account table.woocommerce-orders-table td.woocommerce-orders-table__cell-order-total,
  .woocommerce-account .wca-table th.woocommerce-orders-table__header-order-total,
  .woocommerce-account .wca-table td.woocommerce-orders-table__cell-order-total,
  th.woocommerce-orders-table__header-order-total,
  td.woocommerce-orders-table__cell-order-total {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    position: absolute !important;
  }
}

@media (max-width: 1200px) {

  .wca-table, 
  .wca-table thead, 
  .wca-table tbody, 
  .wca-table th, 
  .wca-table td, 
  .wca-table tr,
  .shop_table_responsive,
  .shop_table_responsive thead,
  .shop_table_responsive tbody,
  .shop_table_responsive tr,
  .shop_table_responsive td {
    display: block !important;
    width: 100% !important;
  }

  .wca-table thead,
  .shop_table_responsive thead {
    display: none !important;
  }

  .wca-table tbody tr.order,
  .shop_table_responsive tbody tr.order {
    border: 1px solid var(--wca-border) !important;
    border-radius: 12px 12px 0 0 !important;
    margin-top: 25px !important;
    padding: 15px 15px 5px !important;
    background: #ffffff !important;
    position: relative !important;
    border-bottom: none !important;
    box-shadow: var(--wca-shadow-sm) !important;
  }

  .wca-table tbody tr.wca-actions-row,
  .shop_table_responsive tbody tr.wca-actions-row {
    border: 1px solid var(--wca-border) !important;
    border-top: 1px dashed var(--wca-border) !important;
    border-radius: 0 0 12px 12px !important;
    margin-bottom: 25px !important;
    padding: 10px 15px 15px !important;
    background: #fdfdfd !important;
    box-shadow: var(--wca-shadow-sm) !important;
  }

  .wca-table tbody td,
  .shop_table_responsive tbody td {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    border-bottom: 1px solid #f4f4f4 !important;
    padding: 12px 0 !important;
    white-space: normal !important;
    text-align: right !important;
  }

  .wca-table tbody tr.order td:last-child,
  .shop_table_responsive tbody tr.order td:last-child {
    border-bottom: none !important;
  }

  .wca-table tbody td::before,
  .shop_table_responsive tbody td::before {
    content: attr(data-title) !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 0.68rem !important;
    color: var(--wca-muted) !important;
    text-align: left !important;
    flex-shrink: 0 !important;
    display: block !important;
  }

  .wca-table tbody td.woocommerce-orders-table__cell-order-total,
  .shop_table_responsive tbody td.woocommerce-orders-table__cell-order-total {
    display: none !important;
  }

  .wca-table tbody tr.wca-actions-row td {
    border: none !important;
    text-align: center !important;
    padding: 0 !important;
  }

  .wca-table tbody tr.wca-actions-row td::before {
    display: none !important;
  }

  .wca-actions-flex {
    justify-content: center !important;
    margin-top: 0 !important;
  }

  .wca-actions-flex .wca-btn {
    width: 100% !important;
    height: 40px !important;
    font-size: 13px !important;
  }
}

/* â”€â”€ STATUS BADGES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.wca-badge {
  display: inline-block;
  font-size: .71rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: .3px;
}

.wca-badge-completed {
  background: var(--wca-success-bg);
  color: var(--wca-success);
}

.wca-badge-processing {
  background: var(--wca-warning-bg);
  color: var(--wca-warning);
}

.wca-badge-on-hold {
  background: #e8eeff;
  color: #3050a0;
}

.wca-badge-cancelled {
  background: var(--wca-danger-bg);
  color: var(--wca-danger);
}

.wca-badge-refunded {
  background: #f3e8ff;
  color: #6030a0;
}

.wca-badge-pending {
  background: #f0f0f5;
  color: var(--wca-muted);
}

/* â”€â”€ BUTTONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.wca-btn,
.woocommerce-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  font-size: .85rem !important;
  font-weight: 600 !important;
  padding: 10px 22px !important;
  border-radius: var(--wca-radius-sm) !important;
  border: 2px solid var(--wca-brand) !important;
  color: #ffffff !important;
  background: var(--wca-brand) !important;
  cursor: pointer;
  transition: all .2s ease !important;
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(244, 119, 34, 0.15);
}

.wca-btn:hover,
.woocommerce-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: #ffffff !important;
  color: var(--wca-brand) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(244, 119, 34, 0.25);
}

/* â”€â”€ ADDRESS BLOCKS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.wca-address-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width: 600px) {
  .wca-address-grid {
    grid-template-columns: 1fr;
  }
}

.wca-address-block {
  background: #fbfbfb;
  border: 1px solid var(--wca-border);
  border-radius: var(--wca-radius-sm);
  padding: 20px 22px;
  position: relative;
  transition: box-shadow .2s;
}

.wca-address-block:hover {
  box-shadow: var(--wca-shadow-sm);
}

.wca-address-type {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--wca-muted);
  margin-bottom: 10px;
}

.wca-address-block address {
  font-size: .86rem;
  line-height: 1.75;
  color: var(--wca-text);
  font-style: normal;
  margin: 0;
}

/* â”€â”€ FORMS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.wca-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 600px) {
  .wca-form-grid {
    grid-template-columns: 1fr;
  }
}

.wca-label,
.woocommerce-account .woocommerce label {
  font-size: .8rem !important;
  font-weight: 600 !important;
  color: var(--wca-muted) !important;
  margin-bottom: 6px !important;
  letter-spacing: .2px;
}

.wca-input,
.woocommerce-account .woocommerce input[type="text"],
.woocommerce-account .woocommerce input[type="email"],
.woocommerce-account .woocommerce input[type="password"],
.woocommerce-account .woocommerce input[type="tel"],
.woocommerce-account .woocommerce select,
.woocommerce-account .woocommerce textarea {
  border: 1.5px solid var(--wca-border) !important;
  border-radius: var(--wca-radius-sm) !important;
  font-size: .87rem !important;
  padding: 9px 13px !important;
  color: var(--wca-text) !important;
  background: var(--wca-card) !important;
  transition: border-color .15s, box-shadow .15s !important;
  width: 100% !important;
}

.woocommerce-form-login__rememberme input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  margin-right: 8px !important;
  accent-color: var(--wca-brand) !important;
  cursor: pointer;
  vertical-align: middle;
}

.woocommerce-form-login__rememberme span {
  vertical-align: middle;
  font-size: .85rem;
}

/* â”€â”€ LOGIN / REGISTER 50/50 â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.customer_login_row {
  margin-top: 20px;
}

.customer_login_row .col-md-6 {
  margin-bottom: 24px;
}

.customer_login_row .wca-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.customer_login_row .wca-card form {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
}

@media (min-width: 768px) {
  .customer_login_row {
    display: flex;
    flex-wrap: wrap;
  }
}


/* -- CHECKOUT LOGIN FORM ---------------------------------- */
.wca-checkout-login-form-wrap {
  animation: wca-fadein .3s ease both;
  padding-top: 35px;
  border-top: 1px solid var(--wca-border);
  margin-top: 15px;
}

.wca-checkout-login-form-wrap form.login {
  border: none !important;
  padding: 0 !important;
  border-radius: var(--wca-radius-sm) !important;
  background: transparent !important;
  margin: 0 !important;
}

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





@container (min-width: 700px) {
    .wc-block-cart .wc-block-cart__totals-title {
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        color: inherit;
        display: inline;
        display: block;
        font-family: inherit;
        font-size: inherit;
        font-size: 14px !important;
        font-style: inherit;
        font-weight: inherit;
        font-weight: 500;
        letter-spacing: inherit;
        line-height: inherit;
        line-height: 1.4;
        margin: 0;
        padding: 8px 16px 10px 0;
        text-align: left;
        text-decoration: inherit;
        text-transform: inherit;
        text-transform: uppercase;
        vertical-align: baseline;
    }
} 


.wc-block-components-totals-coupon__button:hover {
    background: transparent !important;
    color: #ffffff !important;
}


.wc-block-components-text-input label, .wc-block-components-select label, .wc-blocks-components-select label, .wc-block-checkout__billing-fields label, .wc-block-checkout__shipping-fields label {
    font-size: .82rem !important;
    font-weight: 600 !important;
    color: var(--wca-muted) !important;
    margin-bottom: 4px !important;
    display: block;
}


.wc-block-components-text-input input[type="text"], .wc-block-components-text-input input[type="email"], .wc-block-components-text-input input[type="tel"], .wc-block-components-text-input input[type="password"], .wc-block-components-text-input input[type="number"], .wc-block-components-text-input input[type="url"], .wc-block-components-select select, .wc-blocks-components-select select {
    border: 1.5px solid var(--wca-border) !important;
    border-radius: 8px !important;
    padding: 10px 14px !important;
    font-size: 14px;
    color: var(--wca-text) !important;
    background: #fff !important;
    transition: border-color .2s, box-shadow .2s !important;
    height: auto !important;
    line-height: 2.4 !important;
    width: 100% !important;
    margin-bottom: 0 !important;
}


.wc-block-components-totals-wrapper {
    border-top: none;
    padding: 16px 0;
}

.wc-block-components-sidebar-layout .wc-block-components-main {
    box-sizing: border-box;
    margin: 0;
    padding-right: 4.5283018868%;
    width: 63%;
    margin-right: 2%;
}


div.wp-block-woocommerce-cart.alignwide
@container (min-width: 700px) {
    .wc-block-cart__main .wc-block-cart-items th:last-child {
        padding-right: 16px;
        font-size: 14px;
        font-weight: 700;
    }
}

.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__header .wc-block-cart-items__header-image, table.wc-block-cart-items .wc-block-cart-items__header .wc-block-cart-items__header-image {
    width: 80px;
    font-size: 14px;
    font-weight: 700;
}



.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
    font-size: 1.15rem !important;
    font-weight: 600 !important;
    color: #3d3d3c !important;
}


