:root {
  --primary-bg: 
  linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
  url("../bilder/Background.png") center/cover no-repeat;
  --primary-text: white;
  --primary-card: rgba(32, 32, 32, 0.970);
  --header-bg: black;
  --footer-bg: #111;
  --highlight: #0f0;
  --hover-bg: #ccc;
  --dark-overlay: rgba(255,255,255,0.9);
  --light-border: rgba(0, 0, 0, 0.6);
}

html {
  font-size: 110%;
}


html, body {
  background: var(--primary-bg);
  color: var(--primary-text);
  font-family: 'Cormorant Infant', serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-wrapper {
  flex: 1;
}

h1  {
  text-align: center;
}
h2  {
  text-align: center;
  font-size: 0.8rem;
}
h3  {
  text-align: center;
}

header {
  background-color: var(--header-bg);
  padding: 1rem 0;
  text-align: center;
  position: relative;
  color: white;
}

.logo {
  width: 100%;
  max-width: 200px;
  display: block;
  margin: 0 auto;
}

.hamburger {
  position: fixed;
  top: 1rem;
  left: 1rem;
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
  background: rgba(0,0,0,0.5);
  padding: 0.5rem;
  border-radius: 4px;
}

.hamburger span {
  height: 4px;
  background: white;
  border-radius: 2px;
}

#side-menu {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100vh;
  background: rgba(0,0,0,0.9);
  padding-top: 4rem;
  transition: left 0.3s ease;
  z-index: 1000;
  text-align: left;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
}

#side-menu.open {
  left: 0;
}

#side-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

#side-menu li {
  margin: 1rem 0;
}

#side-menu a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  padding: 0.5rem 1.5rem;
  display: block;
  transition: background 0.2s;
}

#side-menu a:hover {
  background: rgba(255,255,255,0.1);
}


#side-menu .submenu {
  list-style: none;
  margin: 0;
  padding: 0 0 0 1.5rem;
  background: rgba(255,255,255,0.05);
}

#side-menu .submenu li {
  margin: 0.5rem 0;
}

#side-menu .submenu a {
  display: block;
  font-size: 1rem;
  color: #ddd;
  padding: 0.3rem 1.5rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

#side-menu .submenu a:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.intro,
.outro {
  background: var(--dark-overlay);
  color: var(--primary-text);
  border-radius: 8px;
  padding: 2rem 1rem;
  margin: 2rem auto;
  max-width: 800px;
  text-align: center;
}

.info-box {
  background: var(--primary-card);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 800px;
  color: var(--primary-text);
  text-align: center;
}

.categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 1rem;
  text-align: center;
  border-radius: 12px;
}


.category-card {
   flex: 0 1 300px; /* oder wia vü du mogst, z.B. 250px/350px */
  background: var(--primary-card);
  border: 2px solid var(--light-border);
  border-radius: 12px;
  padding: 1rem;
  color: var(--primary-text);
  text-decoration: none;
  transition: transform 0.2s, background 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.category-card:hover {
  background: rgba(0, 0, 0);
  transform: scale(1.03);
}

.category-card img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.category-card span {
  display: block;
  font-size: 1.1rem;
  font-weight: bold;
}

.item_add {
  background: white;
  color: black;
  font-weight: bold;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: background-color 0.3s, transform 0.2s;
  display: inline-block;
  margin-top: 0.5rem;
}


.item_add:hover {
  background-color: rgb(0, 0, 0);
  transform: scale(1.05);
  color: white
}

.item_price {
  transform: scale(1.55);
  color: rgb(0, 211, 18)
}


.cart-section {
  background: var(--primary-card);
  border-top: 2px solid #fff;
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 2rem auto 0;
  text-align: center;
}

.cart-section h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.cart-section h4 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.simpleCart_decrement,
.simpleCart_increment,
.simpleCart_remove {
  font-size: 0.85rem;
  background: var(--primary-card);
  color: #ccc;
  padding: 4px 12px;
  border: 1px solid #555;
  border-radius: 4px;
  cursor: pointer;
  margin-right: 0.5rem;
  transition: background 0.2s;
}

.simpleCart_decrement:hover,
.simpleCart_increment:hover,
.simpleCart_remove:hover {
  background: #444;
  color: white;
  border-color: #888;
}

.checkout-section {
  background: var(--primary-card);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem auto;
  max-width: 800px;
  text-align: center;
}

.simpleCart_checkout,
.goto_order {
  min-width: 180px;
  padding: 0.75rem 1.5rem;
}


.simpleCart_checkout:hover,
.goto_order:hover {
  background: var(--hover-bg);
}

#cart-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: white;
  color: var(--primary-text);
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
  z-index: 1000;
}

#cart-fab:hover {
  background: var(--hover-bg);
}

#cart-fab-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: red;
  color: white;
  padding: 2px 6px;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: bold;
}

.cart-thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}


@media (max-width: 768px) {
  .categories {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .category-card {
    width: 90%;
  }

  .checkout-section {
    flex-direction: column;
    gap: 1rem;
  }

  .gallery {
    flex-direction: column;
    align-items: center;
  }

  .gallery img {
    width: 80%;
  }

  #cart-fab {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  #cart-fab-badge {
    font-size: 0.7rem;
    padding: 1px 5px;
    top: -6px;
    right: -6px;
  }

  footer {
    padding: 1.5rem 0;
    font-size: 0.8rem;
  }

  #side-menu a {
    font-size: 1.5rem;
    padding: 1rem;
  }
}

.gallery {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.gallery img {
  width: 200px;
  border: 2px solid white;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s;
}

.gallery img:hover {
  transform: scale(1.05);
  border-color: var(--highlight);
}

#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.lightbox-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90%;
  max-height: 90%;
  text-align: center;
}

#lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border: 4px solid white;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  padding: 0 0.2rem;
}

#lightbox-title {
  margin: 1rem 0 0.5rem;
  color: white;
  font-size: 1.5rem;
}

#lightbox-text {
  color: #ddd;
  font-size: 1rem;
}

.info-box.social-box {
  background-color: var(--primary-card);
  border-radius: 12px;
  padding: 2rem;
  max-width: 800px;
  margin: 30px auto;
  text-align: center;
  overflow: visible;
}

.fb-page {
  margin: 1.5rem auto 0;
  max-width: 100%;
}
@media (max-width: 768px) {
  .fb-page {
    width: 100% !important;
  }
}

.social-box h2 {
  margin-bottom: 15px;
  font-size: 2.3rem;
  color: var(--primary-text);
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s;
  color: #fff;
}
.social-links .instagram { background: #E1306C; }
.social-links .instagram:hover { background: #c2255c; }
.social-links .facebook  { background: #4267B2; }
.social-links .facebook:hover  { background: #37569c; }


.info-box.shop-box {
  background: var(--primary-card);
  border-radius: 12px;
  padding: 25px;
  max-width: 800px;
  margin: 30px auto;
  text-align: center;
}

.shop-box h2 {
  margin-bottom: 15px;
  font-size: 1.4rem;
  color: var(--primary-text);
}

.shop-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.shop-image {
  background: 0 4px 12px rgba(182, 178, 178, 0.3);
  max-width: 120px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(143, 143, 143, 0.1);
}

.shop-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #28a745;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s, transform 0.2s;
}

.shop-btn:hover {
  background: #218838;
  transform: translateY(-2px);
}

.slider-box {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  padding: 0rem;
}

.slider {
  display: flex;
  width: auto;
}

.slide {
  flex: 0 0 100%;
  height: 300px;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes slideAnim {
  0%    { transform: translateX(0); }
  25%   { transform: translateX(-100%); }
  50%   { transform: translateX(-200%); }
  75%   { transform: translateX(-100%); }
  100%  { transform: translateX(0); }
}


.map-box {
  max-width: 800px;
  margin: 30px auto;
  padding: 20px;
  background: var(--primary-card);
  border-radius: 12px;
  text-align: center;
}

.map-box h2 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  color: var(--primary-text);
}

.map-container {
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.map-container iframe {
  display: block;
  border: 0;
}

.button-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 10px 0;
  background: #333;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.button-bar .btn {
  padding: 8px 16px;
  background: #fff;
  color: #000000;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background .2s;
}

.button-bar .btn:hover {
  background: #fff;
}

.modal {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  display: none; align-items: center; justify-content: center;
  z-index: 2000;
}
.modal.show { display: flex; }

.modal-content {
  background: var(--primary-card); padding: 20px;
  border-radius: 8px; max-width: 400px;
  text-align: center; position: relative;
}
.modal-content img {
  width: 100%; height: auto; margin-bottom: 15px;
  border-radius: 4px;
}
.modal-content h2 {
  margin: 0 0 10px; font-size: 1.4rem;
}
.modal-content p {
  margin: 0 0 15px;
}
.modal-content #modal-price {
  display: block; font-weight: bold; margin-bottom: 15px;
  color: rgb(0, 211, 18);
  font-size: 1.4rem;
}
.modal-close {
  position: absolute; top: 8px; right: 12px;
  cursor: pointer; font-size: 1.5rem;
}

@media (max-width: 768px) {
  .modal-content {
    max-width: 90%;
    max-height: 90vh;   /* damit’s net über den Bildschirm hinausschießt */
    overflow-y: auto;   /* scrollen aktivieren */
  }
  }

.simpleCart_items .headerRow {
  display: none;
}

.simpleCart_items .itemRow {
  background: var(--primary-card);
  color: var(--primary-text);
  margin: 1rem auto;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  max-width: 800px;
  text-align: center;
}

.simpleCart_items .itemRow .item-name,
.simpleCart_items .itemRow .item-price {
  display: block;
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}


.order-form .form-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.order-form .form-group label {
  width: 140px;
  font-weight: bold;
  color: var(--primary-text);
}

.order-form .form-group input,
.order-form .form-group textarea {
  flex: 1;
  max-width: calc(100% - 140px);
}

.checkout-section button {
  min-width: 180px;
  padding: 0.75rem 1.5rem;
  margin: 0 0.5rem;
}

@media (max-width: 768px) {
  .checkout-section {
    flex-direction: column;
    gap: 0.75rem;
  }
  .checkout-section button {
    width: 100%;
    margin: 0;
  }
}

.simpleCart_items .itemRow {
  background: var(--primary-card);
  color: var(--primary-text);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem auto;
  max-width: 800px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.simpleCart_items .itemRow .item-name {
  font-size: 1.8rem;
  margin-bottom: 0.25rem;
}
.simpleCart_items .itemRow .item-price {
  font-size: 1.2rem;
  color: rgb(6, 177, 14);
  margin-bottom: 0.5rem;
}

.simpleCart_items .itemRow .quantity,
.simpleCart_items .itemRow .total {
  margin: 0.25rem 0;
}

.simpleCart_items .itemRow .simpleCart_decrement,
.simpleCart_items .itemRow .simpleCart_increment,
.simpleCart_items .itemRow .simpleCart_remove {
  margin: 0.35rem 0.35rem 0.35rem 0;
}

.cart-section h2 {
  margin-bottom: 1rem;
}
.simpleCart_total {
  display: block;
  font-size: 1.5rem;
  margin: 1.5rem 0;
  color: rgb(6, 177, 14);
}

.simpleCart_items .itemRow .simpleCart_decrement,
.simpleCart_items .itemRow .quantity,
.simpleCart_items .itemRow .simpleCart_increment {
  display: inline-block;
  vertical-align: middle;
  margin: 0.25rem 0.5rem 0.25rem 0;
}
.simpleCart_items .itemRow .quantity {
  font-weight: bold;
}

.simpleCart_checkout,
.goto_order {
  background: var(--primary-card);     
  color: #ccc;              
  border: none;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  margin: 0.5rem;
  cursor: pointer;
  transition: background 0.2s;
  min-width: 150px;
  text-align: center;
}
.simpleCart_checkout:hover,
.goto_order:hover {
  background: #444;
  color: white;
}

@media (max-width: 768px) {
  .checkout-section {
    flex-direction: column;
    align-items: stretch;
  }
  .checkout-section button {
    width: 100%;
    margin: 0.25rem 0;
  }
}


.fb-page {
  margin: 1.5rem auto 0;
  max-width: 800px;
}
@media (max-width: 768px) {
  .fb-page {
    width: 100% !important;
  }
}

.categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.image-container {
  position: relative;
  width: auto;    
  height: auto;     
  overflow: hidden;
}

.image-container img {
  width: 80px;
  height: 100px;
  object-fit: cover; 
  display: block;
}

.btn-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary-card);
  color: #fff;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: .25rem;
  font-weight: bold;
}
.products {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  text-align: center;
}

.products-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: repeat(2, 200px);
  gap: 1rem;
}

.item--large {
  grid-row: span 2;
}

.item {
  position: relative;
  overflow: hidden;
}

.item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.overlay-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary-card);
  color: #fff;
  padding: 0.5rem 1rem;
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: 4px;
}

.item_add, #modal-add {
  background: #28a745;
  color: #fff;
  border: none;
  border-radius: .25rem;
  box-shadow: 0 2px 4px rgba(0,0,0,.1);
  transition: background .3s;
}
.item_add:hover, #modal-add:hover {
  background: #218838;
}

.item_add:disabled, #modal-add:disabled {
  opacity: .6;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .item_add, #modal-add {
    padding: 1rem 1.5rem;
    font-size: 1.2rem;
    border-radius: .5rem;
  }
}

.simpleCart_checkout,
.goto_order {
  background-color: #0070ba;
  color: #fff;
  border: none;
  border-radius: .25rem;
  padding: .75rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background .3s;
}

.simpleCart_checkout:hover,
.goto_order:hover {
  background-color: #000000;
}

.simpleCart_checkout { background-color: #0070ba; }
.goto_order       { background-color: #28a745; }

/* Graue Info-Box speziell für die Gallery */
.info-box.grey-box.gallery-simple {
  background-color: var(--primary-card);  /* hellgrau */
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem auto;
  max-width: 800px;  /* oder genau, wia deine Gallery sonst is */
}

/* Damit die Gallery weiterhin passt */
.info-box.grey-box.gallery-simple .gallery-container {
  position: relative;  /* bleibt wia vorher */
}

.info-box.grey-box.gallery-simple img {
  border-radius: 12px; /* bleibt wia vorher */
  max-width: 100%;     /* passt in die graue Box */
  height: 500px;       /* wie gehabt */
}

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #222;
    color: #eee;
    padding: 15px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    display: none; /* Wird erst per JS eingeblendet */
    z-index: 1000;
  }
  #cookie-banner p {
    margin: 0;
    padding: 0;
    display: inline-block;
  }
  #cookie-banner .buttons {
    float: right;
  }
  #cookie-banner button {
    margin-left: 10px;
    background: #f1d600;
    border: none;
    padding: 8px 12px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 3px;
  }
  #cookie-banner button.decline {
    background: #555;
    color: #eee;
  }
  #cookie-banner a {
    color: #f1d600;
    text-decoration: underline;
  }

/* Footer */
.site-footer {
  background: #222;
  color: #ccc;
  padding: 40px 0;
  font-size: 0.9rem;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 2rem;
}
.footer-col { flex: 1; }

/* Links linksbündig, weiß */
.footer-links { text-align: left; }
.footer-links ul { list-style: none; margin: 0; padding: 0; }
.footer-links li + li { margin-top: 0.5rem; }
.footer-links a { color: #fff; text-decoration: none; }
.footer-links a:hover { color: #ccc; }

/* Text mittig */
.footer-center { text-align: center; }
.footer-center p { margin: 0; line-height: 1.5; color: #fff; }

/* Icons rechts */
.footer-social { text-align: right; }
.footer-social a {
  margin-left: 1rem;
  font-size: 1.5rem;
  color: #ccc;
  transition: color 0.2s;
}
.footer-social a:hover { color: #fff; }

/* ganz unten Copyright */
.footer-bottom {
  border-top: 1px solid #444;
  text-align: center;
  padding: 10px 0;
  margin-top: 20px;
  font-size: 0.8rem;
}
.footer-bottom a { color: #ccc; text-decoration: none; }
.footer-bottom a:hover { color: #fff; }
/* Web (ab z.B. 769px Breite) – Footer-Center wird angezeigt */
@media (min-width: 769px) {
  .footer-center {
    display: block;  /* oder flex, je nachdem */
  }
}

/* Mobile (bis 768px Breite) – Footer-Center verstecken */
@media (max-width: 768px) {
  .footer-center {
    display: none !important;
  }
}

 .gallery-simple {
      text-align: center;
      margin: 2rem auto;
      max-width: 800px;
      position: relative;
    }
    .gallery-container {
      position: relative;
      display: inline-block;
    }
    .gallery-container img {
      display: block;
      max-width: 100%;
      height: auto;
      border-radius: 8px;
    }
    .gallery-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(128,128,128,0.6);
      color: white;
      border: none;
      font-size: 2rem;
      line-height: 1;
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      user-select: none;
    }
    .gallery-nav.prev { left: 0.5rem; }
    .gallery-nav.next { right: 0.5rem; }
    .gallery-caption {
      margin-top: 0.75rem;
      font-size: 1rem;
      color: white;
    }

.page-fuehrstrick .modal-content label[for="modal-size"],
.page-fuehrstrick .modal-content #modal-size,
.page-fuehrstrick .modal-content .size-error {
  display: none !important;
}

.testimonial-bubbles {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
  text-align: center;
}

.testimonial-bubbles h1 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.bubble {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(165, 165, 165, 0.1);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  margin: 1rem 0;
  position: relative;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.bubble::after {
  content: "";
  position: absolute;
  left: 2rem;
  bottom: -10px;
  border: 10px solid transparent;
  border-top-color: rgba(255, 255, 255, 0.07);
}

.avatar {
  flex-shrink: 0;
  background: var(--highlight);
  color: #000;
  font-weight: bold;
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  box-shadow: 0 0 0 2px white;
}

.text .quote {
  font-style: italic;
  color: #eee;
  margin: 0 0 0.5rem;
}

.text .name {
  font-size: 0.9rem;
  color: #bbb;
  margin: 0;
}
.testimonial-bubbles {
  padding: 1rem 1.5rem;
}

