/*
Theme Name: Fixed Commerce Child
Theme URI: https://example.com/fixed-commerce-child
Description: A fixed-layout WooCommerce child theme for Storefront with editable homepage content.
Author: Site Owner
Version: 1.3.7
Template: storefront
Text Domain: fixed-commerce-child
Requires at least: 6.4
Requires PHP: 8.0
*/

:root {
  --fcc-ink: #111111;
  --fcc-paper: #ffffff;
  --fcc-soft: #f3f5f6;
  --fcc-line: #d9dee2;
  --fcc-blue: #1261d8;
  --fcc-red: #e94736;
  --fcc-yellow: #ffd945;
  --fcc-max: 1920px;
  --fcc-gutter: clamp(20px, 3vw, 64px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--fcc-ink);
  background: var(--fcc-paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

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

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

/* Keep mouse clicks clean while preserving a clear keyboard focus state. */
:where(a, button, input, select, textarea):focus:not(:focus-visible) {
  outline: none !important;
  box-shadow: none !important;
}

:where(a, button, input, select, textarea):focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.fcc-footer a:focus:not(:focus-visible),
.fcc-footer button:focus:not(:focus-visible),
.fcc-nav a:focus:not(:focus-visible),
.fcc-header__actions a:focus:not(:focus-visible),
.fcc-header__actions button:focus:not(:focus-visible) {
  outline: none !important;
  box-shadow: none !important;
}

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

.fcc-shell {
  width: min(100%, var(--fcc-max));
  margin-inline: auto;
  padding-inline: var(--fcc-gutter);
}

.site-content {
  outline: 0;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.home .site-main,
.fcc-newsletter:last-child,
#main.site-main {
  margin-bottom: 0 !important;
}

.fcc-announcement {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 36px;
  color: var(--fcc-paper);
  background: var(--fcc-ink);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.fcc-announcement__track {
  position: relative;
  min-height: 36px;
}

.fcc-announcement__item {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  min-height: 36px;
  padding: 7px 16px;
  color: inherit;
  text-decoration: none;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 300ms ease, transform 300ms ease;
}

.fcc-announcement__item.is-active {
  opacity: 1;
  transform: translateY(0);
}

.fcc-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: var(--fcc-paper);
  border-bottom: 1px solid var(--fcc-line);
}

.admin-bar .fcc-header {
  top: 32px;
}

.fcc-header__top {
  display: grid;
  grid-template-columns: minmax(150px, auto) minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: clamp(24px, 2vw, 48px);
  min-height: 82px;
}

.fcc-brand {
  justify-self: start;
}

.fcc-brand .custom-logo-link,
.fcc-brand .site-title {
  display: block;
  margin: 0;
}

.fcc-brand .custom-logo {
  display: block;
  width: auto;
  max-width: 156px;
  max-height: 54px;
}

.fcc-brand .site-title a {
  font-size: 28px;
  font-weight: 900;
  text-decoration: none;
}

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

.fcc-nav__list,
.fcc-nav > div > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 34px);
}

.fcc-nav li {
  position: relative;
}

.fcc-nav a {
  display: block;
  padding: 29px 0;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.fcc-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: -24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  width: min(620px, 80vw);
  padding: 22px 24px;
  background: var(--fcc-paper);
  border: 1px solid var(--fcc-line);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

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

.fcc-nav .sub-menu a {
  padding: 9px 12px;
  font-size: 13px;
  text-transform: none;
}

.fcc-nav .sub-menu a:hover,
.fcc-nav .sub-menu a:focus {
  color: var(--fcc-blue);
  background: var(--fcc-soft);
}

.fcc-header__actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 20px;
  white-space: nowrap;
}

.fcc-action-link,
.fcc-menu-toggle {
  padding: 8px 0;
  color: var(--fcc-ink);
  background: transparent;
  border: 0;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.fcc-icon-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 32px;
  min-height: 40px;
  margin: 0;
}

.fcc-icon-action .fcc-icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fcc-search-toggle .fcc-icon {
  width: 23px;
  height: 23px;
}

.fcc-cart-link {
  gap: 2px;
}

.fcc-cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 14px;
  height: 24px;
  margin-left: 1px;
  padding: 0 5px;
  color: var(--fcc-blue);
  background: transparent;
  border-radius: 0;
  font-size: 14px;
  font-weight: 800;
}

.fcc-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  margin: 0;
  padding: 8px;
}

.fcc-menu-toggle .fcc-icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fcc-search {
  display: none;
  padding-block: 16px;
  border-top: 1px solid var(--fcc-line);
}

.fcc-search.is-open {
  display: block;
}

.fcc-search form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  max-width: 760px;
  margin-inline: auto;
}

.fcc-search input[type="search"] {
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid var(--fcc-line);
  border-radius: 0;
}

.fcc-search button {
  min-height: 46px;
  padding: 10px 24px;
  color: var(--fcc-paper);
  background: var(--fcc-ink);
  border: 0;
  border-radius: 0;
  font-weight: 800;
}

.fcc-hero {
  position: relative;
  display: block;
  min-height: clamp(520px, 66vw, 760px);
  overflow: hidden;
  color: var(--fcc-paper);
  background: #565e62;
}

.fcc-hero--has-image {
  min-height: 0;
}

.fcc-hero__link,
.fcc-promo__link {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  color: inherit;
  text-decoration: none;
}

.fcc-hero__media,
.fcc-hero__media img {
  position: static;
  display: block;
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  margin: 0 !important;
}

.fcc-hero__media img {
  object-fit: contain;
  opacity: 1;
  filter: none;
}

.fcc-responsive-image--mobile {
  display: none !important;
}

.fcc-hero::after {
  display: none;
}

.fcc-hero__content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 690px;
  padding-block: 80px;
}

.fcc-eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.fcc-hero h1 {
  max-width: 14ch;
  margin: 0;
  color: inherit;
  font-size: clamp(42px, 6vw, 80px);
  line-height: 0.98;
  letter-spacing: 0;
}

.fcc-hero__copy {
  max-width: 560px;
  margin: 22px 0 0;
  font-size: 18px;
}

.fcc-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 26px;
  padding: 12px 24px;
  color: var(--fcc-paper);
  background: var(--fcc-blue);
  border: 2px solid var(--fcc-blue);
  border-radius: 0;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease;
}

.fcc-button:hover,
.fcc-button:focus,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  color: var(--fcc-paper);
  background: var(--fcc-ink);
  border-color: var(--fcc-ink);
}

.fcc-section {
  padding-block: clamp(58px, 7vw, 104px);
}

.fcc-section--soft {
  background: var(--fcc-soft);
}

.fcc-section--collections {
  padding-block: clamp(28px, 3vw, 52px);
}

/* Standard pages */
.fcc-page {
  width: 100%;
  margin: 0;
  padding-block: clamp(48px, 6vw, 88px);
}

.fcc-page__inner {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
}

.fcc-page__article,
.fcc-page__content {
  width: 100%;
  margin: 0;
}

.fcc-page__header {
  margin-bottom: clamp(28px, 3vw, 44px);
}

.fcc-page__title {
  margin: 0;
  color: var(--fcc-ink);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}

.fcc-page__content {
  color: #25292b;
  font-size: 16px;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.fcc-page__content > *:first-child {
  margin-top: 0;
}

.fcc-page__content > *:last-child {
  margin-bottom: 0;
}

.fcc-page__content p,
.fcc-page__content ul,
.fcc-page__content ol {
  margin-top: 0;
  margin-bottom: 1.25em;
}

.fcc-page__content h2,
.fcc-page__content h3,
.fcc-page__content h4 {
  margin-top: 1.8em;
  margin-bottom: 0.65em;
  color: var(--fcc-ink);
  line-height: 1.25;
  letter-spacing: 0;
}

body.page .widget-area {
  display: none;
}

.fcc-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.fcc-section__head h2,
.fcc-collection-title {
  margin: 0;
  color: var(--fcc-ink);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

.fcc-text-link {
  padding-bottom: 4px;
  border-bottom: 2px solid currentColor;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.fcc-collections {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.4vw, 24px);
  margin-top: 34px;
}

.fcc-section--collections .fcc-collections:first-child {
  margin-top: 0;
}

.fcc-collection-card {
  min-width: 0;
}

.fcc-collection-card__link {
  display: block;
  color: var(--fcc-ink);
  text-decoration: none;
}

.fcc-collection-card__image {
  display: block;
  aspect-ratio: 1.92 / 1;
  overflow: hidden;
  background: #e9edef;
}

.fcc-collection-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.fcc-collection-card__link:hover img,
.fcc-collection-card__link:focus img {
  transform: scale(1.025);
}

.fcc-collection-card h3 {
  margin: 14px 0 0;
  color: var(--fcc-ink);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
}

.fcc-collection-card p {
  margin: 6px 0 0;
  color: #555d61;
  font-size: 14px;
}

.fcc-promo {
  position: relative;
  display: block;
  min-height: 0;
  overflow: hidden;
  color: var(--fcc-paper);
  background: #25292b;
}

.fcc-promo-stack {
  display: grid;
  gap: 0;
}

.fcc-promo__media,
.fcc-promo img {
  position: static;
  display: block;
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  margin: 0 !important;
}

.fcc-promo img {
  object-fit: contain !important;
  opacity: 1;
  filter: none;
}

.fcc-promo::after {
  display: none;
}

.fcc-promo__content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 680px;
  padding-block: 68px;
}

.fcc-promo h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
}

.fcc-promo__link:hover .fcc-button,
.fcc-hero__link:hover .fcc-button {
  color: var(--fcc-paper);
  background: var(--fcc-ink);
  border-color: var(--fcc-ink);
}

.fcc-newsletter {
  position: relative;
  display: grid;
  align-items: center;
  min-height: clamp(240px, 14.4vw, 365px);
  margin: 0 !important;
  padding-block: clamp(48px, 5vw, 78px);
  overflow: hidden;
  color: var(--fcc-paper);
  background: var(--fcc-ink);
  text-align: center;
}

.fcc-newsletter::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.fcc-newsletter__media,
.fcc-newsletter__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.fcc-newsletter__media img {
  object-fit: cover;
  object-position: center center;
}

.fcc-newsletter__inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin-inline: auto;
}

.fcc-footer {
  margin-top: 0 !important;
}

.fcc-newsletter h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
}

.fcc-newsletter p {
  margin: 16px 0 0;
  color: #d7dcdf;
}

.fcc-newsletter form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  margin-top: 28px;
}

.fcc-newsletter input[type="email"],
.fcc-newsletter input[type="text"] {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--fcc-ink);
  background: var(--fcc-paper);
  border: 1px solid var(--fcc-paper);
  border-radius: 0;
}

.fcc-newsletter button,
.fcc-newsletter input[type="submit"] {
  min-height: 50px;
  padding: 12px 24px;
  color: var(--fcc-ink);
  background: var(--fcc-yellow);
  border: 1px solid var(--fcc-yellow);
  border-radius: 0;
  font-weight: 900;
  text-transform: uppercase;
}

/* WooCommerce product cards */
.woocommerce ul.products,
.woocommerce-page ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 18px;
  margin: 0;
}

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

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  text-align: left;
}

#featured-products ul.products {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fcc-product-card {
  position: relative;
  min-width: 0;
}

.fcc-product-card__image {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1.08;
  overflow: hidden;
  background: var(--fcc-soft);
}

.fcc-product-card__image img {
  width: 100%;
  height: 100%;
  margin: 0 !important;
  object-fit: contain;
  transition: transform 300ms ease;
}

.fcc-product-card:hover .fcc-product-card__image img {
  transform: scale(1.035);
}

.fcc-product-badge,
.woocommerce span.onsale {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  min-height: 0;
  margin: 0;
  padding: 6px 9px;
  color: var(--fcc-paper);
  background: var(--fcc-red);
  border: 0;
  border-radius: 0;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.fcc-product-card__body {
  padding-top: 15px;
}

.fcc-product-card__title {
  margin: 0;
  color: var(--fcc-ink);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
}

.fcc-product-card__title a {
  text-decoration: none;
}

.fcc-product-card .price {
  display: block;
  margin-top: 7px;
  color: var(--fcc-ink) !important;
  font-size: 15px !important;
}

.fcc-product-card .price del {
  color: #6c7377;
  opacity: 1;
}

.fcc-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  min-height: 20px;
  margin-top: 12px;
}

.fcc-swatch {
  display: block;
  width: 18px;
  height: 18px;
  background: var(--swatch, #d6dadd);
  border: 2px solid var(--fcc-paper);
  border-radius: 50%;
  box-shadow: 0 0 0 1px #9ea5a9;
}

.fcc-filter-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  color: var(--fcc-paper);
  background: var(--fcc-ink);
  border: 0;
  border-radius: 0;
  font-weight: 800;
}

/* Shop and product-category pages */
.fcc-shop-page > .fcc-shell {
  width: 100%;
  max-width: 1440px;
}

.fcc-shop-page .woocommerce-products-header__title {
	margin: 0 0 38px;
	font-size: 36px;
	line-height: 1.05;
}

.fcc-shop-results {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
	align-self: start;
	align-content: start;
  gap: 22px 28px;
  min-width: 0;
}

.fcc-shop-results > .woocommerce-notices-wrapper,
.fcc-shop-results > .woocommerce-info,
.fcc-shop-results > .products,
.fcc-shop-results > .woocommerce-pagination {
  grid-column: 1 / -1;
}

.fcc-shop-results .woocommerce-result-count,
.fcc-shop-results .woocommerce-ordering {
  float: none;
  width: auto;
  margin: 0;
}

.fcc-shop-results .woocommerce-ordering {
  grid-column: 2;
  justify-self: end;
}

.fcc-shop-results .woocommerce-ordering select {
  min-width: 210px;
  min-height: 44px;
  padding: 9px 38px 9px 12px;
  color: var(--fcc-ink);
  background-color: var(--fcc-paper);
  border: 1px solid #b9bec2;
  border-radius: 0;
}

.fcc-shop-results > ul.products {
  width: 100%;
  padding-top: 8px;
}

.fcc-shop-results .woocommerce-pagination {
  margin-top: 16px;
  text-align: center;
}

.fcc-shop-results .woocommerce-pagination ul.page-numbers {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin: 0;
  border: 0;
}

.fcc-shop-results .woocommerce-pagination .page-numbers li {
  border: 0;
}

.fcc-shop-results .woocommerce-pagination .page-numbers a,
.fcc-shop-results .woocommerce-pagination .page-numbers span {
  display: grid;
  place-items: center;
  min-width: 42px;
  min-height: 42px;
  padding: 8px;
  color: var(--fcc-ink);
  background: var(--fcc-soft);
  text-decoration: none;
}

.fcc-shop-results .woocommerce-pagination .page-numbers .current,
.fcc-shop-results .woocommerce-pagination .page-numbers a:hover {
  color: var(--fcc-paper);
  background: var(--fcc-ink);
}

.fcc-shop-filters {
	position: sticky;
	top: 132px;
	align-self: start;
	max-height: calc(100vh - 152px);
	overflow-y: auto;
	padding: 0 20px 24px 0;
	background: var(--fcc-paper);
	border: 0;
	scrollbar-width: thin;
}

/* Storefront gives fieldsets their own tint; keep the filter rail one color. */
.fcc-shop-filters,
.fcc-shop-filters .fcc-catalog-filters,
.fcc-shop-filters .fcc-filter-sort,
.fcc-shop-filters .fcc-active-filters,
.fcc-shop-filters .fcc-filter-group {
	background-color: var(--fcc-paper) !important;
}

.fcc-shop-filters__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.fcc-shop-filters__header h2 {
	display: none;
	margin: 0;
	font-size: 22px;
}

.fcc-shop-filters__close {
	display: none;
}

.fcc-catalog-filters {
	margin: 0;
}

.fcc-filter-sort {
	padding-bottom: 24px;
	border-bottom: 1px solid #a9adb0;
}

.fcc-filter-sort label,
.fcc-filter-eyebrow {
	display: block;
	margin-bottom: 12px;
	color: #707579;
	font-size: 11px;
	font-weight: 500;
	text-transform: uppercase;
}

.fcc-filter-sort select {
	width: 100%;
	min-height: 46px;
	padding: 8px 32px 8px 0;
	color: var(--fcc-ink);
	background-color: var(--fcc-paper);
	border: 0;
	border-radius: 0;
	font-size: 15px;
	font-weight: 600;
}

.fcc-active-filters {
	padding: 22px 0 24px;
	border-bottom: 1px solid #a9adb0;
}

.fcc-active-filters__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.fcc-active-filters__chips span,
.fcc-active-filters > a {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	padding: 4px 8px;
	color: var(--fcc-ink);
	background: #e9eaeb;
	border-radius: 12px;
	font-size: 11px;
	line-height: 1;
	text-decoration: none;
}

.fcc-active-filters > a {
	margin-top: 10px;
	font-weight: 700;
	text-transform: uppercase;
}

.fcc-filter-group {
	min-width: 0;
	margin: 0;
	padding: 24px 0;
	border: 0;
	border-bottom: 1px solid #a9adb0;
}

.fcc-filter-group legend {
	width: 100%;
	margin: 0 0 13px;
	padding: 0;
	color: var(--fcc-ink);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.25;
}

.fcc-filter-option {
	display: grid;
	grid-template-columns: 18px minmax(0, 1fr) auto;
	align-items: center;
	gap: 10px;
	min-height: 36px;
	margin: 0;
	color: #777d81;
	font-size: 14px;
	cursor: pointer;
}

.fcc-filter-option input {
	width: 16px;
	height: 16px;
	margin: 0;
	accent-color: #111111;
}

.fcc-filter-option small {
	color: #777d81;
	font-size: 13px;
}

.fcc-filter-option:has(input:checked) {
	color: var(--fcc-ink);
	font-weight: 700;
}

.fcc-filter-option.is-disabled {
	color: #c9ccce;
	cursor: not-allowed;
}

.fcc-filter-option.is-disabled small {
	color: #c9ccce;
}

/* Product detail */
.single-product .site-content > .col-full {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: var(--fcc-gutter);
}

.single-product #primary.content-area {
  float: none;
  width: 100%;
  margin-right: 0;
}

.single-product #secondary.widget-area,
.single-product .edit-link {
  display: none !important;
}

.single-product .storefront-product-pagination,
.single-product .woocommerce-product-gallery__image .zoomImg {
  display: none !important;
}

.single-product div.product {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 840px) minmax(300px, 360px);
  align-items: start;
  justify-content: center;
  column-gap: 24px;
  width: min(100%, 1224px);
  margin-inline: auto;
}

.single-product div.product::before,
.single-product div.product::after {
  display: none !important;
}

.single-product div.product .woocommerce-product-gallery {
  grid-column: 1;
  grid-row: 1;
  float: none !important;
  width: 100%;
  margin: 0;
}

.single-product div.product .summary {
  position: sticky;
  top: 128px;
  grid-column: 2;
  grid-row: 1;
  float: none !important;
  width: 100%;
  max-width: 360px;
  margin: 0;
}

.single-product div.product .woocommerce-product-gallery__wrapper {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: 100% !important;
  transform: none !important;
}

.single-product div.product .woocommerce-product-gallery__image {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--fcc-soft);
}

.single-product div.product .woocommerce-product-gallery__image:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 1 / 1;
}

.single-product div.product .woocommerce-product-gallery__image > a {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.single-product div.product .woocommerce-product-gallery__image img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  object-fit: contain;
  object-position: center;
  transform: none !important;
}

.single-product div.product > .onsale {
  top: 12px;
  left: 12px;
}

.single-product div.product .woocommerce-product-gallery .flex-viewport {
  overflow: visible !important;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs {
  display: none !important;
}

.single-product div.product .woocommerce-product-gallery__trigger {
  top: 12px;
  right: 12px;
}

.single-product div.product .product_title {
  margin: 12px 0 14px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.25;
}

.single-product div.product .summary > .price {
  margin: 0 0 28px;
  font-size: 21px;
  line-height: 1.3;
}

.single-product div.product .summary .stock {
  color: #16864b;
  font-size: 14px;
  font-weight: 700;
}

.single-product div.product form.cart {
  margin: 24px 0 0;
}

.single-product div.product.product-type-simple form.cart,
.single-product div.product .woocommerce-variation-add-to-cart {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}

.single-product div.product form.cart .quantity {
  display: grid;
  grid-template-columns: 36px 56px 36px;
  width: 128px;
  min-height: 49px;
  float: none !important;
  margin: 0;
}

.single-product div.product form.cart .quantity .qty {
  width: 56px;
  min-height: 49px;
  padding: 8px 4px;
  border: 1px solid var(--fcc-line);
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  text-align: center;
  appearance: textfield;
}

.single-product div.product form.cart .quantity .qty::-webkit-inner-spin-button,
.single-product div.product form.cart .quantity .qty::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}

.fcc-quantity-button {
  display: grid;
  place-items: center;
  width: 36px;
  min-height: 49px;
  margin: 0;
  padding: 0;
  color: var(--fcc-ink);
  background: var(--fcc-soft);
  border: 1px solid var(--fcc-line);
  border-radius: 0;
  font-size: 19px;
  font-weight: 500;
  line-height: 1;
}

.fcc-quantity-button:hover,
.fcc-quantity-button:focus-visible {
  color: var(--fcc-paper);
  background: var(--fcc-ink);
  border-color: var(--fcc-ink);
}

.single-product div.product form.cart .single_add_to_cart_button,
.single-product div.product form.cart .fcc-buy-now {
  width: 100%;
  min-height: 48px;
  margin: 0 !important;
  padding: 12px 22px;
  border: 1px solid var(--fcc-ink);
  border-radius: 0;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.single-product div.product form.cart .single_add_to_cart_button {
  color: var(--fcc-paper);
  background: var(--fcc-ink);
  border-color: var(--fcc-ink);
}

.single-product div.product form.cart .single_add_to_cart_button:hover,
.single-product div.product form.cart .single_add_to_cart_button:focus-visible {
  color: var(--fcc-ink);
  background: var(--fcc-paper);
}

.single-product div.product form.cart .fcc-buy-now {
  color: var(--fcc-ink);
  background: var(--fcc-paper);
  border-color: var(--fcc-ink);
}

.single-product div.product form.cart .fcc-buy-now:hover,
.single-product div.product form.cart .fcc-buy-now:focus {
  color: var(--fcc-paper);
  background: var(--fcc-ink);
  border-color: var(--fcc-ink);
}

.single-product div.product form.cart table.variations {
  width: 100%;
  margin: 0 0 22px;
}

.single-product div.product form.cart table.variations th,
.single-product div.product form.cart table.variations td {
  display: block;
  width: 100%;
  padding: 0;
  background: transparent;
}

.single-product div.product form.cart table.variations th.label {
  margin-bottom: 12px;
  color: var(--fcc-ink);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.fcc-variation-select--enhanced {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.fcc-variation-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 8px;
}

.fcc-variation-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 48px;
  margin: 0;
  padding: 8px 12px;
  color: var(--fcc-ink);
  background: var(--fcc-paper);
  border: 1px solid #c9cdd0;
  border-radius: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.15;
  cursor: pointer;
}

.fcc-variation-option.has-image {
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
  padding: 4px;
  background: var(--fcc-soft);
}

.fcc-variation-option img {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.fcc-variation-option:hover,
.fcc-variation-option:focus-visible,
.fcc-variation-option.is-selected {
  border-color: var(--fcc-ink);
  box-shadow: inset 0 0 0 1px var(--fcc-ink);
}

.fcc-variation-option:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.single-product div.product form.cart .reset_variations {
  display: inline-block;
  margin: 4px 0 0;
  color: #565d61;
  font-size: 13px;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--fcc-ink);
}

.fcc-product-accordions {
  margin-top: 28px;
  border-top: 1px solid var(--fcc-line);
}

.fcc-product-accordion {
  margin: 0;
  border-bottom: 1px solid var(--fcc-line);
}

.fcc-product-accordion > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 54px;
  padding: 14px 0;
  color: var(--fcc-ink);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.25;
  list-style: none;
  cursor: pointer;
}

.fcc-product-accordion > summary::-webkit-details-marker {
  display: none;
}

.fcc-product-accordion__icon {
  position: relative;
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
}

.fcc-product-accordion__icon::before,
.fcc-product-accordion__icon::after {
  position: absolute;
  top: 6px;
  left: 0;
  width: 14px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.fcc-product-accordion__icon::after {
  transform: rotate(90deg);
}

.fcc-product-accordion[open] .fcc-product-accordion__icon::after {
  transform: rotate(0);
}

.fcc-product-accordion__content {
  padding: 2px 0 22px;
  color: #454b4f;
  font-size: 14px;
  line-height: 1.65;
}

.fcc-product-accordion__content > h2:first-child {
  display: none;
}

.fcc-product-accordion__content > :last-child {
  margin-bottom: 0;
}

.single-product div.product .related,
.single-product div.product .upsells {
  grid-column: 1 / -1;
  clear: both;
  width: 100%;
  padding-top: 70px;
}

/* Footer */
.fcc-footer {
  color: #ffffff;
  background: #000000;
}

.fcc-footer__main {
  display: grid;
  grid-template-columns: minmax(170px, 1fr) minmax(170px, 1fr) minmax(210px, 1fr) minmax(280px, 1.25fr);
  gap: clamp(38px, 5vw, 96px);
  padding-block: 28px 46px;
}

.fcc-footer__brand {
  min-width: 0;
  padding-top: 12px;
}

.fcc-footer__brand .custom-logo-link {
  display: inline-flex;
}

.fcc-footer .custom-logo {
  width: auto;
  max-width: 122px;
  max-height: 42px;
  filter: brightness(0) invert(1);
}

.fcc-footer__site-name {
  color: #ffffff !important;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.fcc-footer h2 {
  position: relative;
  margin: 0 0 20px;
  padding-bottom: 14px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.fcc-footer h2::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: #565656;
  content: "";
}

.fcc-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fcc-footer li + li {
  margin-top: 0;
}

.fcc-footer a,
.fcc-footer .menu a,
.fcc-footer .fcc-footer__menu a {
  color: #ffffff !important;
  font-size: 16px;
  text-decoration: none;
  opacity: 1 !important;
}

.fcc-footer__menu li {
  border-bottom: 1px solid #1f1f1f;
}

.fcc-footer__menu li a {
  display: block;
  padding: 8px 0 9px;
  line-height: 1.35;
}

.fcc-footer a:hover,
.fcc-footer a:focus,
.fcc-footer .menu a:hover,
.fcc-footer .menu a:focus {
  color: #ffffff !important;
  text-decoration: underline;
}

.fcc-footer__contact p {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.55;
}

.fcc-footer__contact p > span:first-child {
  display: block;
}

.fcc-footer__contact a,
.fcc-footer__address {
  overflow-wrap: anywhere;
}

.fcc-footer__rule {
  width: 100%;
  height: 4px;
  background: #555555;
}

@media (min-width: 769px) {
	.fcc-shop-layout {
		display: grid;
		grid-template-columns: 290px minmax(0, 1fr);
		gap: 42px;
	}

  .fcc-shop-layout--no-filters {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 1100px) {
  .fcc-header__top {
    grid-template-columns: auto 1fr auto;
    min-height: 70px;
  }

  .fcc-menu-toggle {
    display: inline-flex;
  }

  .fcc-nav {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    width: 100%;
    max-height: calc(100vh - 106px);
    overflow-y: auto;
    padding: 20px var(--fcc-gutter) 30px;
    background: var(--fcc-paper);
    border-top: 1px solid var(--fcc-line);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
  }

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

  .fcc-nav__list,
  .fcc-nav > div > ul {
    display: block;
  }

  .fcc-nav a {
    padding: 12px 0;
  }

  .fcc-nav .sub-menu {
    position: static;
    display: block;
    width: 100%;
    padding: 0 0 8px 18px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .fcc-header__actions .fcc-account-link > span:last-child {
    display: none;
  }

  .fcc-footer__main {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .fcc-footer__brand {
    grid-column: 1 / -1;
  }

  .fcc-shop-results > ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .fcc-responsive-image--desktop {
    display: none !important;
  }

  .fcc-responsive-image--mobile {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    margin: 0 !important;
  }

  .fcc-promo,
  .fcc-promo__media,
  .fcc-promo-stack,
  .fcc-hero,
  .fcc-hero__media {
    width: 100% !important;
    max-width: none !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .fcc-promo {
    background: transparent;
  }

  .fcc-header__top {
    gap: 14px;
    padding-inline: 16px;
  }

  .fcc-brand .custom-logo {
    max-width: 112px;
    max-height: 42px;
  }

  .fcc-header__actions {
    gap: 11px;
  }

  .fcc-hero__content {
    padding-block: 48px;
  }

  .fcc-hero h1 {
    font-size: 44px;
  }

  .fcc-section__head {
    display: block;
  }

  .fcc-section__head .fcc-text-link {
    display: inline-block;
    margin-top: 18px;
  }

  .fcc-collections {
    grid-template-columns: 1fr;
  }

  .fcc-collection-card__image {
    aspect-ratio: 1.92 / 1;
  }

  .fcc-collection-card__image img {
    object-fit: contain;
  }

  .fcc-newsletter {
    min-height: 320px;
  }

  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 12px;
  }

  #featured-products ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .single-product div.product {
    display: block;
  }

  .single-product div.product .woocommerce-product-gallery,
  .single-product div.product .summary {
    position: static;
    top: auto;
    float: none;
    width: 100%;
    max-width: none;
    margin-right: 0;
  }

  .single-product div.product .woocommerce-product-gallery__wrapper {
    display: flex !important;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .single-product div.product .woocommerce-product-gallery__wrapper::-webkit-scrollbar {
    display: none;
  }

  .single-product div.product .woocommerce-product-gallery__image,
  .single-product div.product .woocommerce-product-gallery__image:first-child {
    grid-column: auto;
    flex: 0 0 100%;
    width: 100% !important;
    aspect-ratio: 1 / 1;
    scroll-snap-align: start;
  }

  .single-product div.product .summary {
    margin-top: 30px;
  }

  .single-product div.product .product_title {
    margin-top: 0;
    font-size: 24px;
  }

  .single-product div.product form.cart .single_add_to_cart_button,
  .single-product div.product form.cart .fcc-buy-now {
    width: 100%;
  }

  .fcc-product-card__title {
    font-size: 14px;
  }

  .fcc-filter-toggle {
    display: inline-flex;
    margin-bottom: 20px;
  }

  .fcc-shop-results {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .fcc-shop-results .fcc-filter-toggle,
  .fcc-shop-results .woocommerce-result-count,
  .fcc-shop-results .woocommerce-ordering {
    grid-column: 1;
    justify-self: stretch;
  }

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

  .fcc-shop-results > ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

	.fcc-shop-filters {
		position: fixed;
		z-index: 999;
		top: 0;
		right: 0;
		width: min(88vw, 380px);
		height: 100vh;
		max-height: none;
		overflow-y: auto;
		padding: 24px;
		background: var(--fcc-paper);
		box-shadow: -14px 0 35px rgba(0, 0, 0, 0.14);
		transform: translateX(105%);
		transition: transform 200ms ease;
	}

  .fcc-shop-filters.is-open {
    transform: translateX(0);
  }

	.fcc-shop-filters__close {
		display: grid;
		place-items: center;
		width: 40px;
		height: 40px;
		margin: 0;
		padding: 0;
		background: transparent;
		border: 0;
		font-size: 30px;
		font-weight: 400;
	}

	.fcc-shop-filters__header {
		margin-bottom: 20px;
		padding-bottom: 16px;
		border-bottom: 1px solid var(--fcc-line);
	}

	.fcc-shop-filters__header h2 {
		display: block;
	}

  .fcc-newsletter form {
    grid-template-columns: 1fr;
  }

  .fcc-footer__main {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-block: 38px;
  }

  .fcc-footer__brand {
    grid-column: auto;
    padding-top: 0;
  }
}

@media (max-width: 782px) {
  .admin-bar .fcc-header {
    top: 46px;
  }
}

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