/*
Theme Name: Alsius
Theme URI: https://alsius.com.au
Author: Alsius
Author URI: https://alsius.com.au
Description: Custom theme for Alsius — luxury integrated refrigeration. Content managed via ACF.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: Proprietary
Text Domain: alsius
*/

/* ===========================================================
   Alsius — global stylesheet
   =========================================================== */

:root {
  --bg: #000000;
  --bg-2: #0d0d0d;
  --card: #0E0E0E;
  --line: #1C1C1C;
  --text: #eaeaea;
  --white: #FFFFFF;
  --muted: #6B8AA5;
  --muted-2: #6B8AA5;
  --accent: #6B8AA5;
  --accent-soft: rgba(107, 138, 165, 0.18);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html,
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none
}

.why {
  padding: 120px 0px 0px 0px;
}

.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 40px
}

/* ====================  HEADER  ==================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 12px 0;
  background: #0000008C;
  border-bottom: 1px solid #FFFFFF0A;
  backdrop-filter: blur(7px)
}

.site-header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: .5px;
  color: #f0f0f0;
}

.brand-mark {
  width: 22px;
  height: 22px;
  display: inline-block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 54px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 17.92px;
  letter-spacing: 2.24px;
  text-transform: uppercase;
}

.nav-links a {
  color: #fff;
  transition: color .2s;
  padding-bottom: 6px;
  position: relative;
}

.nav-links a:hover {
  color: var(--accent)
}

.nav-links a.active {
  color: var(--accent)
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  background: var(--accent);
}

/* Cart icon in header */
.cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #fff;
  transition: color .2s;
}

.cart-link:hover {
  color: var(--accent);
}

.cart-count {
  position: absolute;
  top: -2px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  opacity: 0;
  transform: scale(.8);
  transition: opacity .2s, transform .2s;
}

.cart-count.has-items {
  opacity: 1;
  transform: scale(1);
}

.deposit-btn.added::after {
  content: "  ✓";
}

.deposit-btn.loading {
  opacity: .7;
  pointer-events: none;
}

/* mobile menu toggle (hidden on desktop) */
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  cursor: pointer;
  padding: 6px;
}

.menu-toggle svg {
  width: 26px;
  height: 26px
}

/* ====================  HERO  ==================== */
.hero {
  position: relative;
  height: 760px;
  min-height: 600px;
  background: linear-gradient(rgba(8, 8, 8, .45), rgba(8, 8, 8, .35)),
    url('images/hero.png') center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: 565px
}

.eyebrow {
  display: inline-block;
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  color: var(--muted-2);
  line-height: 17.41px;
  letter-spacing: 2.39px;
  vertical-align: middle;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.eyebrow::before {
  content: "— ";
  color: var(--accent)
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 92px;
  line-height: 1.05;
  letter-spacing: -.5px;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
  display: block;
}

.hero p {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26.4px;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 30px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.btn {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 18.43px;
  letter-spacing: 2.07px;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  border: 1px solid #000000;
  display: inline-flex;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .25s;
  padding: 17px 42px 20px;
  display: inline;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent)
}

.btn-primary:hover {
  background: #587595;
  border-color: #587595
}

.btn-ghost {
  background: transparent;
  color: #F4F1EC;
  border: 1px solid #F4F1EC
}

.btn-ghost:hover {
  border-color: #fff;
  color: #fff
}

/* ====================  SECTION BASE  ==================== */
section {
  padding: 0px 0
}

.label {
  display: inline-block;
  color: var(--muted-2);
  margin-bottom: 20px;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  line-height: 17.41px;
  letter-spacing: 2.39px;
  vertical-align: middle;
  text-transform: uppercase;
}

.label::before {
  content: "— ";
  color: var(--accent)
}

h2.heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 53.57px;
  letter-spacing: -0.5px;
  vertical-align: middle;
}

/* Philosophy */
.philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding: 120px 0;

}

.philosophy p {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28.56px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #FFFFFF;
  max-width: 460px
}

.meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 460px;
  margin-top: 18px
}

.meta-row a {
  color: var(--accent);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 18.43px;
  letter-spacing: 2.07px;
  vertical-align: middle;
  text-transform: uppercase;
}

.meta-row .phone {
  color: var(--white);
  font-family: Manrope;
  font-weight: 400;
  font-size: 16px;
  line-height: 24.32px;
  letter-spacing: 0.3px;
  vertical-align: middle;

}

/* Featured products */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  padding: 60px 0 0 0;
  border-top: 1px solid var(--line);
}

.section-head .view-all {
  color: var(--accent);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 18.43px;
  letter-spacing: 2.07px;
  vertical-align: middle;
  text-transform: uppercase;
}

.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.product {

  overflow: hidden;
  display: flex;
  flex-direction: column
}

.product-img {
  aspect-ratio: 4/5;
  background: #181818 center/cover no-repeat
}

.product-body {
  padding: 22px 0px;
  flex: 1;
  display: flex;
  flex-direction: column
}

.product .tag {
  color: var(--muted-2);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 16.64px;
  letter-spacing: 2.29px;
  vertical-align: middle;
  text-transform: uppercase;
  margin-bottom: 10px;

}

.product h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 25.92px;
  letter-spacing: -0.24px;
  vertical-align: middle;
  color: #F4F1EC;
  margin-bottom: 10px;
}

.product .desc {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22.53px;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 10px
}

.product .price {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 23.55px;
  letter-spacing: 0.29px;
  vertical-align: middle;
  color: #F4F1EC;
  margin-bottom: 10px;

}

.deposit-btn {
  display: block;
  text-align: center;
  padding: 13px;
  background: var(--accent);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 18.43px;
  letter-spacing: 2.07px;
  text-align: center;
  color: #FFFFFF;
  text-transform: uppercase;
  transition: background .25s;
}

.deposit-btn:hover {
  background: #587595
}

/* Why Alsius */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 46px
}

.feature {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 34px 20px 50px 20px;
}

.feature .ic {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 10px;
}

.feature h4 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 16px !important;
  line-height: 22.53px;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 10px;
  color: #F4F1EC;
}


.feature p {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 21.76px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: var(--white)
}

/* Testimonial */
.testimonial {
  text-align: center;
  padding: 140px 0;
}

.testimonial blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 50px !important;
  line-height: 1.3;
  font-weight: 400;
  max-width: 880px;
  margin: 0 auto 32px;
  color: #f0f0f0;
}

.testimonial cite {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--white);
  text-transform: uppercase;
}

/* Final CTA */
.final-cta {
  text-align: center;
  padding: 130px 0;
  border-bottom: 1px solid var(--line) !important;
}

.final-cta h2 {
  margin-bottom: 18px
}

.final-cta h2 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400
}

.final-cta p {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26.4px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  max-width: 520px;
  margin: 0 auto 40px;
  color: var(--white)
}

.final-cta .cta-row {
  justify-content: center
}

/* ====================  FOOTER  ==================== */
.site-footer {
  padding: 80px 0 30px;
  background: var(--bg);
  border-top: 1px solid var(--line) !important;
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
}

.site-footer .footer-grid p {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 14.4px;
  line-height: 24.48px;
  letter-spacing: 0%;
  vertical-align: middle;
  max-width: 300px;
  margin-top: 20px;
  padding: 0 20px;
  color: var(--white)
}

.footer-col h5 {
  color: var(--accent);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 17.92px;
  letter-spacing: 2.46px;
  vertical-align: middle;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none
}

.footer-col li {
  margin-bottom: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 23.04px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: var(--white);
}

.footer-col li a:hover {
  color: var(--accent)
}

.footer-bottom {
  padding: 28px 20px 0 20px;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 12.5px;
  line-height: 19.97px;
  letter-spacing: 0.25px;
  vertical-align: middle;
  color: var(--white);
  border-top: 1px solid var(--line);

}

/* ====================  INNER PAGE HERO  ==================== */
.page-hero {
  padding: 117px 0 40px;
  position: relative;
  border-bottom: 1px solid var(--line) !important;
  margin-bottom: 60PX;
}

.stats-main {
  padding: 30px 0px !important;
  border-bottom: 1px solid var(--line) !important;
  border-top: 1px solid var(--line) !important;

}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 92px;
  line-height: 86.4px;
  letter-spacing: -1.2px;
  vertical-align: middle;
  margin-bottom: 24px;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}

.page-hero p {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 27.74px;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 40px;
  color: var(--white);
  max-width: 700px;
}

/* ====================  CONTACT PAGE  ==================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding: 40px 0 130px;
}

.contact-info-block {
  margin-bottom: 56px;
}

.info-list {
  margin-top: 16px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 14px;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 15.2px;
  line-height: 22.8px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #F4F1EC;
}

.info-item img {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
  opacity: .85;
}

.info-item .info-text {
  line-height: 1.55;
}

.info-item .info-text small {
  display: block;
  color: #F4F1EC;
  margin-top: 2px;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 14.1px;
  line-height: 21.12px;
  letter-spacing: 0%;
  vertical-align: middle;
}

.contact-form-card {
  border: 1px solid var(--line);
  background: #0c0f12;
  padding: 36px;
  box-shadow: 0px 2px 50px 0px #00000026;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 22px;
}

.field {
  margin-bottom: 22px;
}

.field label {
  display: block;
  color: #D9DAD6;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 11.29px;
  line-height: 100%;
  letter-spacing: 10%;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: #22262B;
  border: 1px solid #33353B;
  color: #fff;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 300;
  outline: none;
  transition: border-color .2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  gap: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-submit img {
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(1);
}

/* ====================  FAQ PAGE  ==================== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  padding-bottom: 80px;
}

.faq-item {
  border-bottom: 1px solid #1f1f1f;
}

.faq-q {
  width: 100%;
  background: none;
  border: 0;
  color: #F4F1EC;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  font-family: 'Cormorant Garamond', serif;
  text-align: left;
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  line-height: 30.24px;
  letter-spacing: -0.11px;
  vertical-align: middle;
}

.faq-q .chev {
  transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1), color .25s ease;
  color: var(--muted-2);
  flex-shrink: 0;
}

.faq-item.open .faq-q .chev {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.faq-item.open .faq-a {
  grid-template-rows: 1fr;
}

.faq-a-inner {
  overflow: hidden;
  min-height: 0;
  padding: 0;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0;
  color: var(--white);
  box-sizing: border-box;
}

.faq-item.open .faq-a-inner {
  padding: 0 0 26px;
}

@media (prefers-reduced-motion: reduce) {
  .faq-a {
    transition: none;
  }
}

.faq-cta {
  text-align: center;
  padding: 80px 0 100px;
}

.faq-cta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 50px;
  line-height: 43.2px;
  letter-spacing: -0.4px;
  text-align: center;
  vertical-align: middle;
  margin-bottom: 20px;
  color: #F4F1EC;
}

.faq-cta p {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26.4px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  margin-bottom: 20px;
  color: var(--white);
}

/* ====================  ABOUT PAGE  ==================== */
.about-craft {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 30px 0 80px;
}

.about-craft img {
  width: 100%;
  height: auto;
  display: block;
}

.about-craft h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 51.84px;
  letter-spacing: -0.48px;
  vertical-align: middle;
  color: #F4F1EC;
  margin-bottom: 20px;
}

.about-craft p {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0%;
  vertical-align: middle;
  max-width: 480px;
  margin-bottom: 20px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
  padding: 90px 0;
}

.stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 96px;
  line-height: 96px;
  letter-spacing: -1.92px;
  vertical-align: middle;
  color: var(--accent);
}

.stat .num em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
  font-size: 32px;
  letter-spacing: 1px;
  margin-left: 4px;
}

.stat .desc {
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 11.5px;
  line-height: 17.28px;
  letter-spacing: 2.53px;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
}

.about-end {
  text-align: center;
  padding: 90px 0;
}

.about-end h2 {
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 600;
  font-size: 50px;
  line-height: 56.16px;
  letter-spacing: -0.52px;
  text-align: center;
  vertical-align: middle;
}

.about-end .cta-row {
  justify-content: center;
}

/* ====================  PRODUCTS PAGE  ==================== */
.filters {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 30px 0 50px;
}

.filter-btn {
  padding: 13px 28px;
  background: transparent;
  color: #fff;
  border: 1px solid #2a2f36;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
}

.filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.filter-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.products-page-grid {
  padding: 0 0 80px;
}

/* ====================  RESPONSIVE  ==================== */
@media (max-width:960px) {
  .container {
    padding: 0 24px
  }

  .site-header {
    padding: 10px 0;
  }

  .site-header .nav {
    flex-wrap: wrap;
    align-items: center;
    gap: 0 12px;
  }

  .brand {
    flex: 0 0 auto;
    min-width: 0;
    margin-left: -8px !important;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    margin-left: auto;
    z-index: 12;
    min-width: 44px;
    min-height: 44px;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    flex: 1 1 100%;
    flex-direction: column;
    gap: 0;
    background: rgba(10, 10, 10, .98);
    padding: 12px 24px 20px;
    border-top: 1px solid var(--line);
    margin-right: 0;
    display: none;
    z-index: 11;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links.open {
    display: flex
  }

  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    letter-spacing: 1.8px;
  }

  .nav-links a:last-child {
    border-bottom: none
  }

  .nav-links a.active::after {
    display: none
  }

  .nav-links .cart-link {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  body.nav-open {
    overflow: hidden;
  }

  .hero {
    height: auto;
    padding: 160px 0 100px
  }

  .hero h1 {
    font-size: 48px
  }

  section {
    padding: 80px 0
  }

  .philosophy {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .products {
    grid-template-columns: 1fr
  }

  .features {
    grid-template-columns: repeat(2, 1fr)
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  h2.heading {
    font-size: 34px
  }

  .testimonial blockquote {
    font-size: 24px
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px
  }

  .page-hero {
    padding: 140px 0 60px;
  }

  .page-hero h1 {
    font-size: 42px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 20px 0 80px;
  }

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

  .contact-form-card {
    padding: 24px;
  }

  .about-craft {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 0 40px;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 60px 0;
  }

  .stat .num {
    font-size: 60px;
  }

  .about-end h2 {
    font-size: 28px;
  }

  .faq-q {
    font-size: 18px;
  }

  .faq-cta h3 {
    font-size: 28px;
  }

  .filters {
    gap: 8px;
  }

  .filter-btn {
    padding: 11px 18px;
    font-size: 10px;
  }

  /* CTA buttons — stack on mobile (about, home CTA, hero) */
  .cta-row,
  .hero .cta-row,
  .about-end .cta-row,
  .final-cta .cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }

  .about-end .cta-row,
  .final-cta .cta-row {
    align-items: center;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-row .btn,
  .hero .cta-row .btn,
  .about-end .cta-row .btn,
  .final-cta .cta-row .btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    flex: none !important;
    min-width: 0 !important;
    box-sizing: border-box;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
    padding: 16px 24px !important;
    font-size: 12px !important;
    letter-spacing: 1.6px !important;
  }
}

@media (max-width:520px) {
  .features {
    grid-template-columns: 1fr
  }

  .hero h1 {
    font-size: 38px
  }
}

/* ===========================================================
   ALSIUS CHILD CSS — merged into parent on 2026-05-15
   All customizations from the former Alsius-child theme.
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

/* ===========================================================
   CONTACT FORM — Subject select: Inter Bold per design spec.
   =========================================================== */

#subject,
#subject option {
  font-family: 'Inter', 'Manrope', sans-serif !important;
  font-weight: 700;
  font-size: 16.94px;
  line-height: 100%;
  letter-spacing: 0;
  color: #9FA1A3;
}

/* Remove the browser's native dropdown caret on the Subject select */
#subject {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  background-image: none !important;
  padding-right: 16px !important;
}

#subject::-ms-expand {
  display: none !important;
}

/* ===========================================================
   FAQ "Still have questions?" CTA button — scoped only to
   the .faq-cta block. Other btn-primary instances site-wide
   are untouched.
   =========================================================== */

.faq-cta .btn-primary {
  display: inline-block;
  background: #6B8AA5;
  color: #fff;
  border: 1px solid #6B8AA5;
  padding: 16px 38px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0;
  transition: background .2s, border-color .2s;
}

.faq-cta .btn-primary:hover {
  background: #5a7691;
  border-color: #5a7691;
  color: #fff;
}



.faq-q {
  color: inherit;
}

.faq-q .chev {
  color: #8A857E;
  transition: color .2s ease, transform .25s ease;
}

.faq-item.open .faq-q .chev {
  color: #6B8AA5;
}

/* ===========================================================
   TESTIMONIAL DASHES — symmetric em-dashes around the eyebrow
   label and a leading em-dash before the author cite.
   =========================================================== */

.testimonial .label::after {
  content: " —";
  color: var(--accent);
}

.testimonial cite::before {
  content: "— ";
  color: var(--white);
}

/* ===========================================================
   HERO CTA BUTTONS — match XD reference exactly.
   Parent's `.btn` rule sets `display: inline` (kills flex
   alignment) and asymmetric padding 17/42/20 (off-center).
   Override with balanced padding, proper inline-flex so the
   arrow aligns vertically, and matching ghost-button style.
   =========================================================== */

.hero .cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.hero .cta-row .btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px !important;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0;
  min-height: 50px;
  transition: background .2s, border-color .2s, color .2s;
}

.hero .cta-row .btn-primary {
  background: #6B8AA5;
  color: #fff;
  border: 1px solid #6B8AA5;
}

.hero .cta-row .btn-primary:hover {
  background: #5a7691;
  border-color: #5a7691;
}

.hero .cta-row .btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.hero .cta-row .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: #fff;
}

@media (max-width: 600px) {
  .hero .cta-row .btn {
    padding: 16px 24px !important;
    font-size: 12px;
    letter-spacing: 1.6px;
    width: 100%;
    flex: none !important;
    min-width: 0 !important;
  }
}

/* ===========================================================
   HEADER LOGO — show icon only at 43×46, hide "Alsius" text.
   =========================================================== */

.brand {
  font-size: 0 !important;
  /* hides the "Alsius" text node */
  line-height: 0;
  gap: 0 !important;
}

.brand-mark {
  width: 70px !important;
  height: 75px !important;
  object-fit: contain;
}

@media (max-width: 960px) {
  .brand-mark {
    width: 88px !important;
    height: 94px !important;
  }
}

/* ===========================================================
   HERO IMAGE — match the XD reference exactly.
   Source image is 1920×1200 (aspect 1.6:1 = 8:5).
   By locking the hero's aspect ratio to the image's, both
   `cover` and `contain` produce a crop-free render: full
   ceiling + floor visible, fridge centered, no vertical cut.
   =========================================================== */

.hero {
  aspect-ratio: 1920 / 1200;
  height: auto !important;
  min-height: 0 !important;
  background-position: center center !important;
  background-size: cover !important;
}

.hero .container {
  align-self: center;
  width: 100%;
}

/* On tablets / mobile keep the image visible but cap height
   so the section doesn't dominate the viewport. */
@media (max-width: 900px) {
  .hero {
    aspect-ratio: auto;
    height: auto !important;
    min-height: 520px !important;
    padding: 140px 0 80px;
    background-position: 62% center !important;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 460px !important;
    background-position: 58% center !important;
  }
}

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

.product-detail {
  padding: 140px 0 80px;
}

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

/* Gallery */
.product-gallery .gallery-main {
  aspect-ratio: 4/5;
  background: #181818;
  border: 1px solid var(--line);
  margin-bottom: 16px;
  overflow: hidden;
}

.product-gallery .gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 6px !important;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-thumbs .thumb {
  aspect-ratio: 1;
  width: 100%;
  border-radius: 6px !important;

  object-fit: cover;
  cursor: pointer;
  border: 1px solid var(--line);
  transition: border-color .2s, opacity .2s;
  opacity: .7;
}

.gallery-thumbs .thumb:hover,
.gallery-thumbs .thumb.active {
  border-color: var(--accent);
  opacity: 1;
}

/* Info column */
.product-tag-pill {
  display: inline-block;
  padding: 12px 10px;
  background: #6B8AA533;
  border: 1px solid #6B8AA5 !important;
  margin-bottom: 20px;
  color: #6B8AA5;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 1.5px;
  text-transform: uppercase;

  border-radius: 4px;
}

.title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.product-info h1,
.title-row h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: -0.5px;
  margin: 0;
  color: #F4F1EC;
}

.badge-new {
  background: #6B8AA5;
  color: #FFFFFF;
  padding: 8px 12px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 1.5px;
  text-transform: uppercase;

  display: inline-block;
  border-radius: 4px;
}

.product-subtitle {
  color: #bdbdbd;
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  color: #FFFFFFB2;

}

.product-rating {
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0px;
  margin-bottom: 20px;
  color: #FFFFFF99;
}

.stars-img {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.stars-img img {
  width: 14px;
  height: 14px;
  display: block;
}

.product-price-row {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.price-current {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5px;

}

.price-old {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  text-decoration: line-through;
  color: #FFFFFF66;

}

.price-save {
  background: #6B8AA5;
  color: #FFFFFF;
  padding: 4px 8px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0px;

  border-radius: 4px;
}

.product-finish>label,
.product-qty-row>label {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  color: #F4F1EC;
}

.finish-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.finish-btn {
  padding: 14px 18px;
  background: transparent;
  border: 1px solid #2a2f36;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
  transition: all .2s;
  border-radius: 6px;
}

.finish-btn.active {
  background: var(--accent);
  border-color: var(--accent);
}

.finish-btn:hover {
  border-color: var(--accent);
}

.product-qty-row {
  margin-bottom: 28px;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.qty-btn {
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1px solid #2a2f36;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.qty-input {
  width: 60px;
  background: transparent;
  border: 1px solid #2a2f36;
  color: #fff;
  height: 38px;
  text-align: center;
  font-family: inherit;
  font-size: 14px;
  -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.stock-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0px;
  color: #FFFFFF80;
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px 28px;
  margin-bottom: 12px;
  border: 1px solid var(--accent);
  font-family: inherit;
  font-size: 13px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all .2s;
}

.product-info .btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.product-info .btn-primary:hover {
  background: #5a7691;
  border-color: #5a7691;
}

.product-info .btn-ghost {
  background: transparent;
  color: #F4F1EC;
  border: 1px solid #F4F1EC
}

.product-info .btn-ghost:hover {
  background: #6B8AA533;
}

/* Trust row */
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: center;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.trust-item img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.trust-item span {
  color: #FFFFFF99;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0px;
  text-align: center;

}

/* ===== TABS ===== */
.product-tabs {
  padding: 50px 0 40px;
}

.tabs-nav {
  display: flex;
  gap: 32px;
  border-top: 1px solid var(--line);
  padding: 60px 0 0 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 30px;
}

.tab-btn {
  background: transparent;
  color: #FFFFFF80;
  padding: 14px 0;
  font-family: 'Manrope', sans-serif;
  position: relative;
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
}

.tab-btn.active {
  color: #6B8AA5;
}

.tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.tab-pane p {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  margin-bottom: 20px;
  color: #FFFFFFB2;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 30px;
  max-width: 720px;
}

.features-grid h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0px;
  color: #F4F1EC;
  margin-bottom: 10px;
}

.features-grid ul,
.spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-grid li,
.spec-list li {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0px;
  position: relative;
  padding-left: 16px;
  line-height: 1.6;
  color: #FFFFFFB2;
  margin-bottom: 10px;
}

.features-grid li::before,
.spec-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.spec-list li strong {
  color: #ddd;
  margin-right: 8px;
}

/* ===== REVIEWS ===== */


.reviews-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding: 60px 0;
}

.reviews-summary h3 {
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: -0.5px;
  color: #F4F1EC;
}

.big-stars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 20px;
}

.big-stars img {
  width: 20px;
  height: 20px;
  display: block;
}

.reviews-summary .reviews-count,
.reviews-summary>p {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  margin-bottom: 20px;
}

.rating-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bar-row {
  display: grid;
  grid-template-columns: 30px 1fr 20px;
  gap: 14px;
  align-items: center;
  font-size: 13px;
  color: #FFFFFF99;
}

.bar-row .bar-star {
  height: 14px;
  width: auto;
  max-width: 70px;
  object-fit: contain;
  display: block;
}

.bar-row .bar {
  height: 6px;
  background: #FFFFFF1A;
  border-radius: 3px;
  overflow: hidden;
}

.bar-row .fill {
  height: 100%;
  background: var(--accent);
}

.bar-row span:last-child {
  text-align: right;
  color: #FFFFFF99;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.review-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.review-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #6B8AA533;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF99;
  text-transform: uppercase;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 12px;
  line-height: 24px;
  letter-spacing: 0px;

}

.review-body h4 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  color: #F4F1EC;
  font-family: 'Manrope', sans-serif;
  margin-bottom: 10px;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  margin-bottom: 10px;
}

.review-meta .stars-img img {
  width: 12px;
  height: 12px;
}

.rev-date {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0px;
  color: #FFFFFF66;

}

.review-body p {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  color: #FFFFFFB2;

}

/* "You may also like" — reuse existing .featured grid styles inherited from parent */
.featured-related {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Cart / checkout — payment-type indicator on cart line */
.alsius-payment-type-tag {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  font-size: 10px;
  letter-spacing: 1px;
  background: #6B8AA533;
  color: var(--accent);
  border-radius: 3px;
  text-transform: uppercase;
}

/* Single product responsive */
@media (max-width: 960px) {
  .product-detail {
    padding: 110px 0 60px;
  }

  .product-detail-grid,
  .reviews-grid,
  .features-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-info h1 {
    font-size: 28px;
  }

  .trust-row {
    gap: 10px;
  }

  .trust-item span {
    font-size: 10px;
  }

  .tabs-nav {
    gap: 18px;
    overflow-x: auto;
  }

  .tab-btn {
    white-space: nowrap;
    font-size: 11px;
  }
}

/* ===========================================================
   CART PAGE — premium dark layout
   =========================================================== */

.woocommerce-cart .page-hero h1,
.woocommerce-checkout .page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 56px;
  line-height: 1.1;
  color: #fff;
}

.woocommerce-cart .container {
  max-width: 1200px;
}

/* Two-column layout: cart list left, summary right */
.woocommerce-cart .woocommerce {
  display: grid;
  gap: 40px;
  align-items: start;
}

.alsius-cart-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 0;
}

.alsius-cart-head {
  display: grid;
  grid-template-columns: 110px 1fr 110px 150px 110px;
  gap: 18px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 500;
}

.alsius-cart-head .col-product {
  grid-column: 1 / span 2;
}

.alsius-cart-head .col-price {
  text-align: left;
}

.alsius-cart-head .col-qty {
  text-align: center;
}

.alsius-cart-head .col-subtotal {
  text-align: right;
}

.alsius-cart-row {
  display: grid;
  grid-template-columns: 110px 1fr 110px 150px 110px;
  gap: 18px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}

.alsius-cart-row:last-child {
  border-bottom: 0;
}

.cart-cell-thumb {
  width: 110px;
  height: 110px;
  background: #181818;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-cell-thumb img,
.alsius-cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cart-cell-info {
  min-width: 0;
}

.alsius-cart-product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 6px;
  line-height: 1.25;
}

.alsius-cart-product-name a {
  color: inherit;
}

.alsius-cart-product-name a:hover {
  color: var(--accent);
}

.alsius-cart-meta {
  font-size: 13px;
  color: #bdbdbd;
  margin-bottom: 10px;
  line-height: 1.55;
}

.alsius-cart-meta dl {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
}

.alsius-cart-meta dt,
.alsius-cart-meta dd {
  display: inline;
  margin: 0;
  font-size: 12.5px;
  color: #9aa9b5;
}

.alsius-cart-meta dt {
  color: var(--muted-2);
  font-weight: 500;
}

.alsius-cart-meta dd::after {
  content: "";
  display: block;
}

/* × Remove icon — positioned top-right of each cart row */
.alsius-cart-row {
  position: relative;
}

.alsius-cart-remove {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--muted-2);
  font-size: 18px;
  line-height: 1;
  text-decoration: none;
  transition: color .15s, border-color .15s, background .15s, transform .15s;
  z-index: 2;
}

.alsius-cart-remove:hover {
  color: #fff;
  border-color: var(--accent);
  background: var(--accent);
  transform: rotate(90deg);
}

.cart-cell-price,
.cart-cell-subtotal {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  white-space: nowrap;
}

.cart-cell-subtotal {
  text-align: right;
}

/* Quantity ± control */
.alsius-qty-controls {
  display: inline-flex;
  align-items: center;
  border: 1px solid #2a2f36;
  border-radius: 6px;
  overflow: hidden;
  background: transparent;
}

.alsius-qty-btn {
  width: 38px;
  height: 40px;
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s;
  font-family: inherit;
}

.alsius-qty-btn:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.alsius-qty-controls .qty,
.alsius-qty-controls .alsius-qty-input {
  width: 50px;
  height: 40px;
  background: transparent;
  border: 0;
  border-left: 1px solid #2a2f36;
  border-right: 1px solid #2a2f36;
  color: #fff;
  text-align: center;
  font-family: inherit;
  font-size: 14px;
  -moz-appearance: textfield;
  outline: none;
}

.alsius-qty-controls .qty::-webkit-outer-spin-button,
.alsius-qty-controls .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.alsius-qty-controls .quantity {
  display: contents;
}

/* Hide WC's old built-in label inside the qty wrapper */
.alsius-qty-controls .quantity>label {
  display: none;
}

/* ===== Order summary card ===== */
.alsius-cart-totals {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px 28px 24px;
  position: sticky;
  top: 110px;
}

.alsius-cart-totals h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.alsius-totals-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}

.alsius-totals-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14.5px;
  color: #cfcfcf;
}

/* Use .alsius-label, not .label, to dodge parent's `.label::before { content:"— " }` */
.alsius-totals-row .alsius-label {
  font-size: 14px;
  letter-spacing: 0.4px;
  color: #cfcfcf;
  text-transform: none;
  font-weight: 400;
}

.alsius-totals-row .alsius-label::before {
  content: none !important;
}

.alsius-totals-row .value,
.alsius-totals-row .value bdi,
.alsius-totals-row .value .amount {
  color: #fff;
  font-weight: 500;
  font-size: 15px;
}

.alsius-totals-row.fee .value,
.alsius-totals-row.fee .value .amount {
  color: var(--accent);
}

.alsius-totals-row.order-total {
  margin-top: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.alsius-totals-row.order-total .alsius-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0;
  color: #fff;
  text-transform: none;
}

.alsius-totals-row.order-total .value,
.alsius-totals-row.order-total .value bdi,
.alsius-totals-row.order-total .value .amount {
  font-size: 22px;
  font-family: 'Cormorant Garamond', serif;
  color: var(--accent);
  font-weight: 500;
}

/* Strip stray WC <strong> wrappers in totals */
.alsius-totals-row strong {
  font-weight: inherit;
}

/* Proceed to checkout */
.alsius-cart-totals .wc-proceed-to-checkout,
.alsius-checkout-cta {
  margin: 0;
  padding: 0;
}

.alsius-cart-totals .checkout-button,
.alsius-cart-totals a.button.alt,
.alsius-cart-totals .wc-proceed-to-checkout a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px 24px;
  background: var(--accent);
  color: #fff !important;
  border: 1px solid var(--accent);
  font-family: inherit;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 4px;
  text-decoration: none;
  transition: background .15s, border-color .15s, transform .15s;
  cursor: pointer;
}

.alsius-cart-totals .checkout-button:hover,
.alsius-cart-totals a.button.alt:hover,
.alsius-cart-totals .wc-proceed-to-checkout a:hover {
  background: #5a7691;
  border-color: #5a7691;
}

.alsius-checkout-note {
  margin: 14px 0 0;
  font-size: 11.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-align: center;
  color: var(--muted-2);
}

/* Remove WC's default cart table styling that fights ours */
.woocommerce-cart .shop_table.cart {
  border: 0 !important;
  background: transparent !important;
}

/* Hide the empty top wrapper if present */
.woocommerce-cart .alsius-cart-form .cart-collaterals {
  display: none;
}

/* ====== Tablet ====== */
@media (max-width: 1024px) {
  .woocommerce-cart .woocommerce {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .alsius-cart-totals {
    position: static;
  }
}

/* ====== Mobile ====== */
@media (max-width: 720px) {

  .woocommerce-cart .page-hero h1,
  .woocommerce-checkout .page-hero h1 {
    font-size: 40px;
  }

  .alsius-cart-head {
    display: none;
  }

  .alsius-cart-row {
    grid-template-columns: 90px 1fr;
    grid-template-areas:
      "thumb info"
      "thumb info"
      "price price"
      "qty   subtotal";
    row-gap: 14px;
    padding: 18px;
  }

  .cart-cell-thumb {
    grid-area: thumb;
    width: 90px;
    height: 90px;
  }

  .cart-cell-info {
    grid-area: info;
  }

  .cart-cell-price {
    grid-area: price;
    font-size: 14px;
    color: var(--muted-2);
  }

  .cart-cell-price::before {
    content: "Price: ";
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-right: 6px;
    color: var(--muted-2);
  }

  .cart-cell-qty {
    grid-area: qty;
  }

  .cart-cell-subtotal {
    grid-area: subtotal;
    text-align: right;
    align-self: center;
  }

  .alsius-cart-totals {
    padding: 22px 20px 20px;
  }

  .alsius-cart-totals h2 {
    font-size: 22px;
  }
}

/* ===========================================================
   ORDER RECEIVED / THANK-YOU PAGE
   =========================================================== */

.alsius-thankyou {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
  padding: 8px 0 60px;
}

/* ----- Hero confirmation card ----- */
.alsius-ty-hero {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 40px 32px;
  text-align: center;
}

.alsius-ty-check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.alsius-ty-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.15;
}

.alsius-ty-sub {
  color: #cfcfcf;
  font-size: 15px;
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto;
}

.alsius-ty-sub strong {
  color: #fff;
  font-weight: 500;
}

/* ----- Meta strip ----- */
.alsius-ty-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.alsius-ty-meta-item {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-right: 1px solid var(--line);
}

.alsius-ty-meta-item:last-child {
  border-right: 0;
}

.alsius-ty-meta-key {
  font-size: 10.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 500;
}

.alsius-ty-meta-val {
  font-size: 14.5px;
  color: #fff;
  font-weight: 500;
  word-break: break-word;
}

.alsius-ty-meta-total,
.alsius-ty-meta-total .amount,
.alsius-ty-meta-total bdi {
  color: var(--accent);
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
}

/* ----- Order details + customer cards ----- */
.alsius-thankyou .woocommerce-order-details,
.alsius-thankyou .woocommerce-customer-details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px 32px;
}

.alsius-thankyou .woocommerce-order-details__title,
.alsius-thankyou .woocommerce-column__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

/* Order details table */
.alsius-thankyou table.shop_table {
  width: 100%;
  border-collapse: collapse;
  border: 0;
  background: transparent;
  margin: 0;
}

.alsius-thankyou table.shop_table thead th {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 500;
  padding: 10px 12px;
  text-align: left;
  background: transparent;
  border-bottom: 1px solid var(--line);
}

.alsius-thankyou table.shop_table tbody td,
.alsius-thankyou table.shop_table tfoot td,
.alsius-thankyou table.shop_table tfoot th {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  background: transparent;
  vertical-align: top;
  color: #cfcfcf;
  font-size: 14px;
  line-height: 1.55;
}

.alsius-thankyou table.shop_table .product-name {
  color: #fff;
  font-weight: 500;
  font-size: 15px;
}

.alsius-thankyou table.shop_table .product-name a {
  color: inherit;
  text-decoration: none;
}

.alsius-thankyou table.shop_table .product-name a:hover {
  color: var(--accent);
}

/* Inline cart-item meta (Payment / Finish) */
.alsius-thankyou table.shop_table .product-name .wc-item-meta,
.alsius-thankyou table.shop_table .product-name dl.variation {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.alsius-thankyou table.shop_table .product-name .wc-item-meta li,
.alsius-thankyou table.shop_table .product-name dl.variation>* {
  font-size: 12.5px;
  color: #9aa9b5;
  font-weight: 400;
  margin: 0;
}

.alsius-thankyou table.shop_table .product-name .wc-item-meta strong,
.alsius-thankyou table.shop_table .product-name dl.variation dt {
  color: var(--muted-2);
  font-weight: 500;
  letter-spacing: 0.3px;
  display: inline;
  margin-right: 4px;
}

.alsius-thankyou table.shop_table .product-name dl.variation dd {
  display: inline;
  margin: 0;
}

.alsius-thankyou table.shop_table .product-name .wc-item-meta li>p,
.alsius-thankyou table.shop_table .product-name dl.variation dd p {
  display: inline;
  margin: 0;
}

/* Totals rows */
.alsius-thankyou table.shop_table tfoot tr th {
  text-align: left;
  font-weight: 500;
  color: #cfcfcf;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
}

.alsius-thankyou table.shop_table tfoot tr td {
  text-align: right;
  color: #fff;
  font-weight: 500;
}

.alsius-thankyou table.shop_table tfoot tr.fee td,
.alsius-thankyou table.shop_table tfoot tr td .amount,
.alsius-thankyou table.shop_table tfoot tr td bdi {
  color: #fff;
}

.alsius-thankyou table.shop_table tfoot tr:last-child th,
.alsius-thankyou table.shop_table tfoot tr.order_total th,
.alsius-thankyou table.shop_table tfoot tr:has(strong) th {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
}

.alsius-thankyou table.shop_table tfoot tr:last-child td,
.alsius-thankyou table.shop_table tfoot tr:last-child td bdi,
.alsius-thankyou table.shop_table tfoot tr:last-child td .amount,
.alsius-thankyou table.shop_table tfoot tr.order_total td,
.alsius-thankyou table.shop_table tfoot tr.order_total td bdi,
.alsius-thankyou table.shop_table tfoot tr.order_total td .amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--accent);
}

/* No row borders on the very last row */
.alsius-thankyou table.shop_table tfoot tr:last-child th,
.alsius-thankyou table.shop_table tfoot tr:last-child td {
  border-bottom: 0;
}

/* ----- Customer details (billing / shipping) ----- */
.alsius-thankyou .woocommerce-customer-details {
  margin-top: 0;
  /* gap on parent flex handles spacing */
}

.alsius-thankyou .woocommerce-customer-details .col2-set {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.alsius-thankyou .woocommerce-customer-details address {
  font-style: normal;
  color: #cfcfcf;
  font-size: 14px;
  line-height: 1.7;
  background: transparent;
  border: 0;
  padding: 0;
}

.alsius-thankyou .woocommerce-customer-details .woocommerce-customer-details--phone,
.alsius-thankyou .woocommerce-customer-details .woocommerce-customer-details--email {
  margin: 6px 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted-2);
  font-size: 13.5px;
}

/* ----- Failed-order card ----- */
.alsius-ty-failed {
  background: var(--card);
  border: 1px solid #6B2B2B;
  border-radius: 10px;
  padding: 32px;
  text-align: center;
  color: #fff;
}

.alsius-ty-failed h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 12px;
}

.alsius-ty-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.alsius-ty-btn {
  display: inline-block;
  padding: 12px 22px;
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  border-radius: 4px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
}

.alsius-ty-btn-ghost {
  background: transparent;
  color: var(--accent);
}

/* Strip stray WC default order-overview ul (the parent template's "ORDER NUMBER | DATE | ..." with em-dash dividers) — we render our own meta strip */
.alsius-thankyou .woocommerce-order-overview {
  display: none;
}

/* Order received heading paragraph from order-received.php — hide; we use our own hero */
.alsius-thankyou .woocommerce-thankyou-order-received {
  display: none;
}

/* Page-hero "Checkout" heading on order-received page is fine — left untouched */

/* ====== Tablet / Mobile ====== */
@media (max-width: 720px) {
  .alsius-ty-title {
    font-size: 28px;
  }

  .alsius-ty-meta-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .alsius-ty-meta-item:last-child {
    border-bottom: 0;
  }

  .alsius-thankyou .woocommerce-order-details,
  .alsius-thankyou .woocommerce-customer-details {
    padding: 22px 18px;
  }

  .alsius-thankyou .woocommerce-customer-details .col2-set {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .alsius-thankyou table.shop_table thead {
    display: none;
  }

  .alsius-thankyou table.shop_table tbody td {
    display: block;
    text-align: left;
    padding: 6px 0;
    border-bottom: 0;
  }

  .alsius-thankyou table.shop_table tbody tr {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .alsius-thankyou table.shop_table tbody td.product-total {
    color: var(--accent);
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
  }

  .alsius-thankyou table.shop_table tfoot tr {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
  }
}

/* ===========================================================
   EMPTY CART — match site dark theme + brand button.
   =========================================================== */

/* Product card heading — clamp to 1 line so all cards align */
.products .product h3 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Product card description — clamp to 2 lines on listing + homepage cards */
.products .product .desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: calc(22.53px * 2);
}

/* Outer wrapper — no styling, just a passthrough */
.woocommerce-cart .wc-empty-cart-message {
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0 0 24px;
}

/* Actual empty-cart card */
.woocommerce-cart .cart-empty,
.woocommerce-cart .cart-empty.woocommerce-info {
  background: transparent;
  border: 1px solid var(--line, #1f1f1f);
  border-radius: 10px;
  padding: 28px 32px;
  color: #F4F1EC;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  text-align: center;
  display: block;
}

/* Hide WC's default ::before icons (info / success / error) — they render
   as broken glyphs on the dark theme because the icon font doesn't load. */
.woocommerce-cart .cart-empty.woocommerce-info::before,
.woocommerce-cart .wc-empty-cart-message::before,
.woocommerce-cart .woocommerce-message::before,
.woocommerce .woocommerce-message::before,
.woocommerce-notices-wrapper .woocommerce-message::before,
.woocommerce-cart .woocommerce-error::before,
.woocommerce-cart .woocommerce-info::before {
  display: none !important;
  content: none !important;
}

.woocommerce-cart .woocommerce-message {
  background: transparent;
  border: 1px solid var(--accent, #6B8AA5);
  border-radius: 10px;
  padding: 18px 22px;
  color: #F4F1EC;
  font-family: 'Manrope', sans-serif;
}

.woocommerce-cart .return-to-shop .wc-backward,
.woocommerce-cart .return-to-shop a.button {
  display: inline-block;
  background: var(--accent, #6B8AA5);
  color: #fff;
  border: 1px solid var(--accent, #6B8AA5);
  padding: 14px 30px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  transition: background .2s, border-color .2s;
}

.woocommerce-cart .return-to-shop .wc-backward:hover,
.woocommerce-cart .return-to-shop a.button:hover {
  background: #5a7691;
  border-color: #5a7691;
  color: #fff;
}

/* ===========================================================
   CHECKOUT — move Order Summary to a compact right-side card.
   Layout-only. Does NOT change typography, inputs, or buttons.
   =========================================================== */

.woocommerce-checkout .wc-block-checkout {
  display: grid;
  gap: 32px;
  align-items: start;
}

.woocommerce-checkout .wp-block-woocommerce-checkout-fields-block {
  min-width: 0;
}

.woocommerce-checkout .wp-block-woocommerce-checkout-totals-block {
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  border-radius: 10px;
  padding: 22px;
  position: sticky;
  top: 110px;
  align-self: start;
}

@media (max-width: 1024px) {
  .woocommerce-checkout .wc-block-checkout {
    grid-template-columns: 1fr;
  }

  .woocommerce-checkout .wp-block-woocommerce-checkout-totals-block {
    position: static;
  }
}

/* ===========================================================
   CONTACT FORM — toast notification + sending state
   =========================================================== */

.alsius-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 30px);
  background: #141414;
  border: 1px solid var(--accent, #6B8AA5);
  border-radius: 10px;
  color: #F4F1EC;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  line-height: 1.55;
  padding: 16px 22px 16px 50px;
  max-width: 480px;
  min-width: 280px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s;
  z-index: 9999;
}

.alsius-toast::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent, #6B8AA5);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 12 10 16 18 8'/></svg>");
  background-size: 14px 14px;
  background-position: center;
  background-repeat: no-repeat;
}

.alsius-toast.error::before {
  background: #b14b4b;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round'><line x1='6' y1='6' x2='18' y2='18'/><line x1='18' y1='6' x2='6' y2='18'/></svg>");
  background-size: 12px 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.alsius-toast.error {
  border-color: #b14b4b;
}

.alsius-toast.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

/* Submit button disabled state while sending */
#alsius-contact-form .form-submit[disabled],
#alsius-contact-form.is-sending .form-submit {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

#alsius-contact-form.is-sending .form-submit .btn-label::after {
  content: " …";
}

@media (max-width: 600px) {
  .alsius-toast {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
    transform: translate(0, 30px);
  }

  .alsius-toast.visible {
    transform: translate(0, 0);
  }
}


.philosophy-section {
  border-bottom: 1px solid var(--line) !important;
}

.featured {
  padding-bottom: 50px !important;
  border-bottom: 1px solid var(--line) !important;

}

.testimonial {
  border-bottom: 1px solid var(--line) !important;
  border-top: 1px solid var(--line) !important;
  margin-top: 70px !important;

}

.why .feature h4 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 16px !important;
  line-height: 22.53px;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 10px;
  color: #F4F1EC;
}

.philosophy p {
  margin-bottom: 10px;
}

.philosophy p:last-of-type {
  margin-bottom: 0;
}