:root {
  --color-primary: #1b3665;
  --color-accent: #52b848;
  --color-white: #ffffff;
  --color-muted: #f4f6fb;
  --color-text: #1f2a44;
  --radius-soft: 8px;
  --shadow-soft: 0 12px 30px rgba(27, 54, 101, 0.12);
  --shadow-hover: 0 18px 40px rgba(27, 54, 101, 0.18);
  --transition-base: 0.3s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-soft);
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 80%;
  margin: 0 auto;
}

section {
  padding: 40px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-white);
  box-shadow: 0 10px 30px rgba(27, 54, 101, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  color: var(--color-primary);
}

.logo__image {
  height: 46px;
  width: auto;
  display: block;
}

.logo__name {
  font-weight: 600;
  font-size: 1.2rem;
}

.logo__slogan {
  font-size: 0.85rem;
  color: rgba(27, 54, 101, 0.7);
}

.nav__menu {
  display: flex;
  gap: 24px;
  font-weight: 500;
  color: var(--color-primary);
  align-items: center;
}

.nav__contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-primary);
  font-weight: 600;
  white-space: nowrap;
}

.nav__contact-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.nav__contact-link {
  transition: color var(--transition-base);
}

.nav__contact-link:hover {
  color: var(--color-accent);
}

.nav__menu a {
  transition: color var(--transition-base);
}

.nav__dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  border: none;
  background: transparent;
  color: var(--color-primary);
  font: inherit;
  font-weight: inherit;
  cursor: pointer;
  transition: color var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav__dropdown-toggle:hover {
  color: var(--color-accent);
}

.nav__dropdown-toggle::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform var(--transition-base);
  margin-top: -2px;
}

.nav__dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--color-white);
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-soft);
  padding: 10px 0;
  z-index: 1200;
}

.nav__dropdown-group {
  padding: 6px 0;
}

.nav__dropdown-group + .nav__dropdown-group {
  border-top: 1px solid rgba(27, 54, 101, 0.08);
}

.nav__dropdown-category {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 16px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(27, 54, 101, 0.6);
  font-weight: 600;
  cursor: pointer;
}

.nav__dropdown-category::-webkit-details-marker {
  display: none;
}

.nav__dropdown-category::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform var(--transition-base);
  margin-left: 8px;
}

.nav__dropdown-group[open] .nav__dropdown-category::after {
  transform: rotate(-135deg);
}

.nav__dropdown-group a {
  padding-left: 24px;
}

.nav__dropdown-menu a {
  display: block;
  padding: 8px 16px;
  white-space: nowrap;
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu,
.nav__dropdown.is-open .nav__dropdown-menu {
  display: block;
}

.nav__dropdown:hover .nav__dropdown-toggle::after,
.nav__dropdown:focus-within .nav__dropdown-toggle::after,
.nav__dropdown.is-open .nav__dropdown-toggle::after {
  transform: rotate(-135deg);
}

.nav__menu a:hover {
  color: var(--color-accent);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: transform var(--transition-base);
}

.hero {
  position: relative;
  background-image: url("../images/HeroBanner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.852) 0%,
    rgba(255, 255, 255, 0.203) 100%
  );
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 40px;
  align-items: center;
  justify-items: center;
  text-align: center;
  padding-bottom: 110px;
}

.partners {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 20px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  min-height: 100px;
  background: var(--color-white);
  border-top-right-radius: 25px;
  border-top-left-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners::before {
  position: absolute;
  content: "";
  bottom: 0px;
  left: -20px;
  background: transparent;
  width: 20px;
  height: 20px;
  border-bottom-right-radius: 25px;
  box-shadow: 5px 5px 0 5px #ffffff;
  z-index: 10;
}

.partners::after {
  position: absolute;
  content: "";
  bottom: 0px;
  right: -20px;
  background: transparent;
  width: 20px;
  height: 20px;
  border-bottom-right-radius: 25px;
  box-shadow: 5px 5px 0 5px #ffffff;
  transform: rotate(90deg);
  z-index: 10;
}

.partners__scroll {
  display: flex;
  align-items: center;
  gap: 60px;
  padding-right: 20px;
  padding-left: 20px;
  overflow: hidden;
}

.partners__logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity var(--transition-base);
}

.partners__logo:hover {
  opacity: 1;
}

.promotion__badge {
  display: flex;
  align-items: center;
  border-left: 1px solid rgba(27, 54, 101, 0.5);
  padding-left: 20px;
}
.hero__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 40px;
}

.hero__logo {
  width: min(200px, 50vw);
  height: auto;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 10rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 80%;
  text-transform: uppercase;
  color: var(--color-primary);
  background-image: linear-gradient(
    45deg,
    #1b3665 15%,
    #1b3665 50%,
    #52b848 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-shadow: 0px 0px 10px rgba(27, 54, 101, 0.5);
}
.hero h5 {
  font-size: clamp(1rem, 2vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 80%;
  text-transform: uppercase;
  color: var(--color-primary);
  background-image: linear-gradient(
    45deg,
    #1b3665 15%,
    #1b3665 50%,
    #52b848 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-shadow: 0px 0px 10px rgba(27, 54, 101, 0.5);
}

.hero__subtitle {
  margin: 20px 0 30px;
  color: rgba(27, 54, 101, 0.75);
}

.hero__visual {
  display: flex;
  justify-content: space-between;
  width: 95%;
  align-items: center;
  /* background: var(--color-white);
  border-radius: var(--radius-soft); 
  color: var(--color-primary);
  box-shadow: var(--shadow-soft);*/
  padding-bottom: 5px;
  padding-top: 30px;
  padding-left: 10px;
  padding-right: 10px;
  min-width: 240px;
  text-align: center;
}

.hero__panel {
  padding: 10px;
  width: 21%;
  text-align: center;
  container-type: inline-size;
}
.hero__panel span {
  font-size: clamp(8px, 12cqw, 64px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 80%;
  text-transform: uppercase;
  color: var(--color-primary);
  background-image: linear-gradient(
    45deg,
    #1b3665 15%,
    #1b3665 50%,
    #52b848 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-shadow: 0px 0px 10px rgba(27, 54, 101, 0.5);
}

.partners__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding-bottom: 50px;
  padding-top: 2px;
}
.section-header {
  margin-bottom: 32px;
  max-width: 1000px;
}

.section-header h2 {
  color: var(--color-primary);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.section-header p {
  margin-top: 12px;
  color: rgba(27, 54, 101, 0.7);
}

.products .section-header {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.products__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

.product-card {
  padding: 10px;
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

.product-card__link {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--color-white);
  border-radius: 10px;
  overflow: hidden;
}

.product-card__link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-white);
  border-radius: 10px;
  z-index: 0;
}

.product-card__link img {
  position: absolute;
  inset: 0;
  padding: 6px;
  object-fit: cover;
  z-index: 1;
}

.product-card__body {
  position: absolute;
  bottom: -6px;
  right: 0;
  width: 85%;
  /* height: 80px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 12px 20px;
  background: var(--color-white);
  z-index: 2;
  pointer-events: none;
}

.product-card__body::before {
  position: absolute;
  content: "";
  bottom: 7px;
  left: -20px;
  background: transparent;
  width: 20px;
  height: 20px;
  border-bottom-right-radius: 12px;
  box-shadow: 5px 5px 0 5px #ffffff;
}

.product-card__body::after {
  position: absolute;
  content: "";
  top: -20px;
  right: 6px;
  background: transparent;
  width: 20px;
  height: 20px;
  border-bottom-right-radius: 12px;
  box-shadow: 5px 5px 0 5px #ffffff;
}

.product-card h3 {
  color: var(--color-primary);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
  line-height: 1.2;
}

.product-card p {
  color: var(--color-accent);
  font-size: 0.8rem;
  font-weight: 500;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

@media (min-width: 768px) {
  .product-card {
    border-radius: 16px;
  }

  .product-card__link {
    border-radius: 14px;
  }

  .product-card__link::before {
    border-radius: 14px;
  }

  .product-card__link img {
    border-radius: 12px;
  }

  .product-card__body {
    width: auto;
    max-width: 85%;
    border-top-left-radius: 12px;
    border-bottom-right-radius: 12px;
    right: -6px;
    /* height: 75px; */
    padding: 15px 20px;
    background: var(--color-white);
  }

  .product-card__body::before {
    position: absolute;
    content: "";
    bottom: 7px;
    left: -20px;
    background: transparent;
    width: 20px;
    height: 20px;
    border-bottom-right-radius: 12px;
    box-shadow: 5px 5px 0 5px #ffffff;
  }

  .product-card__body::after {
    position: absolute;
    content: "";
    top: -20px;
    right: 12px;
    background: transparent;
    width: 20px;
    height: 20px;
    border-bottom-right-radius: 12px;
    box-shadow: 5px 5px 0 5px #ffffff;
  }

  .product-card h3 {
    font-size: 1.05rem;
  }

  .product-card p {
    font-size: 0.85rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-soft);
  padding: 12px 22px;
  font-weight: 600;
  border: none;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    background var(--transition-base),
    color var(--transition-base);
  width: fit-content;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 10px 20px rgba(82, 184, 72, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(82, 184, 72, 0.35);
}

.btn--secondary {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
}

.btn--secondary:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.product-detail__layout {
  display: grid;
  gap: 32px;
}

.product-detail__image img {
  width: 100%;
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-soft);
}

.product-detail__content h1 {
  color: var(--color-primary);
  font-size: clamp(2rem, 4vw, 2.6rem);
}

.product-detail__content p {
  margin: 18px 0 24px;
  color: rgba(27, 54, 101, 0.75);
}

.product-detail__specs {
  list-style: none;
  margin-bottom: 28px;
  padding-left: 0;
  display: grid;
  gap: 10px;
}

.product-detail__specs li {
  background: var(--color-muted);
  padding: 12px 16px;
  border-radius: var(--radius-soft);
}

.product-detail__missing {
  text-align: center;
  padding: 60px 0;
}

.site-footer {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 60px 0 30px;
}

.footer__grid {
  display: grid;
  gap: 30px;
}

.footer__grid h3,
.footer__grid h4 {
  margin-bottom: 12px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__logo {
  height: 150px;
  width: auto;
  display: block;
}

.footer__grid a {
  color: var(--color-white);
  opacity: 0.9;
  transition: color var(--transition-base);
}

.footer__grid a:hover {
  color: var(--color-accent);
}

.footer__bottom {
  text-align: center;
  padding-top: 20px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  section {
    padding: 40px 0;
  }

  .hero__content {
    grid-template-columns: 1fr;
  }

  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-detail__layout {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .footer__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1280px) {
  .products__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .nav__menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    width: 220px;
    box-shadow: var(--shadow-soft);
    border-radius: var(--radius-soft);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity var(--transition-base),
      transform var(--transition-base);
    align-items: flex-start;
  }

  .nav__menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav__toggle {
    display: flex;
  }

  .nav__contact {
    order: 3;
    margin-left: auto;
  }

  .nav__dropdown {
    width: 100%;
  }

  .nav__dropdown-toggle {
    width: 100%;
    text-align: left;
    padding: 0;
  }

  .nav__dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 8px;
    padding: 0 0 0 12px;
    box-shadow: none;
    border-radius: 0;
    background: transparent;
  }

  .nav__dropdown-menu a {
    padding: 6px 0;
    white-space: normal;
  }
}

/* ========================================
   MULTI-STEP FORM SYSTEM
======================================== */

.anfrage-section {
  background: var(--color-muted);
}

.anfrage-section .section-header {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.form-wrapper {
  background: var(--color-white);
  border-radius: var(--radius-soft);
  padding: 40px;
  box-shadow: var(--shadow-soft);
  max-width: 1340px;
  margin: 0 auto;
}

/* Progress Indicators */
.form-progress {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.progress-step {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-muted);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition-base);
  position: relative;
}

.progress-step::after {
  content: "";
  position: absolute;
  left: 100%;
  width: 12px;
  height: 2px;
  background: var(--color-muted);
  transition: background var(--transition-base);
}

.progress-step:last-child::after {
  display: none;
}

.progress-step.active {
  background: var(--color-accent);
  color: var(--color-white);
}

.progress-step.completed {
  background: var(--color-primary);
  color: var(--color-white);
}

.progress-step.completed::after {
  background: var(--color-primary);
}

/* Form Container */
.form-container {
  min-height: 300px;
}

.form-step {
  display: none;
  animation: fadeIn 0.4s ease;
}

.form-step.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-step__caption {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--color-primary);
  margin-bottom: 8px;
  text-align: center;
}

.form-step__subcaption {
  font-size: 0.92rem;
  color: rgba(27, 54, 101, 0.72);
  text-align: center;
  margin: 0 0 24px;
}

/* Option Cards */
.form-options {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.form-option {
  background: var(--color-white);
  border: 2px solid #e0e5f0;
  border-radius: var(--radius-soft);
  padding: 20px;
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  font-weight: 500;
  color: var(--color-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.form-option__image {
  width: 100%;
  max-height: 150px;
  object-fit: cover;
  border-radius: calc(var(--radius-soft) - 2px);
}

.form-option__label {
  font-weight: 500;
  color: var(--color-text);
}

.form-option:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: var(--color-primary);
}

.form-option.selected {
  border-color: var(--color-accent);
  background: rgba(82, 184, 72, 0.05);
  box-shadow: 0 0 0 3px rgba(82, 184, 72, 0.15);
}

.form-option.selected:hover {
  border-color: var(--color-accent);
}

/* Custom Input Option */
.form-option--custom {
  border-style: dashed;
}

.form-option--custom.selected {
  border-style: solid;
}

.custom-input-field {
  display: none;
  margin-top: 16px;
  animation: slideDown 0.3s ease;
}

.custom-input-field.visible {
  display: block;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 100px;
  }
}

.custom-input-field input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e5f0;
  border-radius: var(--radius-soft);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  transition: border-color var(--transition-base);
}

.custom-input-field input:focus {
  outline: none;
  border-color: var(--color-accent);
}

/* Text Input Fields */
.form-text-inputs {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-input-label {
  font-weight: 500;
  color: var(--color-primary);
  font-size: 0.95rem;
}

.form-text-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e5f0;
  border-radius: var(--radius-soft);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  transition: border-color var(--transition-base);
  background: var(--color-white);
}

.form-text-input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(82, 184, 72, 0.1);
}

.form-text-input::placeholder {
  color: rgba(27, 54, 101, 0.4);
}

/* Summary Step */
.form-summary {
  background: var(--color-muted);
  border-radius: var(--radius-soft);
  padding: 28px;
}

.form-summary h3 {
  color: var(--color-primary);
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(27, 54, 101, 0.1);
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-item__label {
  font-weight: 500;
  color: var(--color-text);
}

.summary-item__value {
  color: var(--color-primary);
  font-weight: 600;
}

/* Form Actions */
.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
}

.form-actions .btn {
  flex: 1;
  max-width: 200px;
}

@media (min-width: 768px) {
  .form-options {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .form-options {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .form-wrapper {
    padding: 24px;
  }

  .form-actions {
    flex-direction: column-reverse;
  }

  .form-actions .btn {
    max-width: 100%;
  }

  .progress-step {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }

  .progress-step::after {
    width: 8px;
  }
}

@media (max-width: 430px) {
  .product-card {
    border-radius: 10px;
  }

  .product-card__link {
    border-radius: 10px;
  }

  .product-card__link::before {
    border-radius: 10px;
  }

  .product-card__link img {
    border-radius: 10px;
  }

  .product-card__body {
    width: auto;
    max-width: 85%;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    right: -6px;
    /* height: 75px; */
    padding: 8px 10px;
    background: var(--color-white);
  }

  .product-card__body::before {
    position: absolute;
    content: "";
    bottom: 7px;
    left: -20px;
    background: transparent;
    width: 20px;
    height: 20px;
    border-bottom-right-radius: 10px;
    box-shadow: 5px 5px 0 5px #ffffff;
  }

  .product-card__body::after {
    position: absolute;
    content: "";
    top: -20px;
    right: 12px;
    background: transparent;
    width: 20px;
    height: 20px;
    border-bottom-right-radius: 12px;
    box-shadow: 5px 5px 0 5px #ffffff;
  }

  .product-card h3 {
    font-size: 1.05rem;
  }

  .product-card p {
    font-size: 0.85rem;
  }
}
