/*

Tooplate 2137 Barista

https://www.tooplate.com/view/2137-barista-cafe

*/

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )
  --white-color:                  #ffffff;
  --primary-color:                #FF8000;
  --secondary-color:              #DDA15E;
  --section-bg-color:             #b78752;
  --custom-btn-bg-color:          #FF8000;
  --custom-btn-bg-hover-color:    #DDA15E;
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --border-color:                 #7fffd4;
  --link-hover-color:             #E76F51;
             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #FF8000;
  --secondary-color:              #FF8000;
  --section-bg-color:             #b78752;
  --custom-btn-bg-color:          #FF8000;
  --custom-btn-bg-hover-color:    #DDA15E;
  --dark-color:                   #333333;
  --p-color:                      #717275;
  --border-color:                 #7fffd4;
  --link-hover-color:             #E76F51;

  --body-font-family:             'Plus Jakarta Sans', sans-serif;

  --h1-font-size:                 68px;
  --h2-font-size:                 46px;
  --h3-font-size:                 32px;
  --h4-font-size:                 28px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  20px;
  --btn-font-size:                16px;
  --form-btn-font-size:           18px;
  --menu-font-size:               16px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-thin:             200;
  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-bold:             700;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family); 
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}

h1 {
  font-size: var(--h1-font-size);
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-termine {
    background-color: #ececec;
}

.section-overlay {
  background-color: var(--dark-color);
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.65;
}

.section-overlay + .container {
  position: relative;
  z-index: 22;
}

.back-top-icon {
  font-size: var(--h2-font-size);
}


/*---------------------------------------
  TIMELINE               
-----------------------------------------*/
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 5px;
  background-color: var(--white-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

.timeline-container {
  padding: 10px 40px;
  padding-top: 0;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline-container::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -12px;
  background-color: var(--white-color);
  border: 5px solid #ececec;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.timeline-container-left {
  left: 0;
}

.timeline-container-right {
  left: 50%;
}

.timeline-container-left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 9px;
  width: 0;
  z-index: 1;
  right: 25px;
  border: medium solid white;
  border-width: 20px 0 20px 20px;
  border-color: transparent transparent transparent white;
}

.timeline-container-right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 9px;
  width: 0;
  z-index: 1;
  left: 25px;
  border: medium solid white;
  border-width: 20px 20px 20px 0;
  border-color: transparent white transparent transparent;
}

.timeline-container-right::after {
  left: -13px;
}

.timeline-content {
  padding: 5px;
  background-color: var(--white-color);
  position: relative;
  border-radius: var(--border-radius-medium);
}

@media screen and (max-width: 991px) {
  .timeline::after {
    left: 31px;
  }

  .timeline-container {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  .timeline-container::before {
    left: 58px;
    border: medium solid white;
    border-width: 20px 20px 20px 0;
    border-color: transparent white transparent transparent;
  }

  .timeline-container-left::after, .timeline-container-right::after {
    left: 6px;
  }

  .timeline-container-right {
    left: 0%;
  }
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 12px 28px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--white-color);
  color: var(--white-color);
}

.custom-border-btn:hover {
  background: var(--white-color);
  color: var(--secondary-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}

.custom-btn-italic {
  font-style: italic;
}


/*---------------------------------------
  NAVIGATION BAR & OFFCANVAS              
-----------------------------------------*/
.sticky-wrapper {
  position: absolute;
  z-index: 999999;
  top: 0;
  right: 0;
  left: 0;
}

.sticky-wrapper.is-sticky .container {
  background: rgba(0, 0, 0, 0.65);
  border-radius: var(--border-radius-medium);
  padding: 0px 30px;
}

.navbar {
  background: transparent;
  z-index: 999999;
  padding-top: 30px;
  padding-bottom: 30px;
}

.navbar .container {
  /* background: rgba(0, 0, 0, 0.35); */
  background: rgba(0, 0, 0, .35);
  /* border: solid 1px #fff; */
  border-radius: var(--border-radius-medium);
  padding: 0px 30px;
}

.navbar-brand,
.navbar-brand:hover {
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
  display: block;
  color: var(--white-color);
}

.navbar .navbar-brand-image {
  filter: brightness(0) invert(1);
}

.navbar-brand-image {
  height: 42px;
  width: auto;
  margin-right: 10px;
}

.navbar .custom-btn {
  padding: 10px 20px;
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 10px;
  padding: 10px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  /* color: #666; */
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-bold);
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  color: var(--secondary-color);
}

.navbar .dropdown-menu {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  border: 0;
  display: inherit;
  opacity: 0;
  min-width: 9rem;
  margin-top: 20px;
  padding: 13px 0 10px 0;
  transition: all 0.3s;
  pointer-events: none;
}

.navbar .dropdown-menu::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 15px solid var(--white-color);
  position: absolute;
  top: -10px;
  left: 10px;
}

.navbar .dropdown-item {
  display: inline-block;
  color: var(--p-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  position: relative;
}

.navbar .dropdown-item.active, 
.navbar .dropdown-item:active,
.navbar .dropdown-item:focus, 
.navbar .dropdown-item:hover {
  background: transparent;
  color: var(--link-hover-color);
}

.navbar .dropdown-toggle::after {
  content: "\f282";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-size: var(--menu-font-size);
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: 2px;
  border: 0;
}

@media screen and (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    margin-top: 0;
    pointer-events: auto;
  }
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}

/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
  background-color: var(--dark-color);
  position: relative;
  overflow: hidden;
  min-height: 620px;
  text-align: center;
}

/* .hero-section::after {
  background-color: rgba(0, 0, 0, 0.65);
  border-radius: var(--border-radius-medium);
  content: "";
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-55%, -50%) rotate(45deg);
  width: 250px;
  height: 350px;
  pointer-events: none;
} */

@media screen and (min-width: 991px) {
  .hero-section {
    height: 100vh;
  }
}

.hero-section h1 {
  color: var(--white-color);
}

.small-text {
  color: var(--secondary-color);
}

.hero-section .custom-border-btn {
  border-color: transparent;
}

.hero-section .container {
  position: relative;
  z-index: 9;
}

.hero-slides {
  width: 100%;
  height: 100%;
  position: absolute !important;
}

.opening-hours-list {
  margin: 0;
  padding: 0;
}

.opening-hours-list li {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-normal);
  margin-bottom: 10px;
}

.opening-hours-list li .underline {
  background-color: rgba(255, 255, 255, 0.75);
  width: 35%;
  height: 1px;
  margin: auto 15px 0 15px;
}


.termin-container {
  background-color: rgba(0,0,0,0.65);
  border-radius: 20px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  position: relative;
  width: 100%;
  height: 70vh;
  top: 15vh;
  overflow: hidden;
  box-sizing: border-box;
}
#event-agenda ul li {
  font-size: 1em;
}

#fristen-container {
  margin-top: 10px; 
  margin-bottom: 15px; 
  flex: 0 0 auto;
  margin-top: 10px;
  /* margin-left: -20px;
  margin-right: -20px; */
  margin-bottom: 5px;
}

#veranstaltungen {
  font-size: 14px;
}  

.termin-inner {
  position: absolute;
  inset: 10px;
  display: flex;
  flex-direction: column;
  min-height: 0;
  box-sizing: border-box;
}

#veranstaltungen-header {
  flex: 0 0 auto;
  color: #fff;
  font-family: Arial, sans-serif;
}

.header-inner {
  position: relative;
  margin: 10px;
}

#ev {
  margin: 0;
  font-size: 1.5em;
  /* line-height: 70px; */
  font-weight: bold;
  color: #fff;
}

#event-countdown {
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 10;
    min-width: 100px;
    font-size: 1em;
    line-height: 30px;
    font-weight: bold;
    color: #fff;
    background-color: #FA9545;
    text-align: center;
    border-radius: 15px;
    padding-left: 10px;
    padding-right: 10px;
}

#highlight-event {
  flex: 1 1 auto;
  display: flex;
  flex-direction: row;
  min-height: 0;
}

.chevron {
  flex: 0 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
}

.chevron i {
  font-size: 24px;
}

.event-main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.event-top {
  flex: 0 0 auto;
}

#event-title {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 2em;
  font-weight: bold;
  color: #fff;
}

#event-link {
  font-size: 0.9em;
}
/* .row {
  padding-top: 5px;
  display: flex;
  flex-direction: row;
} */

.label {
  width: 60px;
  font-weight: bold;
  font-size: 1.2em;
  text-align: left;
  color: #fff;
  flex-shrink: 0;
}

.label.empty {
  font-size: 1em;
  font-weight: normal;
}

#event-date,
#event-location {
  font-weight: bold;
  font-size: 1.2em;
  text-align: left;
}

#event-time,
#event-location-address {
  font-size: 1em;
  font-weight: normal;
}

#veranstaltungen-detail {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  margin-top: 30px;
}

#event-description,
#event-agenda {
  color: #999;
  text-align: left;
  font-size: 1.2em;
}

#event-agenda {
  font-style: italic;
}

#fristen-container {
    flex: 0 0 auto;
    margin-top: 10px;
    /* margin-left: -20px;
    margin-right: -20px; */
    margin-bottom: 5px;
}

.event-row {
  padding-top: 5px;
  display: flex;
  flex-direction: row;
}

.event-row p {
  margin: 0;
  color: #999;
}

/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about-section {
  background-color: #fff;
  position: relative;
}

.about-section .ratio {
  border-radius: var(--border-radius-medium);
}

.custom-video {
  border-radius: var(--border-radius-medium);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-wrap {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.about-video-info {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(188, 108, 37, 1));
  border-radius: var(--border-radius-medium);
  bottom: 0;
  height: auto;
  padding: 40px;
}

.about-video-info h4 {
  color: var(--white-color);
}

.about-section h6 {
  color: var(--secondary-color);
}

.team-block-wrap {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  max-height: 450px;
  cursor: pointer;
}

.team-block-wrap:hover .team-block-image {
  transform: scale(1.2);
}

.team-block-image-wrap {
  width: 100%;
}

.team-block-image {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}

.team-block-info {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(188, 108, 37, 1));
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 30px;
}

.team-block-info .badge {
  margin: auto;
  top: 2px;
  bottom: 0;
}


/*---------------------------------------
  OUR MENU              
-----------------------------------------*/
.menu-section {
  background-image: url('../images/happy-waitress-giving-coffee-customers-while-serving-them-coffee-shop.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}

.menu-block-wrap {
  background: rgba(0, 0, 0, 0.65);
  border-radius: var(--border-radius-medium);
  padding: 45px;
}

.menu-block .border-top {
  border-top-color: rgba(255, 255, 255, 0.35) !important;
}

.menu-block h6 {
  color: var(--white-color);
}

.menu-block small {
  color: rgba(255, 255, 255, 0.35);
}

.menu-block strong {
  color: var(--secondary-color);
}

.menu-block-image {
  border-radius: 100%;
  width: 350px;
  height: 350px;
  object-fit: cover;
  display: block;
  margin: auto;
  cursor: pointer;
}

.badge {
  background-color: var(--primary-color);
  font-size: 12px;
  position: relative;
  bottom: 4px;
  padding-bottom: 6px;
}

.badge::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -5px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid var(--primary-color);
}


/*---------------------------------------
  REVIEWS              
-----------------------------------------*/
.reviews-section {
  background-color: #7c5c52;
}

.reviews-block {
  /* background-color: var(--section-bg-color); */
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.reviews-block .border-top {
  border-top-color: rgba(255, 255, 255, 0.35) !important;
}

.reviews-block-image-wrap {
  background-image: url('../images/mid-section-waitress-wiping-espresso-machine-with-napkin-cafa-c.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 30px;
}

.reviews-block-image {
  border-radius: var(--border-radius-large);
  width: 65px;
  height: 65px;
  object-fit: cover;
  margin-right: 10px;
}

.reviews-block-info {
  padding: 20px 30px;
}

.reviews-block-info p {
  font-size: var(--btn-font-size);
  font-style: italic;
  /* color: rgba(255, 255, 255, 0.75); */
  color: rgba(0, 0, 0, 0.75);
}

.reviews-group i {
  color: var(--white-color);
}


/*---------------------------------------
  BOOKING SECTION              
-----------------------------------------*/
.booking-section {
  background-image: url('../images/business-2024-10-16-09-47-52-utc.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.booking-form-wrap {
  background-color: rgba(0, 0, 0, 0.65);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  margin-top: 100px;
}

.booking-form {
  padding: 55px 65px;
}

.booking-form-image-wrap {
  position: relative;
  height: 100%;
}

.booking-form-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-form-text span {
  color: var(--white-color);
  font-size: var(--btn-font-size);
}

.reservation-page .custom-border-btn {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.reservation-page .custom-border-btn:hover {
  border-color: transparent;
}


/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.section-monatsgalerie {
  background-color: #333;
}
.contact-section {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(188, 108, 37, 1)), url('../images/young-female-barista-wear-face-mask-serving-take-away-hot-coffee-paper-cup-consumer-cafe.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.google-map {
  border-radius: var(--border-radius-medium);
  filter: grayscale(100);
}

.contact-block-wrap {
  background: var(--primary-color);
  border-radius: var(--border-radius-medium);
  padding: 0;
  min-height: 200px;
}

.contact-block {
  background: var(--secondary-color);
  border-radius: var(--border-radius-medium);
  transform: rotate(8deg);
  height: 100%;
  padding: 20px 40px;
}

.contact-block h6 {
  transform: rotate(-8deg);
}

.contact-block .custom-icon {
  background: var(--primary-color);
  border-radius: var(--border-radius-large);
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  position: relative;
}

.contact-block strong {
  display: block;
  color: var(--white-color);
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  color: var(--p-color);
  border-radius: var(--border-radius-small);
  margin-bottom: 30px;
  padding-top: 13px;
  padding-bottom: 13px;
  box-shadow: none;
  outline: none;
  transition: all 0.3s;
}

.custom-form .form-control:hover,
.custom-form .form-control:focus {
  background: var(--primary-color);
  border-color: transparent;
}

.custom-form .form-label {
  color: var(--white-color);
  font-style: italic;
  margin-bottom: 15px;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--form-btn-font-size);
  font-weight: var(--font-weight-bold);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--white-color);
  border-color: transparent;
  color: var(--primary-color);
}

.contact-form .form-control,
.booking-form .form-control {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.25);
}

.booking-form .form-control {
  color: var(--white-color);
}

.custom-form input::-webkit-input-placeholder,
.custom-form textarea::-webkit-input-placeholder {
   color: var(--white-color);
}

.booking-form input:-moz-placeholder,
.booking-form textarea:-moz-placeholder {
  color: var(--white-color);
}


/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  background-color: var(--dark-color);
  padding-top: 100px;
  padding-bottom: 100px;
}

.site-footer strong {
  color: var(--white-color);
}

.site-footer p,
.site-footer-link {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--btn-font-size);
}

.site-footer-link {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--btn-font-size);
  transition: all 0.3s;
}

.site-footer-link:hover {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
}

.copyright-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--menu-font-size);
}

.copyright-text a {
	color: rgba(255, 200, 160, 0.75);
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--primary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--menu-font-size);
  display: block;
  margin: 0 5px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 35px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--white-color);
  color: var(--primary-color);
}

.social-icon-link span {
  display: block;
}


.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #ff8000;
    --bs-btn-border-color: #ff8000;

    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #e67300;
    --bs-btn-hover-border-color: #d96c00;

    --bs-btn-focus-shadow-rgb: 255, 128, 0;

    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #d96c00;
    --bs-btn-active-border-color: #cc6600;

    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #ff8000;
    --bs-btn-disabled-border-color: #ff8000;
}

.btn-primary:hover {
    box-shadow: 0 4px 10px rgba(255,128,0,0.3);
}

/*
section {
  scroll-margin-top: 300px;
}
*/

/*---------------------------------------
  SHOP
-----------------------------------------*/
.shop-page {
  background: #f7f7f5;
  color: #222;
  min-height: 100vh;
}

.shop-hero {
  padding: 80px 20px 10px 60px;
  background:
    linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
    url('../images/slides/old-camera-to-take-photos-with-two-small-lenses-on-2024-11-27-02-08-12-utc.jpg') center center / cover no-repeat;
  color: #fff;
}

.shop-hero-small {
  padding: 100px 20px 40px;
}

.shop-kicker {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  color: #ff8000;
  margin-bottom: 10px;
}

.shop-title {
  font-size: clamp(2rem, 4vw, 3.6rem);
  margin: 0 0 10px;
  color: #fff;
}

.shop-intro {
  max-width: 720px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255,255,255,.92);
}

.shop-content.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.single-product .product {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.single-product div.product .summary {
  padding-top: 10px;
}

.single-product div.product p.price,
.single-product div.product span.price {
  color: #ff8000;
  font-size: 1.5rem;
  font-weight: 700;
}

/* SHOP GRID + PRODUCT CARDS */

.shop-content ul.products,
.shop-content .products {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 18px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.shop-content ul.products::before,
.shop-content ul.products::after,
.shop-content .products::before,
.shop-content .products::after {
  display: none !important;
  content: none !important;
}

.shop-content ul.products li.product,
.shop-content .products li.product {
  list-style: none !important;
  background: #fff !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  box-shadow: 0 6px 18px rgba(0,0,0,.08) !important;
  padding: 10px !important;
  margin: 0 !important;
  width: auto !important;
  min-width: 0 !important;
  float: none !important;
  clear: none !important;
  display: flex !important;
  flex-direction: column !important;
}

.shop-content ul.products li.product a:first-child,
.shop-content .products li.product a:first-child {
  display: block !important;
  text-decoration: none !important;
}

.shop-content ul.products li.product img,
.shop-content .products li.product img {
  display: block !important;
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: cover !important;
  border-radius: 10px !important;
  margin: 0 0 10px !important;
}

.shop-content ul.products li.product .woocommerce-loop-product__title,
.shop-content .products li.product .woocommerce-loop-product__title {
  font-size: 1rem !important;
  line-height: 1.25 !important;
  padding: 0 !important;
  margin: 0 0 8px !important;
  color: #222 !important;
}

.shop-content ul.products li.product .price,
.shop-content .products li.product .price {
  display: block !important;
  color: #ff8000 !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  margin: 0 0 10px !important;
  padding: 0 !important;
}

.shop-content ul.products li.product .button,
.shop-content ul.products li.product .added_to_cart,
.shop-content .products li.product .button,
.shop-content .products li.product .added_to_cart {
  margin-top: 10px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 42px !important;
  padding: 10px 14px !important;
  border: none !important;
  border-radius: 999px !important;
  background: #ff8000 !important;
  color: #fff !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  text-align: center !important;
  text-decoration: none !important;
  box-shadow: none !important;
}

.shop-content ul.products li.product .button:hover,
.shop-content ul.products li.product .added_to_cart:hover,
.shop-content .products li.product .button:hover,
.shop-content .products li.product .added_to_cart:hover {
  background: #e67300 !important;
  color: #fff !important;
}



.cart-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none;
}

.cart-icon {
    font-size: 22px;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #ff8000;
    color: white;
    font-size: 11px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-segments {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: #fff;
  border-radius: 999px;
  padding: 6px;
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
  margin: 0 0 34px;
  flex-wrap: wrap;
}

.shop-segment {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 999px;
  background: transparent;
  border: none;
  color: #3a3a3a;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all .18s ease;
  box-shadow: none;
}

.shop-segment:hover {
  color: #ff8000;
  transform: none;
}

.shop-segment.is-active {
  background: #ff8000;
  color: #fff;
  box-shadow: 0 8px 18px rgba(255,128,0,.22);
}


.product-category {
  display: none !important;
}

/* Ausverkaufte Produkte: Karte leicht ausgrauen */
.shop-content ul.products li.product.outofstock,
.shop-content .products li.product.outofstock {
  opacity: 0.55 !important;
}

/* Preis bei ausverkauft ausblenden */
.shop-content ul.products li.product.outofstock .price,
.shop-content .products li.product.outofstock .price {
  display: none !important;
}

/* Button bei ausverkauft ausblenden */
.shop-content ul.products li.product.outofstock .button,
.shop-content ul.products li.product.outofstock .added_to_cart,
.shop-content .products li.product.outofstock .button,
.shop-content .products li.product.outofstock .added_to_cart {
  display: none !important;
}

/* Stattdessen Text "Ausverkauft" unter dem Titel anzeigen */
.shop-content ul.products li.product.outofstock .woocommerce-loop-product__title::after,
.shop-content .products li.product.outofstock .woocommerce-loop-product__title::after {
  content: "Ausverkauft";
  display: block;
  margin-top: 10px;
  color: #ff8000;
  font-size: 0.95rem;
  font-weight: 700;
  opacity: 1 !important;
}

/* Produktkarten kompakter machen */
.shop-content ul.products li.product {
  padding: 8px !important;
}

/* Bild kleiner machen */
.shop-content ul.products li.product img {
  max-height: 180px;
  object-fit: cover;
}

/* Titel näher ans Bild */
.shop-content ul.products li.product .woocommerce-loop-product__title {
  margin-top: 8px;
  margin-bottom: 4px;
  font-size: 1.1rem;
}

/* Preis näher zum Titel */
.shop-content ul.products li.product .price {
  margin-bottom: 8px;
}

/* Button kompakter */
.shop-content ul.products li.product .button {
  padding: 10px 14px;
  font-size: 0.95rem;
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 1200px) {
  h1 {
    font-size: 62px;
  }
  #fristen-container {
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .hero-section {
    padding-top: 148px;
    padding-bottom: 100px;
  }

  .navbar-brand,
  .navbar-brand:hover {
    font-size: var(--h5-font-size);
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 20px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
    margin-bottom: 0;
  }

  .navbar .custom-btn {
    margin-bottom: 10px;
  }

  .booking-form {
    padding: 45px;
  }

  .contact-section .container {
    width: auto;
    margin-right: 10px;
    margin-left: 10px;
    padding: 35px;
  }

  .site-footer {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  #fristen-container {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  .custom-btn {
    font-size: 14px;
    padding: 12px 20px;
  }

  .menu-block-wrap,
  .reviews-block-image-wrap,
  .reviews-block-info {
    padding: 20px;
  }
  #fristen-container {
    margin-bottom: 30px;
  }
}


@media screen and (max-width: 578px) {
  .navbar .container,
  .sticky-wrapper.is-sticky .container {
    margin-right: 10px;
    margin-left: 10px;
    background-color: #333;
  }
  .termin-container {
    background-color: rgba(0, 0, 0, 0.65);
    border-radius: 20px;
    height: 80vh;
    top: -5vh;
    position: relative;
  }
  #fristen-container {
    margin-bottom: 5px;
  }


}


@media screen and (max-width: 480px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  .hero-section::after {
    width: 200px;
    height: 200px;
  }

  .booking-form {
    padding: 35px;
  }

  .opening-hours-list li {
    font-size: 12px;
  }

  .reviews-block-image-wrap {
    flex-direction: column;
  }

  .reviews-block-image {
    margin-bottom: 15px;
  }

  .timeline-container {
    padding-left: 55px;
  }

  .timeline-container::before {
    left: 44px;
    border: medium solid white;
    border-width: 15px 15px 15px 0;
    border-color: transparent white transparent transparent;
  }

  .timeline-container-left::before,
  .timeline-container-right::before {
    top: 13px;
  }
  .termin-container {
    background-color: rgba(0, 0, 0, 0.65);
    border-radius: 20px;
    height: 80vh;
    top: -5vh;
    position: relative;
  }
  #fristen-container {
    margin-bottom: 5px;
  }
  .chevron {
    flex: 0 0 30px;
  }

}

.text-orange {
  --bs-text-opacity: 1;
  color: #FF8000;
}

.text-333 {
  --bs-text-opacity: 1;
  color: #333;
}

@media (max-width: 1600px) {
  .shop-content ul.products,
  .shop-content .products {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 1280px) {
  .shop-content ul.products,
  .shop-content .products {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 980px) {
  .shop-content ul.products,
  .shop-content .products {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 680px) {
  .shop-content ul.products,
  .shop-content .products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .shop-segments {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    margin: 0 0 24px;
    width: 100%;
  }

  .shop-segment {
    min-height: 46px;
    padding: 0 18px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 6px 14px rgba(0,0,0,.06);
    font-size: 1rem;
  }

  .shop-segment.is-active {
    background: #ff8000;
    color: #fff;
    border-color: #ff8000;
    box-shadow: 0 8px 18px rgba(255,128,0,.22);
  }
}

@media (max-width: 460px) {
  .shop-content ul.products,
  .shop-content .products {
    grid-template-columns: 1fr !important;
  }
  .shop-segments {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    margin: 0 0 24px;
    width: 100%;
  }

  .shop-segment {
    min-height: 46px;
    padding: 0 18px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 6px 14px rgba(0,0,0,.06);
    font-size: 1rem;
  }

  .shop-segment.is-active {
    background: #ff8000;
    color: #fff;
    border-color: #ff8000;
    box-shadow: 0 8px 18px rgba(255,128,0,.22);
  }

}

.shop-content ul.products li.product-category,
.shop-content .products li.product-category {
  display: none !important;
}

/* ---------------------------------------
   SINGLE PRODUCT – clean first version
----------------------------------------- */

.single-product-layout {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 30px;
  padding-bottom: 80px;
}

.single-product-page .single-product-panel > .product,
.single-product-page div.product {
  display: grid !important;
  grid-template-columns: minmax(320px, 560px) minmax(320px, 1fr) !important;
  gap: 36px !important;
  align-items: start !important;
  background: #fff !important;
  border-radius: 24px !important;
  padding: 28px !important;
  box-shadow: 0 10px 28px rgba(0,0,0,.08) !important;
}

.single-product-page div.product div.images,
.single-product-page div.product div.summary {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
}

.single-product-page div.product div.images {
  background: #fafafa;
  border-radius: 18px;
  padding: 16px;
}

.single-product-page div.product div.images img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  border-radius: 12px;
}

.single-product-page div.product .summary {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
}

.single-product-page div.product .product_title {
  margin: 0 !important;
  font-size: clamp(2.2rem, 4vw, 4.4rem) !important;
  line-height: 1.02 !important;
  color: #222 !important;
}

.single-product-page div.product p.price,
.single-product-page div.product span.price {
  margin: 0 !important;
  color: #ff8000 !important;
  font-size: 2rem !important;
  font-weight: 700 !important;
}

.single-product-page div.product .woocommerce-product-details__short-description {
  color: #555 !important;
  font-size: 1.1rem !important;
  line-height: 1.65 !important;
  margin: 0 !important;
}

.single-product-page div.product form.cart {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 14px !important;
  margin: 8px 0 0 !important;
}

.single-product-page div.product form.cart .quantity {
  margin: 0 !important;
}

.single-product-page div.product form.cart .qty {
  min-width: 90px;
  min-height: 52px;
  padding: 8px 12px;
  border: 1px solid rgba(0,0,0,.14);
  border-radius: 12px;
  font-size: 1.1rem;
}

.single-product-page div.product form.cart .single_add_to_cart_button {
  min-height: 52px !important;
  padding: 0 24px !important;
  border-radius: 999px !important;
  background: #ff8000 !important;
  color: #fff !important;
  border: none !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
}

.single-product-page div.product form.cart .single_add_to_cart_button:hover {
  background: #e67300 !important;
}

/* Wallet/Express vorerst ausblenden, damit die Seite ruhig wird */
.single-product-page .wc-stripe-product-checkout-container,
.single-product-page #wc-stripe-payment-request-wrapper,
.single-product-page #wc-stripe-payment-request-button-separator,
.single-product-page .wc-stripe-product-checkout {
  display: none !important;
}

/* Tabs / Related / Upsells zur Sicherheit auch per CSS weg */
.single-product-page .woocommerce-tabs,
.single-product-page .related,
.single-product-page .related.products,
.single-product-page .upsells,
.single-product-page .up-sells {
  display: none !important;
}

.single-product-page .product_meta {
  display: none !important;
}

/* Beschreibung unter dem Produktpanel */
.product-description-panel {
  margin-top: 28px;
  background: #fff;
  border-radius: 24px;
  padding: 28px 32px;
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
}

.product-description-panel h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3vw, 3.2rem);
  color: #222;
}

.product-description-copy,
.product-description-copy p {
  color: #666;
  font-size: 1.08rem;
  line-height: 1.7;
}

/* Mobile */
@media (max-width: 980px) {
  .single-product-page .single-product-panel > .product,
  .single-product-page div.product {
    grid-template-columns: 1fr !important;
    gap: 26px !important;
    padding: 22px !important;
  }

  .single-product-page div.product .product_title {
    font-size: clamp(2rem, 8vw, 3.2rem) !important;
  }

  .single-product-page div.product p.price,
  .single-product-page div.product span.price {
    font-size: 1.6rem !important;
  }
}

/* Express/Wallet Buttons auf Produktdetailseite ausblenden */
.single-product-page .wc-stripe-product-checkout-container,
.single-product-page #wc-stripe-payment-request-wrapper,
.single-product-page #wc-stripe-payment-request-button-separator,
.single-product-page .wc-stripe-product-checkout {
  display: none !important;
}

/* PHG3D WooCommerce Notice */

.woocommerce-message {
  background: #fff !important;
  color: #333 !important;

  border-radius: 20px !important;

  border: 2px solid #ff8000 !important;

  box-shadow: 0 8px 24px rgba(0,0,0,.08) !important;

  padding: 18px 22px !important;
  margin-bottom: 24px !important;
}

/* Icon */
.woocommerce-message::before {
  color: #ff8000 !important;
}

/* Button */
.woocommerce-message a.button {
  float: right !important;

  background: transparent !important;
  color: #ff8000 !important;

  border: 2px solid #ff8000 !important;
  border-radius: 999px !important;

  padding: 8px 16px !important;

  font-weight: 700 !important;
}

/* Hover */
.woocommerce-message a.button:hover {
  background: #ff8000 !important;
  color: white !important;
}

#wc-stripe-express-checkout-element {
  display: none !important;
}

/* PHG3D Notice – harte Überschreibung */
body .woocommerce-notices-wrapper .woocommerce-message {
  background: #fff !important;
  color: #333 !important;

  border: 2px solid #ff8000 !important;
  border-left: 2px solid #ff8000 !important;
  outline: none !important;
  box-shadow: 0 8px 24px rgba(0,0,0,.08) !important;

  border-radius: 20px !important;
  padding: 18px 22px !important;
  margin-bottom: 24px !important;
}

body .woocommerce-notices-wrapper .woocommerce-message::before {
  color: #ff8000 !important;
}

body .woocommerce-notices-wrapper .woocommerce-message a.button {
  background: transparent !important;
  color: #ff8000 !important;
  border: 2px solid #ff8000 !important;
  border-radius: 999px !important;
  box-shadow: none !important;
}

body .woocommerce-notices-wrapper .woocommerce-message a.button:hover {
  background: #ff8000 !important;
  color: #fff !important;
}

/* WooCommerce Notice – Platz für Icon */
body .woocommerce-notices-wrapper .woocommerce-message {
  padding-left: 48px !important;
  position: relative;
}

/* Icon sauber positionieren */
body .woocommerce-notices-wrapper .woocommerce-message::before {
  position: absolute !important;
  left: 18px !important;
  top: 50% !important;
  transform: translateY(-50%);
  margin: 0 !important;
}

/* PHG3D – WooCommerce Info / Leermeldung */

body .woocommerce-notices-wrapper .woocommerce-info,
body .woocommerce-info {

  background: #fff !important;
  color: #333 !important;

  border: 2px solid #ff8000 !important;
  border-radius: 20px !important;

  box-shadow: 0 8px 24px rgba(0,0,0,.08) !important;

  padding: 18px 22px 18px 48px !important;
  margin-bottom: 30px !important;

  position: relative;
}

/* Icon */

body .woocommerce-info::before {

  position: absolute !important;
  left: 18px !important;
  top: 50% !important;

  transform: translateY(-50%);
  color: #ff8000 !important;

}

/* Zurück zum Shop */

.shop-back-link {
  max-width: 1280px;
  margin: 20px auto 10px auto;
}

.shop-back-link a {
  color: #666;
  text-decoration: none;
  font-weight: 500;
}

.shop-back-link a:hover {
  color: #ff8000;
}

/* Produktgalerie sauberer machen */
.single-product-page div.product div.images {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
}

.single-product-page .woocommerce-product-gallery__wrapper {
  margin: 0 !important;
}

.single-product-page .woocommerce-product-gallery__image {
  margin: 0 !important;
}

.single-product-page .flex-control-thumbs {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.single-product-page .flex-control-thumbs li {
  width: 88px !important;
  min-width: 88px !important;
  margin: 0 !important;
  float: none !important;
}

.single-product-page .flex-control-thumbs img {
  display: block !important;
  width: 88px !important;
  height: 88px !important;
  object-fit: cover !important;
  border-radius: 12px !important;
  border: 2px solid transparent !important;
  opacity: 1 !important;
  background: #fff !important;
  box-shadow: 0 4px 12px rgba(0,0,0,.08) !important;
}

.single-product-page .flex-control-thumbs .flex-active,
.single-product-page .flex-control-thumbs img:hover {
  border-color: #ff8000 !important;
}

/* Hauptbild ruhiger */
.single-product-page div.product div.images img.wp-post-image {
  width: 100% !important;
  height: auto !important;
  max-height: 520px !important;
  object-fit: contain !important;
  border-radius: 14px !important;
  background: #fff !important;
}

/* Mobile */
@media (max-width: 980px) {
  .single-product-page .flex-control-thumbs li {
    width: 72px !important;
    min-width: 72px !important;
  }

  .single-product-page .flex-control-thumbs img {
    width: 72px !important;
    height: 72px !important;
  }
}
.pswp__button--close {
  position: fixed !important;
  top: 100px !important;
  right: 20px !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background-color: #000 !important;
  border: 2px solid #000 !important;
  z-index: 2147483647 !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  pointer-events: auto !important;
  background-image: none !important;
}
.pswp__button--close::before {
    content: "✕";
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    background-color: #000;

    font-size: 22px;
    font-weight: 600;

    border-radius: 50%;
    width: 40px;
    height: 40px;
}
button.pswp__button, button.pswp__button--arrow--left::before, button.pswp__button--arrow--right::before, button.pswp__button:hover {
    background-color: #000 !important;
}
.shop-back-link {
  margin-left: 20px;
}

/* main div {
  margin: 150px 80px !important;
} */

/*
.phg-wissenswertes-content,
.phg-wissenswertes-content p {
    font-size: 0.95rem;
    line-height: 1.55;
}
*/
.phg-wissenswertes-content,
.phg-wissenswertes-content p {
    font-size: 1rem;
    line-height: 1.6;
}

.phg-wissenswertes-content p:last-child {
    margin-bottom: 0;
}

.about-section .media {
    height: 100%;
}

.about-section .media-body {
    height: 100%;
}

#section_2 .col-md-4 {
    margin-bottom: 30px;
}

