/*
Theme Name: CelebsClothes Child
Description: A lightweight Flatsome child theme for CelebsClothes.
Author: CelebsClothes
Template: flatsome
Version: 1.0.1
Text Domain: celebsclothes
*/

/* Design tokens */
:root {
  --cc-ink: #1f2933;
  --cc-muted: #667085;
  --cc-coral: #f05a5b;
  --cc-coral-dark: #d9484a;
  --cc-warm-white: #fffdf9;
  --cc-soft-sand: #f5f1ea;
  --cc-border: #e5e7eb;
  --cc-success: #2f855a;
  --cc-radius-sm: 0.5rem;
  --cc-radius-md: 0.875rem;
  --cc-radius-lg: 1.25rem;
  --cc-shadow-sm: 0 0.25rem 1rem rgb(31 41 51 / 8%);
  --cc-shadow-md: 0 0.75rem 2rem rgb(31 41 51 / 12%);
  --cc-font-display: "Manrope", "Inter", Arial, sans-serif;
  --cc-font-body: "Inter", Arial, sans-serif;
}

/* Global foundation */
body {
  background: var(--cc-warm-white);
  color: var(--cc-ink);
  font-family: var(--cc-font-body);
}

h1,
h2,
h3,
h4,
h5,
h6,
.nav > li > a,
.button {
  font-family: var(--cc-font-display);
}

a {
  color: inherit;
}

a:hover,
a:focus {
  color: var(--cc-coral-dark);
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgb(240 90 91 / 40%);
  outline-offset: 3px;
}

/* Header */
.cc-announcement {
  background: var(--cc-ink);
  color: var(--cc-warm-white);
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  padding: 0.625rem 1rem;
  text-align: center;
}

.header-main {
  border-bottom: 1px solid var(--cc-border);
}

.header-nav .nav > li > a {
  color: var(--cc-ink);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
}

.header-nav .nav > li.active > a,
.header-nav .nav > li > a:hover {
  color: var(--cc-coral-dark);
}

/* Buttons and commerce calls to action */
.button,
button,
input[type="submit"] {
  background-color: var(--cc-coral);
  border: 0;
  border-radius: 999px;
  box-shadow: none;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.01em;
  min-height: 2.875rem;
  padding: 0.75rem 1.25rem;
  text-shadow: none;
  transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus,
button:hover,
button:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
  background-color: var(--cc-coral-dark);
  box-shadow: 0 0.5rem 1.25rem rgb(240 90 91 / 25%);
  color: #fff;
  transform: translateY(-1px);
}

.button.is-outline,
.button.alt {
  background: transparent;
  border: 1px solid var(--cc-ink);
  color: var(--cc-ink);
}

.button.is-outline:hover,
.button.alt:hover {
  background: var(--cc-ink);
  border-color: var(--cc-ink);
  color: #fff;
}

/* Homepage building blocks */
.cc-section {
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

.cc-section--sand {
  background: var(--cc-soft-sand);
}

.cc-section-heading {
  align-items: end;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}

.cc-section-heading h2 {
  color: var(--cc-ink);
  font-size: clamp(1.75rem, 3vw, 2.625rem);
  line-height: 1.12;
  margin: 0;
}

.cc-eyebrow {
  color: var(--cc-coral-dark);
  font-family: var(--cc-font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  margin-bottom: 0.625rem;
  text-transform: uppercase;
}

.cc-hero {
  background: var(--cc-soft-sand);
  overflow: hidden;
  position: relative;
}

.cc-hero__content {
  max-width: 42rem;
  padding-block: clamp(4.5rem, 8vw, 8rem);
  position: relative;
  z-index: 1;
}

.cc-hero h1 {
  color: var(--cc-ink);
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  letter-spacing: -0.055em;
  line-height: 0.99;
  margin-bottom: 1.25rem;
}

.cc-hero__copy {
  color: var(--cc-muted);
  font-size: clamp(1rem, 1.6vw, 1.1875rem);
  line-height: 1.65;
  max-width: 35rem;
}

.cc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.cc-collection-card {
  background: #fff;
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius-lg);
  display: block;
  height: 100%;
  overflow: hidden;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.cc-collection-card:hover {
  box-shadow: var(--cc-shadow-md);
  color: var(--cc-ink);
  transform: translateY(-0.25rem);
}

.cc-collection-card__image {
  aspect-ratio: 4 / 3;
  background: var(--cc-soft-sand);
  display: block;
  overflow: hidden;
}

.cc-collection-card__image img {
  height: 100%;
  object-fit: cover;
  transition: transform 250ms ease;
  width: 100%;
}

.cc-collection-card:hover .cc-collection-card__image img {
  transform: scale(1.035);
}

.cc-collection-card__body {
  padding: 1.125rem 1.125rem 1.25rem;
}

.cc-collection-card__title {
  font-size: 1.125rem;
  margin: 0 0 0.375rem;
}

.cc-collection-card__copy {
  color: var(--cc-muted);
  font-size: 0.9375rem;
  margin: 0;
}

/* Product cards */
.product-small.box {
  border: 1px solid transparent;
  border-radius: var(--cc-radius-md);
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-small.box:hover {
  border-color: var(--cc-border);
  box-shadow: var(--cc-shadow-sm);
  transform: translateY(-0.2rem);
}

.product-small .box-image {
  background: var(--cc-soft-sand);
}

.product-small .title-wrapper {
  padding-inline: 0.875rem;
}

.product-small .name {
  color: var(--cc-ink);
  font-family: var(--cc-font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
}

.product-small .price {
  color: var(--cc-ink);
  font-size: 0.9375rem;
  font-weight: 800;
}

.product-small .price del {
  color: var(--cc-muted);
  font-weight: 500;
}

/* Editorial cards */
.cc-story-card {
  background: #fff;
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius-md);
  height: 100%;
  overflow: hidden;
}

.cc-story-card__image {
  aspect-ratio: 16 / 10;
  display: block;
}

.cc-story-card__image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.cc-story-card__body {
  padding: 1.25rem;
}

.cc-story-card__meta {
  color: var(--cc-coral-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cc-story-card h3 {
  font-size: 1.25rem;
  line-height: 1.25;
  margin: 0.5rem 0 0;
}

/* Trust and footer */
.cc-trust-item {
  align-items: flex-start;
  display: flex;
  gap: 0.875rem;
}

.cc-trust-item__icon {
  align-items: center;
  background: #fff;
  border-radius: 50%;
  color: var(--cc-coral-dark);
  display: flex;
  flex: 0 0 2.75rem;
  height: 2.75rem;
  justify-content: center;
  width: 2.75rem;
}

.cc-trust-item h3 {
  font-size: 1rem;
  margin: 0 0 0.25rem;
}

.cc-trust-item p {
  color: var(--cc-muted);
  font-size: 0.875rem;
  margin: 0;
}

.footer-wrapper {
  background: var(--cc-ink);
  color: #fff;
}

.footer-wrapper a:hover,
.footer-wrapper a:focus {
  color: #fff;
  text-decoration: underline;
}

/* Customer-information pages */
.cc-info-page {
  margin: clamp(2.5rem, 6vw, 5rem) auto;
  max-width: 54rem;
}

.cc-info-page__hero {
  background: var(--cc-soft-sand);
  border-radius: var(--cc-radius-lg);
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  padding: clamp(2rem, 5vw, 4.25rem);
}

.cc-info-page__hero h1 {
  color: var(--cc-ink);
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  letter-spacing: -0.05em;
  line-height: 1.03;
  margin: 0.25rem 0 1rem;
}

.cc-info-page__intro {
  color: var(--cc-muted);
  font-size: clamp(1rem, 1.8vw, 1.1875rem);
  line-height: 1.7;
  margin: 0;
  max-width: 42rem;
}

.cc-info-page__content {
  color: #3b4652;
  font-size: 1rem;
  line-height: 1.75;
  padding-inline: clamp(0rem, 3vw, 2rem);
}

.cc-info-page__content h2 {
  color: var(--cc-ink);
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  line-height: 1.25;
  margin: 2.25rem 0 0.625rem;
}

.cc-info-page__content h2:first-child {
  margin-top: 0;
}

.cc-info-page__content a:not(.button) {
  color: var(--cc-coral-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.cc-info-page__content li {
  margin-bottom: 0.625rem;
}

.cc-info-page__content ol,
.cc-info-page__content ul {
  margin-left: 1.25rem;
}

.cc-contact-card,
.cc-notice {
  border-radius: var(--cc-radius-md);
  margin-block: 1.75rem;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.cc-contact-card {
  background: var(--cc-ink);
  color: #fff;
}

.cc-contact-card h2 {
  color: #fff;
  margin-top: 0;
}

.cc-contact-card p:last-child {
  color: #d8dee5;
  margin-bottom: 0;
}

.cc-notice {
  background: #fff6ee;
  border-left: 0.25rem solid var(--cc-coral);
  color: var(--cc-ink);
}

/* WooCommerce */
.woocommerce-breadcrumb,
.product_meta {
  color: var(--cc-muted);
  font-size: 0.8125rem;
}

.woocommerce div.product .product-title {
  color: var(--cc-ink);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.12;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--cc-ink);
  font-size: 1.375rem;
  font-weight: 800;
}

.woocommerce .quantity .qty {
  border-color: var(--cc-border);
  border-radius: var(--cc-radius-sm);
  min-height: 2.875rem;
}

.woocommerce-message,
.woocommerce-info {
  border-top-color: var(--cc-success);
}

/* Storefront homepage layout */
.home .page-wrapper {
  overflow: hidden;
}

.home .cc-hero,
.home .cc-home-band {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
}

.cc-home-slider {
  background: var(--cc-soft-sand);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  position: relative;
  width: 100vw;
}

.cc-home-slider__track {
  display: flex;
  transition: transform 500ms ease;
}

.cc-home-slide {
  background: var(--cc-soft-sand);
  display: grid;
  flex: 0 0 100%;
  grid-template-columns: minmax(0, 1.08fr) minmax(20rem, 0.92fr);
  min-height: clamp(31rem, 44vw, 39rem);
  padding: clamp(3.5rem, 7vw, 6.5rem) max(1.25rem, calc((100vw - 76rem) / 2));
}

.cc-home-slide--night {
  background: var(--cc-ink);
  color: #fff;
}

.cc-home-slide--coral {
  background: #fce8e4;
}

.cc-home-slide__content {
  align-self: center;
  max-width: 38rem;
}

.cc-home-slide h1,
.cc-home-slide h2 {
  color: var(--cc-ink);
  font-size: clamp(2.75rem, 5.4vw, 5rem);
  letter-spacing: -0.06em;
  line-height: 0.98;
  margin: 0 0 1.25rem;
  max-width: 10ch;
}

.cc-home-slide--night h2 {
  color: #fff;
}

.cc-home-slide__copy {
  color: var(--cc-muted);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.65;
  margin: 0;
  max-width: 34rem;
}

.cc-home-slide--night .cc-home-slide__copy {
  color: #d6dde5;
}

.cc-home-slide__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.cc-home-slide--night .button.is-outline {
  border-color: #fff;
  color: #fff;
}

.cc-home-slide--night .button.is-outline:hover {
  background: #fff;
  color: var(--cc-ink);
}

.cc-home-slide__art {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 18rem;
  position: relative;
}

.cc-slide-art {
  align-items: center;
  background: #fff;
  border: 1px solid rgb(31 41 51 / 8%);
  border-radius: 50%;
  box-shadow: var(--cc-shadow-md);
  color: var(--cc-ink);
  display: flex;
  font-family: var(--cc-font-display);
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-weight: 800;
  height: min(29vw, 25rem);
  justify-content: center;
  letter-spacing: -0.05em;
  text-align: center;
  transform: rotate(-7deg);
  width: min(29vw, 25rem);
}

.cc-home-slide--night .cc-slide-art {
  background: var(--cc-coral);
  border-color: transparent;
  color: #fff;
  transform: rotate(7deg);
}

.cc-home-slide--coral .cc-slide-art {
  background: var(--cc-ink);
  color: #fff;
  transform: rotate(-4deg);
}

.cc-slider-button {
  align-items: center;
  background: rgb(255 255 255 / 90%);
  border: 1px solid var(--cc-border);
  border-radius: 50%;
  color: var(--cc-ink);
  cursor: pointer;
  display: flex;
  height: 2.75rem;
  justify-content: center;
  min-height: 0;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.75rem;
  z-index: 2;
}

.cc-slider-button:hover,
.cc-slider-button:focus {
  background: #fff;
  color: var(--cc-ink);
  transform: translateY(-50%);
}

.cc-slider-button--prev { left: max(1rem, calc((100vw - 82rem) / 2)); }
.cc-slider-button--next { right: max(1rem, calc((100vw - 82rem) / 2)); }

.cc-slider-dots {
  bottom: 1.5rem;
  display: flex;
  gap: 0.5rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 2;
}

.cc-slider-dot {
  background: rgb(31 41 51 / 25%);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  height: 0.5rem;
  min-height: 0;
  padding: 0;
  width: 0.5rem;
}

.cc-slider-dot.is-active {
  background: var(--cc-coral-dark);
  width: 1.5rem;
}

.cc-hero {
  padding-inline: max(1.25rem, calc((100vw - 76rem) / 2));
}

.cc-hero .row {
  max-width: 76rem;
}

.cc-hero__content {
  padding-block: clamp(4rem, 7vw, 6.5rem);
}

.cc-hero h1 {
  font-size: clamp(2.65rem, 5vw, 4.5rem);
  max-width: 10ch;
}

.cc-hero__visual {
  align-items: center;
  display: flex;
  justify-content: center;
  padding-block: clamp(2rem, 5vw, 4rem);
}

.cc-hero__visual img {
  display: block;
  max-width: min(100%, 28rem);
  width: 100%;
}

.cc-home-band {
  background: var(--cc-warm-white);
  padding: clamp(3.5rem, 7vw, 6rem) max(1.25rem, calc((100vw - 76rem) / 2));
}

.cc-home-band--sand {
  background: var(--cc-soft-sand);
}

.cc-home-band__inner {
  margin: auto;
  max-width: 76rem;
}

.cc-home-intro {
  display: grid;
  gap: 1.25rem 3rem;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.82fr);
  margin-bottom: 2.5rem;
}

.cc-home-intro h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.1;
  margin: 0;
  max-width: 16ch;
}

.cc-home-intro p:last-child {
  color: var(--cc-muted);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin: 0;
}

.cc-value-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cc-value-card {
  background: #fff;
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius-lg);
  min-height: 13rem;
  padding: 1.75rem;
}

.cc-value-card__number {
  color: var(--cc-coral-dark);
  display: block;
  font-family: var(--cc-font-display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 2.25rem;
}

.cc-value-card h3 {
  font-size: 1.2rem;
  margin: 0 0 0.55rem;
}

.cc-value-card p {
  color: var(--cc-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.cc-home-cta {
  align-items: center;
  background: var(--cc-ink);
  border-radius: var(--cc-radius-lg);
  color: #fff;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  padding: clamp(2rem, 5vw, 4rem);
}

.cc-home-cta h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  line-height: 1.1;
  margin: 0.4rem 0 0;
  max-width: 18ch;
}

.cc-home-cta .cc-eyebrow {
  color: #ff9e9e;
}

.cc-home-cta .button {
  flex: 0 0 auto;
}

.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0;
}

.footer-widgets {
  padding-block: 3.5rem 2.5rem;
}

.footer-widgets.footer-1 {
  flex: 0 0 38%;
}

.footer-widgets.footer-2 {
  flex: 0 0 62%;
}

.footer-widgets .row {
  margin-inline: 0;
  max-width: none;
}

.footer-widgets .row > .col {
  flex-basis: 100%;
  max-width: 100%;
  padding-inline: 0;
}

.footer-widgets.footer-2 .widget {
  margin-bottom: 0;
}

.cc-footer-links {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cc-footer-links p {
  margin-top: 0;
}

.cc-footer-links ul {
  margin-bottom: 0;
}

.footer-widgets .widget-title {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0;
  margin-bottom: 1rem;
  text-transform: none;
}

.footer-widgets p,
.footer-widgets li,
.footer-widgets a {
  color: #d6dde5;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.footer-widgets ul {
  list-style: none;
  margin: 0;
}

.footer-widgets li {
  margin-bottom: 0.35rem;
}

.absolute-footer {
  border-top: 1px solid rgb(255 255 255 / 15%);
  flex: 0 0 100%;
  padding-block: 1.25rem;
}

.absolute-footer .menu,
.absolute-footer .footer-primary {
  display: none;
}

@media (max-width: 849px) {
  .cc-home-slide {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-bottom: 5rem;
  }

  .cc-home-slide__content {
    max-width: 34rem;
  }

  .cc-home-slide h1,
  .cc-home-slide h2 {
    max-width: 12ch;
  }

  .cc-home-slide__art {
    min-height: 14rem;
    margin-top: 1.5rem;
  }

  .cc-slide-art {
    height: min(65vw, 19rem);
    width: min(65vw, 19rem);
  }
}

@media (max-width: 1024px) {
  .cc-home-intro,
  .cc-value-grid {
    grid-template-columns: 1fr;
  }

  .cc-home-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-widgets.footer-1,
  .footer-widgets.footer-2 {
    flex-basis: 100%;
    padding-block: 2.25rem 0;
  }

  .footer-widgets.footer-2 {
    padding-bottom: 2.25rem;
  }
}

@media (max-width: 549px) {
  .cc-footer-links {
    grid-template-columns: 1fr;
  }

  .cc-home-slide {
    padding-block: 3.5rem 5rem;
  }

  .cc-home-slide__actions .button {
    width: 100%;
  }

  .cc-slider-button {
    bottom: 1rem;
    top: auto;
    transform: none;
  }

  .cc-slider-button:hover,
  .cc-slider-button:focus {
    transform: none;
  }

  .cc-slider-button--prev { left: 1.25rem; }
  .cc-slider-button--next { right: 1.25rem; }
}

/* Responsive */
@media (max-width: 549px) {
  .cc-section {
    padding-block: 3.5rem;
  }

  .cc-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .cc-hero__content {
    padding-block: 4rem;
  }

  .cc-hero__actions .button {
    width: 100%;
  }
}

/* Refined storefront layout */
.home .page-wrapper {
  overflow: visible;
}

.cc-store-container {
  margin: 0 auto;
  max-width: 76rem;
  padding-inline: 1.5rem;
}

.cc-store-hero {
  background: linear-gradient(115deg, #eff3f5 0%, #eff3f5 57%, #f7dedd 57%, #f7dedd 100%);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  width: 100vw;
}

.cc-store-hero__inner {
  align-items: center;
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 1.15fr) minmax(15rem, 0.85fr);
  margin: 0 auto;
  max-width: 76rem;
  min-height: 33rem;
  padding: 4.5rem 1.5rem;
}

.cc-store-hero__content {
  max-width: 39rem;
}

.cc-store-hero h1,
.cc-store-section h2 {
  color: var(--cc-ink);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.cc-store-hero h1 {
  font-size: clamp(3rem, 5.6vw, 5.3rem);
  margin: 0 0 1.25rem;
  max-width: 8ch;
}

.cc-store-hero__content > p:not(.cc-eyebrow) {
  color: #52606d;
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  line-height: 1.7;
  margin: 0;
  max-width: 34rem;
}

.cc-store-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.cc-store-hero__mark {
  align-items: center;
  display: flex;
  justify-content: center;
}

.cc-store-hero__mark img {
  max-width: min(100%, 22rem);
  transform: rotate(-8deg);
  width: 100%;
}

.cc-store-section {
  padding-block: clamp(3.75rem, 7vw, 6rem);
}

.cc-store-section--intro {
  text-align: center;
}

.cc-store-intro {
  max-width: 48rem;
}

.cc-store-intro h2 {
  font-size: clamp(2rem, 3.8vw, 3.35rem);
  margin: 0 auto 1rem;
}

.cc-store-intro > p:last-child {
  color: var(--cc-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 42rem;
}

.cc-store-section--muted {
  background: var(--cc-soft-sand);
}

.cc-store-steps {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cc-store-steps article {
  border-left: 1px solid #cfd6dc;
  padding: 0.25rem 1.25rem;
}

.cc-store-steps span,
.cc-collection-tile__label {
  color: var(--cc-coral-dark);
  display: block;
  font-family: var(--cc-font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 1.75rem;
}

.cc-store-steps h3 {
  font-size: 1.2rem;
  margin: 0 0 0.55rem;
}

.cc-store-steps p {
  color: var(--cc-muted);
  line-height: 1.65;
  margin: 0;
}

.cc-store-heading {
  align-items: end;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.cc-store-heading h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
  margin: 0;
}

.cc-store-heading > a,
.cc-text-link {
  color: var(--cc-ink);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.25em;
  white-space: nowrap;
}

.cc-store-heading > a span {
  color: var(--cc-coral-dark);
  font-size: 1.2em;
}

.cc-store-collections {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cc-store-collections a {
  background: #f0f2f4;
  color: var(--cc-ink);
  display: flex;
  flex-direction: column;
  min-height: 15rem;
  padding: 1.75rem;
  text-decoration: none;
  transition: background-color 180ms ease, transform 180ms ease;
}

.cc-store-collections a:nth-child(2) {
  background: #fce8e4;
}

.cc-store-collections a:nth-child(3) {
  background: #dfe9e7;
}

.cc-store-collections a:hover {
  color: var(--cc-ink);
  transform: translateY(-0.25rem);
}

.cc-store-collections strong {
  font-family: var(--cc-font-display);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.12;
  margin-top: auto;
}

.cc-store-collections small {
  color: #52606d;
  font-size: 0.9rem;
  line-height: 1.55;
  margin-top: 0.55rem;
}

/* New Arrivals: WooCommerce products sourced from the live catalog. */
.cc-new-arrivals {
  background: #fffdf9;
}

.cc-new-arrivals .products {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
}

.cc-new-arrivals .product-small.box {
  background: #fff;
  border: 1px solid var(--cc-border);
  border-radius: 0;
  display: flex;
  flex-direction: column;
  margin: 0;
  overflow: hidden;
}

.cc-new-arrivals .product-small .box-image {
  aspect-ratio: 6 / 7;
  background: #eef1f2;
  overflow: hidden;
}

.cc-new-arrivals .product-small .box-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.cc-new-arrivals .product-small .box-text {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.15rem 1.15rem 1.3rem;
}

.cc-new-arrivals .product-small .title-wrapper {
  padding: 0;
}

.cc-new-arrivals .product-small .name {
  font-size: 1.05rem;
  min-height: 2.8em;
}

.cc-new-arrivals .product-small .price-wrapper {
  margin-top: auto;
  padding-top: 0.8rem;
}

.cc-new-arrivals .product-small .price {
  color: var(--cc-coral-dark);
  font-size: 1.05rem;
}

.cc-new-arrivals .product-small .add-to-cart-button {
  margin-top: 1rem;
}

.cc-new-arrivals .product-small .add-to-cart-button a {
  background: transparent;
  border: 1px solid var(--cc-ink);
  border-radius: 999px;
  color: var(--cc-ink);
  display: inline-flex;
  font-size: 0.78rem;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.6rem 0.9rem;
  width: 100%;
}

.cc-new-arrivals .product-small .add-to-cart-button a:hover {
  background: var(--cc-ink);
  color: #fff;
}

.cc-store-section--dark {
  background: var(--cc-ink);
  color: #dce4eb;
}

.cc-store-story {
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.85fr);
}

.cc-store-section--dark h2 {
  color: #fff;
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  margin: 0;
  max-width: 11ch;
}

.cc-store-section--dark .cc-eyebrow {
  color: #ffaaaa;
}

.cc-store-story > div:last-child > p {
  font-size: 1.08rem;
  line-height: 1.72;
  margin: 0;
}

.cc-store-story ul {
  list-style: none;
  margin: 1.4rem 0 1.75rem;
  padding: 0;
}

.cc-store-story li {
  border-top: 1px solid rgb(255 255 255 / 18%);
  padding: 0.7rem 0;
}

.cc-store-cta {
  align-items: center;
  background: var(--cc-soft-sand);
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  padding: clamp(2rem, 5vw, 4rem);
}

.cc-store-cta h2 {
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  margin: 0.25rem 0 0.8rem;
  max-width: 16ch;
}

.cc-store-cta p:not(.cc-eyebrow) {
  color: var(--cc-muted);
  line-height: 1.65;
  margin: 0;
  max-width: 38rem;
}

.cc-store-cta > div:last-child {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 1rem;
}

/* Stable custom footer: do not inherit Flatsome widget columns. */
.footer-wrapper,
.absolute-footer {
  display: none !important;
}

.cc-site-footer {
  background: #17212b;
  color: #d9e0e7;
  margin: 0;
  width: 100%;
}

.cc-site-footer__inner {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  grid-template-columns: minmax(16rem, 1.25fr) minmax(34rem, 2fr);
  margin: 0 auto;
  max-width: 76rem;
  padding: clamp(3.5rem, 6vw, 5rem) 1.5rem;
}

.cc-site-footer__contact {
  max-width: 23rem;
}

.cc-site-footer__brand {
  color: #fff;
  display: inline-block;
  font-family: var(--cc-font-display);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.045em;
  margin-bottom: 1rem;
}

.cc-site-footer p {
  color: #c3cdd7;
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0 0 0.8rem;
}

.cc-site-footer strong {
  color: #fff;
}

.cc-site-footer a {
  color: #fff;
}

.cc-site-footer a:hover,
.cc-site-footer a:focus {
  color: #ffb1b1;
  text-decoration: none;
}

.cc-site-footer__note {
  color: #9eabb7 !important;
  font-size: 0.8125rem !important;
}

.cc-site-footer__links {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cc-site-footer h2 {
  color: #fff;
  font-family: var(--cc-font-display);
  font-size: 1rem;
  letter-spacing: 0;
  margin: 0 0 1rem;
  text-transform: none;
}

.cc-site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cc-site-footer li {
  margin: 0 0 0.7rem;
}

.cc-site-footer li a {
  color: #c3cdd7;
  font-size: 0.9rem;
  line-height: 1.4;
}

.cc-site-footer__bottom {
  border-top: 1px solid rgb(255 255 255 / 14%);
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
}

.cc-site-footer__bottom p {
  margin: 0 auto;
  max-width: 76rem;
}

@media (max-width: 849px) {
  .cc-store-hero {
    background: #eff3f5;
  }

  .cc-store-hero__inner,
  .cc-store-story {
    grid-template-columns: 1fr;
  }

  .cc-store-hero__inner {
    min-height: 0;
    padding-block: 4rem;
  }

  .cc-store-hero__mark {
    display: none;
  }

  .cc-store-steps,
  .cc-store-collections,
  .cc-new-arrivals .products {
    grid-template-columns: 1fr;
  }

  .cc-store-steps article {
    border-left: 0;
    border-top: 1px solid #cfd6dc;
    padding: 1.25rem 0 0;
  }

  .cc-store-steps span {
    margin-bottom: 0.75rem;
  }

  .cc-site-footer__inner {
    grid-template-columns: 1fr;
  }

  .cc-site-footer__links {
    gap: 2rem 1.25rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 549px) {
  .cc-store-container {
    padding-inline: 1.25rem;
  }

  .cc-store-hero__inner {
    padding: 3.5rem 1.25rem;
  }

  .cc-store-hero h1 {
    font-size: clamp(2.8rem, 15vw, 4rem);
  }

  .cc-store-hero__actions .button {
    width: 100%;
  }

  .cc-store-heading,
  .cc-store-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .cc-store-collections a {
    min-height: 12rem;
  }

  .cc-store-cta > div:last-child {
    align-items: stretch;
    width: 100%;
  }

  .cc-store-cta .button {
    text-align: center;
    width: 100%;
  }

  .cc-site-footer__inner {
    padding: 3rem 1.25rem;
  }

  .cc-site-footer__links {
    grid-template-columns: 1fr;
  }

  .cc-site-footer__links > div {
    border-top: 1px solid rgb(255 255 255 / 14%);
    padding-top: 1.4rem;
  }

  .cc-site-footer__bottom {
    padding: 1.1rem 1.25rem;
  }
}

/* New Arrivals: reset Flatsome row/column sizing before applying the catalog grid. */
.cc-new-arrivals .products.row {
  display: grid !important;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 !important;
  width: 100%;
}

.cc-new-arrivals .products.row > .product-small.col {
  display: block;
  flex: none;
  margin: 0;
  max-width: none;
  padding: 0;
  width: auto;
}

.cc-new-arrivals .products.row > .product-small.col > .col-inner,
.cc-new-arrivals .products.row > .product-small.col .product-small.box {
  height: 100%;
  width: 100%;
}

.cc-new-arrivals .product-small .box-image img {
  object-fit: contain;
}

.cc-new-arrivals .product-small .name {
  overflow-wrap: anywhere;
}

@media (max-width: 849px) {
  .cc-new-arrivals .products.row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 549px) {
  .cc-new-arrivals .products.row {
    gap: 1.25rem;
    grid-template-columns: 1fr;
  }

  .cc-new-arrivals .product-small .box-image {
    aspect-ratio: 1 / 1;
  }

  .cc-new-arrivals .product-small .box-text {
    padding: 1rem 1.1rem 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
