/* Irish District Premium Design System
   Scope: visual-only overrides for WordPress, Flatsome, and WooCommerce.
   Do not place checkout logic, product data, tracking, or SEO changes here. */

/* Global variables */
:root {
  --idp-green-950: #08261f;
  --idp-green-900: #0d332a;
  --idp-green-800: #124337;
  --idp-green-700: #1d5b48;
  --idp-gold-600: #b99445;
  --idp-gold-500: #c8a85d;
  --idp-gold-300: #ead8a8;
  --idp-cream-100: #f8f3e8;
  --idp-cream-050: #fcfaf4;
  --idp-stone-200: #e7dfd2;
  --idp-stone-300: #d8cdbb;
  --idp-stone-500: #8b8477;
  --idp-charcoal-950: #141916;
  --idp-charcoal-800: #27302b;
  --idp-muted: #68736c;
  --idp-white: #fffdf8;
  --idp-success: #1f6f50;
  --idp-warning: #a96c16;
  --idp-error: #9d332b;

  --idp-font-heading: Georgia, "Times New Roman", serif;
  --idp-font-body: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  --idp-space-1: 4px;
  --idp-space-2: 8px;
  --idp-space-3: 12px;
  --idp-space-4: 16px;
  --idp-space-5: 24px;
  --idp-space-6: 32px;
  --idp-space-7: 48px;
  --idp-space-8: 64px;

  --idp-radius-sm: 4px;
  --idp-radius: 6px;
  --idp-radius-lg: 8px;
  --idp-border: 1px solid rgba(20, 25, 22, 0.12);
  --idp-border-strong: 1px solid rgba(13, 51, 42, 0.22);
  --idp-shadow-sm: 0 4px 14px rgba(20, 25, 22, 0.06);
  --idp-shadow-md: 0 14px 34px rgba(20, 25, 22, 0.11);
  --idp-shadow-lg: 0 22px 56px rgba(20, 25, 22, 0.15);
  --idp-transition: 170ms ease;
}

/* Base canvas and typography */
html {
  background: var(--idp-cream-050);
  max-width: 100%;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  background:
    radial-gradient(circle at top left, rgba(200, 168, 93, 0.12), transparent 34rem),
    linear-gradient(180deg, var(--idp-cream-050), #f5efe4 58%, var(--idp-cream-050));
  color: var(--idp-charcoal-950);
  font-family: var(--idp-font-body);
  font-size: 16px;
  line-height: 1.62;
  letter-spacing: 0 !important;
  max-width: 100%;
  overflow-x: hidden;
}

body,
p,
li,
td,
th,
input,
select,
textarea,
button {
  font-family: var(--idp-font-body);
}

h1,
h2,
h3,
h4,
h5,
h6,
.page-title,
.product-title,
.section-title,
.widget-title,
.uppercase,
.cart_totals h2,
.woocommerce-billing-fields h3,
.woocommerce-additional-fields h3,
#order_review_heading {
  color: var(--idp-green-950);
  font-family: var(--idp-font-heading);
  font-weight: 800;
  letter-spacing: 0 !important;
  line-height: 1.08;
  text-transform: none !important;
}

h1,
.page-title,
.product-title.entry-title {
  font-size: clamp(34px, 4.4vw, 62px);
}

h2,
.section-title-main {
  font-size: clamp(27px, 3vw, 44px);
}

h3 {
  font-size: clamp(22px, 2.3vw, 32px);
}

p,
.text,
.woocommerce-terms-and-conditions-wrapper,
.product-short-description,
.tab-panels,
.entry-content {
  color: var(--idp-charcoal-800);
}

a {
  color: var(--idp-green-800);
  transition: color var(--idp-transition), border-color var(--idp-transition), background var(--idp-transition);
}

a:hover {
  color: var(--idp-green-950);
}

/* Remove inherited transition banner that references the old launch phase. */
.id-topline {
  display: none !important;
}

/* Header and navigation */
.header-wrapper,
.header-main,
.stuck .header-main,
.header-bottom,
.mobile-sidebar,
.off-canvas-left .mfp-content {
  background: rgba(255, 253, 248, 0.97) !important;
  border-color: rgba(13, 51, 42, 0.12) !important;
  box-shadow: 0 1px 0 rgba(13, 51, 42, 0.08), 0 14px 36px rgba(13, 51, 42, 0.06) !important;
}

.header-main {
  min-height: 86px;
}

#logo img,
.header-logo,
.header-logo-dark {
  max-height: 64px !important;
  object-fit: contain;
}

.nav > li > a,
.mobile-sidebar .nav > li > a,
.header-nav-main.nav > li > a {
  color: var(--idp-green-950) !important;
  font-family: var(--idp-font-body);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0 !important;
  min-height: 44px;
  text-transform: none !important;
}

.nav > li.active > a,
.nav > li.current-menu-item > a,
.nav > li > a:hover {
  color: var(--idp-gold-600) !important;
}

.nav-dropdown,
.sub-menu,
.ux-menu-link {
  background: var(--idp-white) !important;
  border: var(--idp-border) !important;
  border-radius: var(--idp-radius-lg) !important;
  box-shadow: var(--idp-shadow-md) !important;
}

.nav-dropdown a,
.sub-menu a,
.ux-menu-link a {
  color: var(--idp-charcoal-950) !important;
  font-weight: 700;
}

.header-button .button,
.header .button,
.account-link,
.cart-item .header-cart-link {
  border-radius: var(--idp-radius) !important;
}

/* Hero and banners */
.id-hero,
.page-title-bg,
.shop-page-title,
.category-page-title {
  background-color: var(--idp-green-950) !important;
  background-blend-mode: multiply;
}

.id-hero {
  min-height: clamp(460px, 58vw, 660px);
}

.id-hero__inner {
  padding-top: clamp(72px, 9vw, 126px);
  padding-bottom: clamp(56px, 8vw, 98px);
}

.id-kicker {
  display: none !important;
}

.id-hero h1 {
  color: var(--idp-white);
  font-family: var(--idp-font-heading);
  font-size: clamp(42px, 7vw, 88px);
  letter-spacing: 0 !important;
  max-width: 780px;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.2);
}

.id-hero p {
  color: rgba(255, 253, 248, 0.92);
  font-size: clamp(17px, 2.1vw, 23px);
  max-width: 660px;
}

.id-band {
  background: var(--idp-green-950) !important;
  border: 0 !important;
}

.id-band__inner {
  gap: var(--idp-space-4);
  padding: 20px 24px;
}

.id-proof {
  color: rgba(255, 253, 248, 0.74) !important;
}

.id-proof strong {
  color: var(--idp-gold-300) !important;
  font-family: var(--idp-font-heading);
  font-size: 19px;
}

/* Buttons and links */
.button,
button,
input[type="submit"],
input[type="button"],
.button.primary,
.button.alt,
.single_add_to_cart_button,
.checkout-button,
#place_order,
.wc-proceed-to-checkout a.checkout-button,
.add_to_cart_button,
.product_type_variable,
.id-actions a,
.ux-search-submit,
.search-submit,
.product-small .add-to-cart-button a,
.product-small .cart-icon strong,
.woocommerce-mini-cart__buttons a {
  align-items: center;
  background: var(--idp-green-900) !important;
  border: 1px solid var(--idp-green-900) !important;
  border-radius: var(--idp-radius) !important;
  box-shadow: 0 10px 22px rgba(13, 51, 42, 0.16) !important;
  color: var(--idp-white) !important;
  display: inline-flex;
  font-family: var(--idp-font-body);
  font-size: 15px;
  font-weight: 850;
  justify-content: center;
  letter-spacing: 0 !important;
  min-height: 44px;
  padding: 0 20px;
  text-transform: none !important;
  transition: transform var(--idp-transition), box-shadow var(--idp-transition), background var(--idp-transition);
}

.button:hover,
button:hover,
input[type="submit"]:hover,
.single_add_to_cart_button:hover,
.checkout-button:hover,
#place_order:hover,
.add_to_cart_button:hover {
  background: var(--idp-green-950) !important;
  border-color: var(--idp-green-950) !important;
  box-shadow: 0 14px 28px rgba(13, 51, 42, 0.22) !important;
  transform: translateY(-1px);
}

.button.secondary,
.is-outline,
.id-actions .secondary {
  background: transparent !important;
  border-color: rgba(13, 51, 42, 0.24) !important;
  box-shadow: none !important;
  color: var(--idp-green-950) !important;
}

.id-actions .primary {
  background: var(--idp-gold-500) !important;
  border-color: var(--idp-gold-500) !important;
  color: var(--idp-green-950) !important;
}

.product-small .cart-icon strong {
  box-shadow: none !important;
  height: 38px;
  min-height: 38px;
  min-width: 38px;
  padding: 0;
}

/* Layout sections and reusable panels */
.id-section,
.shop-container,
.product-container,
.cart-container,
.checkout-page-title,
.woocommerce-account .page-wrapper,
.my-account,
.row-main,
.container-width,
.container {
  max-width: 1220px;
}

.id-section {
  padding-top: clamp(46px, 7vw, 86px);
  padding-bottom: clamp(46px, 7vw, 86px);
}

.id-section h2,
.id-panel h3 {
  color: var(--idp-green-950);
}

.id-panel,
.box,
.account-user,
.woocommerce-MyAccount-content,
.woocommerce-MyAccount-navigation,
.cart_totals,
.checkout-sidebar,
.woocommerce-checkout-review-order,
.shop_table,
.woocommerce-billing-fields,
.woocommerce-additional-fields,
.woocommerce-customer-details,
.woocommerce-order-details {
  background: var(--idp-white);
  border: var(--idp-border);
  border-radius: var(--idp-radius-lg);
  box-shadow: var(--idp-shadow-sm);
}

.id-split {
  grid-template-columns: minmax(0, 760px) !important;
  justify-content: start;
}

.id-split > .id-panel {
  display: none !important;
}

/* Product cards and archive grids */
.products.row,
.woocommerce .products {
  row-gap: clamp(20px, 3vw, 34px);
}

.shop-page-title + .row,
.shop-container > .term-description,
.shop-container .woocommerce-products-header {
  background: rgba(255, 253, 248, 0.82);
  border: var(--idp-border);
  border-radius: var(--idp-radius-lg);
  box-shadow: var(--idp-shadow-sm);
  margin-bottom: var(--idp-space-6);
  padding: clamp(16px, 2.5vw, 28px);
}

.product-small .col-inner,
.product-small .box,
.products .product .box {
  height: 100%;
}

.product-small .box,
.products .product .box,
.product-small.box {
  background: var(--idp-white) !important;
  border: var(--idp-border) !important;
  border-radius: var(--idp-radius-lg) !important;
  box-shadow: var(--idp-shadow-sm) !important;
  overflow: hidden;
  transition: transform var(--idp-transition), box-shadow var(--idp-transition), border-color var(--idp-transition);
}

.product-small .box:hover,
.products .product .box:hover {
  border-color: rgba(185, 148, 69, 0.55) !important;
  box-shadow: var(--idp-shadow-md) !important;
  transform: translateY(-3px);
}

.product-small .box-image,
.products .box-image {
  background: linear-gradient(180deg, #fffdf8, #f2eadc);
  padding: 10px;
}

.product-small .box-image img,
.products .box-image img {
  border-radius: var(--idp-radius);
  object-fit: cover;
}

.product-small .box-text,
.products .box-text {
  padding: 16px 16px 18px !important;
}

.product-small .name,
.product-small .woocommerce-loop-product__title,
.products .product-title,
.woocommerce-loop-product__title {
  color: var(--idp-charcoal-950) !important;
  font-family: var(--idp-font-body);
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 850;
  line-height: 1.34;
  margin-bottom: 8px;
}

.price,
.price .amount,
.woocommerce-Price-amount,
.product-small .price {
  color: var(--idp-green-900) !important;
  font-family: var(--idp-font-body);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0 !important;
}

del .amount,
.price del {
  color: var(--idp-stone-500) !important;
  font-weight: 650;
  opacity: 0.72;
}

ins {
  color: var(--idp-green-900);
  text-decoration: none;
}

.badge,
.badge-container,
.onsale,
.callout.badge,
.badge-inner,
.product-small .badge-inner {
  background: var(--idp-error) !important;
  border-radius: var(--idp-radius-sm) !important;
  box-shadow: none !important;
  color: var(--idp-white) !important;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0 !important;
  min-height: auto;
  padding: 5px 8px;
  text-transform: none !important;
}

.variations_form,
.wvs-archive-variation-wrapper,
.variable-items-wrapper {
  gap: 8px !important;
}

.variable-item,
.button-variable-item,
.color-variable-item {
  border: var(--idp-border-strong) !important;
  border-radius: var(--idp-radius-sm) !important;
  box-shadow: none !important;
}

.variable-item.selected,
.variable-item:hover {
  border-color: var(--idp-gold-600) !important;
  box-shadow: 0 0 0 2px rgba(200, 168, 93, 0.18) !important;
}

/* Product page */
.single-product .product-main {
  padding-top: clamp(22px, 4vw, 48px);
}

.single-product .product-gallery,
.single-product .summary,
.single-product .woocommerce-tabs,
.product-footer .woocommerce-tabs {
  background: rgba(255, 253, 248, 0.82);
  border: var(--idp-border);
  border-radius: var(--idp-radius-lg);
  box-shadow: var(--idp-shadow-sm);
  padding: clamp(16px, 2.5vw, 28px);
}

.single-product .product-gallery,
.single-product .woocommerce-product-gallery,
.single-product .flickity-viewport,
.single-product .product-thumbnails {
  max-width: 100%;
  overflow: hidden !important;
}

.single-product .summary {
  background: var(--idp-white);
  border-top: 4px solid var(--idp-green-900);
}

.single-product .product-title {
  margin-bottom: 12px;
}

.single-product .price {
  display: block;
  font-size: clamp(22px, 2.6vw, 32px);
  margin: 10px 0 18px;
}

.product-short-description {
  background: var(--idp-cream-050);
  border: var(--idp-border);
  border-radius: var(--idp-radius);
  margin: 18px 0;
  padding: 16px;
}

.single-product form.cart {
  border-top: var(--idp-border);
  margin-top: 18px;
  padding-top: 18px;
}

.quantity input[type="number"],
.quantity .minus,
.quantity .plus {
  background: var(--idp-white) !important;
  border-color: var(--idp-stone-300) !important;
  color: var(--idp-charcoal-950) !important;
  min-height: 44px;
}

.single_add_to_cart_button {
  min-height: 50px;
  padding-left: 28px;
  padding-right: 28px;
}

.product_meta,
.posted_in,
.tagged_as,
.sku_wrapper {
  color: var(--idp-muted);
  font-size: 14px;
}

.woocommerce-tabs .nav,
.tabs {
  border-bottom: var(--idp-border);
}

.woocommerce-tabs .tabs li a,
.tabs li a {
  color: var(--idp-green-950) !important;
  font-weight: 850;
  text-transform: none !important;
}

.woocommerce-tabs .tabs li.active a {
  color: var(--idp-gold-600) !important;
}

/* Cart and basket */
.woocommerce-cart .shop_table,
.cart_totals {
  padding: clamp(14px, 2.2vw, 24px);
}

.woocommerce-cart table.shop_table th,
.woocommerce-cart table.shop_table td,
.shop_table th,
.shop_table td {
  border-color: rgba(20, 25, 22, 0.1) !important;
  color: var(--idp-charcoal-800);
  padding: 14px 12px;
}

.cart_totals h2,
.woocommerce-cart .cart_totals h2 {
  border-bottom: var(--idp-border);
  margin-bottom: 14px;
  padding-bottom: 12px;
}

.wc-proceed-to-checkout .checkout-button {
  min-height: 52px;
  width: 100%;
}

.remove,
.remove_from_cart_button {
  color: var(--idp-error) !important;
}

/* Checkout */
.woocommerce-checkout .checkout {
  align-items: start;
}

.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-additional-fields,
.woocommerce-checkout-review-order,
.checkout-sidebar,
#order_review {
  padding: clamp(16px, 2.4vw, 28px);
}

#order_review,
.woocommerce-checkout-review-order {
  border-top: 4px solid var(--idp-gold-500);
}

#place_order {
  font-size: 17px;
  min-height: 54px;
  width: 100%;
}

.payment_methods,
.woocommerce-checkout-payment {
  background: var(--idp-cream-050) !important;
  border: var(--idp-border) !important;
  border-radius: var(--idp-radius-lg) !important;
  color: var(--idp-charcoal-800);
}

.payment_box {
  background: var(--idp-white) !important;
  border: var(--idp-border) !important;
  border-radius: var(--idp-radius) !important;
  color: var(--idp-charcoal-800) !important;
}

/* Forms, search, notices, and validation */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="search"],
input[type="number"],
select,
textarea,
.select2-container .select2-selection {
  background: var(--idp-white) !important;
  border: 1px solid rgba(20, 25, 22, 0.18) !important;
  border-radius: var(--idp-radius) !important;
  box-shadow: none !important;
  color: var(--idp-charcoal-950) !important;
  font-size: 16px;
  min-height: 44px;
  padding: 10px 12px;
  transition: border-color var(--idp-transition), box-shadow var(--idp-transition), background var(--idp-transition);
}

textarea {
  min-height: 118px;
}

input:focus,
select:focus,
textarea:focus,
.select2-container--open .select2-selection {
  border-color: var(--idp-gold-600) !important;
  box-shadow: 0 0 0 3px rgba(200, 168, 93, 0.18) !important;
  outline: 0;
}

label,
.form-row label {
  color: var(--idp-green-950);
  font-size: 14px;
  font-weight: 800;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.message-wrapper,
.success-color,
.alert-color {
  border: 0 !important;
  border-radius: var(--idp-radius-lg) !important;
  box-shadow: var(--idp-shadow-sm) !important;
  color: var(--idp-charcoal-950) !important;
  padding: 14px 18px !important;
}

.woocommerce-message,
.success-color {
  background: rgba(31, 111, 80, 0.12) !important;
}

.woocommerce-info {
  background: rgba(200, 168, 93, 0.18) !important;
}

.woocommerce-error,
.alert-color {
  background: rgba(157, 51, 43, 0.12) !important;
}

/* Account pages */
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
  padding: clamp(16px, 2.4vw, 28px);
}

.woocommerce-MyAccount-navigation ul {
  margin: 0;
}

.woocommerce-MyAccount-navigation li {
  border-bottom: var(--idp-border);
  list-style: none;
}

.woocommerce-MyAccount-navigation a {
  color: var(--idp-green-950);
  display: block;
  font-weight: 850;
  padding: 12px 0;
}

.woocommerce-MyAccount-navigation .is-active a,
.woocommerce-MyAccount-navigation a:hover {
  color: var(--idp-gold-600);
}

/* Footer and newsletter surfaces */
.footer-wrapper,
footer,
.absolute-footer {
  background:
    radial-gradient(circle at top left, rgba(200, 168, 93, 0.16), transparent 30rem),
    linear-gradient(180deg, var(--idp-green-900), var(--idp-green-950)) !important;
  color: rgba(255, 253, 248, 0.82) !important;
}

.footer-wrapper h1,
.footer-wrapper h2,
.footer-wrapper h3,
.footer-wrapper h4,
.footer-wrapper .widget-title {
  color: var(--idp-cream-100) !important;
}

.footer-wrapper a,
.absolute-footer a {
  color: var(--idp-cream-100) !important;
}

.footer-wrapper a:hover {
  color: var(--idp-gold-300) !important;
}

.footer-wrapper input,
.footer-wrapper select,
.footer-wrapper textarea {
  background: rgba(255, 253, 248, 0.08) !important;
  border-color: rgba(255, 253, 248, 0.22) !important;
  color: var(--idp-white) !important;
}

.footer-wrapper .button {
  background: var(--idp-gold-500) !important;
  border-color: var(--idp-gold-500) !important;
  color: var(--idp-green-950) !important;
}

/* Breadcrumbs, filters, widgets, reviews, and utilities */
.breadcrumbs,
.woocommerce-breadcrumb,
.woocommerce-result-count,
.orderby,
.widget,
.product-categories,
.reviews_tab,
.commentlist,
.star-rating {
  color: var(--idp-muted) !important;
}

.breadcrumbs a,
.woocommerce-breadcrumb a {
  color: var(--idp-green-800) !important;
  font-weight: 750;
}

.widget,
.shop-sidebar .widget,
.category-filtering,
.off-canvas .sidebar-menu {
  background: rgba(255, 253, 248, 0.74);
  border: var(--idp-border);
  border-radius: var(--idp-radius-lg);
  padding: 16px;
}

.hi-product-addons,
.hi-product-addons__viewport,
.hi-product-addons__track {
  max-width: 100%;
}

.hi-product-addons {
  overflow: hidden;
}

body.post-type-archive-product .hi-rec-shell,
body.tax-product_cat .hi-rec-shell,
body.search-results .hi-rec-shell,
body.woocommerce-cart .hi-rec-shell,
body.woocommerce-checkout .hi-rec-shell {
  display: none !important;
}

body.home .hi-editorial-shell,
body.post-type-archive-product .hisn-section,
body.post-type-archive-product .hi-editorial-shell,
body.tax-product_cat .hisn-section,
body.tax-product_cat .hi-editorial-shell,
body.search-results .hisn-section,
body.search-results .hi-editorial-shell,
body.woocommerce-cart .hisn-section,
body.woocommerce-cart .hi-editorial-shell,
body.woocommerce-checkout .hisn-section,
body.woocommerce-checkout .hi-editorial-shell {
  display: none !important;
}

body.home .hisn-section {
  display: block !important;
}

.woocommerce ul.products li.product .woocommerce-LoopProduct-link.woocommerce-loop-product__link {
  align-items: flex-start;
  display: inline-flex !important;
  min-height: 28px !important;
}

body .woocommerce-LoopProduct-link.woocommerce-loop-product__link {
  display: inline-flex !important;
  line-height: 1.35 !important;
  min-height: 30px !important;
  padding-bottom: 5px !important;
  padding-top: 4px !important;
}

.hi-editorial-card__cta,
.breadcrumbs a,
.breadcrumbs .current,
.woocommerce-breadcrumb a,
.cart-wrapper .breadcrumbs a,
.woocommerce-LostPassword a,
.lost_password a,
.footer-wrapper a,
.absolute-footer a,
.ux-menu-link a,
.widget a {
  align-items: center;
  display: inline-flex;
  min-height: 24px;
}

.star-rating span:before,
.stars a:after,
.stars a:hover:after {
  color: var(--idp-gold-600) !important;
}

.is-divider,
.title .is-divider {
  background-color: var(--idp-gold-500) !important;
  height: 2px;
  max-width: 54px;
}

/* Mobile fixes */
@media (max-width: 849px) {
  body {
    font-size: 16px;
    line-height: 1.58;
  }

  html,
  body,
  #wrapper,
  #main {
    max-width: 100%;
    overflow-x: hidden !important;
  }

  .header-main {
    min-height: 72px;
  }

  #logo img,
  .header-logo,
  .header-logo-dark {
    max-height: 52px !important;
  }

  .id-hero {
    min-height: 430px;
  }

  .id-hero__inner,
  .id-section,
  .shop-container,
  .product-container,
  .cart-container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .id-band__inner,
  .id-category-grid,
  .id-split {
    grid-template-columns: 1fr !important;
  }

  .product-small .box-text,
  .products .box-text {
    padding: 14px !important;
  }

  .single-product .product-gallery,
  .single-product .woocommerce-product-gallery,
  .single-product .summary,
  .single-product .woocommerce-tabs,
  .woocommerce-checkout .woocommerce-billing-fields,
  .woocommerce-checkout .woocommerce-additional-fields,
  .woocommerce-checkout-review-order,
  .cart_totals,
  .shop_table {
    border-radius: var(--idp-radius) !important;
    padding: 16px !important;
  }

  .hi-product-addons__track {
    display: flex;
    gap: 12px;
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
  }

  .hi-product-addons__card {
    flex: 0 0 min(220px, 76vw);
    scroll-snap-align: start;
  }

  .button,
  .single_add_to_cart_button,
  .checkout-button,
  #place_order,
  .add_to_cart_button {
    min-height: 48px;
    width: 100%;
  }

  input,
  select,
  textarea {
    font-size: 16px !important;
  }
}

/* Late plugin/theme cleanup for dark identity */
body .header-wrapper,
body .header-main,
body .header-bottom,
body .header-bg-color.fill,
body .stuck .header-main,
body .transparent .header-main,
body .header-wrapper .header-bg-container,
body .top-bar-nav,
body .header-top,
body .irishdistrict-desktop-header-ready {
  background: var(--id-black) !important;
  background-color: var(--id-black) !important;
  color: var(--id-cream) !important;
}

body .header-wrapper *,
body .header-main *,
body .header-top *,
body .top-bar-nav * {
  border-color: rgba(183, 178, 168, 0.16) !important;
}

body .hps-card,
body .hps-card *,
body .hps-btn,
body #logo a,
body .logo a,
body a.button.secondary,
body .button.secondary,
body .button.is-outline,
body .hi-sortpill,
body .irishdistrict-collection-hero__pill,
body .yay-currency-custom-select__trigger,
body .yay-currency-custom-select__dropdown,
body .yay-currency-custom-select__option,
body .irishdistrict-printing-card,
body .irishdistrict-printing-card *,
body .hi-pdp-acc,
body .hi-pdp-acc *,
body .hi-product-addons,
body .hi-product-addons__card,
body .hi-product-addons__viewport,
body .hi-product-addons__track,
body .hi-product-addons__eyebrow,
body .hi-product-addons__button,
body .hi-product-addons__button--secondary,
body .hi-seo-card,
body .hi-seo-tag,
body .hi-seo-section,
body .hi-seo-section *,
body form.checkout.woocommerce-checkout,
body .checkout.woocommerce-checkout,
body .select2-selection.select2-selection--single,
body .select2-container--default .select2-selection--single,
body .hi-product-addons__image,
body .hi-product-addons__meta,
body .woocommerce-info.message-wrapper,
body .woocommerce-message.message-wrapper,
body .woocommerce-error.message-wrapper,
body .my-account-header,
body .normal-title,
body .page-title.normal-title,
body .ux-quantity.quantity,
body .quantity.buttons_added {
  background: var(--id-charcoal) !important;
  background-color: var(--id-charcoal) !important;
  border-color: rgba(183, 178, 168, 0.18) !important;
  color: var(--id-cream) !important;
}

body .hps-card p,
body .hps-card span,
body .hps-card li,
body .hi-pdp-acc p,
body .hi-pdp-acc li,
body .irishdistrict-printing-card p,
body .hi-product-addons__meta,
body .hi-product-addons__price,
body .hi-seo-card,
body .hi-seo-card *,
body .hi-seo-tag,
body .woocommerce-info.message-wrapper,
body .woocommerce-message.message-wrapper,
body .woocommerce-error.message-wrapper {
  color: var(--id-muted-text) !important;
}

body .hps-card h1,
body .hps-card h2,
body .hps-card h3,
body .hps-card strong,
body .hi-pdp-acc h1,
body .hi-pdp-acc h2,
body .hi-pdp-acc h3,
body .irishdistrict-printing-card h1,
body .irishdistrict-printing-card h2,
body .irishdistrict-printing-card h3,
body .hi-product-addons__title,
body .hi-product-addons__title *,
body .hi-seo-card strong,
body .hi-seo-card h1,
body .hi-seo-card h2,
body .hi-seo-card h3,
body .my-account-header h1 {
  color: var(--id-cream) !important;
}

body .hps-btn,
body a.button.secondary,
body .button.secondary,
body .button.is-outline,
body .hi-sortpill:hover,
body .hi-sortpill.is-active,
body .irishdistrict-collection-hero__pill,
body .hi-product-addons__eyebrow,
body .hi-product-addons__button,
body .hi-product-addons__button--secondary,
body .hi-seo-tag {
  border: 1px solid rgba(184, 154, 91, 0.46) !important;
  color: var(--id-gold) !important;
}

body .woocommerce input.input-text,
body .woocommerce textarea,
body .woocommerce select,
body .woocommerce-page input.input-text,
body .woocommerce-page textarea,
body .woocommerce-page select,
body .woocommerce-Input,
body .woocommerce-privacy-policy-link,
body .input-text,
body input[type="text"],
body input[type="email"],
body input[type="tel"],
body input[type="password"],
body input[type="search"],
body input[type="number"],
body select,
body textarea {
  background: var(--id-soft-black) !important;
  background-color: var(--id-soft-black) !important;
  border: 1px solid rgba(183, 178, 168, 0.32) !important;
  color: var(--id-cream) !important;
}

body .woocommerce-privacy-policy-link {
  align-items: center !important;
  display: inline-flex !important;
  min-height: 24px !important;
}

body .footer-wrapper,
body footer,
body .absolute-footer,
body .footer-1,
body .footer-2 {
  background:
    radial-gradient(circle at 20% 0%, rgba(14, 59, 46, 0.38), transparent 24rem),
    linear-gradient(180deg, #090909, var(--id-black)) !important;
  background-color: var(--id-black) !important;
}

/* Irish sports news homepage module */
body.home .hisn-section {
  --hisn-green: var(--id-deep-green);
  --hisn-green-deep: var(--id-black);
  --hisn-cream: var(--id-cream);
  --hisn-navy: var(--id-charcoal);
  --hisn-gold: var(--id-gold);
  --hisn-ink: var(--id-cream);
  --hisn-muted: var(--id-muted-text);
  --hisn-line: rgba(183, 178, 168, 0.16);
  background:
    radial-gradient(circle at 15% 0%, rgba(14, 59, 46, 0.5), transparent 26rem),
    linear-gradient(180deg, var(--id-black), var(--id-soft-black)) !important;
  border-top: 1px solid rgba(184, 154, 91, 0.34) !important;
  color: var(--id-cream) !important;
  overflow: hidden;
}

body.home .hisn-title,
body.home .hisn-headline,
body.home .hisn-promo-title {
  color: var(--id-cream) !important;
}

body.home .hisn-subtitle,
body.home .hisn-summary,
body.home .hisn-time,
body.home .hisn-disclaimer,
body.home .hisn-promo-text {
  color: var(--id-muted-text) !important;
}

/* Shop by County page */
.id-county-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(2.75rem, 6vw, 5.5rem) clamp(1rem, 4vw, 2rem);
  color: var(--id-cream);
}

.id-county-page .id-kicker {
  margin: 0 0 .75rem;
  color: var(--id-gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.id-county-page h1 {
  max-width: 760px;
  margin: 0 0 1rem;
  color: var(--id-cream);
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  line-height: .95;
}

.id-county-page > p {
  max-width: 720px;
  color: var(--id-stone);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.7;
}

.id-county-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: .85rem;
  margin: clamp(1.75rem, 4vw, 3rem) 0;
}

.id-county-link {
  display: flex;
  min-height: 108px;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  border: 1px solid rgba(184, 154, 91, .2);
  border-radius: var(--id-radius-md);
  background:
    linear-gradient(140deg, rgba(14, 59, 46, .48), rgba(20, 20, 20, .94)),
    var(--id-charcoal);
  color: var(--id-cream);
  text-decoration: none;
  transition: border-color var(--id-transition), transform var(--id-transition), background var(--id-transition);
}

.id-county-link span {
  font-family: var(--id-heading-font);
  font-size: 1.12rem;
  font-weight: 800;
}

.id-county-link small {
  color: var(--id-muted-text);
  font-size: .82rem;
}

.id-county-link:hover,
.id-county-link:focus-visible {
  border-color: rgba(184, 154, 91, .7);
  background:
    linear-gradient(140deg, rgba(15, 74, 52, .72), rgba(13, 13, 13, .96)),
    var(--id-charcoal);
  color: var(--id-cream);
  transform: translateY(-2px);
}

body.home .hisn-card,
body.home .hisn-list-item,
body.home .hisn-promo,
body.home .hisn-cta {
  background: linear-gradient(180deg, rgba(32, 34, 37, 0.96), rgba(13, 13, 13, 0.98)) !important;
  border: 1px solid rgba(183, 178, 168, 0.16) !important;
  box-shadow: var(--idp-shadow-sm) !important;
  color: var(--id-cream) !important;
}

body.home .hisn-card:hover,
body.home .hisn-list-item:hover {
  border-color: rgba(184, 154, 91, 0.52) !important;
  box-shadow: 0 24px 66px rgba(0, 0, 0, 0.44) !important;
}

body.home .hisn-thumb {
  background: linear-gradient(135deg, var(--id-deep-green), var(--id-charcoal)) !important;
}

body.home .hisn-badge {
  background: var(--id-deep-green) !important;
  color: var(--id-cream) !important;
}

body.home .hisn-badge-irish,
body.home .hisn-eyebrow,
body.home .hisn-readmore,
body.home .hisn-ctas-label,
body.home .hisn-source {
  color: var(--id-gold) !important;
}

body.home .hisn-cta,
body.home .hisn-promo-cta {
  background: transparent !important;
  border: 1px solid rgba(184, 154, 91, 0.55) !important;
  color: var(--id-gold) !important;
}

body.home .hisn-cta:hover,
body.home .hisn-promo-cta:hover {
  background: var(--id-gold) !important;
  color: var(--id-black) !important;
}

body.home .hisn-card-link {
  color: inherit !important;
  min-height: 44px;
}

@media (max-width: 880px) {
  body.home .hisn-section {
    overflow: visible !important;
  }
  body.home .hisn-layout {
    min-width: 0 !important;
  }
  body.home .hisn-grid--rest,
  body.home .hisn-style-grid .hisn-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
    grid-auto-flow: unset !important;
    grid-template-columns: none !important;
    grid-auto-columns: unset !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    overscroll-behavior-x: contain !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    max-width: 100% !important;
    width: 100% !important;
    min-width: 0 !important;
    padding-bottom: 12px !important;
  }
  body.home .hisn-grid--rest > .hisn-card,
  body.home .hisn-style-grid .hisn-grid > .hisn-card {
    flex: 0 0 min(72vw, 260px) !important;
    width: min(72vw, 260px) !important;
    max-width: min(72vw, 260px) !important;
    scroll-snap-align: start !important;
  }
  body.home .hisn-product-feature {
    display: none !important;
  }
}

@media (max-width: 430px) {
  h1,
  .page-title,
  .product-title.entry-title {
    font-size: 34px;
  }

  h2,
  .section-title-main {
    font-size: 28px;
  }

  .product-small .name,
  .woocommerce-loop-product__title {
    font-size: 14px;
  }

  .price,
  .price .amount,
  .woocommerce-Price-amount {
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Experience system modules */
.idw-skip-link {
  background: var(--idp-gold-500);
  border-radius: 0 0 var(--idp-radius) 0;
  color: var(--idp-green-950);
  font-weight: 900;
  left: 0;
  padding: 10px 14px;
  position: fixed;
  top: 0;
  transform: translateY(-120%);
  z-index: 999999;
}

.idw-skip-link:focus {
  transform: translateY(0);
}

.idw-home-hero {
  background:
    linear-gradient(90deg, rgba(8, 38, 31, 0.94), rgba(8, 38, 31, 0.7), rgba(8, 38, 31, 0.18)),
    url('/wp-content/uploads/2024/09/14763047-1065176589132640.jpg');
  background-position: center;
  background-size: cover;
  color: var(--idp-white);
  min-height: clamp(560px, 64vw, 760px);
  overflow: hidden;
  position: relative;
}

.idw-home-hero::after {
  background: radial-gradient(circle, rgba(200, 168, 93, 0.18), transparent 58%);
  bottom: -140px;
  content: "";
  height: 360px;
  position: absolute;
  right: -80px;
  width: 360px;
}

.idw-home-hero__inner {
  display: grid;
  gap: clamp(24px, 4vw, 54px);
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.55fr);
  margin: 0 auto;
  max-width: 1220px;
  min-height: inherit;
  padding: clamp(72px, 10vw, 130px) 24px;
  position: relative;
  z-index: 2;
}

.idw-home-hero h1 {
  color: var(--idp-white);
  font-size: clamp(44px, 7.2vw, 92px);
  max-width: 790px;
  text-wrap: balance;
}

.idw-home-hero p {
  color: rgba(255, 253, 248, 0.88);
  font-size: clamp(17px, 2vw, 23px);
  line-height: 1.5;
  max-width: 650px;
}

.idw-home-hero__panel {
  align-self: end;
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(255, 253, 248, 0.55);
  border-radius: var(--idp-radius-lg);
  box-shadow: var(--idp-shadow-lg);
  color: var(--idp-green-950);
  padding: clamp(18px, 2.4vw, 28px);
}

.idw-home-hero__panel strong {
  color: var(--idp-green-950);
  display: block;
  font-family: var(--idp-font-heading);
  font-size: 26px;
  line-height: 1.05;
  margin-bottom: 8px;
}

.idw-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.idw-actions a,
.idw-collection-nav a {
  align-items: center;
  border-radius: var(--idp-radius);
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 46px;
  text-decoration: none;
}

.idw-actions a:first-child {
  background: var(--idp-gold-500);
  border: 1px solid var(--idp-gold-500);
  color: var(--idp-green-950);
  padding: 0 22px;
}

.idw-actions a:last-child {
  background: rgba(255, 253, 248, 0.08);
  border: 1px solid rgba(255, 253, 248, 0.52);
  color: var(--idp-white);
  padding: 0 22px;
}

.idw-section {
  margin: 0 auto;
  max-width: 1220px;
  padding: clamp(52px, 7vw, 96px) 24px;
}

.idw-section--cream {
  background: rgba(248, 243, 232, 0.72);
  max-width: none;
}

.idw-section--cream > * {
  margin-left: auto;
  margin-right: auto;
  max-width: 1220px;
}

.idw-section__head {
  align-items: end;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: clamp(22px, 3vw, 36px);
}

.idw-section__head h2,
.idw-archive-hero h1,
.idw-cart-reassurance h1,
.idw-checkout-reassurance h1,
.idw-account-intro h1 {
  margin: 0;
}

.idw-section__head p,
.idw-archive-hero p,
.idw-cart-reassurance p,
.idw-checkout-reassurance p,
.idw-account-intro p {
  color: var(--idp-muted);
  margin: 8px 0 0;
  max-width: 660px;
}

.idw-collection-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.idw-collection-card {
  background:
    linear-gradient(180deg, rgba(8, 38, 31, 0.1), rgba(8, 38, 31, 0.78)),
    var(--idw-image);
  background-position: center;
  background-size: cover;
  border-radius: var(--idp-radius-lg);
  color: var(--idp-white) !important;
  display: flex;
  min-height: 260px;
  overflow: hidden;
  padding: 22px;
  position: relative;
  text-decoration: none;
}

.idw-collection-card strong {
  align-self: end;
  color: var(--idp-white);
  font-family: var(--idp-font-heading);
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.02;
  max-width: 180px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.idw-collection-card:hover,
.idw-product-feature:hover,
.idw-review-card:hover {
  transform: translateY(-3px);
}

.idw-feature-grid,
.idw-review-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.idw-product-feature,
.idw-review-card,
.idw-archive-hero,
.idw-after-loop,
.idw-cart-reassurance,
.idw-checkout-reassurance,
.idw-account-intro,
.idw-product-guide {
  background: var(--idp-white);
  border: var(--idp-border);
  border-radius: var(--idp-radius-lg);
  box-shadow: var(--idp-shadow-sm);
}

.idw-product-feature,
.idw-review-card {
  padding: clamp(18px, 2.2vw, 26px);
  transition: transform var(--idp-transition), box-shadow var(--idp-transition);
}

.idw-product-feature h3,
.idw-review-card strong {
  color: var(--idp-green-950);
  display: block;
}

.idw-product-feature p,
.idw-review-card p {
  color: var(--idp-muted);
}

.idw-stars {
  color: var(--idp-gold-600);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.idw-trust-strip {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.idw-trust-item {
  align-items: center;
  background: rgba(255, 253, 248, 0.76);
  border: var(--idp-border);
  border-radius: var(--idp-radius-lg);
  display: grid;
  gap: 4px 12px;
  grid-template-columns: 38px 1fr;
  padding: 14px;
}

.idw-trust-item svg,
.idw-product-assurance svg {
  fill: none;
  height: 24px;
  stroke: var(--idp-gold-600);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 24px;
}

.idw-trust-item strong,
.idw-product-assurance strong {
  color: var(--idp-green-950);
  font-weight: 900;
}

.idw-trust-item span,
.idw-product-assurance span {
  color: var(--idp-muted);
  font-size: 13px;
  grid-column: 2;
  line-height: 1.35;
}

.idw-archive-hero,
.idw-after-loop,
.idw-cart-reassurance,
.idw-checkout-reassurance,
.idw-account-intro,
.idw-product-guide {
  margin: 0 auto 24px;
  max-width: 1220px;
  padding: clamp(18px, 3vw, 34px);
}

.idw-archive-hero {
  align-items: end;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.idw-collection-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.idw-collection-nav a {
  background: rgba(13, 51, 42, 0.07);
  border: 1px solid rgba(13, 51, 42, 0.13);
  color: var(--idp-green-950);
  font-size: 13px;
  min-height: 38px;
  padding: 0 13px;
}

.idw-collection-nav a:hover {
  background: var(--idp-green-900);
  border-color: var(--idp-green-900);
  color: var(--idp-white);
}

.idw-after-loop {
  display: grid;
  gap: 22px;
}

.idw-product-assurance {
  border-top: var(--idp-border);
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
}

.idw-product-assurance > div {
  align-items: start;
  display: grid;
  gap: 2px 10px;
  grid-template-columns: 28px 1fr;
}

.idw-product-guide {
  display: grid;
  gap: 12px;
}

.idw-product-guide details {
  background: var(--idp-cream-050);
  border: var(--idp-border);
  border-radius: var(--idp-radius);
  padding: 14px 16px;
}

.idw-product-guide summary {
  color: var(--idp-green-950);
  cursor: pointer;
  font-weight: 900;
}

.idw-product-guide p {
  color: var(--idp-muted);
  margin: 10px 0 0;
}

.idw-cart-reassurance .idw-trust-strip,
.idw-checkout-reassurance .idw-trust-strip {
  margin-top: 18px;
}

body.idw-experience-system :focus-visible {
  outline: 3px solid rgba(200, 168, 93, 0.82) !important;
  outline-offset: 3px;
}

@media (max-width: 849px) {
  .idw-home-hero__inner,
  .idw-archive-hero,
  .idw-section__head {
    grid-template-columns: 1fr;
  }

  .idw-home-hero__inner {
    display: grid;
    padding-left: 18px;
    padding-right: 18px;
  }

  .idw-home-hero__panel {
    display: none;
  }

  .idw-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .idw-collection-grid,
  .idw-feature-grid,
  .idw-review-grid,
  .idw-trust-strip {
    grid-template-columns: 1fr;
  }

  .idw-collection-card {
    min-height: 170px;
  }

  .idw-actions a {
    width: 100%;
  }
}

/* Irish District dark fashion identity
   Global visual-only override layer for the premium dark storefront direction.
   Keep this at the end so it wins over Flatsome, WooCommerce, and earlier light-system styles. */
:root {
  --id-black: #050505;
  --id-soft-black: #0D0D0D;
  --id-charcoal: #141414;
  --id-dark-slate: #202225;
  --id-deep-green: #0E3B2E;
  --id-emerald: #0F4A34;
  --id-gold: #B89A5B;
  --id-stone: #B7B2A8;
  --id-cream: #F5F4EF;
  --id-muted-text: #A8A39A;

  --idp-green-950: var(--id-black);
  --idp-green-900: var(--id-deep-green);
  --idp-green-800: var(--id-emerald);
  --idp-green-700: #145b40;
  --idp-gold-600: var(--id-gold);
  --idp-gold-500: #c7ad71;
  --idp-gold-300: #ddc893;
  --idp-cream-100: #171717;
  --idp-cream-050: var(--id-black);
  --idp-stone-200: #302f2c;
  --idp-stone-300: #45423c;
  --idp-stone-500: var(--id-stone);
  --idp-charcoal-950: var(--id-cream);
  --idp-charcoal-800: var(--id-muted-text);
  --idp-muted: var(--id-muted-text);
  --idp-white: var(--id-cream);
  --idp-success: #62b58f;
  --idp-warning: var(--id-gold);
  --idp-error: #d26f63;

  --idp-border: 1px solid rgba(183, 178, 168, 0.16);
  --idp-border-strong: 1px solid rgba(184, 154, 91, 0.42);
  --idp-shadow-sm: 0 12px 34px rgba(0, 0, 0, 0.28);
  --idp-shadow-md: 0 22px 58px rgba(0, 0, 0, 0.36);
  --idp-shadow-lg: 0 32px 80px rgba(0, 0, 0, 0.46);
}

html,
body,
#wrapper,
#main,
.page-wrapper,
.shop-container,
.product-container,
.cart-container,
.checkout-page-title,
.woocommerce-account .page-wrapper {
  background: var(--id-black) !important;
}

body {
  background:
    radial-gradient(circle at 18% 0%, rgba(14, 59, 46, 0.48), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(184, 154, 91, 0.12), transparent 24rem),
    linear-gradient(180deg, var(--id-black) 0%, var(--id-soft-black) 42%, var(--id-black) 100%) !important;
  color: var(--id-cream) !important;
}

body,
p,
li,
td,
th,
label,
legend,
.text,
.entry-content,
.product-short-description,
.woocommerce-terms-and-conditions-wrapper,
.tab-panels,
.shop-container .term-description,
.woocommerce-product-details__short-description {
  color: var(--id-muted-text) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.page-title,
.product-title,
.section-title,
.widget-title,
.uppercase,
.cart_totals h2,
.woocommerce-billing-fields h3,
.woocommerce-additional-fields h3,
#order_review_heading,
.idw-section h2,
.idw-archive-hero h1,
.idw-product-guide h2 {
  color: var(--id-cream) !important;
}

a,
.breadcrumbs a,
.woocommerce-breadcrumb a,
.woocommerce-LoopProduct-link,
.woocommerce-loop-product__link {
  color: var(--id-cream) !important;
}

a:hover,
.breadcrumbs a:hover,
.woocommerce-breadcrumb a:hover,
.woocommerce-LoopProduct-link:hover {
  color: var(--id-gold) !important;
}

.header-wrapper,
.header-main,
.stuck .header-main,
.header-bottom,
.mobile-sidebar,
.off-canvas-left .mfp-content,
.off-canvas-right .mfp-content,
.mfp-content,
.ux-off-canvas,
.cart-popup-inner,
.widget_shopping_cart,
.woocommerce-mini-cart,
.account-dropdown,
.nav-dropdown,
.sub-menu,
.ux-menu-link,
.searchform-wrapper,
.header-search-form-wrapper {
  background: rgba(5, 5, 5, 0.98) !important;
  border-color: rgba(183, 178, 168, 0.14) !important;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.54) !important;
  color: var(--id-cream) !important;
}

.header-wrapper,
.header-main,
.stuck .header-main {
  border-bottom: 1px solid rgba(184, 154, 91, 0.16) !important;
}

#logo img,
.header-logo,
.header-logo-dark {
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.46));
}

.nav > li > a,
.mobile-sidebar .nav > li > a,
.header-nav-main.nav > li > a,
.nav-dropdown a,
.sub-menu a,
.ux-menu-link a,
.account-link,
.cart-item .header-cart-link,
.header a,
.mobile-sidebar a,
.off-canvas a,
.nav .icon-search,
.nav .icon-user,
.nav .icon-shopping-bag,
.nav .icon-menu,
.cart-icon strong {
  color: var(--id-cream) !important;
}

.nav > li.active > a,
.nav > li.current-menu-item > a,
.nav > li > a:hover,
.nav-dropdown a:hover,
.sub-menu a:hover,
.ux-menu-link a:hover,
.mobile-sidebar .nav > li > a:hover {
  color: var(--id-gold) !important;
}

.nav > li.active > a::after,
.nav > li.current-menu-item > a::after {
  background: var(--id-gold) !important;
}

.header-button .button,
.header .button,
.mobile-sidebar .button,
.woocommerce-mini-cart__buttons a {
  background: var(--id-deep-green) !important;
  border: 1px solid rgba(184, 154, 91, 0.46) !important;
  color: var(--id-cream) !important;
}

.header-button .button:hover,
.header .button:hover,
.mobile-sidebar .button:hover,
.woocommerce-mini-cart__buttons a:hover {
  background: var(--id-gold) !important;
  border-color: var(--id-gold) !important;
  color: var(--id-black) !important;
}

.idw-home-hero,
.id-hero,
.page-title-bg,
.shop-page-title,
.category-page-title {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.9), rgba(14, 59, 46, 0.7), rgba(5, 5, 5, 0.35)),
    var(--idw-hero-image, none),
    linear-gradient(135deg, var(--id-black), var(--id-deep-green)) !important;
  border-bottom: 1px solid rgba(184, 154, 91, 0.2) !important;
}

.idw-home-hero::after {
  background:
    linear-gradient(90deg, rgba(184, 154, 91, 0.15), transparent 28%),
    radial-gradient(circle at 76% 28%, rgba(184, 154, 91, 0.16), transparent 22rem) !important;
}

.idw-home-hero__panel,
.idw-section,
.idw-section--cream,
.id-band,
.section,
.row-box-shadow-1,
.row-box-shadow-2,
.banner,
.box,
.box-text {
  background-color: transparent !important;
}

.idw-home-hero__panel,
.idw-product-feature,
.idw-review-card,
.idw-archive-hero,
.idw-after-loop,
.idw-cart-reassurance,
.idw-checkout-reassurance,
.idw-account-intro,
.idw-product-guide,
.idw-trust-item,
.product-small .box,
.products .product .box,
.product-small.box,
.shop-container .woocommerce-products-header,
.single-product .product-gallery,
.single-product .summary,
.single-product .woocommerce-tabs,
.product-footer .woocommerce-tabs,
.account-user,
.woocommerce-MyAccount-content,
.woocommerce-MyAccount-navigation,
.cart_totals,
.checkout-sidebar,
.woocommerce-checkout-review-order,
.shop_table,
.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-additional-fields,
.woocommerce-checkout-payment,
.woocommerce-customer-details,
.woocommerce-order-details,
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register,
.woocommerce table.shop_table,
.woocommerce-cart-form,
.woocommerce-order,
.woocommerce-thankyou-order-received,
.woocommerce-Address,
.woocommerce-address-fields,
.widget,
.widget-area,
.sidebar,
.filter-panel {
  background: linear-gradient(180deg, rgba(32, 34, 37, 0.96), rgba(13, 13, 13, 0.98)) !important;
  border: 1px solid rgba(183, 178, 168, 0.16) !important;
  box-shadow: var(--idp-shadow-sm) !important;
  color: var(--id-cream) !important;
}

.idw-product-feature:hover,
.idw-review-card:hover,
.product-small .box:hover,
.products .product .box:hover {
  border-color: rgba(184, 154, 91, 0.52) !important;
  box-shadow: 0 24px 66px rgba(0, 0, 0, 0.44), 0 0 0 1px rgba(14, 59, 46, 0.55) !important;
}

.idw-product-feature h3,
.idw-review-card strong,
.idw-trust-item strong,
.idw-product-assurance strong,
.product-small .name,
.product-small .woocommerce-loop-product__title,
.products .product-title,
.woocommerce-loop-product__title,
.single-product .product-title,
.product_meta,
.woocommerce-tabs .tabs li a,
.idw-product-guide summary,
.cart_totals h2,
.woocommerce-cart .cart_totals h2,
.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
  color: var(--id-cream) !important;
}

.idw-product-feature p,
.idw-review-card p,
.idw-trust-item span,
.idw-product-assurance span,
.idw-product-guide p,
.product_meta a,
.woocommerce-result-count,
.woocommerce-breadcrumb,
.breadcrumbs,
.product-categories,
.widget,
.widget p,
.widget li,
.woocommerce table.shop_table th,
.woocommerce table.shop_table td,
.cart_totals table th,
.cart_totals table td {
  color: var(--id-muted-text) !important;
}

.idw-stars,
.woocommerce-Price-amount,
.product-small .price,
.price,
.star-rating,
.star-rating span,
.review-rating,
.woocommerce-review__published-date,
.product_meta a:hover {
  color: var(--id-gold) !important;
}

.idw-trust-item svg,
.idw-product-assurance svg,
.icon-box-img svg,
.is-divider,
.divider {
  color: var(--id-gold) !important;
  stroke: var(--id-gold) !important;
  border-color: rgba(184, 154, 91, 0.46) !important;
}

.button,
button,
input[type="submit"],
input[type="button"],
.single_add_to_cart_button,
.checkout-button,
#place_order,
.wc-proceed-to-checkout a.checkout-button,
.add_to_cart_button,
.product_type_variable,
.product-small .add-to-cart-button a,
.woocommerce-mini-cart__buttons a,
.idw-actions a:first-child,
.idw-collection-nav a:hover {
  background: var(--id-deep-green) !important;
  background-image: none !important;
  border: 1px solid rgba(184, 154, 91, 0.5) !important;
  border-radius: 2px !important;
  box-shadow: none !important;
  color: var(--id-cream) !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
.single_add_to_cart_button:hover,
.checkout-button:hover,
#place_order:hover,
.wc-proceed-to-checkout a.checkout-button:hover,
.add_to_cart_button:hover,
.product_type_variable:hover,
.product-small .add-to-cart-button a:hover,
.idw-actions a:first-child:hover {
  background: var(--id-gold) !important;
  border-color: var(--id-gold) !important;
  color: var(--id-black) !important;
  transform: translateY(-1px);
}

.button.is-outline,
.button.secondary,
.idw-actions a:last-child,
.idw-collection-nav a,
.woocommerce .return-to-shop a {
  background: transparent !important;
  border: 1px solid rgba(184, 154, 91, 0.55) !important;
  color: var(--id-cream) !important;
}

.button.is-outline:hover,
.button.secondary:hover,
.idw-actions a:last-child:hover,
.idw-collection-nav a:hover,
.woocommerce .return-to-shop a:hover {
  background: rgba(184, 154, 91, 0.14) !important;
  color: var(--id-gold) !important;
}

input,
select,
textarea,
.select2-container .select2-selection,
.select2-dropdown,
.select2-results,
.select2-search__field,
.search-field,
.quantity input[type="number"],
.quantity .minus,
.quantity .plus,
.coupon input,
.woocommerce-input-wrapper input,
.woocommerce-input-wrapper textarea,
.woocommerce-input-wrapper select {
  background: var(--id-soft-black) !important;
  border: 1px solid rgba(183, 178, 168, 0.3) !important;
  border-radius: 2px !important;
  color: var(--id-cream) !important;
  box-shadow: none !important;
}

input::placeholder,
textarea::placeholder,
.select2-selection__placeholder {
  color: rgba(168, 163, 154, 0.78) !important;
}

input:focus,
select:focus,
textarea:focus,
.select2-container--open .select2-selection,
.quantity input[type="number"]:focus {
  border-color: var(--id-gold) !important;
  box-shadow: 0 0 0 3px rgba(184, 154, 91, 0.18) !important;
  outline: none !important;
}

.select2-results__option,
.select2-results__option[aria-selected] {
  background: var(--id-charcoal) !important;
  color: var(--id-cream) !important;
}

.select2-results__option--highlighted,
.select2-results__option[aria-selected="true"] {
  background: var(--id-deep-green) !important;
  color: var(--id-cream) !important;
}

.product-small .box-image,
.products .box-image,
.single-product .woocommerce-product-gallery,
.product-thumbnails a,
.flickity-slider .woocommerce-product-gallery__image {
  background: #101010 !important;
  border-color: rgba(183, 178, 168, 0.12) !important;
}

.product-small .badge-inner,
.badge-inner,
.onsale,
.sale-badge,
.wc-block-components-sale-badge {
  background: var(--id-gold) !important;
  border: 1px solid rgba(245, 244, 239, 0.28) !important;
  color: var(--id-black) !important;
}

.stock,
.stock.in-stock,
.available-on-backorder {
  color: #8fd0aa !important;
}

.out-of-stock,
.stock.out-of-stock,
.woocommerce-error,
.woocommerce-error li,
.form-row.woocommerce-invalid label {
  color: #f0aaa2 !important;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-notice,
.wc-block-components-notice-banner,
.message-container,
.success-color,
.alert-color {
  background: var(--id-charcoal) !important;
  border: 1px solid rgba(184, 154, 91, 0.42) !important;
  color: var(--id-cream) !important;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
  color: var(--id-gold) !important;
}

.variations_form,
.variations,
.reset_variations,
.variable-items-wrapper,
.variable-item,
.button-variable-item,
.color-variable-item,
.image-variable-item,
.woo-variation-swatches .variable-items-wrapper .variable-item {
  background: var(--id-soft-black) !important;
  border-color: rgba(183, 178, 168, 0.24) !important;
  color: var(--id-cream) !important;
}

.woo-variation-swatches .variable-items-wrapper .variable-item.selected,
.woo-variation-swatches .variable-items-wrapper .variable-item:hover,
.variable-item.selected,
.variable-item:hover {
  border-color: var(--id-gold) !important;
  box-shadow: 0 0 0 2px rgba(184, 154, 91, 0.2) !important;
}

.woocommerce-tabs .nav,
.woocommerce-tabs .tabs li a,
.idw-product-guide details,
.accordion-title,
.accordion-inner,
.tab-panels,
.shop_table,
.woocommerce-checkout-payment ul.payment_methods,
.payment_box,
.wc_payment_methods,
.payment_method_paypal,
.payment_method_stripe,
.payment_method_woocommerce_payments,
.wc-stripe-elements-field,
.StripeElement,
.wc-block-components-checkout-step,
.wc-block-components-sidebar,
.wc-block-components-panel,
.wc-block-cart-items,
.wc-block-cart__totals-title,
.wc-block-components-totals-wrapper {
  background: var(--id-soft-black) !important;
  border-color: rgba(183, 178, 168, 0.16) !important;
  color: var(--id-cream) !important;
}

.payment_box,
.woocommerce-checkout-payment .payment_box,
.wc_payment_method label,
.payment_method_paypal label,
.payment_method_stripe label,
.payment_method_woocommerce_payments label {
  color: var(--id-cream) !important;
}

.woocommerce-checkout-payment img,
.payment_method_paypal img,
.payment_method_stripe img {
  background: var(--id-cream) !important;
  border-radius: 2px;
  padding: 2px;
}

.woocommerce-cart table.shop_table th,
.woocommerce-cart table.shop_table td,
.woocommerce table.shop_table th,
.woocommerce table.shop_table td,
.order-total,
.cart-subtotal,
.shipping,
.tax-rate,
.fee {
  border-color: rgba(183, 178, 168, 0.14) !important;
}

.woocommerce-MyAccount-navigation li {
  border-color: rgba(183, 178, 168, 0.12) !important;
}

.woocommerce-MyAccount-navigation a,
.woocommerce-MyAccount-content a,
.lost_password a,
.woocommerce-LostPassword a {
  color: var(--id-cream) !important;
}

.woocommerce-MyAccount-navigation .is-active a,
.woocommerce-MyAccount-navigation a:hover,
.woocommerce-MyAccount-content a:hover,
.lost_password a:hover {
  background: rgba(14, 59, 46, 0.82) !important;
  color: var(--id-gold) !important;
}

.footer-wrapper,
footer,
.absolute-footer,
.footer-1,
.footer-2 {
  background:
    radial-gradient(circle at 20% 0%, rgba(14, 59, 46, 0.38), transparent 24rem),
    linear-gradient(180deg, #090909, var(--id-black)) !important;
  border-top: 1px solid rgba(184, 154, 91, 0.22) !important;
  color: var(--id-muted-text) !important;
}

.footer-wrapper h1,
.footer-wrapper h2,
.footer-wrapper h3,
.footer-wrapper h4,
.footer-wrapper .widget-title,
.footer-wrapper strong {
  color: var(--id-cream) !important;
}

.footer-wrapper a,
.absolute-footer a {
  color: var(--id-muted-text) !important;
}

.footer-wrapper a:hover,
.absolute-footer a:hover {
  color: var(--id-gold) !important;
}

.pagination a,
.pagination span,
.page-numbers,
.woocommerce-pagination a,
.woocommerce-pagination span {
  background: var(--id-soft-black) !important;
  border: 1px solid rgba(183, 178, 168, 0.2) !important;
  color: var(--id-cream) !important;
}

.pagination .current,
.page-numbers.current,
.woocommerce-pagination .current {
  background: var(--id-deep-green) !important;
  border-color: var(--id-gold) !important;
  color: var(--id-cream) !important;
}

.mfp-bg,
.off-canvas-center .mfp-content,
.lightbox-content {
  background: rgba(5, 5, 5, 0.92) !important;
}

.mfp-close,
.mfp-close-btn-in .mfp-close,
.toggle,
.icon-angle-down,
.icon-angle-up {
  color: var(--id-cream) !important;
}

body.idw-experience-system :focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[role="button"]:focus-visible {
  outline: 3px solid rgba(184, 154, 91, 0.95) !important;
  outline-offset: 3px !important;
}

@media (max-width: 849px) {
  .header-main,
  .stuck .header-main {
    background: var(--id-black) !important;
  }

  .mobile-sidebar,
  .off-canvas-left .mfp-content,
  .off-canvas-right .mfp-content {
    background:
      radial-gradient(circle at top, rgba(14, 59, 46, 0.34), transparent 18rem),
      var(--id-black) !important;
  }

  .product-small .box,
  .products .product .box,
  .idw-product-feature,
  .idw-review-card,
  .idw-trust-item,
  .idw-archive-hero,
  .idw-after-loop,
  .idw-cart-reassurance,
  .idw-checkout-reassurance,
  .idw-account-intro,
  .idw-product-guide,
  .single-product .summary,
  .cart_totals,
  .woocommerce-checkout-review-order {
    border-radius: 2px !important;
  }
}

/* Irish District homepage finish pass
   Visual-only polish for the premium dark fashion homepage and shared header. */
:root {
  --id-card: #181818;
  --id-border: #2A2A2A;
  --id-green-hover: #14523E;
  --id-muted: #A8A39A;
  --id-container: 1280px;
  --id-radius-sm: 4px;
  --id-radius-md: 6px;
  --id-radius-lg: 8px;
  --id-ease: 180ms ease;
}

body.home #main,
body.home .page-wrapper,
body.home .entry-content {
  background:
    radial-gradient(circle at 16% 0%, rgba(14, 59, 46, .34), transparent 25rem),
    linear-gradient(180deg, var(--id-black) 0%, var(--id-soft-black) 46%, var(--id-black) 100%) !important;
}

.header-wrapper {
  position: relative;
  z-index: 50;
}

.header-wrapper,
.header-main,
.stuck .header-main,
.header-top {
  background: rgba(5, 5, 5, .98) !important;
  border-color: rgba(184, 154, 91, .16) !important;
  box-shadow: none !important;
}

#top-bar.header-top {
  min-height: 38px !important;
  height: auto !important;
}

#top-bar .flex-row,
#top-bar .nav,
#top-bar .nav > li {
  min-height: 38px !important;
  height: auto !important;
}

.hub-top-item {
  align-items: center;
  display: inline-flex;
  gap: 8px;
  line-height: 1;
}

.hub-top-icon {
  align-items: center;
  background: rgba(14, 59, 46, .72);
  border: 1px solid rgba(184, 154, 91, .24);
  border-radius: 999px;
  display: inline-flex;
  height: 22px;
  justify-content: center;
  width: 22px;
}

.hub-top-item strong {
  color: var(--id-cream) !important;
  font-family: var(--idp-font-body);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .01em !important;
  text-transform: uppercase;
}

.hub-top-item span {
  color: var(--id-stone) !important;
  font-size: 11px;
  font-weight: 700;
}

#masthead.header-main,
#masthead.irishdistrict-desktop-header-ready {
  min-height: 76px !important;
  height: 76px !important;
}

#masthead .header-inner {
  align-items: center !important;
  display: flex !important;
  height: 76px !important;
  max-height: 76px !important;
  max-width: var(--id-container) !important;
  min-height: 76px !important;
  overflow: visible !important;
  position: relative !important;
}

#masthead .header-nav-main {
  align-items: center !important;
  display: flex !important;
  gap: 14px !important;
  height: 76px !important;
  justify-content: space-between !important;
  width: 100% !important;
}

#masthead.irishdistrict-desktop-header-ready .header-inner > .hide-for-medium.flex-left {
  height: auto !important;
  left: auto !important;
  max-width: 100% !important;
  position: relative !important;
  top: auto !important;
  transform: none !important;
  width: 100% !important;
}

#masthead.irishdistrict-desktop-header-ready .header-inner > .hide-for-medium.flex-left > .header-nav-main {
  justify-content: center !important;
  left: auto !important;
  position: relative !important;
  top: auto !important;
}

#masthead.irishdistrict-desktop-header-ready .header-inner > .hide-for-medium.flex-right {
  height: auto !important;
  position: relative !important;
  right: auto !important;
  top: auto !important;
  width: auto !important;
}

#masthead .irishdistrict-desktop-brand,
#masthead .hubirish-desktop-brand {
  align-items: center !important;
  display: flex !important;
  flex: 0 0 292px !important;
  height: 60px !important;
  margin: 0 18px 0 0 !important;
  order: 0 !important;
}

#masthead .irishdistrict-desktop-brand > a,
#masthead .hubirish-desktop-brand > a,
#masthead #logo a,
#masthead .logo a {
  align-items: center !important;
  background: linear-gradient(135deg, rgba(14, 59, 46, .95), rgba(8, 37, 30, .95)) !important;
  border: 1px solid rgba(184, 154, 91, .24) !important;
  border-radius: var(--id-radius-lg) !important;
  box-shadow: none !important;
  display: flex !important;
  height: 60px !important;
  justify-content: flex-start !important;
  padding: 8px 12px !important;
  width: 292px !important;
}

#masthead .irishdistrict-desktop-brand img,
#masthead .hubirish-desktop-brand img,
#masthead #logo img,
#masthead .logo img {
  filter: none !important;
  height: auto !important;
  max-height: 44px !important;
  max-width: 252px !important;
  object-fit: contain !important;
  width: 252px !important;
}

#masthead .irishdistrict-desktop-nav-wrap,
#masthead .hubirish-desktop-nav-wrap {
  align-items: center !important;
  display: flex !important;
  flex: 1 1 auto !important;
  height: 42px !important;
  justify-content: center !important;
  min-width: 0 !important;
  order: 1 !important;
}

#masthead .header-nav-main > li.menu-item > a,
#masthead .irishdistrict-desktop-nav-wrap > ul > li > a,
#masthead .hubirish-desktop-nav-wrap > ul > li > a,
.header-nav-main.nav > li > a {
  align-items: center !important;
  background: transparent !important;
  border: 1px solid rgba(183, 178, 168, .16) !important;
  border-radius: 999px !important;
  color: var(--id-stone) !important;
  display: inline-flex !important;
  font-size: 12px !important;
  font-weight: 850 !important;
  height: 38px !important;
  letter-spacing: .02em !important;
  min-height: 38px !important;
  padding: 0 14px !important;
}

#masthead .header-nav-main > li.menu-item > a:hover,
#masthead .header-nav-main > li.current-menu-item > a,
#masthead .header-nav-main > li.active > a {
  background: rgba(14, 59, 46, .54) !important;
  border-color: rgba(184, 154, 91, .46) !important;
  color: var(--id-cream) !important;
}

#masthead .header-search {
  flex: 0 0 42px !important;
  margin-left: auto !important;
  order: 2 !important;
}

#masthead .header-search .button,
#masthead .header-search a {
  align-items: center !important;
  background: var(--id-card) !important;
  border: 1px solid rgba(184, 154, 91, .3) !important;
  border-radius: var(--id-radius-md) !important;
  color: var(--id-cream) !important;
  display: inline-flex !important;
  height: 42px !important;
  justify-content: center !important;
  min-height: 42px !important;
  width: 42px !important;
}

#masthead .cart-item {
  flex: 0 0 auto !important;
  height: 46px !important;
  margin-left: 8px !important;
  order: 4 !important;
}

#masthead .idw-header-account {
  align-items: center !important;
  display: flex !important;
  flex: 0 0 auto !important;
  height: 42px !important;
  margin-left: 8px !important;
  order: 3 !important;
}

#masthead .idw-header-account a {
  align-items: center !important;
  background: rgba(24, 24, 24, .96) !important;
  border: 1px solid rgba(183, 178, 168, .18) !important;
  border-radius: 999px !important;
  color: var(--id-stone) !important;
  display: inline-flex !important;
  font-size: 12px !important;
  font-weight: 850 !important;
  height: 42px !important;
  justify-content: center !important;
  letter-spacing: .02em !important;
  min-height: 42px !important;
  padding: 0 14px !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
}

#masthead .idw-header-account a:hover {
  background: rgba(14, 59, 46, .66) !important;
  border-color: rgba(184, 154, 91, .46) !important;
  color: var(--id-cream) !important;
}

#masthead .cart-item .header-cart-link {
  align-items: center !important;
  background: linear-gradient(180deg, rgba(24, 24, 24, .98), rgba(13, 13, 13, .98)) !important;
  border: 1px solid rgba(184, 154, 91, .3) !important;
  border-radius: 999px !important;
  box-shadow: none !important;
  color: var(--id-cream) !important;
  display: inline-flex !important;
  gap: 8px !important;
  height: 46px !important;
  min-height: 46px !important;
  padding: 0 15px !important;
}

#masthead .cart-item .cart-price,
#masthead .cart-item .amount {
  color: var(--id-gold) !important;
}

#masthead .cart-icon,
#masthead .cart-icon strong {
  background: transparent !important;
  border-color: rgba(184, 154, 91, .34) !important;
  color: var(--id-cream) !important;
}

body.home .idw-home-hero {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, .92), rgba(14, 59, 46, .72) 52%, rgba(5, 5, 5, .55)),
    url('/wp-content/uploads/2024/09/14763047-1065176589132640.jpg'),
    linear-gradient(135deg, var(--id-black), var(--id-deep-green)) !important;
  background-position: center !important;
  background-size: cover !important;
  border-bottom: 1px solid rgba(184, 154, 91, .2) !important;
  min-height: clamp(500px, 54vw, 650px) !important;
}

body.home .idw-home-hero__inner {
  align-items: center !important;
  max-width: var(--id-container) !important;
  padding: clamp(66px, 8vw, 104px) 24px clamp(56px, 7vw, 88px) !important;
}

body.home .idw-home-hero h1 {
  color: var(--id-cream) !important;
  font-family: var(--idp-font-body) !important;
  font-size: clamp(52px, 6vw, 82px) !important;
  font-weight: 900 !important;
  line-height: .98 !important;
  max-width: 760px !important;
}

body.home .idw-home-hero p {
  color: var(--id-stone) !important;
  font-size: clamp(17px, 1.5vw, 21px) !important;
  max-width: 640px !important;
}

body.home .idw-home-hero__panel {
  align-self: center !important;
  background: linear-gradient(180deg, rgba(24, 24, 24, .94), rgba(13, 13, 13, .98)) !important;
  border: 1px solid rgba(184, 154, 91, .24) !important;
  border-radius: var(--id-radius-lg) !important;
  box-shadow: var(--idp-shadow-md) !important;
  color: var(--id-cream) !important;
}

body.home .idw-home-hero__panel strong {
  color: var(--id-cream) !important;
  font-family: var(--idp-font-body) !important;
  font-size: 25px !important;
  font-weight: 900 !important;
}

body.home .idw-home-hero__panel p {
  color: var(--id-stone) !important;
  font-size: 16px !important;
}

body.home .idw-section {
  max-width: var(--id-container) !important;
  padding: clamp(36px, 5vw, 68px) 24px !important;
}

body.home .idw-section--cream {
  background: transparent !important;
  max-width: var(--id-container) !important;
}

body.home .idw-section--cream > * {
  max-width: none !important;
}

body.home .idw-section + .idw-section {
  margin-top: 0 !important;
}

body.home .idw-section__head {
  align-items: end !important;
  margin-bottom: 24px !important;
}

body.home .idw-section__head h2 {
  color: var(--id-cream) !important;
  font-family: var(--idp-font-body) !important;
  font-size: clamp(30px, 3.5vw, 48px) !important;
  font-weight: 900 !important;
}

body.home .idw-section__head p {
  color: var(--id-muted) !important;
  font-size: 16px !important;
  max-width: 720px !important;
}

body.home .idw-trust-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

body.home .idw-product-feature,
body.home .idw-review-card {
  background: linear-gradient(180deg, rgba(24, 24, 24, .98), rgba(13, 13, 13, .98)) !important;
  border: 1px solid rgba(183, 178, 168, .16) !important;
  border-radius: var(--id-radius-md) !important;
}

body.home .idw-trust-section .idw-trust-item {
  min-height: 0 !important;
  padding: 6px 8px !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

body.home .idw-trust-item strong,
body.home .idw-product-feature h3 {
  color: var(--id-cream) !important;
  font-family: var(--idp-font-body) !important;
}

body.home .idw-collection-grid {
  gap: 18px !important;
}

body.home .idw-collection-card {
  border: 1px solid rgba(183, 178, 168, .14) !important;
  border-radius: var(--id-radius-md) !important;
  min-height: 240px !important;
}

body.home .idw-collection-card::after {
  background: linear-gradient(180deg, transparent, rgba(5, 5, 5, .34));
  content: "";
  inset: 0;
  position: absolute;
}

body.home .idw-collection-card strong {
  font-family: var(--idp-font-body) !important;
  font-size: clamp(24px, 2.2vw, 34px) !important;
  font-weight: 900 !important;
  position: relative;
  z-index: 2;
}

body.home .products {
  align-items: stretch !important;
  gap: 14px !important;
}
body.home .idw-product-rail .products,
body.home .idw-hero-bestsellers .products,
body.home .idw-gaa-rail .products,
body.home .idw-rugby-football-rail .products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 14px !important;
}
body.home .idw-product-rail .products .product,
body.home .idw-product-rail .products .product-small,
body.home .idw-hero-bestsellers .products .product,
body.home .idw-gaa-rail .products .product,
body.home .idw-rugby-football-rail .products .product {
  width: auto !important;
  max-width: none !important;
  flex: none !important;
  float: none !important;
  margin: 0 !important;
  clear: none !important;
}
@media (max-width: 849px) {
  body.home .idw-product-rail .products,
  body.home .idw-hero-bestsellers .products,
  body.home .idw-gaa-rail .products,
  body.home .idw-rugby-football-rail .products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }
}

body.home .product-small,
body.home .products .product {
  margin-bottom: 0 !important;
}

body.home .product-small .box,
body.home .products .product .box {
  background: linear-gradient(180deg, rgba(24, 24, 24, .98), rgba(13, 13, 13, .99)) !important;
  border: 1px solid rgba(183, 178, 168, .16) !important;
  border-radius: var(--id-radius-md) !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  overflow: hidden !important;
  padding: 10px !important;
  position: relative !important;
}

body.home .product-small .box-image,
body.home .products .box-image {
  aspect-ratio: 1 / 1 !important;
  background: #f3f2ee !important;
  border-radius: var(--id-radius-sm) !important;
  overflow: hidden !important;
  position: relative !important;
}

body.home .product-small .box-image::after,
body.home .products .box-image::after {
  align-items: center;
  background: rgba(5, 5, 5, .78);
  border: 1px solid rgba(184, 154, 91, .48);
  border-radius: 999px;
  bottom: 12px;
  color: var(--id-cream);
  content: "View product";
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  left: 50%;
  letter-spacing: .01em;
  min-height: 34px;
  opacity: 0;
  padding: 0 14px;
  pointer-events: none;
  position: absolute;
  transform: translate(-50%, 8px);
  transition: opacity var(--id-ease), transform var(--id-ease);
  white-space: nowrap;
}

body.home .product-small .box:hover .box-image::after,
body.home .products .product .box:hover .box-image::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

body.home .product-small .box-image img,
body.home .products .box-image img {
  height: 100% !important;
  object-fit: contain !important;
  padding: 8px !important;
  width: 100% !important;
}

body.home .product-small .box-text,
body.home .products .box-text {
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  min-height: 132px !important;
  padding: 16px 12px 14px !important;
}

body.home .product-small .name,
body.home .product-small .woocommerce-loop-product__title,
body.home .products .product-title {
  color: var(--id-cream) !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 1.25 !important;
  text-align: center !important;
}

body.home .price,
body.home .price .amount,
body.home .woocommerce-Price-amount {
  color: var(--id-gold) !important;
  font-size: 15px !important;
  font-weight: 900 !important;
}

body.home .idw-feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

body.home .idw-shop-router {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
}

body.home .idw-router-panel,
body.home .idw-router-card {
  background: linear-gradient(180deg, rgba(24, 24, 24, .98), rgba(13, 13, 13, .98)) !important;
  border: 1px solid rgba(183, 178, 168, .16) !important;
  border-radius: var(--id-radius-md) !important;
  color: var(--id-cream) !important;
}

body.home .idw-router-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  padding: clamp(22px, 3vw, 34px);
}

body.home .idw-router-panel h3 {
  color: var(--id-cream) !important;
  font-family: var(--idp-font-body) !important;
  font-size: clamp(28px, 3vw, 42px) !important;
  font-weight: 900 !important;
  line-height: 1;
  margin: 0 0 12px;
}

body.home .idw-router-panel p {
  color: var(--id-stone) !important;
  font-size: 16px;
  margin: 0;
  max-width: 520px;
}

body.home .idw-router-list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.home .idw-router-card {
  min-height: 154px;
  padding: 18px;
  text-decoration: none !important;
  transition: border-color var(--id-ease), transform var(--id-ease), background var(--id-ease);
}

body.home .idw-router-card span {
  color: var(--id-gold);
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

body.home .idw-router-card strong {
  color: var(--id-cream);
  display: block;
  font-family: var(--idp-font-body);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 8px;
}

body.home .idw-router-card em {
  color: var(--id-muted);
  display: block;
  font-size: 13px;
  font-style: normal;
  line-height: 1.45;
}

body.home .idw-router-card:hover,
body.home .idw-router-card:focus-visible {
  background: linear-gradient(180deg, rgba(14, 59, 46, .84), rgba(13, 13, 13, .98)) !important;
  border-color: rgba(184, 154, 91, .55) !important;
  transform: translateY(-2px);
}

body.home .idw-reassurance-band {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(14, 59, 46, .9), rgba(13, 13, 13, .98)) !important;
  border: 1px solid rgba(184, 154, 91, .24);
  border-radius: var(--id-radius-md);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: clamp(22px, 3vw, 34px);
}

body.home .idw-reassurance-band h2 {
  color: var(--id-cream) !important;
  font-family: var(--idp-font-body) !important;
  font-size: clamp(26px, 3vw, 40px) !important;
  font-weight: 900 !important;
  margin: 0 0 8px;
}

body.home .idw-reassurance-band p {
  color: var(--id-stone) !important;
  margin: 0;
  max-width: 740px;
}

body.home .idw-product-feature {
  min-height: 180px !important;
  padding: 22px !important;
}

body.home .idw-product-feature h3 {
  font-size: 20px !important;
  line-height: 1.15 !important;
}

body.home .idw-product-feature p {
  color: var(--id-muted) !important;
  font-size: 14px !important;
}

body.home .hisn-section {
  margin: clamp(34px, 5vw, 64px) auto !important;
  max-width: var(--id-container) !important;
  padding: clamp(30px, 4vw, 48px) !important;
}

body.home .hisn-layout,
body.home .hisn-grid,
body.home .hisn-grid--rest {
  gap: 18px !important;
}

body.home .hisn-featured,
body.home .hisn-card,
body.home .hisn-list-item {
  border-radius: var(--id-radius-md) !important;
  overflow: hidden !important;
}

body.home .hisn-thumb {
  aspect-ratio: 16 / 10 !important;
}

body.home .hisn-thumb img {
  height: 100% !important;
  object-fit: cover !important;
  width: 100% !important;
}

body.home .hisn-headline {
  font-size: clamp(18px, 2vw, 30px) !important;
  line-height: 1.1 !important;
}

body.home .hisn-card .hisn-headline,
body.home .hisn-list-item .hisn-headline {
  font-size: 16px !important;
}

body.home .footer-wrapper {
  margin-top: clamp(36px, 6vw, 72px) !important;
}

.footer-wrapper,
footer,
.absolute-footer {
  overflow: hidden !important;
}

@media (max-width: 1180px) {
  #masthead .irishdistrict-desktop-brand,
  #masthead .hubirish-desktop-brand,
  #masthead .irishdistrict-desktop-brand > a,
  #masthead .hubirish-desktop-brand > a {
    flex-basis: 242px !important;
    width: 242px !important;
  }

  #masthead .irishdistrict-desktop-brand img,
  #masthead .hubirish-desktop-brand img {
    max-width: 212px !important;
    width: 212px !important;
  }

  #masthead .header-nav-main > li.menu-item > a {
    font-size: 11px !important;
    padding: 0 10px !important;
  }
}

/* Structural navigation rebuild: keep the fuller HubIrish route set usable in the darker Irish District header. */
@media (min-width: 850px) {
  #masthead .irishdistrict-desktop-brand,
  #masthead .hubirish-desktop-brand,
  #masthead .irishdistrict-desktop-brand > a,
  #masthead .hubirish-desktop-brand > a {
    flex-basis: 226px !important;
    width: 226px !important;
  }

  #masthead .irishdistrict-desktop-brand img,
  #masthead .hubirish-desktop-brand img {
    max-width: 198px !important;
    width: 198px !important;
  }

  #masthead .header-nav-main {
    gap: 5px !important;
  }

  #masthead .header-nav-main > li.menu-item > a {
    font-size: 10px !important;
    min-height: 34px !important;
    padding: 0 7px !important;
    white-space: nowrap !important;
  }

  #masthead .nav-dropdown,
  #masthead .sub-menu {
    background: rgba(13, 13, 13, .98) !important;
    border: 1px solid rgba(184, 154, 91, .24) !important;
    border-radius: var(--id-radius-sm) !important;
    box-shadow: var(--id-shadow-lg) !important;
    max-height: 72vh !important;
    overflow: auto !important;
  }

  #masthead .nav-dropdown a,
  #masthead .sub-menu a {
    color: var(--id-stone) !important;
    font-size: 12px !important;
  }

  #masthead .nav-dropdown a:hover,
  #masthead .sub-menu a:hover {
    background: rgba(14, 59, 46, .78) !important;
    color: var(--id-cream) !important;
  }
}

body.home .idw-product-rail + .idw-product-rail {
  margin-top: clamp(34px, 5vw, 58px) !important;
}

body.home .idw-product-rail .products {
  margin-bottom: 0 !important;
}

/* Header fit correction for the rebuilt full shopping route set. */
@media (min-width: 850px) {
  #masthead.irishdistrict-desktop-header-ready .header-inner,
  #masthead.hubirish-desktop-header-ready .header-inner,
  #masthead.idw-header-pro-ready .header-inner {
    max-width: 100% !important;
    padding-left: clamp(16px, 2.4vw, 32px) !important;
    padding-right: clamp(16px, 2.4vw, 32px) !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
  }

  #masthead.irishdistrict-desktop-header-ready .header-inner > .hide-for-medium.flex-left,
  #masthead.hubirish-desktop-header-ready .header-inner > .hide-for-medium.flex-left,
  #masthead.idw-header-pro-ready .header-inner > .hide-for-medium.flex-left {
    max-width: 100% !important;
    transform: none !important;
    width: 100% !important;
  }

  #masthead .irishdistrict-desktop-brand,
  #masthead .hubirish-desktop-brand {
    display: none !important;
  }

  #masthead .header-nav-main {
    gap: 6px !important;
    justify-content: center !important;
  }

  #masthead .header-nav-main > li.menu-item > a,
  #masthead .hubirish-desktop-nav-list > li > a,
  #masthead .irishdistrict-desktop-nav-list > li > a {
    font-size: 11.5px !important;
    height: 40px !important;
    min-height: 40px !important;
    padding: 0 14px !important;
  }

  #masthead.irishdistrict-desktop-header-ready .header-inner > .hide-for-medium.flex-right,
  #masthead.hubirish-desktop-header-ready .header-inner > .hide-for-medium.flex-right,
  #masthead.idw-header-pro-ready .header-inner > .hide-for-medium.flex-right {
    margin-left: 0 !important;
    max-width: none !important;
    width: auto !important;
    overflow: visible !important;
  }

  #masthead .idw-header-account a {
    font-size: 11px !important;
    height: 40px !important;
    min-height: 40px !important;
    padding: 0 14px !important;
  }

  #masthead .cart-item .header-cart-link {
    gap: 8px !important;
    height: 40px !important;
    min-height: 40px !important;
    min-width: 0 !important;
    max-width: none !important;
    padding: 0 12px 0 14px !important;
  }

  #masthead #logo img,
  #masthead .logo img {
    height: 88px !important;
    max-height: 88px !important;
    max-width: min(360px, 78vw) !important;
    width: auto !important;
  }

  #masthead .irishdistrict-desktop-nav-wrap,
  #masthead .hubirish-desktop-nav-wrap {
    flex: 1 1 auto !important;
    justify-content: center !important;
    margin-left: 0 !important;
    width: 100% !important;
  }

  #masthead .irishdistrict-desktop-nav-list,
  #masthead .hubirish-desktop-nav-list {
    justify-content: center !important;
    width: 100% !important;
  }
}

  #masthead .cart-item .header-cart-title {
    font-size: 10px !important;
  }

  #masthead .irishdistrict-desktop-nav-wrap,
  #masthead .hubirish-desktop-nav-wrap {
    flex: 0 1 auto !important;
    justify-content: flex-start !important;
    margin-left: 0 !important;
    width: auto !important;
  }

  #masthead .irishdistrict-desktop-nav-list,
  #masthead .hubirish-desktop-nav-list {
    display: flex !important;
    gap: 4px !important;
    justify-content: flex-start !important;
    width: auto !important;
  }
}

.footer-wrapper .footer-links-clean {
  display: none !important;
}

@media (max-width: 849px) {
  #top-bar.header-top {
    min-height: 40px !important;
    height: auto !important;
  }

  #masthead.header-main,
  #masthead.irishdistrict-desktop-header-ready,
  #masthead .header-inner {
    height: 70px !important;
    min-height: 70px !important;
  }

  #masthead #logo,
  #masthead .logo {
    display: flex !important;
  }

  #masthead #logo a,
  #masthead .logo a {
    height: 50px !important;
    width: 210px !important;
  }

  #masthead #logo img,
  #masthead .logo img {
    max-height: 36px !important;
    max-width: 184px !important;
    width: 184px !important;
  }

  body.home .idw-home-hero {
    min-height: auto !important;
  }

  body.home .idw-home-hero__inner {
    padding: 48px 18px !important;
  }

  body.home .idw-home-hero h1 {
    font-size: clamp(38px, 12vw, 54px) !important;
  }

  body.home .idw-section {
    padding: 34px 18px !important;
  }

  body.home .idw-section__head {
    align-items: start !important;
    display: grid !important;
    gap: 14px !important;
  }

  body.home .idw-collection-grid,
  body.home .idw-feature-grid,
  body.home .idw-shop-router,
  body.home .idw-router-list {
    grid-template-columns: 1fr !important;
  }

  body.home .idw-trust-strip {
    grid-template-columns: 1fr 1fr !important;
    gap: 0 !important;
  }

  body.home .idw-trust-item {
    min-height: 0 !important;
    padding: 10px 8px !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  body.home .idw-reassurance-band {
    align-items: stretch;
    flex-direction: column;
  }
}

/* Product page revamp: premium PDP system, scoped to single product pages. */
body.idp-product-revamp {
  background: #050505 !important;
  color: #f5f4ef !important;
}

body.idp-product-revamp #main,
body.idp-product-revamp .shop-container,
body.idp-product-revamp .product-main {
  background:
    radial-gradient(circle at 18% 8%, rgba(14, 59, 46, .42), transparent 30%),
    linear-gradient(180deg, #050505 0%, #0a0a0a 48%, #050505 100%) !important;
}

body.idp-product-revamp .product-main {
  padding: clamp(28px, 5vw, 74px) 0 clamp(42px, 7vw, 88px) !important;
}

body.idp-product-revamp .product-main > .row,
body.idp-product-revamp .product-main .row.content-row {
  align-items: start !important;
  display: grid !important;
  gap: clamp(28px, 5vw, 70px) !important;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, .94fr) !important;
  max-width: 1360px !important;
  padding-left: clamp(18px, 3vw, 38px) !important;
  padding-right: clamp(18px, 3vw, 38px) !important;
}

body.idp-product-revamp .product-gallery,
body.idp-product-revamp .product-images,
body.idp-product-revamp .woocommerce-product-gallery {
  background: linear-gradient(145deg, rgba(27, 27, 27, .96), rgba(11, 11, 11, .98)) !important;
  border: 1px solid rgba(184, 154, 91, .18) !important;
  border-radius: 22px !important;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .38) !important;
  overflow: hidden !important;
  padding: clamp(10px, 1.7vw, 18px) !important;
  position: sticky !important;
  top: 112px !important;
}

body.idp-product-revamp .woocommerce-product-gallery__image,
body.idp-product-revamp .product-gallery .flickity-viewport,
body.idp-product-revamp .product-images .flickity-viewport {
  background: linear-gradient(180deg, #f5f4ef 0%, #d6d3ca 100%) !important;
  border-radius: 16px !important;
}

body.idp-product-revamp .woocommerce-product-gallery img,
body.idp-product-revamp .product-gallery img,
body.idp-product-revamp .product-images img {
  object-fit: contain !important;
}

body.idp-product-revamp .product-thumbnails img,
body.idp-product-revamp .product-thumbnails a,
body.idp-product-revamp .woocommerce-product-gallery .flex-control-thumbs img {
  background: #151515 !important;
  border: 1px solid rgba(184, 154, 91, .18) !important;
  border-radius: 10px !important;
  opacity: .82 !important;
  transition: border-color .2s ease, opacity .2s ease, transform .2s ease !important;
}

body.idp-product-revamp .product-thumbnails img:hover,
body.idp-product-revamp .woocommerce-product-gallery .flex-control-thumbs img:hover {
  border-color: rgba(212, 175, 55, .55) !important;
  opacity: 1 !important;
  transform: translateY(-2px) !important;
}

body.idp-product-revamp .product-info,
body.idp-product-revamp .summary {
  background:
    linear-gradient(160deg, rgba(21, 21, 21, .98), rgba(13, 13, 13, .98)),
    radial-gradient(circle at top right, rgba(14, 59, 46, .34), transparent 36%) !important;
  border: 1px solid rgba(184, 154, 91, .18) !important;
  border-radius: 24px !important;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .34) !important;
  color: #f5f4ef !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  padding: clamp(22px, 3vw, 38px) !important;
}

body.idp-product-revamp .idp-product-kicker {
  align-items: center !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 9px !important;
  margin-bottom: 2px !important;
}

body.idp-product-revamp .idp-product-kicker span {
  border: 1px solid rgba(184, 154, 91, .32) !important;
  border-radius: 999px !important;
  color: #d4af37 !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: .11em !important;
  line-height: 1 !important;
  padding: 9px 12px !important;
  text-transform: uppercase !important;
}

body.idp-product-revamp .product-title,
body.idp-product-revamp h1.product-title,
body.idp-product-revamp h1.entry-title {
  color: #f5f4ef !important;
  font-size: clamp(38px, 4.2vw, 58px) !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  line-height: .98 !important;
  margin: 2px 0 0 !important;
  max-width: 11ch !important;
}

body.idp-product-revamp .product-info .price,
body.idp-product-revamp .summary .price {
  color: #d4af37 !important;
  font-size: clamp(26px, 2.3vw, 36px) !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  margin: 2px 0 0 !important;
}

body.idp-product-revamp .product-info .price del,
body.idp-product-revamp .summary .price del {
  color: rgba(183, 178, 168, .55) !important;
  font-size: .72em !important;
  margin-right: 8px !important;
}

body.idp-product-revamp .woocommerce-product-rating {
  align-items: center !important;
  display: flex !important;
  gap: 10px !important;
  margin: 0 !important;
  order: 4 !important;
}

body.idp-product-revamp .star-rating,
body.idp-product-revamp .star-rating:before,
body.idp-product-revamp .star-rating span:before {
  color: #d4af37 !important;
}

body.idp-product-revamp .idp-product-status {
  align-items: start !important;
  background: rgba(14, 59, 46, .32) !important;
  border: 1px solid rgba(184, 154, 91, .22) !important;
  border-radius: 16px !important;
  display: grid !important;
  gap: 3px 11px !important;
  grid-template-columns: 12px 1fr !important;
  padding: 14px 16px !important;
}

body.idp-product-revamp .idp-product-status > span {
  border-radius: 999px !important;
  height: 10px !important;
  margin-top: 6px !important;
  width: 10px !important;
}

body.idp-product-revamp .idp-product-status .is-available {
  background: #2cc982 !important;
  box-shadow: 0 0 0 5px rgba(44, 201, 130, .13) !important;
}

body.idp-product-revamp .idp-product-status .is-unavailable {
  background: #d36a5f !important;
  box-shadow: 0 0 0 5px rgba(211, 106, 95, .16) !important;
}

body.idp-product-revamp .idp-product-status strong {
  color: #f5f4ef !important;
  font-size: 14px !important;
}

body.idp-product-revamp .idp-product-status small {
  color: #a9a39a !important;
  font-size: 13px !important;
  grid-column: 2 !important;
  line-height: 1.45 !important;
}

body.idp-product-revamp form.cart,
body.idp-product-revamp form.variations_form {
  background: #0d0d0d !important;
  border: 1px solid rgba(184, 154, 91, .18) !important;
  border-radius: 20px !important;
  display: grid !important;
  gap: 15px !important;
  margin: 0 !important;
  padding: clamp(16px, 2vw, 22px) !important;
}

body.idp-product-revamp .idp-form-lead {
  background: linear-gradient(135deg, rgba(14, 59, 46, .75), rgba(15, 74, 52, .38)) !important;
  border: 1px solid rgba(212, 175, 55, .24) !important;
  border-radius: 15px !important;
  display: grid !important;
  gap: 4px !important;
  padding: 13px 15px !important;
}

body.idp-product-revamp .idp-form-lead strong {
  color: #f5f4ef !important;
  font-size: 15px !important;
}

body.idp-product-revamp .idp-form-lead span {
  color: #b7b2a8 !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
}

body.idp-product-revamp table.variations {
  margin: 0 !important;
}

body.idp-product-revamp table.variations th,
body.idp-product-revamp table.variations td {
  border: 0 !important;
  display: block !important;
  padding: 0 !important;
  text-align: left !important;
}

body.idp-product-revamp table.variations tr {
  display: grid !important;
  gap: 9px !important;
  margin-bottom: 14px !important;
}

body.idp-product-revamp table.variations label,
body.idp-product-revamp .variations label {
  color: #f5f4ef !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: .09em !important;
  text-transform: uppercase !important;
}

body.idp-product-revamp .ux-swatches,
body.idp-product-revamp .variable-items-wrapper {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
}

body.idp-product-revamp .ux-swatch,
body.idp-product-revamp .variable-item,
body.idp-product-revamp .button-variable-item {
  align-items: center !important;
  background: #151515 !important;
  border: 1px solid rgba(183, 178, 168, .26) !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  color: #f5f4ef !important;
  display: inline-flex !important;
  font-weight: 850 !important;
  justify-content: center !important;
  min-height: 46px !important;
  min-width: 52px !important;
  padding: 0 14px !important;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease !important;
}

body.idp-product-revamp .ux-swatch:hover,
body.idp-product-revamp .ux-swatch.selected,
body.idp-product-revamp .variable-item:hover,
body.idp-product-revamp .variable-item.selected,
body.idp-product-revamp .button-variable-item.selected {
  background: #0e3b2e !important;
  border-color: rgba(212, 175, 55, .7) !important;
  color: #f5f4ef !important;
  transform: translateY(-1px) !important;
}

body.idp-product-revamp select,
body.idp-product-revamp input[type="text"],
body.idp-product-revamp input[type="number"],
body.idp-product-revamp input[type="email"],
body.idp-product-revamp textarea {
  background: #141414 !important;
  border: 1px solid rgba(183, 178, 168, .28) !important;
  border-radius: 12px !important;
  box-shadow: none !important;
  color: #f5f4ef !important;
  min-height: 48px !important;
}

body.idp-product-revamp select:focus,
body.idp-product-revamp input:focus,
body.idp-product-revamp textarea:focus {
  border-color: rgba(212, 175, 55, .72) !important;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, .12) !important;
}

body.idp-product-revamp .quantity {
  align-items: center !important;
  background: #151515 !important;
  border: 1px solid rgba(184, 154, 91, .22) !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  height: 52px !important;
  margin: 0 12px 0 0 !important;
  overflow: hidden !important;
}

body.idp-product-revamp .quantity input.qty {
  background: transparent !important;
  border: 0 !important;
  color: #f5f4ef !important;
  font-size: 16px !important;
  font-weight: 900 !important;
  height: 52px !important;
  min-height: 52px !important;
  width: 58px !important;
}

body.idp-product-revamp .quantity .button,
body.idp-product-revamp .quantity input[type="button"] {
  background: transparent !important;
  border: 0 !important;
  color: #d4af37 !important;
  height: 52px !important;
  min-width: 42px !important;
}

body.idp-product-revamp .single_add_to_cart_button,
body.idp-product-revamp .buy-now-button,
body.idp-product-revamp button[name="add-to-cart"] {
  background: #0e3b2e !important;
  border: 1px solid rgba(212, 175, 55, .38) !important;
  border-radius: 999px !important;
  box-shadow: 0 16px 34px rgba(14, 59, 46, .35) !important;
  color: #f5f4ef !important;
  font-size: 14px !important;
  font-weight: 950 !important;
  letter-spacing: .03em !important;
  min-height: 54px !important;
  padding: 0 28px !important;
  text-transform: uppercase !important;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease !important;
}

body.idp-product-revamp .single_add_to_cart_button:hover,
body.idp-product-revamp .buy-now-button:hover,
body.idp-product-revamp button[name="add-to-cart"]:hover {
  background: #b89a5b !important;
  border-color: #d4af37 !important;
  box-shadow: 0 18px 38px rgba(184, 154, 91, .22) !important;
  color: #050505 !important;
  transform: translateY(-1px) !important;
}

body.idp-product-revamp .hubirish-printing-wrap.idp-printing-feature {
  background:
    radial-gradient(circle at 92% 12%, rgba(212, 175, 55, .2), transparent 22%),
    linear-gradient(145deg, #0e3b2e 0%, #071f18 100%) !important;
  border: 1px solid rgba(212, 175, 55, .52) !important;
  border-radius: 20px !important;
  box-shadow: 0 22px 48px rgba(0, 0, 0, .34) !important;
  margin: 8px 0 0 !important;
  overflow: hidden !important;
  padding: 16px !important;
  width: 100% !important;
}

body.idp-product-revamp .irishdistrict-printing-wrap.idp-printing-feature {
  background:
    radial-gradient(circle at 92% 12%, rgba(212, 175, 55, .2), transparent 22%),
    linear-gradient(145deg, #0e3b2e 0%, #071f18 100%) !important;
  border: 1px solid rgba(212, 175, 55, .52) !important;
  border-radius: 20px !important;
  box-shadow: 0 22px 48px rgba(0, 0, 0, .34) !important;
  margin: 8px 0 0 !important;
  overflow: hidden !important;
  padding: 16px !important;
  width: 100% !important;
}

body.idp-product-revamp .hubirish-printing-card,
body.idp-product-revamp .irishdistrict-printing-card {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
  max-width: none !important;
  width: 100% !important;
}

body.idp-product-revamp .hubirish-printing-main,
body.idp-product-revamp .irishdistrict-printing-main {
  cursor: pointer !important;
  display: block !important;
  margin: 0 !important;
  max-width: none !important;
  width: 100% !important;
}

body.idp-product-revamp .hubirish-printing-content,
body.idp-product-revamp .irishdistrict-printing-content {
  align-items: start !important;
  display: grid !important;
  gap: 14px !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  justify-content: space-between !important;
}

body.idp-product-revamp .hubirish-printing-left,
body.idp-product-revamp .irishdistrict-printing-left {
  align-items: start !important;
  display: grid !important;
  gap: 12px !important;
  grid-template-columns: 42px minmax(0, 1fr) !important;
  min-width: 0 !important;
}

body.idp-product-revamp .hubirish-printing-copy,
body.idp-product-revamp .irishdistrict-printing-copy {
  min-width: 0 !important;
}

body.idp-product-revamp .idp-printing-eyebrow {
  color: #d4af37 !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: .11em !important;
  margin-bottom: 6px !important;
  text-transform: uppercase !important;
}

body.idp-product-revamp .hubirish-printing-icon,
body.idp-product-revamp .hubirish-printing-toggle,
body.idp-product-revamp .irishdistrict-printing-icon,
body.idp-product-revamp .irishdistrict-printing-toggle {
  align-items: center !important;
  background: rgba(245, 244, 239, .08) !important;
  border: 1px solid rgba(212, 175, 55, .34) !important;
  border-radius: 999px !important;
  color: #d4af37 !important;
  display: inline-flex !important;
  height: 42px !important;
  justify-content: center !important;
  width: 42px !important;
}

body.idp-product-revamp .hubirish-printing-title,
body.idp-product-revamp .irishdistrict-printing-title {
  color: #f5f4ef !important;
  font-size: clamp(17px, 1.45vw, 22px) !important;
  font-weight: 950 !important;
  line-height: 1.12 !important;
  max-width: 14ch !important;
}

body.idp-product-revamp .hubirish-printing-sub,
body.idp-product-revamp .hubirish-printing-tap,
body.idp-product-revamp .hubirish-printing-note,
body.idp-product-revamp .hubirish-printing-help,
body.idp-product-revamp .irishdistrict-printing-sub,
body.idp-product-revamp .irishdistrict-printing-tap,
body.idp-product-revamp .irishdistrict-printing-note,
body.idp-product-revamp .irishdistrict-printing-help {
  color: #d8d4ca !important;
  font-size: 12.5px !important;
  line-height: 1.45 !important;
}

body.idp-product-revamp .hubirish-printing-price,
body.idp-product-revamp .irishdistrict-printing-price {
  color: #d4af37 !important;
  font-size: 16px !important;
  font-weight: 950 !important;
  white-space: nowrap !important;
}

body.idp-product-revamp .hubirish-printing-right,
body.idp-product-revamp .irishdistrict-printing-right {
  align-items: center !important;
  display: flex !important;
  gap: 8px !important;
  justify-content: end !important;
}

body.idp-product-revamp .hubirish-printing-body,
body.idp-product-revamp .irishdistrict-printing-body {
  background: rgba(5, 5, 5, .35) !important;
  border: 1px solid rgba(245, 244, 239, .1) !important;
  border-radius: 16px !important;
  margin-top: 14px !important;
  padding: 16px !important;
}

body.idp-product-revamp .hubirish-input-group,
body.idp-product-revamp .irishdistrict-input-group {
  display: grid !important;
  gap: 8px !important;
  margin-bottom: 14px !important;
}

body.idp-product-revamp .hubirish-input-group label,
body.idp-product-revamp .irishdistrict-input-group label {
  color: #f5f4ef !important;
  font-weight: 900 !important;
}

body.idp-product-revamp .hubirish-input-group small,
body.idp-product-revamp .irishdistrict-input-group small {
  color: #d4af37 !important;
  display: block !important;
  font-size: 12px !important;
  margin-top: 3px !important;
}

body.idp-product-revamp .hubirish-printing-confirm,
body.idp-product-revamp .irishdistrict-printing-confirm {
  background: #b89a5b !important;
  border: 0 !important;
  border-radius: 999px !important;
  color: #050505 !important;
  font-weight: 950 !important;
  min-height: 48px !important;
  padding: 0 20px !important;
}

body.idp-product-revamp .hubirish-printing-warning,
body.idp-product-revamp .irishdistrict-printing-warning {
  background: rgba(212, 175, 55, .09) !important;
  border: 1px solid rgba(212, 175, 55, .24) !important;
  border-radius: 13px !important;
  color: #f5f4ef !important;
  margin-top: 12px !important;
  padding: 12px !important;
}

body.idp-product-revamp .hubirish-benefits,
body.idp-product-revamp .irishdistrict-benefits {
  display: grid !important;
  gap: 10px !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  margin-top: 14px !important;
}

body.idp-product-revamp .hubirish-benefit,
body.idp-product-revamp .irishdistrict-benefit {
  background: rgba(5, 5, 5, .34) !important;
  border: 1px solid rgba(212, 175, 55, .22) !important;
  border-radius: 999px !important;
  color: #f5f4ef !important;
  justify-content: center !important;
  min-height: 40px !important;
}

body.idp-product-revamp .idp-product-confidence {
  display: grid !important;
  gap: 10px !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  margin-top: 16px !important;
}

body.idp-product-revamp .idp-confidence-card,
body.idp-product-revamp .idp-social-proof,
body.idp-product-revamp .idw-product-assurance > div {
  background: #151515 !important;
  border: 1px solid rgba(184, 154, 91, .18) !important;
  border-radius: 15px !important;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .18) !important;
}

body.idp-product-revamp .idp-confidence-card {
  align-items: start !important;
  display: grid !important;
  gap: 11px !important;
  grid-template-columns: 30px 1fr !important;
  padding: 14px !important;
  transition: border-color .18s ease, transform .18s ease !important;
}

body.idp-product-revamp .idp-confidence-card:hover {
  border-color: rgba(212, 175, 55, .42) !important;
  transform: translateY(-2px) !important;
}

body.idp-product-revamp .idp-confidence-card svg,
body.idp-product-revamp .idw-product-assurance svg {
  fill: none !important;
  height: 24px !important;
  stroke: #d4af37 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  stroke-width: 1.8 !important;
  width: 24px !important;
}

body.idp-product-revamp .idp-confidence-card strong {
  color: #f5f4ef !important;
  display: block !important;
  font-size: 14px !important;
}

body.idp-product-revamp .idp-confidence-card span {
  color: #a9a39a !important;
  display: block !important;
  font-size: 12.5px !important;
  line-height: 1.45 !important;
  margin-top: 3px !important;
}

body.idp-product-revamp .idp-social-proof {
  display: grid !important;
  gap: 14px !important;
  margin-top: 16px !important;
  padding: 16px !important;
}

body.idp-product-revamp .idp-stars {
  color: #d4af37 !important;
  display: block !important;
  letter-spacing: 2px !important;
  margin-bottom: 6px !important;
}

body.idp-product-revamp .idp-social-proof strong {
  color: #f5f4ef !important;
  display: block !important;
  font-size: 16px !important;
}

body.idp-product-revamp .idp-social-proof p {
  color: #a9a39a !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
  margin: 5px 0 0 !important;
}

body.idp-product-revamp .idp-proof-pills {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
}

body.idp-product-revamp .idp-proof-pills span {
  background: rgba(14, 59, 46, .5) !important;
  border: 1px solid rgba(212, 175, 55, .2) !important;
  border-radius: 999px !important;
  color: #d8d4ca !important;
  font-size: 11px !important;
  font-weight: 850 !important;
  padding: 8px 10px !important;
}

body.idp-product-revamp .idw-product-assurance {
  display: grid !important;
  gap: 10px !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  margin: 0 !important;
}

body.idp-product-revamp .idw-product-assurance > div {
  padding: 13px !important;
}

body.idp-product-revamp .idw-product-assurance strong {
  color: #f5f4ef !important;
  font-size: 13px !important;
}

body.idp-product-revamp .idw-product-assurance span {
  color: #a9a39a !important;
  font-size: 12px !important;
}

body.idp-product-revamp .idw-product-guide,
body.idp-product-revamp .hi-pdp-acc,
body.idp-product-revamp .idp-complete-order,
body.idp-product-revamp .related-products-wrapper,
body.idp-product-revamp .upsells,
body.idp-product-revamp .hi-rec-shell {
  background: linear-gradient(145deg, #151515, #0d0d0d) !important;
  border: 1px solid rgba(184, 154, 91, .18) !important;
  border-radius: 24px !important;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .32) !important;
  color: #f5f4ef !important;
  margin: clamp(32px, 5vw, 64px) auto !important;
  max-width: 1240px !important;
  padding: clamp(20px, 3vw, 34px) !important;
}

body.idp-product-revamp .hi-pdp-acc {
  padding: 0 !important;
  overflow: hidden !important;
}

body.idp-product-revamp .hi-acc-item + .hi-acc-item {
  border-top: 1px solid rgba(184, 154, 91, .15) !important;
}

body.idp-product-revamp .hi-acc-head,
body.idp-product-revamp .idw-product-guide summary {
  background: #151515 !important;
  border: 0 !important;
  color: #f5f4ef !important;
  font-size: 16px !important;
  font-weight: 900 !important;
  padding: 21px 24px !important;
}

body.idp-product-revamp .hi-acc-head:hover,
body.idp-product-revamp .hi-acc-item.is-open .hi-acc-head,
body.idp-product-revamp .idw-product-guide summary:hover {
  background: #0e3b2e !important;
  color: #f5f4ef !important;
}

body.idp-product-revamp .hi-acc-body,
body.idp-product-revamp .idw-product-guide p,
body.idp-product-revamp .hi-acc-body p,
body.idp-product-revamp .hi-acc-body li {
  color: #b7b2a8 !important;
}

body.idp-product-revamp .hi-acc-body {
  background: #0d0d0d !important;
  padding: 4px 24px 26px !important;
}

body.idp-product-revamp .hi-care-col h4,
body.idp-product-revamp .hi-sizeguide-link a,
body.idp-product-revamp .hi-acc-body a {
  color: #d4af37 !important;
}

body.idp-product-revamp .hi-sizeguide table th,
body.idp-product-revamp .hi-sizeguide table td {
  background: #141414 !important;
  border-color: rgba(184, 154, 91, .2) !important;
  color: #f5f4ef !important;
}

body.idp-product-revamp .idp-complete-order {
  display: grid !important;
  gap: 22px !important;
}

body.idp-product-revamp .idp-section-head span {
  color: #d4af37 !important;
  display: block !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: .12em !important;
  margin-bottom: 9px !important;
  text-transform: uppercase !important;
}

body.idp-product-revamp .idp-section-head h2,
body.idp-product-revamp .related-products-wrapper h3,
body.idp-product-revamp .upsells h3,
body.idp-product-revamp .hi-rec-shell h2,
body.idp-product-revamp .hi-rec-shell h3 {
  color: #f5f4ef !important;
  font-size: clamp(28px, 3.2vw, 44px) !important;
  font-weight: 950 !important;
  letter-spacing: 0 !important;
  line-height: 1.02 !important;
}

body.idp-product-revamp .idp-section-head p,
body.idp-product-revamp .hi-rec-shell p {
  color: #a9a39a !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
  max-width: 62ch !important;
}

body.idp-product-revamp .idp-complete-grid {
  display: grid !important;
  gap: 12px !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
}

body.idp-product-revamp .idp-complete-grid a {
  background: #1b1b1b !important;
  border: 1px solid rgba(184, 154, 91, .2) !important;
  border-radius: 16px !important;
  color: #f5f4ef !important;
  display: grid !important;
  gap: 8px !important;
  min-height: 118px !important;
  padding: 18px !important;
  text-decoration: none !important;
  transition: background .18s ease, border-color .18s ease, transform .18s ease !important;
}

body.idp-product-revamp .idp-complete-grid a:hover {
  background: #0e3b2e !important;
  border-color: rgba(212, 175, 55, .5) !important;
  transform: translateY(-3px) !important;
}

body.idp-product-revamp .idp-complete-grid strong {
  font-size: 16px !important;
  line-height: 1.2 !important;
}

body.idp-product-revamp .idp-complete-grid span {
  align-self: end !important;
  color: #d4af37 !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
}

body.idp-product-revamp .products .product-small,
body.idp-product-revamp .hi-rec-card {
  background: #151515 !important;
  border: 1px solid rgba(184, 154, 91, .18) !important;
  border-radius: 18px !important;
  overflow: hidden !important;
}

body.idp-product-revamp .products .box,
body.idp-product-revamp .products .box-text {
  background: transparent !important;
}

body.idp-product-revamp .products .box-image {
  background: linear-gradient(180deg, #f5f4ef, #d6d3ca) !important;
  border-radius: 14px !important;
  margin: 10px !important;
  overflow: hidden !important;
}

body.idp-product-revamp .products .product-title a,
body.idp-product-revamp .hi-rec-card__title {
  color: #f5f4ef !important;
}

body.idp-product-revamp .products .price,
body.idp-product-revamp .hi-rec-price-current {
  color: #d4af37 !important;
}

body.idp-product-revamp .badge-inner,
body.idp-product-revamp .onsale {
  background: #0e3b2e !important;
  border: 1px solid rgba(212, 175, 55, .45) !important;
  color: #f5f4ef !important;
}

body.idp-product-revamp .idp-mobile-buybar {
  align-items: center !important;
  background: rgba(13, 13, 13, .96) !important;
  border: 1px solid rgba(212, 175, 55, .24) !important;
  border-radius: 18px !important;
  bottom: 14px !important;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .5) !important;
  display: none !important;
  gap: 12px !important;
  left: 12px !important;
  padding: 11px !important;
  position: fixed !important;
  right: 12px !important;
  transform: translateY(120%) !important;
  transition: transform .22s ease !important;
  z-index: 9998 !important;
}

body.idp-product-revamp .idp-mobile-buybar.is-visible {
  transform: translateY(0) !important;
}

body.idp-product-revamp .idp-mobile-buybar > div {
  display: grid !important;
  gap: 3px !important;
  min-width: 0 !important;
}

body.idp-product-revamp .idp-mobile-buybar strong {
  color: #f5f4ef !important;
  font-size: 13px !important;
  line-height: 1.2 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

body.idp-product-revamp .idp-mobile-buybar span {
  color: #d4af37 !important;
  font-size: 13px !important;
  font-weight: 900 !important;
}

body.idp-product-revamp .idp-mobile-buybar__button {
  background: #0e3b2e !important;
  border: 1px solid rgba(212, 175, 55, .38) !important;
  border-radius: 999px !important;
  color: #f5f4ef !important;
  flex: 0 0 auto !important;
  font-size: 12px !important;
  font-weight: 950 !important;
  min-height: 44px !important;
  padding: 0 16px !important;
  text-transform: uppercase !important;
}

body.idp-product-revamp .footer-wrapper,
body.idp-product-revamp footer,
body.idp-product-revamp .absolute-footer {
  background: linear-gradient(180deg, #0d0d0d, #050505) !important;
  border-top: 1px solid rgba(184, 154, 91, .18) !important;
}

@media (max-width: 1180px) {
  body.idp-product-revamp .product-main > .row,
  body.idp-product-revamp .product-main .row.content-row {
    grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr) !important;
  }

  body.idp-product-revamp .idp-complete-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 849px) {
  body.idp-product-revamp .shop-container,
  body.idp-product-revamp .product-container {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
  }

  body.idp-product-revamp .product-main {
    padding-top: 20px !important;
    padding-bottom: 76px !important;
  }

  body.idp-product-revamp .product-main > .row,
  body.idp-product-revamp .product-main .row.content-row {
    display: grid !important;
    gap: 18px !important;
    grid-template-columns: 1fr !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  body.idp-product-revamp .product-gallery,
  body.idp-product-revamp .product-images,
  body.idp-product-revamp .woocommerce-product-gallery {
    border-radius: 18px !important;
    position: relative !important;
    top: auto !important;
  }

  body.idp-product-revamp .product-info,
  body.idp-product-revamp .summary {
    border-radius: 18px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: none !important;
    padding: 18px !important;
    width: 100% !important;
  }

  body.idp-product-revamp .product-gallery,
  body.idp-product-revamp .product-images,
  body.idp-product-revamp .woocommerce-product-gallery,
  body.idp-product-revamp .product-info,
  body.idp-product-revamp .summary {
    float: none !important;
    left: auto !important;
    right: auto !important;
  }

  body.idp-product-revamp .product-title,
  body.idp-product-revamp h1.product-title,
  body.idp-product-revamp h1.entry-title {
    font-size: clamp(34px, 11vw, 48px) !important;
    max-width: 12ch !important;
  }

  body.idp-product-revamp form.cart,
  body.idp-product-revamp form.variations_form {
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: none !important;
    padding: 14px !important;
    width: 100% !important;
  }

  body.idp-product-revamp .woocommerce-variation-add-to-cart {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    width: 100% !important;
  }

  body.idp-product-revamp .single_variation_wrap,
  body.idp-product-revamp .woocommerce-variation,
  body.idp-product-revamp .woocommerce-variation-add-to-cart {
    max-width: none !important;
    min-width: 0 !important;
    width: 100% !important;
  }

  body.idp-product-revamp .hubirish-printing-wrap.idp-printing-feature,
  body.idp-product-revamp .irishdistrict-printing-wrap.idp-printing-feature {
    flex: 1 0 100% !important;
    order: -10 !important;
  }

  body.idp-product-revamp .quantity {
    flex: 0 0 auto !important;
    order: 1 !important;
  }

  body.idp-product-revamp .single_add_to_cart_button {
    flex: 1 1 190px !important;
    order: 2 !important;
  }

  body.idp-product-revamp .hubirish-printing-content,
  body.idp-product-revamp .irishdistrict-printing-content {
    align-items: start !important;
    grid-template-columns: 1fr !important;
  }

  body.idp-product-revamp .hubirish-printing-left,
  body.idp-product-revamp .irishdistrict-printing-left {
    min-width: 0 !important;
  }

  body.idp-product-revamp .hubirish-printing-right,
  body.idp-product-revamp .irishdistrict-printing-right {
    justify-content: space-between !important;
    width: 100% !important;
  }

  body.idp-product-revamp .hubirish-benefits,
  body.idp-product-revamp .irishdistrict-benefits,
  body.idp-product-revamp .idp-product-confidence,
  body.idp-product-revamp .idw-product-assurance,
  body.idp-product-revamp .idp-complete-grid {
    grid-template-columns: 1fr !important;
  }

  body.idp-product-revamp .idp-complete-grid a {
    min-height: 88px !important;
  }

  body.idp-product-revamp .idw-product-guide,
  body.idp-product-revamp .hi-pdp-acc,
  body.idp-product-revamp .idp-complete-order,
  body.idp-product-revamp .related-products-wrapper,
  body.idp-product-revamp .upsells,
  body.idp-product-revamp .hi-rec-shell {
    border-radius: 18px !important;
    margin: 28px 14px !important;
    padding: 18px !important;
  }

  body.idp-product-revamp .hi-pdp-acc {
    padding: 0 !important;
  }

  body.idp-product-revamp .idp-mobile-buybar {
    display: flex !important;
  }
}

@media (max-width: 430px) {
  body.idp-product-revamp .hubirish-printing-title,
  body.idp-product-revamp .irishdistrict-printing-title {
    font-size: 20px !important;
  }

  body.idp-product-revamp .hubirish-printing-price,
  body.idp-product-revamp .irishdistrict-printing-price {
    font-size: 14px !important;
  }

  body.idp-product-revamp .single_add_to_cart_button {
    width: 100% !important;
  }
}

/* PDP layout correction: keep the premium product page centered inside a
   consistent max-width container while preserving WooCommerce/Flatsome hooks. */
body.idp-product-revamp {
  --id-pdp-container: 1360px;
  --id-pdp-gutter: clamp(18px, 3vw, 48px);
}

body.idp-product-revamp .shop-container,
body.idp-product-revamp .product-container {
  box-sizing: border-box !important;
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 100% !important;
}

body.idp-product-revamp .product-main > .row,
body.idp-product-revamp .product-main .row.content-row {
  box-sizing: border-box !important;
  display: grid !important;
  gap: clamp(32px, 4vw, 72px) !important;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: var(--id-pdp-container) !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: min(calc(100% - (var(--id-pdp-gutter) * 2)), var(--id-pdp-container)) !important;
}

body.idp-product-revamp .product-main > .row::before,
body.idp-product-revamp .product-main > .row::after,
body.idp-product-revamp .product-main .row.content-row::before,
body.idp-product-revamp .product-main .row.content-row::after {
  content: none !important;
  display: none !important;
}

body.idp-product-revamp .product-main .product-gallery,
body.idp-product-revamp .product-main .product-images,
body.idp-product-revamp .product-main .woocommerce-product-gallery,
body.idp-product-revamp .product-main .product-info,
body.idp-product-revamp .product-main .summary {
  box-sizing: border-box !important;
  float: none !important;
  left: auto !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: 100% !important;
  min-width: 0 !important;
  right: auto !important;
  transform: none !important;
  width: auto !important;
}

body.idp-product-revamp .product-main .product-gallery,
body.idp-product-revamp .product-main .product-images,
body.idp-product-revamp .product-main .woocommerce-product-gallery {
  justify-self: stretch !important;
}

body.idp-product-revamp .product-main .product-info,
body.idp-product-revamp .product-main .summary {
  justify-self: stretch !important;
}

body.idp-product-revamp .product-footer,
body.idp-product-revamp .product-page-accordian,
body.idp-product-revamp .product-page-accordion,
body.idp-product-revamp .woocommerce-tabs,
body.idp-product-revamp .related-products-wrapper,
body.idp-product-revamp .upsells,
body.idp-product-revamp .idw-product-guide,
body.idp-product-revamp .hi-pdp-acc,
body.idp-product-revamp .idp-complete-order,
body.idp-product-revamp .hi-rec-shell {
  box-sizing: border-box !important;
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: var(--id-pdp-container) !important;
  width: min(calc(100% - (var(--id-pdp-gutter) * 2)), var(--id-pdp-container)) !important;
}

body.idp-product-revamp #masthead .header-inner,
body.idp-product-revamp .header-main .header-inner,
body.idp-product-revamp .header-bottom .header-inner,
body.idp-product-revamp .header-top .header-inner {
  box-sizing: border-box !important;
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: var(--id-pdp-container) !important;
  width: min(calc(100% - (var(--id-pdp-gutter) * 2)), var(--id-pdp-container)) !important;
}

body.idp-product-revamp .woocommerce-product-gallery__wrapper,
body.idp-product-revamp .woocommerce-product-gallery__image,
body.idp-product-revamp .product-gallery .flickity-viewport,
body.idp-product-revamp .product-images .flickity-viewport {
  max-width: 100% !important;
}

@media (min-width: 1441px) {
  body.idp-product-revamp {
    --id-pdp-container: 1400px;
  }
}

@media (max-width: 1180px) {
  body.idp-product-revamp .product-main > .row,
  body.idp-product-revamp .product-main .row.content-row {
    grid-template-columns: minmax(0, .98fr) minmax(360px, 1.02fr) !important;
  }
}

@media (max-width: 849px) {
  body.idp-product-revamp {
    --id-pdp-gutter: 14px;
  }

  body.idp-product-revamp,
  body.idp-product-revamp #main,
  body.idp-product-revamp .product-main,
  body.idp-product-revamp .shop-container,
  body.idp-product-revamp .product-container {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  body.idp-product-revamp .product-main > .row,
  body.idp-product-revamp .product-main .row.content-row {
    gap: 18px !important;
    grid-template-columns: 1fr !important;
    max-width: calc(100vw - (var(--id-pdp-gutter) * 2)) !important;
    min-width: 0 !important;
    width: calc(100% - (var(--id-pdp-gutter) * 2)) !important;
  }

  body.idp-product-revamp .product-footer,
  body.idp-product-revamp .product-page-accordian,
  body.idp-product-revamp .product-page-accordion,
  body.idp-product-revamp .woocommerce-tabs,
  body.idp-product-revamp .related-products-wrapper,
  body.idp-product-revamp .upsells,
  body.idp-product-revamp .idw-product-guide,
  body.idp-product-revamp .hi-pdp-acc,
  body.idp-product-revamp .idp-complete-order,
  body.idp-product-revamp .hi-rec-shell {
    width: calc(100% - (var(--id-pdp-gutter) * 2)) !important;
  }

  body.idp-product-revamp #masthead .header-inner,
  body.idp-product-revamp .header-main .header-inner,
  body.idp-product-revamp .header-bottom .header-inner,
  body.idp-product-revamp .header-top .header-inner {
    width: 100% !important;
  }
}

@media (max-width: 430px) {
  body.idp-product-revamp {
    --id-pdp-gutter: 12px;
  }

  body.idp-product-revamp .product-main > .row,
  body.idp-product-revamp .product-main .row.content-row {
    max-width: calc(100vw - 24px) !important;
    min-width: 0 !important;
    width: calc(100vw - 24px) !important;
  }

  body.idp-product-revamp .product-gallery,
  body.idp-product-revamp .product-images,
  body.idp-product-revamp .woocommerce-product-gallery,
  body.idp-product-revamp .product-info,
  body.idp-product-revamp .summary {
    box-sizing: border-box !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
    width: min(100%, calc(100vw - 24px)) !important;
  }

  body.idp-product-revamp .summary *,
  body.idp-product-revamp .product-info * {
    max-width: 100% !important;
  }

  body.idp-product-revamp .product-title,
  body.idp-product-revamp h1.product-title,
  body.idp-product-revamp h1.entry-title {
    font-size: clamp(25px, 8.2vw, 32px) !important;
    line-height: 1.08 !important;
    max-width: 10.5ch !important;
    margin-left: auto !important;
    margin-right: auto !important;
    overflow-wrap: anywhere !important;
    text-align: center !important;
    word-break: normal !important;
  }

  body.idp-product-revamp .yay-currency-custom-select,
  body.idp-product-revamp .yay-currency-custom-select__trigger {
    max-width: 230px !important;
    width: 100% !important;
  }

  body.idp-product-revamp table.variations td,
  body.idp-product-revamp table.variations tbody,
  body.idp-product-revamp table.variations tr,
  body.idp-product-revamp .ux-swatches,
  body.idp-product-revamp .variable-items-wrapper {
    box-sizing: border-box !important;
    display: block !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: visible !important;
    width: 100% !important;
  }

  body.idp-product-revamp .ux-swatches,
  body.idp-product-revamp .variable-items-wrapper {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    justify-content: flex-start !important;
  }

  body.idp-product-revamp .ux-swatch,
  body.idp-product-revamp .variable-item,
  body.idp-product-revamp .button-variable-item {
    flex: 0 0 46px !important;
    height: 46px !important;
    min-height: 46px !important;
    min-width: 46px !important;
    width: 46px !important;
  }

  body.idp-product-revamp .hubirish-printing-wrap.idp-printing-feature,
  body.idp-product-revamp .irishdistrict-printing-wrap.idp-printing-feature,
  body.idp-product-revamp .hubirish-printing-card,
  body.idp-product-revamp .irishdistrict-printing-card,
  body.idp-product-revamp .hubirish-printing-main,
  body.idp-product-revamp .irishdistrict-printing-main {
    max-width: 100% !important;
    min-width: 0 !important;
    width: 100% !important;
  }

  body.idp-product-revamp .hubirish-printing-content,
  body.idp-product-revamp .irishdistrict-printing-content {
    grid-template-columns: 1fr !important;
  }
}
