@media (min-width: 1400px) {
  .container {
    max-width: 70%;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .container {
    max-width: 75%;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .container {
    max-width: 85%;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .container {
    max-width: 92%;
  }
}
@media (max-width: 767.98px) {
  .container {
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.public-page {
  min-height: 100vh;
}

.header-banner {
  background: #fff;
}

.header-banner__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
}
@media (max-width: 576px) {
  .header-banner__inner {
    padding: 0.75rem 0;
  }
}

.header-banner__drawer {
  position: absolute;
  left: 0;
}

.header-banner__logo {
  margin: 0;
  line-height: 0;
  text-align: center;
}
.header-banner__logo .header__heading-logo {
  max-width: 300px;
  height: auto;
}
@media (max-width: 576px) {
  .header-banner__logo .header__heading-logo {
    max-width: 180px;
  }
}

.header-banner__icons {
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 576px) {
  .header-banner__icons {
    gap: 0.25rem;
  }
}

.header-nav-sticky {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.08);
}
.header-nav-sticky .list-menu--inline {
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 0.8rem 0;
  margin: 0;
  list-style: none;
}

.header__menu-item {
  padding: 1.2rem;
  text-decoration: none;
  color: rgba(var(--color-foreground), 0.75);
  font-weight: 500;
}

.header__menu-item--active span {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.menu-drawer__menu-item.header__menu-item--active {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.navbar-cryo {
  background: #0d1b2a !important;
  padding: 1rem 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}
.navbar-cryo .navbar-brand {
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: #fff !important;
}
.navbar-cryo .navbar-brand span {
  color: #0055b8;
}
.navbar-cryo .nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
  padding: 0.5rem 1rem !important;
}
.navbar-cryo .nav-link:hover, .navbar-cryo .nav-link.active {
  color: #0055b8 !important;
}
.navbar-cryo .nav-social {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.navbar-cryo .nav-social a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  transition: color 0.2s;
}
.navbar-cryo .nav-social a:hover {
  color: #0055b8;
}

.hero {
  background: linear-gradient(135deg, #0d1b2a 0%, #1b2838 50%, rgb(0, 61.4402173913, 133) 100%);
  color: #fff;
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero {
    padding: 3rem 0 2.5rem;
  }
}
@media (max-width: 576px) {
  .hero {
    padding: 2.5rem 0 2rem;
  }
}
.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 85, 184, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero__title {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 2.4rem;
  }
}
@media (max-width: 576px) {
  .hero__title {
    font-size: 1.8rem;
  }
}
.hero__subtitle {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  line-height: 1.7;
}
@media (max-width: 576px) {
  .hero__subtitle {
    font-size: 1.3rem;
  }
}
.hero__cta {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .hero__cta {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    margin-top: 1.5rem;
  }
}

.cta-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: -3rem;
  position: relative;
  z-index: 2;
}

.cta-card {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.cta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.cta-card__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #0055b8;
}
.cta-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #0d1b2a;
}
.cta-card__text {
  color: #6c757d;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.section--gray {
  background: #f8f9fa;
}
.section--dark {
  background: #0d1b2a;
  color: #fff;
}
.section--ice {
  background: #caf0f8;
}
.section__title {
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #0d1b2a;
  padding-left: 1.2rem;
  border-left: 4px solid #0055b8;
}
.section__title span {
  color: #0055b8;
}
.section--dark .section__title {
  color: #fff;
}
@media (max-width: 768px) {
  .section__title {
    font-size: 2.2rem;
  }
}
@media (max-width: 576px) {
  .section__title {
    font-size: 1.8rem;
    padding-left: 1rem;
  }
}
.section__subtitle {
  font-size: 1.6rem;
  color: #6c757d;
  margin-bottom: 3rem;
  max-width: 700px;
}
.section--dark .section__subtitle {
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 576px) {
  .section__subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
  }
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.catalog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.catalog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}
.catalog-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: #f3f4f6;
}
.catalog-card__body {
  padding: 1.25rem;
}
.catalog-card__title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #212529;
}
.catalog-card__price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0055b8;
}
.catalog-card__link {
  text-decoration: none;
  color: inherit;
}
.catalog-card__link:hover {
  color: inherit;
}

.tarifs-table {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.tarifs-table table {
  margin: 0;
}
.tarifs-table thead {
  background: #0d1b2a;
  color: #fff;
}
.tarifs-table thead th {
  font-weight: 600;
  padding: 1rem 1.25rem;
  border: none;
}
.tarifs-table tbody td {
  padding: 0.85rem 1.25rem;
  vertical-align: middle;
  border-color: #f0f0f0;
}
.tarifs-table tbody tr:hover {
  background: #caf0f8;
}

.service-page .service-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  max-width: 800px;
}
.service-page .service-advantages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.service-page .advantage-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #0055b8;
}
.service-page .advantage-card__icon {
  font-size: 2rem;
  color: #0055b8;
  margin-bottom: 0.75rem;
}
.service-page .advantage-card__title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #0d1b2a;
}
.service-page .advantage-card__text {
  color: #6c757d;
  font-size: 0.95rem;
}
.service-page .domains-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.service-page .domain-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s;
}
.service-page .domain-card:hover {
  transform: translateY(-2px);
}
.service-page .domain-card__icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}
.service-page .domain-card__title {
  font-weight: 600;
  font-size: 0.95rem;
  color: #0d1b2a;
}
.service-page .prestation-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.service-page .prestation-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #0055b8;
}
.service-page .prestation-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #0d1b2a;
}
.service-page .prestation-card__text {
  color: #555;
  line-height: 1.7;
}

.glace-section-title {
  font-size: 3.6rem;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 0.75rem;
  padding-left: 1.2rem;
  border-left: 4px solid #0055b8;
}
.glace-section-title span {
  color: #0055b8;
}
@media (max-width: 768px) {
  .glace-section-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 576px) {
  .glace-section-title {
    font-size: 1.8rem;
    padding-left: 1rem;
  }
}

.glace-section-subtitle {
  font-size: 1.6rem;
  color: #666;
  margin-bottom: 2.5rem;
}
@media (max-width: 576px) {
  .glace-section-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }
}

.btn-glace-cta {
  display: inline-block;
  background: #0055b8;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 1rem 3.2rem;
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 4px 16px rgba(0, 85, 184, 0.3);
}
@media (max-width: 576px) {
  .btn-glace-cta {
    padding: 0.85rem 2rem;
    font-size: 1.3rem;
  }
}
.btn-glace-cta:hover {
  background: rgb(0, 66.152173913, 143.2);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0, 85, 184, 0.4);
}
.btn-glace-cta:active {
  transform: translateY(0);
}
.btn-glace-cta--outline {
  background: transparent;
  color: #0055b8;
  border: 2px solid #0055b8;
  box-shadow: none;
}
.btn-glace-cta--outline:hover {
  background: #0055b8;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 85, 184, 0.3);
}

.glace-intro {
  padding: 5rem 0 4rem;
  background: #fff;
}
@media (max-width: 576px) {
  .glace-intro {
    padding: 2.5rem 0 2rem;
  }
}
.glace-intro__title {
  font-size: 3.6rem;
  font-weight: 800;
  color: #0d1b2a;
  margin-bottom: 2rem;
  padding-left: 1.2rem;
  border-left: 5px solid #0055b8;
  display: inline-block;
  line-height: 1.3;
}
.glace-intro__title span {
  color: #0055b8;
}
@media (max-width: 768px) {
  .glace-intro__title {
    font-size: 2.4rem;
  }
}
.glace-intro__text {
  font-size: 1.6rem;
  line-height: 1.85;
  color: #444;
  margin-bottom: 1.25rem;
}
.glace-intro__text strong {
  color: #0d1b2a;
}
@media (max-width: 576px) {
  .glace-intro__text {
    font-size: 1.3rem;
  }
}
.glace-intro__cta {
  text-align: center;
  margin-top: 2.5rem;
}

.glace-gallery {
  padding: 5rem 0;
  background: #F1F1F1;
}
.glace-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .glace-gallery__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.glace-gallery__grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
  background: #d5d5d5;
}
@media (max-width: 992px) {
  .glace-gallery__grid img {
    height: 240px;
  }
}
@media (max-width: 576px) {
  .glace-gallery__grid img {
    height: 220px;
  }
}

.glace-efficacite {
  padding: 4rem 0;
  background: #fff;
}
.glace-efficacite__text {
  font-size: 1.6rem;
  line-height: 1.85;
  color: #444;
}

.glace-process {
  padding: 4.5rem 0;
  background: #F1F1F1;
}
.glace-process__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 768px) {
  .glace-process__grid {
    grid-template-columns: 1fr;
  }
}
.glace-process__grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.glace-utilisations {
  padding: 6rem 0;
  background: #fff;
}
@media (max-width: 576px) {
  .glace-utilisations {
    padding: 3rem 0;
  }
}

.flip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .flip-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
  }
}
@media (max-width: 576px) {
  .flip-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
  }
}

.flip-card {
  perspective: 800px;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.flip-card:hover, .flip-card:focus {
  z-index: 10;
}
.flip-card__inner {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}
.flip-card:hover .flip-card__inner, .flip-card:focus .flip-card__inner {
  transform: rotateY(180deg);
}
.flip-card__front {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}
.flip-card__label {
  width: 100%;
  padding: 1.25rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: #fff;
}
.flip-card__label h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: #fff;
}
@media (max-width: 576px) {
  .flip-card__label h3 {
    font-size: 1.8rem;
  }
}
.flip-card__label p {
  font-size: 1.2rem;
  margin: 0;
  opacity: 0.85;
}
@media (max-width: 576px) {
  .flip-card__label p {
    font-size: 1rem;
  }
}
.flip-card__back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  background: #0055b8;
  color: #fff;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.75rem;
  box-sizing: border-box;
}
.flip-card__back p {
  font-size: 1.8rem;
  line-height: 1.65;
  margin: 0;
  text-align: center;
}
@media (max-width: 576px) {
  .flip-card__back p {
    font-size: 1.3rem;
  }
}
.flip-card__back a {
  color: #fff;
  text-decoration: underline;
}

.glace-donnees-techniques {
  padding: 4rem 0;
  background: #F1F1F1;
}
.glace-donnees-techniques p {
  font-size: 1.6rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 0.5rem;
}

.glace-precautions {
  padding: 6rem 0;
  background: #fff;
}
@media (max-width: 576px) {
  .glace-precautions {
    padding: 3rem 0;
  }
}
.glace-precautions p {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media (max-width: 576px) {
  .glace-precautions p {
    font-size: 1.3rem;
  }
}
.glace-precautions__list {
  padding-left: 1.25rem;
  margin-bottom: 1.25rem;
}
.glace-precautions__list li {
  margin-bottom: 0.6rem;
  line-height: 1.75;
  color: #444;
  font-size: 1.6rem;
}
@media (max-width: 576px) {
  .glace-precautions__list li {
    font-size: 1.3rem;
  }
}
.glace-precautions a {
  color: #0055b8;
}

.glace-tarifs {
  padding: 5rem 0;
  background: #fff;
}
.glace-tarifs p {
  font-size: 1.6rem;
}

.tarifs-table-vitrine {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  max-width: 900px;
  margin: 2rem auto;
  overflow-x: auto;
}
.tarifs-table-vitrine table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
}
.tarifs-table-vitrine thead th {
  background: #f5f5f5;
  color: #333;
  font-weight: 700;
  font-size: 1.6rem;
  padding: 1.4rem 2rem;
  text-align: center;
  border: none;
  white-space: nowrap;
}
@media (max-width: 576px) {
  .tarifs-table-vitrine thead th {
    font-size: 1.2rem;
    padding: 1rem 1rem;
  }
}
.tarifs-table-vitrine tbody td {
  padding: 1.3rem 2rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #444;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid #f0f0f0;
  white-space: nowrap;
}
@media (max-width: 576px) {
  .tarifs-table-vitrine tbody td {
    font-size: 1.2rem;
    padding: 0.9rem 1rem;
  }
}
.tarifs-table-vitrine tbody tr:last-child td {
  border-bottom: none;
}
.tarifs-table-vitrine tbody tr:hover {
  background: #fafafa;
}

.glace-faq {
  padding: 5rem 0;
  background: #fff;
}

.faq-section .accordion-item {
  border: 1px solid #e8e8e8;
  border-radius: 12px !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-section .accordion-item:last-child {
  margin-bottom: 0;
}
.faq-section .accordion-button {
  font-weight: 600;
  font-size: 1.6rem;
  color: #0d1b2a;
  background: #fff;
  box-shadow: none;
  padding: 1.15rem 1.5rem;
}
@media (max-width: 576px) {
  .faq-section .accordion-button {
    font-size: 1.3rem;
    padding: 1rem 1rem;
  }
}
.faq-section .accordion-button:not(.collapsed) {
  background: #caf0f8;
  color: #0055b8;
}
.faq-section .accordion-button::after {
  color: #0055b8;
}
.faq-section .accordion-body {
  color: #555;
  line-height: 1.7;
  padding: 1.25rem 1.5rem;
}

.contact-page .contact-info-card {
  background: #0d1b2a;
  color: #fff;
  border-radius: 12px;
  padding: 2.5rem;
  height: 100%;
}
@media (max-width: 576px) {
  .contact-page .contact-info-card {
    padding: 1.5rem;
  }
}
.contact-page .contact-info-card h3 {
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.contact-page .contact-info-card .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-page .contact-info-card .contact-item .bi {
  font-size: 1.3rem;
  color: #0055b8;
  margin-top: 2px;
}
.contact-page .contact-info-card .contact-item a {
  color: #90e0ef;
  text-decoration: none;
}
.contact-page .contact-info-card .contact-item a:hover {
  color: #0055b8;
}
.contact-page .contact-form-card {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  height: 100%;
}
@media (max-width: 576px) {
  .contact-page .contact-form-card {
    padding: 1.5rem;
  }
}
.contact-page .contact-form-card h3 {
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #0d1b2a;
}
.contact-page .contact-form-card .form-control,
.contact-page .contact-form-card .form-select {
  border-radius: 8px;
  border: 1px solid #dee2e6;
  padding: 0.75rem 1rem;
}
.contact-page .contact-form-card .form-control:focus,
.contact-page .contact-form-card .form-select:focus {
  border-color: #0055b8;
  box-shadow: 0 0 0 0.2rem rgba(0, 85, 184, 0.15);
}
.contact-page .contact-form-card textarea.form-control {
  min-height: 120px;
}
.contact-page .map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  margin-top: 3rem;
}
.contact-page .map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

.blog-page .blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}
@media (max-width: 768px) {
  .blog-page .blog-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .blog-page .blog-grid {
    gap: 1.25rem;
  }
}
.blog-page .blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.blog-page .blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}
.blog-page .blog-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, #caf0f8 0%, rgb(210.8622047244, 242.6732283465, 248.6377952756) 100%);
}
.blog-page .blog-card__body {
  padding: 1.5rem;
}
.blog-page .blog-card__date {
  font-size: 0.85rem;
  color: #6c757d;
  margin-bottom: 0.5rem;
}
.blog-page .blog-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #0d1b2a;
  line-height: 1.4;
}
.blog-page .blog-card__excerpt {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-page .blog-card__link {
  text-decoration: none;
  color: inherit;
}
.blog-page .blog-card__link:hover {
  color: inherit;
}

.blog-article {
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .blog-article {
    padding: 0 0.5rem;
  }
}
.blog-article__header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e8e8e8;
}
.blog-article__title {
  font-size: 3.6rem;
  font-weight: 800;
  color: #0d1b2a;
  line-height: 1.25;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .blog-article__title {
    font-size: 2.4rem;
  }
}
.blog-article__meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: #6c757d;
  font-size: 0.9rem;
}
.blog-article__meta .bi {
  margin-right: 0.25rem;
}
.blog-article__content {
  font-size: 1.6rem;
  line-height: 1.85;
  color: #333;
}
@media (max-width: 576px) {
  .blog-article__content {
    font-size: 1.3rem;
  }
}
.blog-article__content h2, .blog-article__content h3 {
  font-weight: 700;
  color: #0d1b2a;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.blog-article__content h2 {
  font-size: 2.2rem;
}
.blog-article__content h3 {
  font-size: 1.8rem;
}
.blog-article__content p {
  margin-bottom: 1.25rem;
}
.blog-article__content ul, .blog-article__content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}
.blog-article__content ul li, .blog-article__content ol li {
  margin-bottom: 0.5rem;
}
.blog-article__content blockquote {
  border-left: 4px solid #0055b8;
  padding: 1rem 1.5rem;
  background: #caf0f8;
  border-radius: 0 12px 12px 0;
  margin: 1.5rem 0;
  font-style: italic;
  color: #444;
}
.blog-article__content .video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.blog-article__content .video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.blog-article__share {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e8e8e8;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.blog-article__share span {
  font-weight: 600;
  color: #0d1b2a;
}
.blog-article__share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #caf0f8;
  color: #0d1b2a;
  transition: background 0.2s, color 0.2s;
}
.blog-article__share a:hover {
  background: #0055b8;
  color: #fff;
}

.btn-cryo {
  background: #0055b8;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 1rem 3.2rem;
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 4px 16px rgba(0, 85, 184, 0.3);
}
@media (max-width: 576px) {
  .btn-cryo {
    padding: 0.85rem 2rem;
    font-size: 1.3rem;
  }
}
.btn-cryo:hover {
  background: rgb(0, 66.152173913, 143.2);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0, 85, 184, 0.4);
}
.btn-cryo--outline {
  background: transparent;
  border: 2px solid #0055b8;
  color: #0055b8;
  box-shadow: none;
}
.btn-cryo--outline:hover {
  background: #0055b8;
  color: #fff;
}
.btn-cryo--dark {
  background: #0d1b2a;
}
.btn-cryo--dark:hover {
  background: rgb(25.0545454545, 52.0363636364, 80.9454545455);
}
.btn-cryo--lg {
  padding: 1.2rem 3.5rem;
  font-size: 1.8rem;
}

.footer-cryo {
  background: #0d1b2a;
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 0;
}
@media (max-width: 576px) {
  .footer-cryo {
    padding: 2.5rem 0 0;
  }
}
.footer-cryo h5 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}
.footer-cryo a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-cryo a:hover {
  color: #0055b8;
}
.footer-cryo ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-cryo ul li {
  margin-bottom: 0.5rem;
}
.footer-cryo__contact .bi {
  color: #0055b8;
  margin-right: 0.5rem;
  width: 20px;
}
.footer-cryo__contact p {
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
}
.footer-cryo__social {
  display: flex;
  gap: 1rem;
}
.footer-cryo__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  font-size: 1.2rem;
  transition: background 0.3s;
}
.footer-cryo__social a:hover {
  background: #0055b8;
  color: #fff;
}
.footer-cryo__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 576px) {
  .footer-cryo__bottom {
    flex-direction: column;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
  }
}
.footer-cryo__bottom .payment-icons {
  display: flex;
  gap: 0.5rem;
}
.footer-cryo__bottom .payment-icons img {
  height: 28px;
  opacity: 0.8;
}

.devis-form {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}
.devis-form h2 {
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 1.5rem;
}
.devis-form .form-control,
.devis-form .form-select {
  border-radius: 8px;
  padding: 0.75rem 1rem;
  border: 1px solid #dee2e6;
}
.devis-form .form-control:focus,
.devis-form .form-select:focus {
  border-color: #0055b8;
  box-shadow: 0 0 0 0.2rem rgba(0, 85, 184, 0.15);
}

.contact-page .contact-form-section {
  padding: 4rem 0 3rem;
  background: #fff;
}
.contact-page .contact-form-section .glace-section-subtitle a {
  color: #0055b8;
  text-decoration: none;
  font-weight: 600;
}
.contact-page .contact-form-section .glace-section-subtitle a:hover {
  text-decoration: underline;
}
.contact-page .contact-form {
  max-width: 700px;
}
.contact-page .contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 576px) {
  .contact-page .contact-form__row {
    grid-template-columns: 1fr;
  }
}
.contact-page .contact-form__input {
  display: block;
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  font-size: 1rem;
  margin-bottom: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-page .contact-form__input:focus {
  outline: none;
  border-color: #0055b8;
  box-shadow: 0 0 0 0.2rem rgba(0, 85, 184, 0.15);
}
.contact-page .contact-form__input::placeholder {
  color: #999;
}
.contact-page .contact-form__textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-page .contact-form__submit {
  margin-top: 0.5rem;
}
.contact-page .contact-map-section {
  padding: 3rem 0 0;
  background: #fff;
}
.contact-page .contact-map-section .glace-section-title {
  margin-bottom: 1.5rem;
}
.contact-page .contact-map {
  width: 100%;
}
.contact-page .contact-map iframe {
  width: 100%;
  height: 500px;
  border: 0;
}
@media (max-width: 576px) {
  .contact-page .contact-map iframe {
    height: 300px;
  }
}

.nettoyage-page .nettoyage-intro {
  padding: 4rem 0 3rem;
  background: #fff;
}
.nettoyage-page .nettoyage-intro__text {
  font-size: 1.6rem;
  line-height: 1.85;
  color: #444;
  margin-bottom: 1.25rem;
}
.nettoyage-page .nettoyage-intro__text a {
  color: #0055b8;
  text-decoration: underline;
}
@media (max-width: 576px) {
  .nettoyage-page .nettoyage-intro__text {
    font-size: 1.3rem;
  }
}
.nettoyage-page .nettoyage-schema {
  padding: 2rem 0;
  text-align: center;
}
.nettoyage-page .nettoyage-schema img {
  max-width: 100%;
  height: auto;
}
.nettoyage-page .nettoyage-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.nettoyage-page .nettoyage-video {
  padding: 4rem 0;
  background: #F1F1F1;
}
.nettoyage-page .nettoyage-video .video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  max-width: 600px;
}
.nettoyage-page .nettoyage-video .video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.nettoyage-page .nettoyage-avantages {
  padding: 4rem 0;
  background: #fff;
}
.nettoyage-page .nettoyage-avantages__text {
  font-size: 1.6rem;
  line-height: 1.85;
  color: #444;
}
.nettoyage-page .nettoyage-avantages__text strong {
  color: #0d1b2a;
}
.nettoyage-page .nettoyage-avantages__text a {
  color: #0055b8;
}
.nettoyage-page .nettoyage-domaines {
  padding: 4rem 0;
  background: #F1F1F1;
}
.nettoyage-page .domaines-table {
  width: 100%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.nettoyage-page .domaines-table td {
  padding: 1rem 1.5rem;
  border: 1px solid #eee;
  font-size: 1.1rem;
  color: #444;
  vertical-align: top;
}
.nettoyage-page .domaines-table td strong {
  display: block;
  color: #0d1b2a;
  margin-bottom: 0.25rem;
}
.nettoyage-page .domaines-table td small {
  color: #6c757d;
}
@media (max-width: 768px) {
  .nettoyage-page .domaines-table td {
    display: block;
    width: 100%;
    border-bottom: 1px solid #eee;
  }
}
.nettoyage-page .nettoyage-prestations {
  padding: 4rem 0;
  background: #fff;
}
.nettoyage-page .nettoyage-prestations .prestations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 768px) {
  .nettoyage-page .nettoyage-prestations .prestations-grid {
    grid-template-columns: 1fr;
  }
}
.nettoyage-page .nettoyage-prestations .prestation-block h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 1rem;
}
.nettoyage-page .nettoyage-prestations .prestation-block p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: #444;
}
.nettoyage-page .nettoyage-automobile {
  padding: 4rem 0;
  background: #fff;
}
.nettoyage-page .nettoyage-automobile__text {
  font-size: 1.3rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 2rem;
}
.nettoyage-page .nettoyage-tarifs-prestations {
  padding: 2rem 0;
  background: #F1F1F1;
}
.nettoyage-page .nettoyage-devis {
  padding: 4rem 0;
  background: #fff;
}
.nettoyage-page .nettoyage-machines {
  padding: 4rem 0;
  background: #fff;
}
.nettoyage-page .nettoyage-machines__text {
  font-size: 1.3rem;
  line-height: 1.75;
  color: #444;
}
.nettoyage-page .nettoyage-machines__text a {
  color: #0055b8;
}
.nettoyage-page .nettoyage-aerogommage {
  padding: 4rem 0;
  background: #fff;
}
.nettoyage-page .nettoyage-aerogommage__text {
  font-size: 1.3rem;
  line-height: 1.75;
  color: #444;
}
.nettoyage-page .nettoyage-aerogommage__text a {
  color: #0055b8;
  font-weight: 600;
}
.nettoyage-page .nettoyage-faq {
  padding: 4rem 0;
  background: #fff;
}
.nettoyage-page .nettoyage-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.nettoyage-page .nettoyage-photos img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .nettoyage-page .nettoyage-photos {
    grid-template-columns: 1fr;
  }
}

.boutique-page .boutique-section {
  padding: 3rem 0;
  background: #fff;
}
.boutique-page .boutique-section--alt {
  background: #F1F1F1;
}
.boutique-page .boutique-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 992px) {
  .boutique-page .boutique-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .boutique-page .boutique-grid {
    grid-template-columns: 1fr;
  }
}
.boutique-page .boutique-card {
  text-decoration: none;
  color: inherit;
  display: block;
}
.boutique-page .boutique-card:hover {
  color: inherit;
}
.boutique-page .boutique-card:hover .boutique-card__img img {
  transform: scale(1.03);
}
.boutique-page .boutique-card__img {
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 0.75rem;
  background: #f5f5f5;
}
.boutique-page .boutique-card__img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.3s;
}
.boutique-page .boutique-card__name {
  font-size: 0.95rem;
  color: #0d1b2a;
  margin-bottom: 0.25rem;
}
.boutique-page .boutique-card__price {
  font-size: 1rem;
  font-weight: 700;
  color: #0d1b2a;
}
.boutique-page .boutique-card__price small {
  font-weight: 400;
  color: #6c757d;
  font-size: 0.85rem;
}
.boutique-page .boutique-info-box {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 2rem 2.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
@media (max-width: 576px) {
  .boutique-page .boutique-info-box {
    padding: 1.25rem 1.25rem;
  }
}
.boutique-page .boutique-info-box h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 1rem;
}
.boutique-page .boutique-info-box p {
  font-size: 1rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 0.5rem;
}
.boutique-page .boutique-info-box a {
  color: #0055b8;
}
.boutique-page .boutique-info-box strong {
  color: #0d1b2a;
}
.boutique-page .boutique-faq {
  padding: 4rem 0;
  background: #fff;
}

@media (max-width: 576px) {
  .hero__title {
    font-size: 1.75rem;
  }
  .section {
    padding: 3rem 0;
  }
  .cta-cards {
    grid-template-columns: 1fr;
    margin-top: -2rem;
  }
  .cta-card {
    padding: 1.5rem 1.25rem;
  }
  .cta-card__title {
    font-size: 1.25rem;
  }
  .cta-card__text {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .cta-cards {
    grid-template-columns: 1fr;
  }
}
.titre-barre div * {
  font-size: 3.6rem !important;
  font-weight: 700;
}
@media (max-width: 768px) {
  .titre-barre div * {
    font-size: 2.2rem !important;
  }
}

.titre-barre div p {
  font-size: 1.3rem !important;
  font-weight: 400;
  color: #6c757d;
}
@media (max-width: 768px) {
  .titre-barre div p {
    font-size: 1.1rem !important;
  }
}

.rowIntro {
  padding: 5rem 0;
  display: flex;
  justify-content: space-between;
  background-color: #f1f1f1;
}
@media (max-width: 768px) {
  .rowIntro {
    flex-direction: column;
    padding: 3rem 0;
  }
}
@media (max-width: 576px) {
  .rowIntro {
    padding: 2rem 0;
  }
}

.rowIntro .left h1 {
  font-size: 3.6rem !important;
  font-weight: 800;
  line-height: 1.25;
}
.rowIntro .left h1 span {
  color: #0055b8;
}
@media (max-width: 768px) {
  .rowIntro .left h1 {
    font-size: 2.4rem !important;
  }
}

.rowServices .bottom h3 {
  font-size: 1.8rem !important;
  font-weight: 700;
}

.nc-intro {
  padding: 4rem 0 3rem;
  background: #fff;
}
.nc-intro__title {
  font-size: 3.6rem;
  font-weight: 800;
  color: #0d1b2a;
  margin-bottom: 2rem;
  padding-left: 1.2rem;
  border-left: 5px solid #0055b8;
  display: inline-block;
  line-height: 1.3;
}
.nc-intro__title span {
  color: #0055b8;
}
@media (max-width: 768px) {
  .nc-intro__title {
    font-size: 2.4rem;
  }
}
.nc-intro__text {
  font-size: 1.6rem;
  line-height: 1.85;
  color: #444;
  margin-bottom: 1.25rem;
}
.nc-intro__text strong, .nc-intro__text b {
  color: #0d1b2a;
}
@media (max-width: 576px) {
  .nc-intro__text {
    font-size: 1.3rem;
  }
}
.nc-intro__schema {
  text-align: center;
  margin: 2.5rem 0;
}
.nc-intro__schema img {
  max-width: 100%;
  height: auto;
}
.nc-intro__cta {
  text-align: center;
  margin-top: 2.5rem;
}

.nc-avantages {
  padding: 3rem 0 4rem;
  background: #fff;
}
.nc-avantages p {
  font-size: 1.6rem;
  line-height: 1.85;
  color: #444;
  margin-bottom: 1rem;
}
.nc-avantages p b, .nc-avantages p strong {
  color: #0d1b2a;
}
@media (max-width: 576px) {
  .nc-avantages p {
    font-size: 1.3rem;
  }
}

.nc-video {
  padding: 3rem 0 4rem;
  background: #fff;
}
.nc-video__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2.5rem;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .nc-video__grid {
    grid-template-columns: 1fr;
  }
}
.nc-video__grid p {
  font-size: 1.6rem;
  line-height: 1.85;
  color: #444;
}
@media (max-width: 576px) {
  .nc-video__grid p {
    font-size: 1.3rem;
  }
}
.nc-video__grid video {
  width: 100%;
  border-radius: 8px;
}

.nc-prestations {
  padding: 3rem 0 4rem;
  background: #fff;
}
.nc-prestations__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}
.nc-prestations__grid h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 0.75rem;
}
.nc-prestations__grid p {
  font-size: 1.6rem;
  line-height: 1.85;
  color: #444;
}
@media (max-width: 576px) {
  .nc-prestations__grid p {
    font-size: 1.3rem;
  }
}

.nc-auto {
  padding: 3rem 0 4rem;
  background: #fff;
}
.nc-auto p {
  font-size: 1.6rem;
  line-height: 1.85;
  color: #444;
}
@media (max-width: 576px) {
  .nc-auto p {
    font-size: 1.3rem;
  }
}

.nc-machines {
  padding: 3rem 0 4rem;
  background: #fff;
}
.nc-machines p {
  font-size: 1.6rem;
  line-height: 1.85;
  color: #444;
  margin-bottom: 1rem;
}
@media (max-width: 576px) {
  .nc-machines p {
    font-size: 1.3rem;
  }
}

.nc-aerogommage {
  padding: 3rem 0 4rem;
  background: #fff;
}
.nc-aerogommage p {
  font-size: 1.6rem;
  line-height: 1.85;
  color: #444;
}
@media (max-width: 576px) {
  .nc-aerogommage p {
    font-size: 1.3rem;
  }
}

.nc-devis-section {
  padding: 3rem 0 4rem;
  background: #fff;
}

.nc-faq {
  padding: 4rem 0;
  background: #fff;
}

.btnCryoBleu {
  display: inline-block;
  padding: 1rem 3.2rem;
  background: #0055b8;
  color: #fff;
  border: 2px solid #0055b8;
  border-radius: 50px;
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(0, 85, 184, 0.3);
}
@media (max-width: 576px) {
  .btnCryoBleu {
    padding: 0.85rem 2rem;
    font-size: 1.3rem;
  }
}
.btnCryoBleu:hover {
  background: rgb(0, 66.152173913, 143.2);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 85, 184, 0.4);
}
.btnCryoBleu--outline {
  background: transparent;
  color: #0055b8;
  box-shadow: none;
}
.btnCryoBleu--outline:hover {
  background: #0055b8;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 85, 184, 0.3);
}

.nc-domains-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #dee2e6;
  font-size: 1.3rem;
}
.nc-domains-table td {
  padding: 14px 18px;
  border: 1px solid #dee2e6;
  font-weight: 500;
}
.nc-domains-table td small {
  display: block;
  font-weight: 400;
  color: #6c757d;
  font-size: 1.05rem;
}
@media (max-width: 576px) {
  .nc-domains-table td {
    padding: 10px 12px;
    font-size: 1.05rem;
  }
}
@media (max-width: 768px) {
  .nc-domains-table td {
    display: block;
    width: 100%;
    border-bottom: 1px solid #dee2e6;
  }
}

.nc-tarifs-box {
  border: 2px solid #dee2e6;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  font-size: 1.3rem;
}
.nc-tarifs-box__header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
}
.nc-tarifs-box__list {
  list-style: none;
  padding: 16px 20px;
  margin: 0;
}
.nc-tarifs-box__list li {
  padding: 6px 0;
  border-bottom: 1px solid #f0f0f0;
}
.nc-tarifs-box__list li:last-child {
  border-bottom: none;
}

.nc-devis-form {
  font-size: 1.3rem;
}
.nc-devis-form .form-control,
.nc-devis-form .form-select {
  border-radius: 8px;
  font-size: 1.3rem;
}
.nc-devis-form .form-control:focus,
.nc-devis-form .form-select:focus {
  border-color: #0055b8;
  box-shadow: 0 0 0 0.2rem rgba(0, 85, 184, 0.15);
}
.nc-devis-form .form-label {
  font-size: 1.3rem;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.contact-form__input {
  display: block;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  font-size: 1.3rem;
  margin-bottom: 16px;
  background: #fff;
  transition: border-color 0.2s;
}
.contact-form__input:focus {
  outline: none;
  border-color: #0055b8;
  box-shadow: 0 0 0 0.2rem rgba(0, 85, 184, 0.15);
}
.contact-form__row .contact-form__input {
  margin-bottom: 0;
}
.contact-form__textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-form__submit {
  margin-top: 8px;
}
@media (max-width: 576px) {
  .contact-form__row {
    grid-template-columns: 1fr;
  }
}

.logo-cryo {
  font-style: normal;
  color: #0055b8;
  font-weight: 700;
}

.logo-system {
  font-style: normal;
  font-weight: 700;
}

.nav-crm-link {
  color: #e74c3c !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.header-brand-text {
  font-size: 1.8rem;
  font-weight: 800;
  color: #333;
  letter-spacing: -0.5px;
}
@media (max-width: 576px) {
  .header-brand-text {
    font-size: 1.4rem;
  }
}

.header-account-link {
  font-size: 1.1rem;
  font-weight: 500;
  width: 100%;
}

.icon-sm {
  width: 1.8rem;
  height: 1.8rem;
}

.icon-md {
  width: 2rem;
  height: 2rem;
}

.icon-mr {
  margin-right: 4px;
}

.cart-count-bubble {
  display: flex !important;
}

.prefooter-spacing {
  padding-top: 30px;
  padding-bottom: 39px;
}

.section-header-spacing {
  padding-top: 48px;
  padding-bottom: 16px;
}

.contact-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  padding: 24px 16px 48px;
}

.contact-map {
  width: 100%;
}

.map-iframe {
  border: 0;
}

.cryo-checkout {
  max-width: 60%;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
@media (max-width: 992px) {
  .cryo-checkout {
    max-width: 85%;
  }
}
@media (max-width: 768px) {
  .cryo-checkout {
    max-width: 95%;
    padding: 2rem 1rem;
  }
}
@media (max-width: 576px) {
  .cryo-checkout {
    max-width: 100%;
    padding: 1.5rem 0.75rem;
  }
}

.cryo-checkout h1, .cryo-checkout h2, .cryo-checkout h3, .cryo-checkout h4, .cryo-checkout h5, .cryo-checkout h6 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif !important;
  letter-spacing: normal !important;
  line-height: 1.3 !important;
  color: #0d1b2a !important;
}

.cryo-checkout__title {
  font-size: 3.6rem !important;
  font-weight: 700 !important;
  color: #0d1b2a !important;
  margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
  .cryo-checkout__title {
    font-size: 2.4rem !important;
  }
}
.cryo-checkout__layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 991px) {
  .cryo-checkout__layout {
    grid-template-columns: 1fr;
  }
}
.cryo-checkout__main {
  min-width: 0;
}

.cryo-checkout__section {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.cryo-checkout__section-title {
  font-size: 2rem !important;
  font-weight: 700 !important;
  color: #0d1b2a !important;
  margin-bottom: 1.25rem;
}

.cryo-checkout .form-control,
.cryo-checkout .form-select {
  font-size: 1.5rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  border: 1px solid #dee2e6;
}
.cryo-checkout .form-control:focus,
.cryo-checkout .form-select:focus {
  border-color: #0055b8;
  box-shadow: 0 0 0 0.2rem rgba(0, 85, 184, 0.15);
}

.cryo-checkout .form-label {
  font-size: 1.5rem;
  font-weight: 500;
  color: #0d1b2a;
  margin-bottom: 0.4rem;
}

.cryo-checkout .form-check-label {
  font-size: 1.5rem;
}

.cryo-checkout__items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cryo-checkout__item {
  display: grid;
  grid-template-columns: 60px 1fr auto auto auto;
  gap: 1.25rem;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.cryo-checkout__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

@media (max-width: 768px) {
  .cryo-checkout__item {
    grid-template-columns: 50px 1fr;
    gap: 0.5rem;
  }
  .cryo-checkout__item-qty,
  .cryo-checkout__item-price {
    font-size: 1.2rem;
  }
}
@media (max-width: 576px) {
  .cryo-checkout__item {
    grid-template-columns: 45px 1fr;
    gap: 0.4rem;
  }
  .cryo-checkout__item-name {
    font-size: 1.3rem;
  }
  .cryo-checkout__item-option {
    font-size: 1rem;
  }
}
.cryo-checkout__item-image {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.cryo-checkout__item-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.cryo-checkout__item-img-placeholder {
  width: 60px;
  height: 60px;
  background: #f5f5f5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 1.2rem;
}

.cryo-checkout__item-info {
  min-width: 0;
}

.cryo-checkout__item-name {
  font-weight: 600;
  font-size: 1.5rem;
  color: #0d1b2a;
}

.cryo-checkout__item-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.3rem;
}

.cryo-checkout__item-option {
  display: inline-block;
  background: #e8e8e8;
  color: #555;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 1.15rem;
  font-weight: 500;
}

.cryo-checkout__item-qty {
  font-weight: 600;
  font-size: 1.4rem;
  color: #6c757d;
  white-space: nowrap;
}

.cryo-checkout__item-price {
  font-weight: 500;
  font-size: 1.4rem;
  color: #6c757d;
  white-space: nowrap;
}

.cryo-checkout__item-total {
  font-weight: 700;
  font-size: 1.5rem;
  color: #0d1b2a;
  white-space: nowrap;
  text-align: right;
}

.cryo-checkout__sidebar {
  position: sticky;
  top: 20px;
}

.cryo-checkout__summary {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.cryo-checkout__summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
  font-size: 1.4rem;
  color: #0d1b2a;
}

.cryo-checkout__summary-divider {
  height: 1px;
  background: #e8e8e8;
  margin: 1rem 0;
}

.cryo-checkout__summary-total {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0;
}

.cryo-checkout__summary-total strong {
  color: #0055b8;
  font-size: 2rem;
}

.cryo-checkout__pay-btn {
  display: block;
  width: 100%;
  padding: 1rem 2rem;
  background: #0055b8 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 1.6rem !important;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(0, 85, 184, 0.25) !important;
}

.cryo-checkout__pay-btn:hover {
  background: rgb(0, 66.152173913, 143.2) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 85, 184, 0.35) !important;
}

.checkout-sticky-card {
  top: 20px;
}

.shipping-method-label {
  min-height: 140px;
}
.shipping-method-label i {
  font-size: 3rem !important;
}
.shipping-method-label span {
  font-size: 1.5rem !important;
}
@media (max-width: 576px) {
  .shipping-method-label {
    min-height: 100px;
  }
  .shipping-method-label i {
    font-size: 2rem !important;
  }
  .shipping-method-label span {
    font-size: 1.2rem !important;
  }
}

.checkout-section--hidden {
  display: none;
}

.card-element-wrapper {
  height: 50px;
}

.variant-badge-light {
  background-color: #E3E3E3 !important;
  color: #616161;
}

#same-billing-checkbox-container .form-check {
  display: flex !important;
  align-items: center !important;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
#same-billing-checkbox-container .form-check:hover {
  border-color: #0055b8;
  background: #caf0f8;
}
#same-billing-checkbox-container .form-check .form-check-input {
  width: 17px !important;
  min-width: 17px !important;
  height: 17px !important;
  cursor: pointer !important;
  flex-shrink: 0;
}
#same-billing-checkbox-container .form-check .form-check-label {
  font-size: 1.5rem !important;
  font-weight: 500;
  color: #0d1b2a;
  cursor: pointer;
  margin: 0;
  line-height: 1.4;
}

.product-page .product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: start;
  margin-top: 30px;
}
.product-page .product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
}
.product-page .product-card:hover {
  transform: translateY(-4px);
}
.product-page .product-card-link {
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-page .product-card-link:hover {
  color: inherit;
}
.product-page .product-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}
.product-page .product-image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  color: #6b7280;
  font-size: 2rem;
}
.product-page .product-title {
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 4px;
  color: #0d1b2a;
}
.product-page .product-description {
  font-size: 1.3rem;
  color: #5c6670;
  margin-bottom: 12px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}
.product-page .product-meta {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  color: #1f2a37;
  margin-top: auto;
}
.product-page .product-price {
  font-size: 2.1rem;
  font-weight: 700;
  color: #0d1b2a;
}
.product-page .product-price small {
  font-weight: 400;
  color: #888;
  font-size: 1.2rem;
}
.product-page .product-price-ttc {
  display: block;
  font-size: 1.1rem !important;
  color: #999 !important;
  font-weight: 400 !important;
}
.product-page .product-price-from {
  display: block;
  font-size: 1.1rem !important;
  color: #0055b8 !important;
  font-weight: 600 !important;
}
.product-page .product-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-page .product-card form {
  margin-top: 16px;
}
.product-page .product-category-section {
  padding: 4rem 0 3rem;
}
.product-page .product-info-block {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 2rem 2.5rem;
  margin-bottom: 2rem;
}
.product-page .product-info-block__title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #0d1b2a;
}
.product-page .product-info-block p {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #444;
}
.product-page .product-faq-section {
  padding-bottom: 4rem;
}
@media (max-width: 1024px) {
  .product-page .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .product-page .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .product-page .product-grid {
    grid-template-columns: 1fr;
  }
}

.cryo-product-show {
  max-width: 60%;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
@media (max-width: 992px) {
  .cryo-product-show {
    max-width: 85%;
  }
}
@media (max-width: 768px) {
  .cryo-product-show {
    max-width: 95%;
    padding: 2rem 1rem;
  }
}
@media (max-width: 576px) {
  .cryo-product-show {
    max-width: 100%;
    padding: 1.5rem 0.75rem;
  }
}
.cryo-product-show h1, .cryo-product-show h2, .cryo-product-show h3, .cryo-product-show h4, .cryo-product-show h5, .cryo-product-show h6 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif !important;
  letter-spacing: normal !important;
  line-height: 1.3 !important;
  color: #0d1b2a !important;
}
.cryo-product-show p {
  font-weight: 400;
  color: #6c757d;
}
.cryo-product-show a {
  color: inherit;
  text-decoration: none;
}
.cryo-product-show button {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
  letter-spacing: normal;
}
.cryo-product-show button:before, .cryo-product-show button:after {
  content: none !important;
  box-shadow: none !important;
}
.cryo-product-show select {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
  letter-spacing: normal;
}
.cryo-product-show input {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
  letter-spacing: normal;
}
.cryo-product-show label {
  font-size: 1.5rem;
}
.cryo-product-show small {
  font-size: 1.1rem;
}
.cryo-product-show__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) {
  .cryo-product-show__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.cryo-product-show__image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  background: #f3f4f6;
}
@media (max-width: 768px) {
  .cryo-product-show__image {
    height: 280px;
  }
}
.cryo-product-show__image-placeholder {
  width: 100%;
  height: 420px;
  border-radius: 12px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  font-size: 0.95rem;
}
@media (max-width: 768px) {
  .cryo-product-show__image-placeholder {
    height: 280px;
  }
}
.cryo-product-show__gallery {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.cryo-product-show__main-image-wrapper {
  width: 100%;
}
.cryo-product-show__thumbnails {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.cryo-product-show__thumb {
  width: 72px;
  height: 72px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: #f3f4f6;
  transition: border-color 0.2s;
}
.cryo-product-show__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cryo-product-show__thumb:hover {
  border-color: #9ca3af;
}
.cryo-product-show__thumb--active {
  border-color: #0d6efd;
}
@media (max-width: 768px) {
  .cryo-product-show__thumb {
    width: 56px;
    height: 56px;
  }
}
.cryo-product-show__card {
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 2rem;
  background: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.cryo-product-show__title {
  font-size: 3.6rem !important;
  font-weight: 700 !important;
  color: #0d1b2a !important;
  margin-bottom: 1.25rem;
  line-height: 1.2 !important;
}
@media (max-width: 768px) {
  .cryo-product-show__title {
    font-size: 2.4rem !important;
  }
}
@media (max-width: 576px) {
  .cryo-product-show__title {
    font-size: 1.8rem !important;
  }
}
.cryo-product-show__description {
  font-size: 1.5rem !important;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
@media (max-width: 576px) {
  .cryo-product-show__description {
    font-size: 1.25rem !important;
  }
}
.cryo-product-show__options-title {
  font-size: 1.5rem !important;
  font-weight: 600 !important;
  color: #0d1b2a !important;
  margin-bottom: 1rem;
}
.cryo-product-show__field {
  margin-bottom: 1rem;
}
.cryo-product-show__label {
  display: block;
  font-weight: 600;
  font-size: 1.5rem;
  color: #0d1b2a;
  margin-bottom: 0.5rem;
}
.cryo-product-show__select {
  display: block;
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1px solid #dee2e6 !important;
  border-radius: 8px !important;
  font-size: 1.05rem;
  color: #212529;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: auto;
  height: auto !important;
  min-height: auto !important;
  min-width: auto !important;
  box-shadow: none !important;
}
.cryo-product-show__select:focus {
  outline: none;
  border-color: #0055b8 !important;
  box-shadow: 0 0 0 0.2rem rgba(0, 85, 184, 0.15) !important;
}
.cryo-product-show__select:before, .cryo-product-show__select:after {
  content: none !important;
  box-shadow: none !important;
}
.cryo-product-show__option-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.cryo-product-show__option-pill {
  all: unset !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0.8rem 1.8rem !important;
  border: 1.5px solid #dee2e6 !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #0d1b2a !important;
  font-size: 1.5rem !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  min-width: auto !important;
  min-height: auto !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  letter-spacing: normal !important;
  line-height: 1.4 !important;
}
.cryo-product-show__option-pill:hover {
  border-color: #0d1b2a !important;
}
.cryo-product-show__option-pill--active {
  background: #0d1b2a !important;
  color: #fff !important;
  border-color: #0d1b2a !important;
}
.cryo-product-show__option-pill::before, .cryo-product-show__option-pill::after {
  content: none !important;
  display: none !important;
}
.cryo-product-show__input {
  display: block;
  width: 100%;
  max-width: 110px;
  padding: 0.85rem 1.1rem;
  border: 1px solid #dee2e6 !important;
  border-radius: 8px !important;
  font-size: 1.05rem;
  color: #212529;
  transition: border-color 0.2s, box-shadow 0.2s;
  height: auto !important;
  min-height: auto !important;
  box-shadow: none !important;
}
.cryo-product-show__input:focus {
  outline: none;
  border-color: #0055b8 !important;
  box-shadow: 0 0 0 0.2rem rgba(0, 85, 184, 0.15) !important;
}
.cryo-product-show__price-block {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.cryo-product-show__price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.cryo-product-show__price {
  font-size: 3.2rem;
  font-weight: 700;
  color: #0055b8 !important;
}
.cryo-product-show__price-suffix {
  font-size: 2rem;
  color: #6c757d;
  font-weight: 400;
}
.cryo-product-show__price-tva {
  font-size: 1.3rem;
  color: #6c757d;
  margin-top: 0.25rem;
  font-weight: 400;
}
.cryo-product-show__unavailable {
  margin-top: 0.5rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #dc3545;
}
.cryo-product-show__price-inline {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.cryo-product-show__price-value {
  font-size: 3.2rem;
  font-weight: 700;
  color: #0055b8 !important;
}
.cryo-product-show__price-tva-inline {
  font-size: 1.5rem;
  color: #6c757d;
  font-weight: 400;
}
.cryo-product-show__qty-selector {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid #dee2e6;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.cryo-product-show__qty-btn {
  all: unset !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 44px !important;
  border: none !important;
  border-radius: 0 !important;
  background: #f8f9fa !important;
  font-size: 1.3rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: background 0.2s, color 0.2s;
  color: #0d1b2a !important;
  min-width: auto !important;
  min-height: auto !important;
  padding: 0 !important;
  box-shadow: none !important;
  position: relative !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  letter-spacing: normal !important;
  text-decoration: none !important;
  outline: none !important;
}
.cryo-product-show__qty-btn--decrease {
  border-radius: 24px 0 0 24px !important;
  border-right: 1px solid #dee2e6 !important;
}
.cryo-product-show__qty-btn--increase {
  border-radius: 0 24px 24px 0 !important;
  border-left: 1px solid #dee2e6 !important;
}
.cryo-product-show__qty-btn:hover:not(:disabled) {
  background: #e9ecef !important;
  color: #0055b8 !important;
}
.cryo-product-show__qty-btn--decrease:hover:not(:disabled) {
  color: #dc3545 !important;
}
.cryo-product-show__qty-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  color: #adb5bd !important;
}
.cryo-product-show__qty-btn:before, .cryo-product-show__qty-btn:after {
  content: none !important;
  display: none !important;
  box-shadow: none !important;
  border: none !important;
  position: static !important;
  width: 0 !important;
  height: 0 !important;
}
.cryo-product-show__qty-input {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  width: 48px;
  height: 44px;
  border: none !important;
  border-radius: 0 !important;
  background: #fff !important;
  color: #0d1b2a !important;
  font-weight: 700;
  font-size: 1.3rem;
  text-align: center;
  padding: 0 !important;
  -moz-appearance: textfield;
}
.cryo-product-show__qty-input::-webkit-outer-spin-button,
.cryo-product-show__qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.cryo-product-show__btn-cart {
  display: block;
  width: 100%;
  padding: 1rem 2rem;
  background: #0055b8 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 1.5rem !important;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(0, 85, 184, 0.25) !important;
  text-align: center;
  min-width: auto !important;
  min-height: auto !important;
  position: relative;
}
.cryo-product-show__btn-cart:hover:not(:disabled) {
  background: rgb(0, 66.152173913, 143.2) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 85, 184, 0.35) !important;
}
.cryo-product-show__btn-cart:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.cryo-product-show__btn-cart:before, .cryo-product-show__btn-cart:after {
  content: none !important;
  box-shadow: none !important;
}
.cryo-product-show__back-link {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: #6c757d !important;
  text-decoration: none !important;
  transition: color 0.2s;
}
.cryo-product-show__back-link:hover {
  color: #0055b8 !important;
}
.cryo-product-show__options-form {
  margin-bottom: 1.5rem;
}
.cryo-product-show__quantity-field {
  margin-bottom: 1rem;
}
.cryo-product-show__qty-stepper {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid #dee2e6;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.cryo-product-show__qty-btn {
  all: unset !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 44px !important;
  border: none !important;
  border-radius: 0 !important;
  background: #f8f9fa !important;
  font-size: 1.3rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: background 0.2s, color 0.2s;
  color: #0d1b2a !important;
  min-width: auto !important;
  min-height: auto !important;
  padding: 0 !important;
  box-shadow: none !important;
  position: relative !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  letter-spacing: normal !important;
}
.cryo-product-show__qty-btn--minus {
  border-radius: 24px 0 0 24px !important;
  border-right: 1px solid #dee2e6 !important;
}
.cryo-product-show__qty-btn--plus {
  border-radius: 0 24px 24px 0 !important;
  border-left: 1px solid #dee2e6 !important;
}
.cryo-product-show__qty-btn:hover {
  background: #e9ecef !important;
  color: #0055b8 !important;
}
.cryo-product-show__qty-btn--minus:hover {
  color: #dc3545 !important;
}
.cryo-product-show__qty-btn::before, .cryo-product-show__qty-btn::after {
  content: none !important;
  display: none !important;
  box-shadow: none !important;
  border: none !important;
}
.cryo-product-show__qty-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 44px;
  border-radius: 0;
  background: #fff !important;
  color: #0d1b2a;
  font-weight: 700;
  font-size: 1.3rem;
}

.cryo-cart {
  max-width: 60%;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
@media (max-width: 992px) {
  .cryo-cart {
    max-width: 85%;
  }
}
@media (max-width: 768px) {
  .cryo-cart {
    max-width: 95%;
    padding: 2rem 1rem;
  }
}
@media (max-width: 576px) {
  .cryo-cart {
    max-width: 100%;
    padding: 1.5rem 0.75rem;
  }
}
.cryo-cart h1, .cryo-cart h2, .cryo-cart h3, .cryo-cart h4, .cryo-cart h5, .cryo-cart h6 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif !important;
  letter-spacing: normal !important;
  line-height: 1.3 !important;
  color: #0d1b2a !important;
}
.cryo-cart p {
  font-weight: 400;
}
.cryo-cart a {
  color: inherit;
  text-decoration: none;
}
.cryo-cart button {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
  letter-spacing: normal;
}
.cryo-cart button:before, .cryo-cart button:after {
  content: none !important;
  box-shadow: none !important;
}
.cryo-cart__title {
  font-size: 3.6rem !important;
  font-weight: 700 !important;
  color: #0d1b2a !important;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .cryo-cart__title {
    font-size: 2.4rem !important;
  }
}
.cryo-cart__empty {
  background: #caf0f8;
  border: 1px solid rgba(0, 85, 184, 0.2);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  color: #0d1b2a;
  font-size: 1.6rem !important;
}
.cryo-cart__empty a {
  color: #0055b8 !important;
  font-weight: 600;
  text-decoration: none !important;
}
.cryo-cart__empty a:hover {
  text-decoration: underline !important;
}
.cryo-cart__items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cryo-cart__item {
  display: grid;
  grid-template-columns: 80px 1fr auto auto auto auto;
  gap: 1.5rem;
  align-items: center;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
@media (max-width: 768px) {
  .cryo-cart__item {
    grid-template-columns: 60px 1fr;
    gap: 0.75rem;
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cryo-cart__item {
    grid-template-columns: 50px 1fr;
    gap: 0.5rem;
    padding: 0.85rem;
  }
}
.cryo-cart__item-image {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #f5f5f5;
}
@media (max-width: 768px) {
  .cryo-cart__item-image {
    width: 60px;
    height: 60px;
  }
}
.cryo-cart__item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cryo-cart__item-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #999;
}
.cryo-cart__item-info {
  min-width: 0;
}
.cryo-cart__item-name {
  font-weight: 600;
  font-size: 1.6rem !important;
  color: #0d1b2a;
}
.cryo-cart__item-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.4rem;
}
@media (max-width: 768px) {
  .cryo-cart__item-options {
    justify-content: center;
  }
}
.cryo-cart__item-option {
  display: inline-block;
  background: #e8e8e8;
  color: #555;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  font-size: 1.2rem;
  font-weight: 500;
}
.cryo-cart__item-price {
  font-weight: 600;
  font-size: 1.6rem;
  color: #0d1b2a;
  white-space: nowrap;
}
.cryo-cart__item-qty {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid #dee2e6;
  border-radius: 24px;
  overflow: hidden;
}
.cryo-cart__qty-btn {
  all: unset !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 44px !important;
  border: none !important;
  border-radius: 0 !important;
  background: #f8f9fa !important;
  font-size: 1.3rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: background 0.2s, color 0.2s;
  color: #0d1b2a !important;
  min-width: auto !important;
  min-height: auto !important;
  padding: 0 !important;
  box-shadow: none !important;
  position: relative !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  letter-spacing: normal !important;
  text-decoration: none !important;
  outline: none !important;
}
.cryo-cart__qty-btn--decrease {
  border-radius: 24px 0 0 24px !important;
  border-right: 1px solid #dee2e6 !important;
}
.cryo-cart__qty-btn--increase {
  border-radius: 0 24px 24px 0 !important;
  border-left: 1px solid #dee2e6 !important;
}
.cryo-cart__qty-btn:hover {
  background: #e9ecef !important;
  color: #0055b8 !important;
}
.cryo-cart__qty-btn--decrease:hover {
  color: #dc3545 !important;
}
.cryo-cart__qty-btn::before, .cryo-cart__qty-btn::after {
  content: none !important;
  display: none !important;
  box-shadow: none !important;
  border: none !important;
  position: static !important;
  width: 0 !important;
  height: 0 !important;
}
.cryo-cart__qty-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 44px;
  border-radius: 0;
  background: #fff !important;
  color: #0d1b2a;
  font-weight: 700;
  font-size: 1.3rem;
}
.cryo-cart__item-total {
  font-weight: 700;
  font-size: 1.6rem;
  color: #0d1b2a;
  white-space: nowrap;
  text-align: right;
}
.cryo-cart__item-delete form {
  display: inline;
}
.cryo-cart__delete-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1rem !important;
  border: 1px solid #dc3545 !important;
  border-radius: 6px !important;
  background: transparent !important;
  color: #dc3545 !important;
  font-size: 1.3rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  min-width: auto !important;
  min-height: auto !important;
  box-shadow: none !important;
  position: relative;
}
.cryo-cart__delete-btn:hover {
  background: #dc3545 !important;
  color: #fff !important;
}
.cryo-cart__delete-btn:before, .cryo-cart__delete-btn:after {
  content: none !important;
  box-shadow: none !important;
}
.cryo-cart__footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e8e8e8;
}
@media (max-width: 768px) {
  .cryo-cart__footer {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
}
.cryo-cart__continue {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  background: transparent;
  color: #6c757d !important;
  font-size: 1.6rem !important;
  font-weight: 500;
  text-decoration: none !important;
  transition: border-color 0.2s, color 0.2s;
}
.cryo-cart__continue:hover {
  border-color: #0055b8;
  color: #0055b8 !important;
}
.cryo-cart__summary {
  text-align: right;
}
@media (max-width: 768px) {
  .cryo-cart__summary {
    text-align: center;
  }
}
.cryo-cart__total {
  font-size: 1.6rem !important;
  color: #0d1b2a;
  margin-bottom: 1rem;
}
.cryo-cart__total strong {
  font-size: 2.4rem;
  color: #0055b8 !important;
}
.cryo-cart__validate {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #0055b8 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 1.6rem !important;
  font-weight: 600;
  text-decoration: none !important;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(0, 85, 184, 0.25) !important;
}
.cryo-cart__validate:hover {
  background: rgb(0, 66.152173913, 143.2) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 85, 184, 0.35) !important;
}

.cryo-account {
  max-width: 60%;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
@media (max-width: 992px) {
  .cryo-account {
    max-width: 85%;
  }
}
@media (max-width: 768px) {
  .cryo-account {
    max-width: 95%;
    padding: 2rem 1rem;
  }
}
@media (max-width: 576px) {
  .cryo-account {
    max-width: 100%;
    padding: 1.5rem 0.75rem;
  }
}
.cryo-account h1, .cryo-account h2, .cryo-account h3, .cryo-account h4, .cryo-account h5, .cryo-account h6 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif !important;
  letter-spacing: normal !important;
  line-height: 1.3 !important;
  color: #0d1b2a !important;
}
.cryo-account p {
  font-weight: 400;
  color: #0d1b2a;
}
.cryo-account a {
  color: inherit;
  text-decoration: none;
}
.cryo-account__title {
  font-size: 3.6rem !important;
  font-weight: 700 !important;
  color: #0d1b2a !important;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .cryo-account__title {
    font-size: 2.4rem !important;
  }
}
@media (max-width: 576px) {
  .cryo-account__title {
    font-size: 1.8rem !important;
    margin-bottom: 1.25rem;
  }
}
.cryo-account__layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 768px) {
  .cryo-account__layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
.cryo-account__nav {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 20px;
}
@media (max-width: 768px) {
  .cryo-account__nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.75rem;
  }
}
.cryo-account__nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  color: #0d1b2a !important;
  font-size: 1.5rem !important;
  font-weight: 500;
  text-decoration: none !important;
  transition: background 0.2s, color 0.2s;
}
@media (max-width: 768px) {
  .cryo-account__nav-item {
    padding: 0.6rem 0.85rem;
    font-size: 1.2rem !important;
    flex: 1 1 auto;
    justify-content: center;
    text-align: center;
  }
}
.cryo-account__nav-item:hover {
  background: #f5f5f5;
  color: #0055b8 !important;
}
.cryo-account__nav-item--active {
  background: #caf0f8;
  color: #0055b8 !important;
  font-weight: 600;
}
.cryo-account__nav-item i {
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  .cryo-account__nav-item i {
    font-size: 1.3rem;
  }
}
.cryo-account__section {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
@media (max-width: 576px) {
  .cryo-account__section {
    padding: 1rem;
  }
}
.cryo-account__section-title {
  font-size: 2rem !important;
  font-weight: 700 !important;
  color: #0d1b2a !important;
  margin-bottom: 1.25rem;
}
@media (max-width: 576px) {
  .cryo-account__section-title {
    font-size: 1.6rem !important;
  }
}
.cryo-account__alert {
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
@media (max-width: 576px) {
  .cryo-account__alert {
    font-size: 1.2rem;
    padding: 0.85rem 1rem;
  }
}
.cryo-account__alert--success {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}
.cryo-account__alert--danger {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}
.cryo-account__alert--warning {
  background: #fff3cd;
  border: 1px solid #ffeeba;
  color: #856404;
}
.cryo-account__alert--info {
  background: #caf0f8;
  border: 1px solid rgba(0, 85, 184, 0.2);
  color: #0d1b2a;
}
.cryo-account__info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 1.5rem;
}
@media (max-width: 576px) {
  .cryo-account__info-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    font-size: 1.3rem;
  }
}
.cryo-account__info-row:last-child {
  border-bottom: none;
}
.cryo-account__info-label {
  font-weight: 600;
  color: #6c757d;
}
.cryo-account__info-value {
  font-weight: 500;
  color: #0d1b2a;
}
.cryo-account__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cryo-account .form-control,
.cryo-account .form-select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  font-size: 1.5rem;
  color: #0d1b2a;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
@media (max-width: 576px) {
  .cryo-account .form-control,
  .cryo-account .form-select {
    font-size: 1.3rem;
    padding: 0.75rem 0.85rem;
  }
}
.cryo-account .form-control:focus,
.cryo-account .form-select:focus {
  outline: none;
  border-color: #0055b8;
  box-shadow: 0 0 0 3px rgba(0, 85, 184, 0.15);
}
.cryo-account .form-label {
  font-weight: 600;
  font-size: 1.4rem;
  color: #0d1b2a;
}
@media (max-width: 576px) {
  .cryo-account .form-label {
    font-size: 1.2rem;
  }
}
.cryo-account .form-check-label {
  font-size: 1.4rem;
}
.cryo-account__billing-toggle .form-check {
  display: flex !important;
  align-items: center !important;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.cryo-account__billing-toggle .form-check:hover {
  border-color: #0055b8;
  background: #caf0f8;
}
.cryo-account__billing-toggle .form-check .form-check-input {
  width: 17px !important;
  min-width: 17px !important;
  height: 17px !important;
  cursor: pointer !important;
  flex-shrink: 0;
}
.cryo-account__billing-toggle .form-check .form-check-label {
  font-size: 1.4rem !important;
  font-weight: 500;
  color: #0d1b2a;
  cursor: pointer;
  margin: 0;
  line-height: 1.4;
}
.cryo-account__form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cryo-account__form-label {
  font-weight: 600;
  font-size: 1.4rem;
  color: #0d1b2a;
}
@media (max-width: 576px) {
  .cryo-account__form-label {
    font-size: 1.2rem;
  }
}
.cryo-account__form-input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  font-size: 1.5rem;
  color: #0d1b2a;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
@media (max-width: 576px) {
  .cryo-account__form-input {
    font-size: 1.3rem;
    padding: 0.75rem 0.85rem;
  }
}
.cryo-account__form-input:focus {
  outline: none;
  border-color: #0055b8;
  box-shadow: 0 0 0 3px rgba(0, 85, 184, 0.15);
}
.cryo-account__form-input::placeholder {
  color: #adb5bd;
}
.cryo-account__form-help {
  font-size: 1.2rem;
  color: #6c757d;
}
.cryo-account__form-error {
  font-size: 1.2rem;
  color: #dc3545;
}
.cryo-account__password-wrapper {
  position: relative;
}
.cryo-account__password-wrapper .cryo-account__form-input {
  padding-right: 48px;
}
.cryo-account__password-toggle {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: #9ca3af;
  transition: color 0.15s ease;
  line-height: 0;
}
.cryo-account__password-toggle:hover {
  color: #6b7280;
}
.cryo-account__password-rules {
  background: #caf0f8;
  border: 1px solid rgba(0, 85, 184, 0.2);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-top: 0.5rem;
}
.cryo-account__password-rules-title {
  font-weight: 600;
  font-size: 1.3rem;
  color: #0d1b2a;
  margin-bottom: 0.5rem;
}
.cryo-account__password-rules-list {
  margin: 0;
  padding-left: 1.5rem;
  font-size: 1.25rem;
  color: #0d1b2a;
}
.cryo-account__password-rules-list li {
  margin-bottom: 0.25rem;
}
.cryo-account__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 8px;
  font-size: 1.5rem !important;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s, border-color 0.2s;
  text-decoration: none !important;
  border: none;
}
@media (max-width: 576px) {
  .cryo-account__btn {
    font-size: 1.3rem !important;
    padding: 0.75rem 1.25rem;
  }
}
.cryo-account__btn--primary {
  background: #0055b8 !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(0, 85, 184, 0.25) !important;
}
.cryo-account__btn--primary:hover {
  background: rgb(0, 66.152173913, 143.2) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 85, 184, 0.35) !important;
}
.cryo-account__btn--secondary {
  background: transparent !important;
  color: #6c757d !important;
  border: 1px solid #dee2e6 !important;
}
.cryo-account__btn--secondary:hover {
  border-color: #0055b8 !important;
  color: #0055b8 !important;
}
.cryo-account__btn--danger {
  background: transparent !important;
  color: #dc3545 !important;
  border: 1px solid #dc3545 !important;
}
.cryo-account__btn--danger:hover {
  background: #dc3545 !important;
  color: #fff !important;
}
.cryo-account__btn--block {
  width: 100%;
}
.cryo-account__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}
.cryo-account__back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  background: transparent;
  color: #6c757d !important;
  font-size: 1.5rem !important;
  font-weight: 500;
  text-decoration: none !important;
  transition: border-color 0.2s, color 0.2s;
}
@media (max-width: 576px) {
  .cryo-account__back-link {
    font-size: 1.3rem !important;
    padding: 0.75rem 1.25rem;
  }
}
.cryo-account__back-link:hover {
  border-color: #0055b8;
  color: #0055b8 !important;
}
.cryo-account__orders {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.cryo-account__order-item {
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #f0f0f0;
}
.cryo-account__order-item:last-child {
  border-bottom: none;
}
@media (max-width: 768px) {
  .cryo-account__order-item {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .cryo-account__order-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
  }
}
.cryo-account__order-id {
  font-weight: 700;
  font-size: 1.6rem;
  color: #0d1b2a;
}
@media (max-width: 576px) {
  .cryo-account__order-id {
    font-size: 1.4rem;
  }
}
.cryo-account__order-date {
  font-size: 1.4rem;
  color: #6c757d;
}
@media (max-width: 576px) {
  .cryo-account__order-date {
    font-size: 1.2rem;
  }
}
.cryo-account__order-total {
  font-weight: 700;
  font-size: 1.5rem;
  color: #0d1b2a;
}
@media (max-width: 576px) {
  .cryo-account__order-total {
    font-size: 1.3rem;
  }
}
.cryo-account__order-status {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.cryo-account__order-status--primary {
  background: #cce5ff;
  color: #004085;
}
.cryo-account__order-status--success {
  background: #d4edda;
  color: #155724;
}
.cryo-account__order-status--warning {
  background: #fff3cd;
  color: #856404;
}
.cryo-account__order-status--danger {
  background: #f8d7da;
  color: #721c24;
}
.cryo-account__order-status--secondary {
  background: #e9ecef;
  color: #495057;
}
.cryo-account__order-status--info {
  background: #caf0f8;
  color: #0d1b2a;
}
.cryo-account__empty {
  background: #caf0f8;
  border: 1px solid rgba(0, 85, 184, 0.2);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  color: #0d1b2a;
}
@media (max-width: 576px) {
  .cryo-account__empty {
    padding: 1.5rem;
  }
}
.cryo-account__empty-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #0055b8;
}
.cryo-account__empty-text {
  font-size: 1.6rem !important;
  margin: 0;
}
@media (max-width: 576px) {
  .cryo-account__empty-text {
    font-size: 1.3rem !important;
  }
}
.cryo-account__verify-code {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.cryo-account__verify-input {
  width: 200px;
  text-align: center;
  font-size: 2rem !important;
  font-weight: 700;
  letter-spacing: 0.5rem;
  padding: 1rem;
  border: 2px solid #dee2e6;
  border-radius: 8px;
}
.cryo-account__verify-input:focus {
  outline: none;
  border-color: #0055b8;
  box-shadow: 0 0 0 3px rgba(0, 85, 184, 0.15);
}
.cryo-account__verify-hint {
  text-align: center;
  font-size: 1.4rem;
  color: #6c757d;
  margin-bottom: 1.5rem;
}
.cryo-account__verify-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.cryo-account__resend-btn {
  background: none;
  border: none;
  color: #0055b8 !important;
  font-size: 1.4rem;
  cursor: pointer;
  text-decoration: underline !important;
  margin-top: 0.5rem;
}
.cryo-account__resend-btn:hover {
  color: rgb(0, 61.4402173913, 133) !important;
}
