/*
Theme Name: Custom Theme Child
Template: custom
Description: Child theme for Senso Systems WooCommerce integration
Version: 1.0
License: GNU General Public License v2 or later
*/

/* ============================================
   SENSO WOOCOMMERCE STYLES
   Matches Custom Theme: Filson Pro / Geologica
   Background: #070708, Text: #ffffff
   Buttons: white border, fills white on hover
============================================ */

/* --- Base WooCommerce resets --- */
.woocommerce,
.woocommerce-page {
  background-color: #070708;
  color: #ffffff;
  font-family: "Geologica", sans-serif;
  font-weight: 100;
  font-size: 20px;
  line-height: 150%;
}

.woocommerce a,
.woocommerce-page a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

/* --- Wrapper alignment --- */
.woocommerce .wrapper,
.woocommerce-page .wrapper {
  max-width: 1490px;
  margin: 0 auto;
  padding: 0 25px;
}

/* --- Shop page heading --- */
.woocommerce-products-header__title,
.woocommerce h1.page-title {
  font-family: "filson-pro", sans-serif;
  font-size: 5.556vw;
  font-weight: 600;
  letter-spacing: 4.8px;
  text-transform: uppercase;
  line-height: 110%;
  color: #ffffff;
  margin: 0 0 40px;
}
@media (max-width: 768px) {
  .woocommerce-products-header__title,
  .woocommerce h1.page-title {
    font-size: 40px;
  }
}
@media (min-width: 1300px) {
  .woocommerce-products-header__title,
  .woocommerce h1.page-title {
    font-size: 80px;
  }
}

/* --- Product grid --- */
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 992px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }
}

/* --- Product card --- */
.woocommerce ul.products li.product {
  background-color: #0e0e0f;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  transition: border-color 0.3s;
  margin: 0 !important;
  float: none !important;
  width: 100% !important;
}

.woocommerce ul.products li.product:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

.woocommerce ul.products li.product a img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  margin: 0;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: "filson-pro", sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #ffffff;
  padding: 16px 20px 4px;
  margin: 0;
}

.woocommerce ul.products li.product .price {
  font-family: "Geologica", sans-serif;
  font-size: 18px;
  font-weight: 100;
  color: rgba(255, 255, 255, 0.6);
  padding: 0 20px 20px;
  display: block;
}

.woocommerce ul.products li.product .price ins {
  text-decoration: none;
  color: #ffffff;
}

.woocommerce ul.products li.product .price del {
  color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
}

/* --- Add to cart on archive --- */
.woocommerce ul.products li.product .button {
  display: block;
  margin: 0 20px 20px;
  padding: 12px 15px;
  font-family: "filson-pro", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.18px;
  text-transform: uppercase;
  color: #ffffff;
  background-color: transparent;
  border: 2px solid #ffffff;
  border-radius: 10px;
  text-align: center;
  transition: 0.5s;
  cursor: pointer;
}

.woocommerce ul.products li.product .button:hover {
  background-color: #ffffff;
  color: #070708;
}

/* --- Single product page --- */
.woocommerce div.product {
  padding-top: 280px;
}

.woocommerce div.product div.images {
  width: 50%;
  float: left;
  padding-right: 40px;
}

.woocommerce div.product div.summary {
  width: 50%;
  float: right;
}

@media (max-width: 768px) {
  .woocommerce div.product div.images,
  .woocommerce div.product div.summary {
    width: 100%;
    float: none;
    padding-right: 0;
  }
  .woocommerce div.product {
    padding-top: 120px;
  }
}

.woocommerce div.product .product_title {
  font-family: "filson-pro", sans-serif;
  font-size: 2.222vw;
  font-weight: 500;
  letter-spacing: 1.9px;
  text-transform: uppercase;
  line-height: 125%;
  color: #ffffff;
  margin: 0 0 10px;
}

@media (max-width: 992px) {
  .woocommerce div.product .product_title {
    font-size: 22px;
  }
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  font-family: "Geologica", sans-serif;
  font-size: 28px;
  font-weight: 100;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  display: block;
}

.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins {
  text-decoration: none;
  color: #ffffff;
}

.woocommerce div.product .woocommerce-product-details__short-description {
  font-family: "Geologica", sans-serif;
  font-size: 16px;
  font-weight: 100;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
}

/* --- Add to cart button (single) --- */
.woocommerce div.product form.cart .single_add_to_cart_button,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button {
  font-family: "filson-pro", sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.18px;
  text-transform: uppercase;
  color: #ffffff;
  background-color: transparent;
  border: 2px solid #ffffff;
  border-radius: 10px;
  padding: 15px 30px;
  transition: 0.5s;
  cursor: pointer;
  display: inline-block;
}

.woocommerce div.product form.cart .single_add_to_cart_button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background-color: #ffffff;
  color: #070708;
}

/* --- Quantity input --- */
.woocommerce div.product form.cart .qty {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: #ffffff;
  font-family: "Geologica", sans-serif;
  font-size: 18px;
  padding: 10px 15px;
  width: 70px;
  text-align: center;
}

/* --- Cart page --- */
.woocommerce table.shop_table {
  border: none;
  border-collapse: collapse;
  width: 100%;
}

.woocommerce table.shop_table th {
  font-family: "filson-pro", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0 0 12px;
  background: none;
}

.woocommerce table.shop_table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  vertical-align: middle;
  background: none;
  color: #ffffff;
}

.woocommerce table.shop_table .product-name a {
  font-family: "filson-pro", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
}

.woocommerce table.shop_table .product-price,
.woocommerce table.shop_table .product-subtotal {
  font-family: "Geologica", sans-serif;
  font-weight: 100;
  color: rgba(255, 255, 255, 0.6);
}

.woocommerce .cart-collaterals .cart_totals {
  float: right;
  width: 48%;
  background-color: #0e0e0f;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 30px;
}

@media (max-width: 768px) {
  .woocommerce .cart-collaterals .cart_totals {
    width: 100%;
    float: none;
  }
}

.woocommerce .cart-collaterals .cart_totals h2 {
  font-family: "filson-pro", sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 20px;
}

.woocommerce .cart-collaterals .cart_totals table th,
.woocommerce .cart-collaterals .cart_totals table td {
  font-family: "Geologica", sans-serif;
  font-size: 16px;
  font-weight: 100;
  color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.08);
  padding: 10px 0;
  background: none;
}

.woocommerce .cart-collaterals .cart_totals .order-total th,
.woocommerce .cart-collaterals .cart_totals .order-total td {
  color: #ffffff;
  font-size: 20px;
}

/* --- Checkout --- */
.woocommerce-checkout #customer_details h3,
.woocommerce-checkout h3#order_review_heading {
  font-family: "filson-pro", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.woocommerce form .form-row label {
  font-family: "Geologica", sans-serif;
  font-size: 12px;
  font-weight: 100;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  display: block;
  margin-bottom: 6px;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea {
  background-color: #0e0e0f;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: #ffffff;
  font-family: "Geologica", sans-serif;
  font-size: 16px;
  font-weight: 100;
  padding: 12px 16px;
  width: 100%;
  transition: border-color 0.3s;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row select:focus {
  border-color: rgba(255, 255, 255, 0.5);
  outline: none;
}

/* --- Order review box at checkout --- */
#order_review {
  background-color: #0e0e0f;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 30px;
}

#order_review table.shop_table th,
#order_review table.shop_table td {
  font-size: 15px;
}

/* --- Notices / messages --- */
.woocommerce-message,
.woocommerce-info {
  background-color: #0e0e0f;
  border-top-color: #ffffff;
  color: #ffffff;
  font-family: "Geologica", sans-serif;
  font-weight: 100;
}

.woocommerce-error {
  background-color: #0e0e0f;
  border-top-color: rgba(255, 60, 60, 0.8);
  color: #ffffff;
  font-family: "Geologica", sans-serif;
  font-weight: 100;
}

.woocommerce-message::before,
.woocommerce-info::before {
  color: #ffffff;
}

/* --- Breadcrumb --- */
.woocommerce .woocommerce-breadcrumb {
  font-family: "Geologica", sans-serif;
  font-size: 13px;
  font-weight: 100;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.woocommerce .woocommerce-breadcrumb a {
  color: rgba(255, 255, 255, 0.3);
}

.woocommerce .woocommerce-breadcrumb a:hover {
  color: #ffffff;
}

/* --- Tabs on single product --- */
.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0;
  list-style: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: none;
  border: none;
  border-radius: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  font-family: "filson-pro", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  padding: 12px 20px;
  display: block;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: #ffffff;
  border-bottom: 2px solid #ffffff;
}

.woocommerce div.product .woocommerce-tabs .panel {
  background: none;
  border: none;
  padding: 30px 0;
  font-family: "Geologica", sans-serif;
  font-weight: 100;
  font-size: 16px;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.6);
}

/* --- Related products heading --- */
.woocommerce .related h2,
.woocommerce .upsells h2 {
  font-family: "filson-pro", sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 30px;
}

/* --- Pagination --- */
.woocommerce nav.woocommerce-pagination ul {
  border: none;
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 60px;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: none;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  font-family: "filson-pro", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 8px 14px;
  transition: 0.3s;
  background: none;
}

.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
  color: #ffffff;
  border-color: #ffffff;
  background: none;
}

/* --- Category filter pills (if using plugin) --- */
.woocommerce .widget_product_categories ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.woocommerce .widget_product_categories ul li a {
  font-family: "filson-pro", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.5);
  transition: 0.3s;
}

.woocommerce .widget_product_categories ul li a:hover,
.woocommerce .widget_product_categories ul li.current-cat a {
  border-color: #ffffff;
  color: #ffffff;
}

/* --- Sale badge --- */
.woocommerce ul.products li.product .onsale,
.woocommerce span.onsale {
  background-color: #ffffff;
  color: #070708;
  font-family: "filson-pro", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 4px 10px;
  min-height: auto;
  line-height: normal;
}

/* --- Remove default WooCommerce star ratings colour --- */
.woocommerce .star-rating span::before,
.woocommerce .star-rating::before {
  color: rgba(255, 255, 255, 0.3);
}

/* --- Grid fix: override WooCommerce float layout --- */
.woocommerce ul.products,
.woocommerce-page ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
  float: none !important;
  clear: both !important;
}
@media (max-width: 992px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 480px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: 1fr !important;
  }
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  clear: none !important;
}

/* --- Shop page top padding to clear fixed header --- */
.woocommerce .woocommerce-products-header,
.woocommerce-page .woocommerce-products-header,
body.woocommerce .entry-content,
body.woocommerce-page .entry-content,
body.woocommerce #primary,
body.woocommerce-page #primary,
.woocommerce-shop .site-main,
body.woocommerce .site-main,
body.post-type-archive-product .site-main {
  padding-top: 180px;
}

/* --- Catch-all for shop content wrapper --- */
body.woocommerce,
body.woocommerce-page,
body.post-type-archive-product,
body.single-product {
  padding-top: 0;
}

.woocommerce-page .page-title,
.woocommerce .page-title {
  padding-top: 160px;
}

/* --- Product image placeholder styling --- */
.woocommerce ul.products li.product a img,
.woocommerce ul.products li.product .woocommerce-placeholder {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  background-color: #111113;
}

/* --- Remove WooCommerce clearing floats that break grid --- */
.woocommerce ul.products::after,
.woocommerce ul.products::before {
  display: none !important;
}


/* ============================================
   SENSO SHOP ARCHIVE TEMPLATE STYLES
============================================ */

.senso-shop-wrap {
  background-color: #070708;
  min-height: 100vh;
  padding: 200px 0 100px;
}

.senso-shop-inner {
  max-width: 1490px;
  margin: 0 auto;
  padding: 0 25px;
}

.senso-shop-title {
  font-family: "filson-pro", sans-serif;
  font-size: 5.556vw;
  font-weight: 600;
  letter-spacing: 4.8px;
  text-transform: uppercase;
  line-height: 110%;
  color: #ffffff;
  margin: 0 0 40px;
}
@media (max-width: 768px) {
  .senso-shop-title { font-size: 40px; }
}
@media (min-width: 1300px) {
  .senso-shop-title { font-size: 80px; }
}

/* Category filter pills */
.senso-cat-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.senso-cat-pill {
  font-family: "filson-pro", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 18px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: 0.3s;
  white-space: nowrap;
}

.senso-cat-pill:hover,
.senso-cat-pill.active {
  border-color: #ffffff;
  color: #ffffff;
}

/* Product grid */
.senso-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0 0 60px;
}
@media (max-width: 992px) {
  .senso-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .senso-product-grid {
    grid-template-columns: 1fr;
  }
}

/* Product card */
.senso-product-card {
  background-color: #0e0e0f;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.3s;
  display: flex;
  flex-direction: column;
}

.senso-product-card:hover {
  border-color: rgba(255,255,255,0.35);
}

.senso-product-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Product image */
.senso-product-img {
  position: relative;
  aspect-ratio: 1;
  background-color: #111113;
  overflow: hidden;
}

.senso-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.senso-product-card:hover .senso-product-img img {
  transform: scale(1.03);
}

.senso-no-img {
  width: 100%;
  height: 100%;
  background-color: #111113;
}

.senso-product-brand {
  position: absolute;
  top: 14px;
  left: 16px;
  font-family: "filson-pro", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  z-index: 2;
}

.senso-sale-badge {
  position: absolute;
  top: 14px;
  right: 16px;
  font-family: "filson-pro", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background-color: #ffffff;
  color: #070708;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
}

/* Product info */
.senso-product-info {
  padding: 16px 20px 12px;
  flex: 1;
}

.senso-product-name {
  font-family: "filson-pro", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 4px;
  line-height: 130%;
}

.senso-product-cat {
  font-family: "Geologica", sans-serif;
  font-size: 12px;
  font-weight: 100;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 10px;
}

.senso-product-price {
  font-family: "Geologica", sans-serif;
  font-size: 18px;
  font-weight: 100;
  color: rgba(255,255,255,0.65);
}

.senso-product-price del {
  color: rgba(255,255,255,0.25);
  font-size: 14px;
  margin-right: 6px;
}

.senso-product-price span {
  color: #ffffff;
}

.senso-price-enquire {
  font-family: "filson-pro", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* Add to cart / enquire button */
.senso-product-actions {
  padding: 0 20px 20px;
}

.senso-product-actions .button,
.senso-product-actions a.button {
  display: block;
  width: 100%;
  padding: 12px;
  font-family: "filson-pro", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  background-color: transparent;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  text-align: center;
  transition: 0.4s;
  cursor: pointer;
  box-sizing: border-box;
}

.senso-product-actions .button:hover,
.senso-product-actions a.button:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #070708;
}

.senso-enquire-btn {
  display: block;
  width: 100%;
  padding: 12px;
  font-family: "filson-pro", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  background-color: transparent;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  text-align: center;
  transition: 0.4s;
  text-decoration: none;
  box-sizing: border-box;
}

.senso-enquire-btn:hover {
  border-color: rgba(255,255,255,0.5);
  color: #ffffff;
}


/* --- Sorting dropdown --- */
.woocommerce-ordering {
  margin-bottom: 30px;
}

.woocommerce-ordering select.orderby {
  background-color: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  color: rgba(255,255,255,0.5);
  font-family: "filson-pro", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 32px 7px 14px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: border-color 0.3s, color 0.3s;
}

.woocommerce-ordering select.orderby:hover,
.woocommerce-ordering select.orderby:focus {
  border-color: rgba(255,255,255,0.5);
  color: #ffffff;
  outline: none;
}

/* Hide result count text */
.woocommerce-result-count {
  display: none;
}

/* --- Product search --- */
.senso-search-wrap {
  margin-bottom: 20px;
}

.senso-search-form {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 400px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.senso-search-form:focus-within {
  border-color: rgba(255,255,255,0.5);
}

.senso-search-input {
  flex: 1;
  background: transparent;
  border: none;
  color: #ffffff;
  font-family: "Geologica", sans-serif;
  font-size: 13px;
  font-weight: 100;
  padding: 10px 16px;
  outline: none;
}

.senso-search-input::placeholder {
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}

.senso-search-btn {
  background: transparent;
  border: none;
  border-left: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.4);
  padding: 10px 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: color 0.3s;
}

.senso-search-btn:hover {
  color: #ffffff;
}

/* ============================================
   SINGLE PRODUCT PAGE
============================================ */

.senso-pdp-wrap {
  background-color: #070708;
  min-height: 100vh;
  padding: 160px 0 100px;
}

.senso-pdp-inner {
  max-width: 1490px;
  margin: 0 auto;
  padding: 0 25px;
}

.senso-pdp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Geologica", sans-serif;
  font-size: 11px;
  font-weight: 100;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 40px;
}

.senso-pdp-breadcrumb a {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.3s;
}

.senso-pdp-breadcrumb a:hover { color: #ffffff; }

.senso-pdp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 768px) {
  .senso-pdp-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .senso-pdp-wrap { padding: 120px 0 60px; }
}

/* Images */
.senso-pdp-main-img {
  width: 100%;
  aspect-ratio: 1;
  background-color: #111113;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  margin-bottom: 10px;
}

.senso-pdp-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.senso-pdp-no-img {
  width: 100%;
  aspect-ratio: 1;
  background-color: #111113;
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 10px;
}

.senso-pdp-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.senso-pdp-thumb {
  width: 70px;
  height: 70px;
  background-color: #111113;
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s;
}

.senso-pdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.senso-pdp-thumb.active,
.senso-pdp-thumb:hover { border-color: #ffffff; }

/* Details */
.senso-pdp-brand {
  font-family: "filson-pro", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}

.senso-pdp-title {
  font-family: "filson-pro", sans-serif;
  font-size: 2.4vw;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 6px;
}

@media (max-width: 992px) {
  .senso-pdp-title { font-size: 24px; }
}

.senso-pdp-cat {
  font-family: "Geologica", sans-serif;
  font-size: 12px;
  font-weight: 100;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}

.senso-pdp-price {
  font-family: "Geologica", sans-serif;
  font-size: 28px;
  font-weight: 100;
  color: rgba(255,255,255,0.7);
  margin-bottom: 4px;
}

.senso-pdp-price del {
  color: rgba(255,255,255,0.25);
  font-size: 18px;
  margin-right: 8px;
}

.senso-pdp-price span { color: #ffffff; }

.senso-price-enquire {
  font-family: "filson-pro", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.senso-pdp-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 20px 0;
}

.senso-pdp-short-desc {
  font-family: "Geologica", sans-serif;
  font-size: 14px;
  font-weight: 100;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
}

/* Actions */
.senso-pdp-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}

.senso-pdp-actions .single_add_to_cart_button,
.senso-pdp-actions button[type="submit"] {
  font-family: "filson-pro", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #070708;
  background-color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 4px;
  padding: 14px 24px;
  cursor: pointer;
  transition: 0.4s;
  width: 100%;
  text-align: center;
}

.senso-pdp-actions .single_add_to_cart_button:hover,
.senso-pdp-actions button[type="submit"]:hover {
  background-color: transparent;
  color: #ffffff;
}

.senso-pdp-enquire-btn,
.senso-pdp-showroom-btn {
  display: block;
  font-family: "filson-pro", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  background-color: transparent;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  padding: 13px 24px;
  cursor: pointer;
  transition: 0.4s;
  text-align: center;
  text-decoration: none;
}

.senso-pdp-enquire-btn:hover,
.senso-pdp-showroom-btn:hover {
  border-color: rgba(255,255,255,0.5);
  color: #ffffff;
}

.senso-pdp-note {
  font-family: "Geologica", sans-serif;
  font-size: 11px;
  font-weight: 100;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
  text-align: center;
}

.senso-pdp-note a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
}

.senso-pdp-desc {
  font-family: "Geologica", sans-serif;
  font-size: 14px;
  font-weight: 100;
  line-height: 1.75;
  color: rgba(255,255,255,0.4);
}

/* Quantity input from WooCommerce */
.senso-pdp-actions .quantity {
  display: none;
}

.woocommerce div.product form.cart {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* --- Product image carousel --- */
.senso-pdp-swiper {
  width: 100%;
  margin-bottom: 10px;
  position: relative;
}

.senso-pdp-swiper .senso-pdp-main-img {
  margin-bottom: 0;
}

.senso-pdp-thumbs-swiper {
  width: 100%;
  margin-top: 8px;
}

.senso-pdp-thumbs-swiper .senso-pdp-thumb {
  width: 70px !important;
  height: 70px;
  opacity: 0.5;
  transition: opacity 0.3s, border-color 0.3s;
  cursor: pointer;
}

.senso-pdp-thumbs-swiper .swiper-slide-thumb-active .senso-pdp-thumb,
.senso-pdp-thumbs-swiper .senso-pdp-thumb:hover {
  opacity: 1;
  border-color: #ffffff;
}

.senso-swiper-prev,
.senso-swiper-next {
  color: rgba(255,255,255,0.6) !important;
  width: 36px !important;
  height: 36px !important;
  background: rgba(0,0,0,0.4);
  border-radius: 50%;
  transition: background 0.3s, color 0.3s;
}

.senso-swiper-prev:hover,
.senso-swiper-next:hover {
  background: rgba(0,0,0,0.7);
  color: #ffffff !important;
}

.senso-swiper-prev::after,
.senso-swiper-next::after {
  font-size: 14px !important;
}

/* --- Pagination styling --- */
.woocommerce-pagination {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.woocommerce-pagination ul.page-numbers {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.woocommerce-pagination ul.page-numbers li {
  display: flex;
}

.woocommerce-pagination ul.page-numbers a.page-numbers,
.woocommerce-pagination ul.page-numbers span.page-numbers {
  font-family: "filson-pro", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 8px 14px;
  text-decoration: none;
  transition: 0.3s;
  background: transparent;
  min-width: 40px;
  text-align: center;
}

.woocommerce-pagination ul.page-numbers a.page-numbers:hover {
  color: #ffffff;
  border-color: rgba(255,255,255,0.4);
}

.woocommerce-pagination ul.page-numbers span.current {
  color: #ffffff;
  border-color: #ffffff;
}

.woocommerce-pagination ul.page-numbers a.next,
.woocommerce-pagination ul.page-numbers a.prev {
  font-size: 16px;
  padding: 6px 14px;
}

/* --- Fix incomplete last row in grid --- */
.senso-product-grid::after {
  content: '';
  grid-column: span 1;
}

/* Hide WooCommerce loop clearfix elements that break grid */
.senso-product-grid .clear,
.senso-product-grid .woocommerce-loop-product__link + br {
  display: none !important;
}

/* ============================================
   CART PAGE
============================================ */

.senso-cart-wrap {
  background-color: #070708;
  min-height: 100vh;
  padding: 160px 0 100px;
}

.senso-cart-inner {
  max-width: 1490px;
  margin: 0 auto;
  padding: 0 25px;
  display: grid;
  grid-template-columns: 1fr 380px;
  grid-template-rows: auto auto auto;
  gap: 0 60px;
  align-items: start;
}

.senso-cart-inner .senso-shop-title {
  grid-column: 1 / -1;
}

.senso-cart-inner .woocommerce-cart-form {
  grid-column: 1;
}

.senso-cart-inner .senso-cart-collaterals {
  grid-column: 2;
  grid-row: 2 / 4;
}

.senso-cart-inner .senso-cart-actions {
  grid-column: 1;
}

@media (max-width: 768px) {
  .senso-cart-inner {
    grid-template-columns: 1fr;
    padding: 120px 25px 60px;
  }
  .senso-cart-inner .senso-cart-collaterals {
    grid-column: 1;
    grid-row: auto;
  }
}

/* Cart table */
.senso-cart-table {
  width: 100%;
  margin-bottom: 20px;
}

.senso-cart-header {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 16px;
  padding: 0 0 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: "filson-pro", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.senso-cart-header .right { text-align: right; }

.senso-cart-row {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  align-items: center;
}

.senso-cart-product {
  display: flex;
  align-items: center;
  gap: 14px;
}

.senso-cart-img {
  width: 60px;
  height: 60px;
  background: #111113;
  border: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
  overflow: hidden;
}

.senso-cart-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.senso-cart-product-name a {
  font-family: "filson-pro", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.senso-cart-product-name a:hover { color: rgba(255,255,255,0.6); }

.senso-cart-remove {
  display: inline-block;
  margin-top: 4px;
  font-family: "Geologica", sans-serif;
  font-size: 10px;
  font-weight: 100;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  text-decoration: none;
  transition: color 0.3s;
}

.senso-cart-remove:hover { color: rgba(255,255,255,0.6); }

.senso-cart-price,
.senso-cart-subtotal {
  font-family: "Geologica", sans-serif;
  font-size: 15px;
  font-weight: 100;
  color: rgba(255,255,255,0.6);
}

.senso-cart-subtotal.right { text-align: right; color: #ffffff; }

/* Qty input */
.senso-cart-qty .quantity input {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  color: #ffffff;
  font-family: "Geologica", sans-serif;
  font-size: 14px;
  font-weight: 100;
  padding: 6px 10px;
  width: 60px;
  text-align: center;
}

/* Cart actions */
.senso-cart-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 40px;
}

.senso-cart-continue {
  font-family: "filson-pro", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.3s;
}

.senso-cart-continue:hover { color: #ffffff; }

.senso-cart-update {
  font-family: "filson-pro", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  padding: 8px 18px;
  cursor: pointer;
  transition: 0.3s;
}

.senso-cart-update:hover {
  border-color: rgba(255,255,255,0.4);
  color: #ffffff;
}

/* Cart totals */
.senso-cart-totals {
  background: #0e0e0f;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 28px;
}

.senso-cart-totals-title {
  font-family: "filson-pro", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin: 0 0 20px;
}

.senso-cart-totals-rows {
  border-top: 1px solid rgba(255,255,255,0.06);
}

.senso-cart-totals-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: "Geologica", sans-serif;
  font-size: 13px;
  font-weight: 100;
  color: rgba(255,255,255,0.5);
}

.senso-cart-total {
  color: #ffffff;
  font-size: 16px;
  padding: 16px 0;
}

.senso-checkout-btn {
  display: block;
  width: 100%;
  margin-top: 20px;
  padding: 14px;
  font-family: "filson-pro", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #070708;
  background: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  transition: 0.4s;
  box-sizing: border-box;
}

.senso-checkout-btn:hover {
  background: transparent;
  color: #ffffff;
}

/* ============================================
   CHECKOUT PAGE
============================================ */

/* Hide express checkout section */
.wc-block-components-express-payment,
.wc-block-components-express-payment-continue-rule,
.wp-block-woocommerce-checkout-express-payment-block {
  display: none !important;
}

/* Checkout wrapper */
.wp-block-woocommerce-checkout,
.woocommerce-checkout {
  background-color: #070708;
  color: #ffffff;
  font-family: "Geologica", sans-serif;
  font-weight: 100;
  padding-top: 160px;
  max-width: 1490px;
  margin: 0 auto;
  padding-left: 25px;
  padding-right: 25px;
  padding-bottom: 100px;
}

/* Block checkout headings */
.wc-block-components-checkout-step__title,
.wp-block-woocommerce-checkout h2,
.woocommerce-checkout h3 {
  font-family: "filson-pro", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

/* Form inputs */
.wc-block-components-text-input input,
.wc-block-components-select select,
.woocommerce-checkout .input-text,
.woocommerce-checkout select,
.wc-block-components-country-input input,
.wc-block-components-address-form input {
  background-color: #0e0e0f !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  border-radius: 4px !important;
  color: #ffffff !important;
  font-family: "Geologica", sans-serif !important;
  font-size: 14px !important;
  font-weight: 100 !important;
  padding: 12px 16px !important;
}

.wc-block-components-text-input input:focus,
.woocommerce-checkout .input-text:focus {
  border-color: rgba(255,255,255,0.4) !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Labels */
.wc-block-components-text-input label,
.wc-block-components-select label,
.woocommerce-checkout label {
  font-family: "filson-pro", sans-serif !important;
  font-size: 10px !important;
  font-weight: 500 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.3) !important;
}

/* Order summary sidebar */
.wc-block-components-order-summary,
.woocommerce-checkout-review-order {
  background: #0e0e0f;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 24px;
}

.wc-block-components-order-summary-item__description,
.wc-block-components-totals-item {
  color: rgba(255,255,255,0.6);
  font-family: "Geologica", sans-serif;
  font-weight: 100;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  color: #ffffff !important;
  font-size: 16px;
}

/* Place order button */
.wc-block-components-checkout-place-order-button,
.woocommerce-checkout #place_order {
  font-family: "filson-pro", sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: #070708 !important;
  background: #ffffff !important;
  border: 2px solid #ffffff !important;
  border-radius: 4px !important;
  padding: 14px 24px !important;
  width: 100% !important;
  transition: 0.4s !important;
  cursor: pointer !important;
}

.wc-block-components-checkout-place-order-button:hover,
.woocommerce-checkout #place_order:hover {
  background: transparent !important;
  color: #ffffff !important;
}

/* Payment section */
.wc-block-components-payment-method-label {
  color: #ffffff;
  font-family: "Geologica", sans-serif;
  font-weight: 100;
}

.wc-block-components-radio-control__option {
  border-color: rgba(255,255,255,0.15) !important;
  background: #0e0e0f !important;
}

/* --- Checkout input floating label fixes --- */

/* Hide the floating label when input has value or is focused */
.wc-block-components-text-input.is-active label,
.wc-block-components-text-input input:focus ~ label,
.wc-block-components-text-input input:not(:placeholder-shown) ~ label {
  font-size: 9px !important;
  top: 6px !important;
  color: rgba(255,255,255,0.3) !important;
}

/* Vertically centre the input text */
.wc-block-components-text-input input,
.wc-block-components-select select,
.wc-block-components-country-input input,
.wc-block-components-address-form input {
  padding-top: 20px !important;
  padding-bottom: 8px !important;
  height: auto !important;
  line-height: normal !important;
}

/* Label sits inside input by default */
.wc-block-components-text-input label {
  top: 50% !important;
  transform: translateY(-50%) !important;
  transition: all 0.2s ease !important;
  pointer-events: none !important;
  position: absolute !important;
  left: 16px !important;
}

/* When active, label moves up */
.wc-block-components-text-input.is-active label {
  top: 8px !important;
  transform: none !important;
  font-size: 9px !important;
}

/* Stripe card iframe fields - dark background */
.wc-block-components-payment-method-label__img + .wc-block-components-payment-method-label {
  color: rgba(255,255,255,0.6);
}

.__PrivateStripeElement iframe {
  background: transparent !important;
}

/* Place order button full width fix */
.wp-block-woocommerce-checkout-order-summary-block {
  position: sticky;
  top: 100px;
}

/* ============================================
   CHECKOUT BLOCK - FORCED OVERRIDES
============================================ */

/* Country dropdown fix */
.wc-block-components-country-input .wc-block-components-combobox,
.wc-block-components-country-input input,
.wc-block-components-country-input .components-combobox-control,
.wc-block-components-select,
.wc-block-components-select select {
  background-color: #0e0e0f !important;
  background: #0e0e0f !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  border-radius: 4px !important;
  color: #ffffff !important;
}

/* Force all inputs dark */
.wc-block-checkout input[type="text"],
.wc-block-checkout input[type="email"],
.wc-block-checkout input[type="tel"],
.wc-block-checkout input[type="number"],
.wc-block-checkout select,
.wc-block-checkout textarea,
.wc-block-components-text-input input,
.wc-block-components-address-form input,
.wc-block-components-form input {
  background: #0e0e0f !important;
  background-color: #0e0e0f !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  border-radius: 4px !important;
  font-family: "Geologica", sans-serif !important;
  font-weight: 100 !important;
  font-size: 14px !important;
  padding: 12px 16px !important;
  box-shadow: none !important;
  outline: none !important;
}

.wc-block-checkout input:focus,
.wc-block-components-text-input input:focus {
  border-color: rgba(255,255,255,0.4) !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Fix white background on validation states */
.wc-block-components-text-input.has-error input,
.wc-block-components-text-input input:invalid {
  background: #0e0e0f !important;
  border-color: rgba(255,60,60,0.6) !important;
}

/* Payment options box border fix */
.wc-block-components-payment-method-options,
.wc-block-components-radio-control,
.wc-block-components-payment-methods {
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 4px !important;
  background: #0e0e0f !important;
  overflow: hidden !important;
}

.wc-block-components-radio-control__option {
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  background: transparent !important;
  padding: 16px !important;
}

.wc-block-components-radio-control__option:last-child {
  border-bottom: none !important;
}

/* Remove any white lines or borders from Stripe container */
.wc-block-components-payment-method-label,
.wc-payment-method-stripe,
.wc-block-components-payment-method-options__option {
  border: none !important;
  background: transparent !important;
}

.stripe-card-element-container,
.wc-block-gateway-container {
  background: #0e0e0f !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 4px !important;
  padding: 16px !important;
  margin-top: 12px !important;
}

/* Test mode badge */
.wc-block-components-payment-method-label .wc-payment-method-stripe__test-mode-badge {
  background: rgba(255,255,255,0.1) !important;
  color: rgba(255,255,255,0.5) !important;
  border: none !important;
  font-family: "filson-pro", sans-serif !important;
  font-size: 9px !important;
  letter-spacing: 0.1em !important;
}

/* Card label green text override */
.wc-block-components-payment-method-label span,
.payment-method-label {
  color: rgba(255,255,255,0.7) !important;
}
