:root {
  --cc-ink: #172124;
  --cc-muted: #5b6868;
  --cc-green: #205b49;
  --cc-green-dark: #12372e;
  --cc-lime: #c8e75a;
  --cc-line: #dfe6e2;
  --cc-soft: #f3f6f4;
  --cc-white: #fff;
}

/* Homepage hero approved air-cooled modular chiller image. */
.home .hero .hero-bg {
  background-image:
    linear-gradient(90deg, rgba(12, 23, 26, .9) 0%, rgba(12, 23, 26, .72) 29%, rgba(12, 23, 26, .18) 64%, rgba(12, 23, 26, .04) 100%),
    url('../images/home-hero-air-cooled.webp') !important;
  background-position: center center !important;
  background-size: cover !important;
}

/* Keep the real product description visible even if the legacy tab script removes its link. */
body.single-product .woocommerce-tabs ul.tabs {
  display: none !important;
}

body.single-product .woocommerce-tabs,
body.single-product .woocommerce-Tabs-panel,
body.single-product .woocommerce-Tabs-panel--description,
body.single-product #tab-description,
body.single-product .wc-tab {
  display: block !important;
  visibility: visible !important;
  width: 100% !important;
  max-width: 1000px !important;
  height: auto !important;
  min-height: 1px !important;
  opacity: 1 !important;
}

body.single-product .woocommerce-Tabs-panel table {
  width: 100%;
  margin: 20px 0 30px;
  border-collapse: collapse;
  background: var(--cc-white);
  border: 1px solid var(--cc-line);
}

body.single-product .woocommerce-Tabs-panel th,
body.single-product .woocommerce-Tabs-panel td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--cc-line);
  text-align: left;
  vertical-align: top;
}

body.single-product .woocommerce-Tabs-panel th {
  width: 34%;
  background: var(--cc-soft);
  color: var(--cc-ink);
  font-weight: 700;
}

/* Technical inventory filters. */
.cc-inventory-filters {
  clear: both;
  margin: 28px 0 34px;
  padding: 24px;
  border: 1px solid var(--cc-line);
  border-radius: 18px;
  background: var(--cc-white);
  box-shadow: 0 12px 30px rgba(23, 33, 36, .05);
}

.cc-filter-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.cc-filter-kicker,
.cc-page-kicker,
.cc-page-heading > span {
  display: block;
  margin-bottom: 5px;
  color: #7b5a25;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .11em;
}

.cc-filter-heading h2 {
  margin: 0;
  color: var(--cc-ink);
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.2;
}

.cc-filter-reset {
  color: var(--cc-green);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.cc-filter-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.cc-filter-grid label {
  display: grid;
  gap: 7px;
  margin: 0;
  color: #34413f;
  font-size: 13px;
  font-weight: 700;
}

.cc-filter-grid select,
.cc-filter-grid input {
  width: 100%;
  min-height: 43px;
  margin: 0;
  padding: 8px 11px;
  border: 1px solid #cfd9d4;
  border-radius: 8px;
  background: #fff;
  color: var(--cc-ink);
  font-size: 14px;
}

.cc-filter-submit {
  min-height: 44px;
  margin-top: 18px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  background: var(--cc-green);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.cc-filter-submit:hover,
.cc-filter-submit:focus-visible {
  background: var(--cc-green-dark);
}

/* Richer WooCommerce cards. */
.woocommerce ul.products li.product {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--cc-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(23, 33, 36, .045);
}

.woocommerce ul.products li.product > a.woocommerce-LoopProduct-link {
  display: block;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .cc-card-specs,
.woocommerce ul.products li.product .cc-card-cta {
  margin-left: 16px !important;
  margin-right: 16px !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  min-height: 3.2em;
  margin-top: 12px !important;
  color: var(--cc-ink);
  font-size: 16px !important;
  line-height: 1.38;
}

.cc-card-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 12px;
  margin-top: 13px;
  margin-bottom: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--cc-line);
}

.cc-card-specs div {
  min-width: 0;
}

.cc-card-specs dt {
  color: #7a8582;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.cc-card-specs dd {
  overflow: hidden;
  margin: 2px 0 0;
  color: var(--cc-ink);
  font-size: 12px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cc-card-cta {
  display: block;
  margin-top: auto;
  margin-bottom: 16px;
  padding: 11px 13px;
  border-radius: 7px;
  background: var(--cc-green);
  color: #fff !important;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.cc-card-cta:hover {
  background: var(--cc-green-dark);
}

/* Floating WhatsApp contact. */
.cc-whatsapp-float {
  position: fixed;
  top: 50%;
  right: 22px;
  z-index: 99990;
  display: grid;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  min-height: 58px;
  padding: 0;
  transform: translateY(-50%);
  border: 1px solid rgba(199, 227, 75, .52);
  border-radius: 18px;
  background: #172523;
  color: #c7e34b !important;
  box-shadow: 0 14px 34px rgba(15, 34, 30, .3);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none !important;
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.cc-whatsapp-float:hover,
.cc-whatsapp-float:focus-visible {
  transform: translateY(-50%) scale(1.06);
  border-color: #c7e34b;
  background: #22332f;
  box-shadow: 0 18px 42px rgba(15, 34, 30, .4);
  outline: none;
}

.cc-whatsapp-float svg {
  width: 29px;
  height: 29px;
}

.cc-whatsapp-float > i {
  color: #c7e34b;
  font-size: 29px;
  line-height: 1;
}

.cc-whatsapp-float span {
  position: absolute;
  right: 70px;
  width: max-content;
  padding: 10px 13px;
  transform: translateX(8px);
  border-radius: 9px;
  border: 1px solid rgba(199, 227, 75, .22);
  background: #172523;
  color: #f4f7f5;
  box-shadow: 0 10px 28px rgba(8, 28, 23, .22);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

.cc-whatsapp-float span::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5px;
  width: 10px;
  height: 10px;
  transform: translateY(-50%) rotate(45deg);
  background: #172523;
}

.cc-whatsapp-float:hover span,
.cc-whatsapp-float:focus-visible span {
  transform: translateX(0);
  opacity: 1;
}

/* Homepage direct-contact actions. */
.contact.contact-clean {
  margin-top: 32px !important;
}

.cc-contact-heading {
  display: block;
  margin-bottom: 12px;
  color: #5f6d69;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-actions[data-cc-ui-ready="1"] {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 470px;
  margin-top: 0;
}

.contact-actions[data-cc-ui-ready="1"] .cc-contact-action {
  position: relative;
  display: grid !important;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center !important;
  gap: 12px !important;
  min-height: 72px !important;
  padding: 11px 14px !important;
  transform: translateY(0);
  border: 1px solid #ced8d3 !important;
  border-radius: 14px;
  background: rgba(255, 255, 255, .88) !important;
  color: #172523 !important;
  box-shadow: 0 7px 22px rgba(23, 48, 42, .05);
  text-align: left;
  text-decoration: none !important;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.contact-actions[data-cc-ui-ready="1"] .cc-contact-action:hover,
.contact-actions[data-cc-ui-ready="1"] .cc-contact-action:focus-visible {
  transform: translateY(-3px);
  border-color: #b4cf3c !important;
  background: #fff !important;
  box-shadow: 0 14px 30px rgba(47, 67, 22, .12);
  outline: none;
}

.cc-contact-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 11px;
  background: #172523;
  color: #c7e34b;
}

.cc-contact-icon svg {
  width: 22px;
  height: 22px;
}

.cc-contact-icon > i {
  color: #c7e34b;
  font-size: 21px;
  line-height: 1;
}

.cc-contact-icon--email > i {
  font-size: 18px;
}

.cc-contact-icon--email {
  background: #172523;
  color: #c7e34b;
}

.cc-contact-icon--email svg {
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cc-contact-icon--whatsapp {
  background: #172523;
  color: #c7e34b;
}

.cc-contact-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.cc-contact-copy small {
  color: #71807b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.cc-contact-copy strong {
  overflow: hidden;
  color: #172523;
  font-size: 13px;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cc-contact-arrow {
  color: #7e8d88;
  font-size: 17px;
  transition: transform .18s ease, color .18s ease;
}

.cc-contact-action:hover .cc-contact-arrow,
.cc-contact-action:focus-visible .cc-contact-arrow {
  transform: translate(2px, -2px);
  color: #8eaa16;
}

.cc-contact-legacy-details {
  display: none !important;
}

/* Inventory brand discovery loop. */
.cc-brand-showcase {
  width: min(calc(100% - 48px), 1240px);
  margin: 24px auto 48px;
  padding: 8px 0;
  overflow: hidden;
}

.cc-brand-marquee {
  position: relative;
  overflow: hidden;
}

.cc-brand-marquee__track {
  display: flex;
  width: max-content;
  animation: cc-brand-loop 48s linear infinite;
}

/* Keep the featured-inventory heading and supporting sentence visually balanced. */
.cc-feature-head h2 {
  max-width: 900px;
  text-wrap: balance;
}

.cc-feature-head h2 + p {
  max-width: 1040px;
  text-wrap: pretty;
}

.cc-brand-marquee__group {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: clamp(44px, 5vw, 78px);
  padding: 10px clamp(44px, 5vw, 78px) 10px 0;
}

.cc-brand-marquee:hover .cc-brand-marquee__track,
.cc-brand-marquee:focus-within .cc-brand-marquee__track {
  animation-play-state: paused;
}

.cc-brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 86px;
  padding: 0;
  text-decoration: none !important;
  transition: opacity .18s ease, transform .18s ease;
}

.cc-brand-card:hover,
.cc-brand-card:focus-visible {
  transform: scale(1.06);
  opacity: .82;
  outline: none;
}

.cc-brand-card img {
  width: 150px;
  height: 72px;
  object-fit: contain;
  mix-blend-mode: normal;
}

@keyframes cc-brand-loop {
  to { transform: translateX(-50%); }
}

/* Footer trust/navigation extension. */
.cc-b2b-footer-links {
  width: 100%;
  background: #101a1a;
  color: #d9e0dd;
}

.cc-b2b-original-footer {
  display: none !important;
}

.cc-b2b-footer-links__inner {
  display: grid;
  grid-template-columns: minmax(240px, 1.15fr) minmax(360px, 1.8fr) minmax(250px, 1fr);
  gap: clamp(34px, 5vw, 76px);
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 32px 38px;
}

.cc-b2b-footer-company,
.cc-b2b-footer-column,
.cc-b2b-footer-contact {
  display: grid;
  align-content: start;
  gap: 14px;
}

.cc-b2b-footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.cc-b2b-footer-mark {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  background: #2b745d;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.cc-b2b-footer-company strong {
  display: block;
  color: #fff;
  font-size: 21px;
  letter-spacing: .04em;
}

.cc-b2b-footer-company span {
  display: block;
  color: #aebbb6;
  font-size: 13px;
  line-height: 1.5;
}

.cc-b2b-footer-company .cc-b2b-footer-mark {
  color: #fff;
  line-height: 1;
}

.cc-b2b-footer-heading {
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.cc-b2b-footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 24px;
}

.cc-b2b-footer-nav a,
.cc-b2b-footer-contact a {
  color: #d9e0dd !important;
  font-size: 13px;
  text-decoration: none !important;
}

.cc-b2b-footer-nav a:hover,
.cc-b2b-footer-contact a:hover {
  color: var(--cc-lime) !important;
}

.cc-b2b-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 32px 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #899792;
  font-size: 12px;
}

/* Dynamically added header items. */
.cc-b2b-header-about {
  display: block;
}

.cc-b2b-header-about .elementor-button {
  background: #fff !important;
  color: #1d2726 !important;
  fill: #1d2726 !important;
}

.cc-b2b-header-sell {
  display: block;
}

.cc-b2b-header-sell .elementor-button {
  border: 1px solid rgba(255, 255, 255, .34) !important;
  background: transparent !important;
  color: #fff !important;
  fill: #fff !important;
}

.cc-b2b-header-sell .elementor-button:hover,
.cc-b2b-header-sell .elementor-button:focus-visible {
  border-color: var(--cc-lime) !important;
  color: var(--cc-lime) !important;
}

/* Standalone B2B pages. */
.cc-b2b-page {
  width: min(100%, 1440px);
  margin: 0 auto;
  color: var(--cc-ink);
}

.cc-page-hero {
  padding: clamp(68px, 9vw, 128px) clamp(24px, 6vw, 88px);
  background: linear-gradient(135deg, #eff4f1 0%, #fff 58%, #edf2e2 100%);
}

.cc-page-hero h1 {
  max-width: 980px;
  margin: 10px 0 20px;
  color: var(--cc-ink);
  font-size: clamp(42px, 6vw, 82px);
  line-height: .99;
  letter-spacing: -.045em;
}

.cc-page-hero > p {
  max-width: 800px;
  margin: 0;
  color: var(--cc-muted);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.65;
}

.cc-page-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}

.cc-page-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  background: var(--cc-green);
  color: #fff !important;
  font-weight: 800;
  text-decoration: none !important;
}

.cc-page-button:hover {
  background: var(--cc-green-dark);
}

.cc-page-link,
.cc-text-link {
  color: var(--cc-green) !important;
  font-weight: 800;
  text-decoration: none !important;
}

.cc-page-section {
  padding: clamp(56px, 7vw, 100px) clamp(24px, 6vw, 88px);
}

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

.cc-page-section--dark {
  background: var(--cc-green-dark);
  color: #eaf0ed;
}

.cc-page-section--dark h2,
.cc-page-section--dark h3 {
  color: #fff;
}

.cc-page-heading {
  max-width: 820px;
  margin-bottom: 32px;
}

.cc-page-heading h2,
.cc-company-notice h2,
.cc-page-cta h2 {
  margin: 0 0 12px;
  color: var(--cc-ink);
  font-size: clamp(31px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.cc-page-heading p,
.cc-company-notice p,
.cc-page-cta p {
  color: var(--cc-muted);
  font-size: 17px;
  line-height: 1.7;
}

.cc-page-grid {
  display: grid;
  gap: 18px;
}

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

.cc-page-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cc-page-grid article {
  padding: 26px;
  border: 1px solid var(--cc-line);
  border-radius: 14px;
  background: #fff;
}

.cc-page-grid h3 {
  margin: 0 0 10px;
  color: var(--cc-ink);
  font-size: 20px;
}

.cc-page-grid p {
  margin: 0;
  color: var(--cc-muted);
  font-size: 15px;
  line-height: 1.65;
}

.cc-process-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cc-process-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px;
}

.cc-process-list strong {
  color: var(--cc-lime);
  font-size: 22px;
}

.cc-process-list h3 {
  margin: 0 0 8px;
}

.cc-process-list p {
  margin: 0;
  color: #c5d0cb;
  line-height: 1.6;
}

.cc-company-notice {
  padding: 32px;
  border-left: 5px solid var(--cc-lime);
  background: var(--cc-soft);
}

.cc-record-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.cc-record-card {
  overflow: hidden;
  border: 1px solid var(--cc-line);
  border-radius: 15px;
  background: #fff;
}

.cc-record-card__image {
  display: block;
  aspect-ratio: 4 / 3;
  background: #f4f6f5;
}

.cc-record-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cc-record-card__body {
  padding: 22px;
}

.cc-record-card__body > span {
  color: #7a8582;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cc-record-card h3 {
  margin: 8px 0 10px;
  font-size: 20px;
  line-height: 1.3;
}

.cc-record-card h3 a {
  color: var(--cc-ink) !important;
  text-decoration: none !important;
}

.cc-record-card p {
  color: var(--cc-muted);
  font-size: 14px;
  line-height: 1.6;
}

.cc-page-cta {
  margin: 0 clamp(24px, 6vw, 88px) clamp(60px, 8vw, 110px);
  padding: clamp(34px, 5vw, 64px);
  border-radius: 20px;
  background: linear-gradient(135deg, #eaf2ed, #f1f5d9);
  text-align: center;
}

.cc-page-cta p {
  max-width: 760px;
  margin: 0 auto 24px;
}

.cc-faq-list {
  display: grid;
  gap: 12px;
  max-width: 1050px;
  margin: 0 auto;
}

.cc-faq-list details {
  border: 1px solid var(--cc-line);
  border-radius: 12px;
  background: #fff;
}

.cc-faq-list summary {
  padding: 20px 52px 20px 22px;
  color: var(--cc-ink);
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
}

.cc-faq-list details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--cc-muted);
  line-height: 1.7;
}

.cc-terms-content {
  max-width: 980px;
  margin: 0 auto;
}

.cc-terms-content h2 {
  margin-top: 36px;
  color: var(--cc-ink);
  font-size: 26px;
}

.cc-terms-content p {
  color: var(--cc-muted);
  line-height: 1.75;
}

.cc-legal-review-note {
  margin-top: 34px;
  padding: 20px;
  border: 1px solid #e3d4a9;
  border-radius: 10px;
  background: #fff9e8;
}

/* Sell Your Chiller supplier-acquisition page. */
.cc-sell-page-body .section-head {
  display: none;
}

html[lang^='ar'] .cc-sell-page {
  direction: rtl;
  text-align: right;
}

html[lang^='ar'] .cc-sell-page input,
html[lang^='ar'] .cc-sell-page select,
html[lang^='ar'] .cc-sell-page textarea {
  text-align: right;
}

html[lang^='ar'] .cc-sell-hero aside ol {
  padding-right: 20px;
  padding-left: 0;
}

html[lang^='ar'] .cc-sell-submit-row p {
  text-align: left;
}

.cc-sell-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, .75fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
}

.cc-sell-hero > div > p {
  max-width: 820px;
  margin: 0;
  color: var(--cc-muted);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.65;
}

.cc-sell-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 30px;
}

.cc-sell-hero-points span {
  position: relative;
  padding-left: 18px;
  color: #36504a;
  font-size: 13px;
  font-weight: 800;
}

.cc-sell-hero-points span::before {
  position: absolute;
  top: .42em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #93b319;
  content: '';
}

.cc-sell-hero aside {
  padding: 30px;
  border-radius: 18px;
  background: var(--cc-green-dark);
  color: #edf4f1;
  box-shadow: 0 20px 50px rgba(18, 55, 46, .16);
}

.cc-sell-hero aside > strong {
  display: block;
  margin-bottom: 18px;
  color: var(--cc-lime);
  font-size: 18px;
}

.cc-sell-hero aside ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 20px;
}

.cc-sell-hero aside li {
  padding-left: 5px;
  color: #d8e2de;
  font-size: 14px;
  line-height: 1.55;
}

.cc-sell-intro {
  background: var(--cc-soft);
}

.cc-sell-form-wrap {
  max-width: 1180px;
}

.cc-sell-notice {
  margin-bottom: 22px;
  padding: 18px 20px;
  border-radius: 10px;
  font-weight: 700;
  line-height: 1.55;
}

.cc-sell-notice--success {
  border: 1px solid #b8d59a;
  background: #f0f8e8;
  color: #285329;
}

.cc-sell-notice--error {
  border: 1px solid #e8b7ae;
  background: #fff2ef;
  color: #8b3024;
}

.cc-sell-form {
  overflow: hidden;
  border: 1px solid #d9e2de;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(23, 33, 36, .07);
}

.cc-sell-form-section {
  padding: clamp(28px, 4vw, 48px);
  border-bottom: 1px solid #e6ece9;
}

.cc-sell-form-section__head {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 26px;
}

.cc-sell-form-section__head > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  background: var(--cc-green-dark);
  color: var(--cc-lime);
  font-size: 12px;
  font-weight: 900;
}

.cc-sell-form-section__head h2 {
  margin: 0 0 4px;
  color: var(--cc-ink);
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.15;
}

.cc-sell-form-section__head p {
  margin: 0;
  color: var(--cc-muted);
  font-size: 14px;
}

.cc-sell-grid {
  display: grid;
  gap: 20px;
}

.cc-sell-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cc-sell-grid--2,
.cc-sell-upload-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cc-sell-grid label {
  display: grid;
  align-content: start;
  gap: 8px;
  margin: 0;
}

.cc-sell-grid label > span {
  color: #33413e;
  font-size: 13px;
  font-weight: 800;
}

.cc-sell-grid em,
.cc-sell-upload em {
  color: #b24f3a;
  font-style: normal;
}

.cc-sell-grid input,
.cc-sell-grid select,
.cc-sell-grid textarea {
  width: 100%;
  min-height: 50px;
  margin: 0;
  padding: 11px 13px;
  border: 1px solid #cfd9d4;
  border-radius: 9px;
  background: #fff;
  color: var(--cc-ink);
  font: inherit;
  font-size: 15px;
}

.cc-sell-grid textarea {
  min-height: 112px;
  resize: vertical;
}

.cc-sell-grid input:focus,
.cc-sell-grid select:focus,
.cc-sell-grid textarea:focus,
.cc-sell-upload:focus-within {
  border-color: #6d8a80;
  outline: 3px solid rgba(32, 91, 73, .12);
}

.cc-sell-upload-grid {
  display: grid;
  gap: 18px;
  margin-bottom: 10px;
}

.cc-sell-upload {
  position: relative;
  display: grid;
  min-height: 190px;
  place-items: center;
  align-content: center;
  gap: 7px;
  padding: 24px;
  border: 1px dashed #9fb2aa;
  border-radius: 14px;
  background: #f8faf9;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  transition: border-color .18s ease, background-color .18s ease, transform .18s ease;
}

.cc-sell-upload:hover,
.cc-sell-upload--selected {
  transform: translateY(-2px);
  border-color: #658678;
  background: #f0f6f2;
}

.cc-sell-upload__icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 13px;
  background: var(--cc-green-dark);
  color: var(--cc-lime);
  font-size: 24px;
  font-weight: 300;
}

.cc-sell-upload strong {
  color: var(--cc-ink);
  font-size: 16px;
}

.cc-sell-optional {
  margin-left: 5px;
  color: #74817d;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .02em;
}

.cc-sell-upload small {
  max-width: 370px;
  color: var(--cc-muted);
  font-size: 12px;
  line-height: 1.5;
}

.cc-sell-upload input[type='file'] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.cc-sell-upload-note {
  margin: 0 0 28px;
  color: #7a8783;
  font-size: 12px;
}

.cc-sell-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  margin: 24px 0 0;
  color: #53615e;
  font-size: 13px;
  line-height: 1.55;
}

.cc-sell-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--cc-green);
}

.cc-sell-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(28px, 4vw, 48px);
  background: #f7f9f8;
}

.cc-sell-submit-row button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 24px;
  border: 0;
  border-radius: 9px;
  background: var(--cc-green-dark);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.cc-sell-submit-row button:hover,
.cc-sell-submit-row button:focus-visible {
  background: var(--cc-green);
}

.cc-sell-submit-row p {
  max-width: 520px;
  margin: 0;
  color: #788480;
  font-size: 11px;
  line-height: 1.55;
  text-align: right;
}

.cc-sell-honeypot {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.cc-page-section--dark .cc-page-grid article {
  border-color: rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
}

.cc-page-section--dark .cc-page-grid p {
  color: #c8d3ce;
}

@media (max-width: 1100px) {
  .cc-filter-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cc-b2b-footer-links__inner {
    grid-template-columns: minmax(220px, 1fr) minmax(360px, 1.6fr);
  }

  .cc-b2b-footer-contact {
    grid-column: 1 / -1;
    grid-template-columns: auto 1fr 1fr;
    align-items: center;
  }

  .cc-page-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cc-sell-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 800px) {
  .cc-filter-grid,
  .cc-page-grid--3,
  .cc-page-grid--4,
  .cc-record-grid,
  .cc-process-list,
  .cc-b2b-footer-links__inner {
    grid-template-columns: 1fr;
  }

  .cc-sell-hero,
  .cc-sell-grid--2,
  .cc-sell-grid--4,
  .cc-sell-upload-grid {
    grid-template-columns: 1fr;
  }

  .cc-filter-heading {
    align-items: flex-start;
  }

  .cc-b2b-footer-links__inner {
    gap: 22px;
  }

  .cc-b2b-footer-contact {
    grid-column: auto;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .cc-b2b-footer-bottom {
    display: grid;
    gap: 6px;
  }

  .cc-whatsapp-float {
    top: auto;
    right: 14px;
    bottom: 82px;
    transform: none;
    width: 54px;
    height: 54px;
    min-height: 54px;
    padding: 0;
    justify-content: center;
    border-radius: 17px;
  }

  .cc-whatsapp-float:hover,
  .cc-whatsapp-float:focus-visible {
    transform: scale(1.04);
  }

  .cc-whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .contact-actions[data-cc-ui-ready="1"] {
    grid-template-columns: 1fr;
  }

  .cc-brand-showcase {
    width: min(calc(100% - 28px), 1180px);
    margin-bottom: 42px;
  }

  .cc-brand-card {
    width: 148px;
    height: 78px;
  }

  .cc-brand-card img {
    width: 140px;
    height: 66px;
  }

  .cc-b2b-header-about {
    display: none !important;
  }

  .cc-b2b-header-sell {
    display: block !important;
    width: calc(100% - 28px) !important;
    margin: 0 14px 12px !important;
  }

  .cc-b2b-header-sell .elementor-button {
    display: flex !important;
    width: 100%;
    justify-content: center;
    padding: 12px 14px !important;
    font-size: 13px !important;
  }

  .cc-sell-submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .cc-sell-submit-row p {
    text-align: left;
  }

  .cc-sell-intro.cc-page-section {
    padding: 44px 10px;
  }

  .cc-sell-form-section {
    padding: 24px 14px;
  }

  .cc-sell-form-section__head {
    grid-template-columns: 36px 1fr;
    gap: 10px;
  }

  .cc-sell-form-section__head > span {
    width: 34px;
    height: 34px;
  }

  .cc-sell-upload {
    min-height: 170px;
    padding: 18px 14px;
  }

  body.single-product .woocommerce-Tabs-panel th,
  body.single-product .woocommerce-Tabs-panel td {
    display: block;
    width: 100%;
  }

  body.single-product .woocommerce-Tabs-panel th {
    padding-bottom: 6px;
    border-bottom: 0;
  }

  body.single-product .woocommerce-Tabs-panel td {
    padding-top: 6px;
  }
}

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

  .cc-filter-heading {
    display: grid;
  }

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

@media (prefers-reduced-motion: reduce) {
  .cc-whatsapp-float,
  .cc-whatsapp-float span,
  .contact-actions[data-cc-ui-ready="1"] .cc-contact-action,
  .cc-contact-arrow {
    transition: none !important;
  }

  .cc-brand-marquee__track {
    animation: none !important;
  }
}
