

/** {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}*/

/*body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--light);
  overflow-x: hidden;
}*/



/* Header & Navigation */
/*header {
  background: linear-gradient(rgba(30, 41, 59, 0.5), rgba(30, 41, 59, 0.7)), url('/images/facades/grand-big.jpg') no-repeat center/cover;
  color: white;
  padding: 1rem 0 6rem;
  position: relative;
  height: 100vh;
  box-shadow: inset 0 0 10px #000;
}*/


.about {
  padding: 80px 0;
  background: #e9e9e9;
  box-shadow: inset 0 0 10px #bbb;
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.about .left h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about .left p {
  line-height: 1.6;
  color: #444;
}

.about .left {
  display: flex;
  justify-content: center;
  /*display: inline-block;*/
  /*width: 45%;*/
}

.about .right {
  display: flex;
  justify-content: center;
  /*display: inline-block;*/
  /*width: 50%;*/
}

.beer-slider {
  max-width: 800px;
  margin: auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.beer-slider img {
  width: 100%;
  display: block;
}


#slider {
  position: relative;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: -1;
  height: 100%;
  border-radius: 0;
  max-width: 800px;
  margin: 0 auto;
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/*.beer-section {
  height: 100vh; 
  position: relative;
}

.beer-slider {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.beer-slider img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.beer-reveal {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%; 
  height: 100%;
  overflow: hidden;
  transition: width 0.1s linear; 
}

.beer-reveal img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}*/


/* Responsive: stack on mobile */
@media (max-width: 850px) {
  .about .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about .right {
    order: -1;
  }

  .about .left div {
    width: 100%;
  }
}


/*.language-switcher {
  display: flex;
  gap: 10px;
  margin-left: 20px;
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.language-switcher a {
  color: white;
  text-decoration: none;
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  font-size: 0.9rem;
}*/

.language-switcher a.active {
  background: rgba(255,255,255,0.2);
  border-color: white;
}

.language-switcher a:hover {
  background: rgba(255,255,255,0.1);
}



/*.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}*/

/*.logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  margin-left: 30px;
  position: absolute;
  left: 15px;
  top: 35px;
}*/

.logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-icon {
  cursor: pointer;
  margin-right: 30px;
  position: fixed;
  top: 30px;
  right: 0px;
  text-shadow: 0 0 10px #000;
  filter: drop-shadow(0 0 1px #000);
  z-index: 9;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}


.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 0;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  padding: 24px 28px;
  max-width: 420px;
  z-index: 9999;
  animation: fadeIn 0.4s ease-out;
  margin-right: 20px;
}
.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-content p {
  color: #222;
  font-size: 0.95rem;
  line-height: 1.4;
  margin: 0;
}
.cookie-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-btn {
  cursor: pointer;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  padding: 8px 16px;
  transition: all 0.2s;
}
.cookie-btn.primary {
  background: #000;
  color: #fff;
}
.cookie-btn.primary:hover {
  background: #333;
}
.cookie-btn.secondary {
  background: none;
  color: #555;
  /*text-decoration: underline;*/
  font-size: 0.9rem;
}
.cookie-link {
  font-size: 0.85rem;
  text-decoration: underline;
  color: #666;
}
.hidden {
  display: none;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}


/*.hero {
  text-align: left;
  padding: 4rem 0 2rem;
  max-width: 800px;
  margin: 0 auto;
  display: table-cell;
  vertical-align: middle;
  padding-left: 2vw;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}*/

/*.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--light);
  color: black;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
}*/

.btn:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
}

/*.btn-secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
}*/

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/*.btn-accent {
  background: var(--accent);
  color: white;
}*/

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

/* Features Section */
.features {
  padding: 6rem 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius);
  /*box-shadow: var(--shadow);*/
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 2px 2px 10px #bbb;
}

.step:hover {
  transform: translateY(-5px);
}

.step-number {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--dark);
  color: white;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom-right-radius: var(--border-radius);
  font-weight: 700;
}

.step-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  /*color: var(--primary);*/
  color: black;
}

.step h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Upload Section */
.upload-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #fee0e0 100%);
  align-content: center;
  height: 100vh;
  min-height: 450px;
  transition: all .3s;
}

.upload-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.upload-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.upload-info p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--gray);
}

.upload-area {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.upload-box {
  border: 1px dashed #cbd5e1;
  border-radius: var(--border-radius);
  padding: 3rem 2rem;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: 1px 1px 10px #bbb;
}

.upload-box:hover {
  border-color: var(--primary);
}

.upload-icon {
  font-size: 3rem;
  color: var(--gray);
  margin-bottom: 1rem;
}

.upload-text {
  margin-bottom: 1rem;
}

.upload-hint {
  font-size: 0.9rem;
  color: var(--gray);
}

#preview-container {
  margin-top: 2rem;
  display: none;
}

#preview {
  max-width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.options {
  display: none;
  margin-top: 2rem;
  text-align: left;
}

.option-group {
  margin-bottom: 1.5rem;
}

.option-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.select-wrapper {
  position: relative;
}

select {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: var(--border-radius);
  border: 1px solid #cbd5e1;
  background: white;
  appearance: none;
  font-size: 1rem;
}

.select-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}


#upload {
  box-shadow: inset 0 0 20px #bbb;
  /*height: 100%;*/
  height: 100vh;
}

/* Gallery Section */
.gallery {
  padding: 6rem 0;
  /*background: white;*/
  position: relative;
  /*box-shadow: 0 0 10px #bbb;*/
}

.fade-image {
  opacity: 0;
  transition: opacity 0.6s ease;
}

/* When image has loaded, the browser sets it as rendered */
.fade-image:is(:not([src]), [src=""]) {
  opacity: 0;
}

/* Fade in once the image is fully loaded and displayed */
.fade-image[src] {
  opacity: 1;
}


.carousel {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 40px auto;
  overflow: hidden;
  border-radius: 16px;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease;
}

.slide {
  flex: 0 0 33.3333%; /* 3 slides per view */
  padding: 0.5rem;
  box-sizing: border-box;
}

.slide img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  transition: background 0.3s;
  width: 30px;
  height: 30px;
  font-size: 140%;
  padding: 0;
}

.carousel-btn:hover {
  background: rgba(0,0,0,0.7);
}

.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

@media (max-width: 1024px) {
  .slide { flex: 0 0 50%; } /* 2 per view */
}

@media (max-width: 640px) {
  .slide { flex: 0 0 100%; } /* 1 per view */
}

.carousel-modal {
  display: none; /* hidden by default */
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
  align-items: center;
  justify-content: center;
}

.carousel-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
}



/* Testimonials */
.testimonials {
  text-align: center;
  padding: 5rem 1rem;
  background: linear-gradient(180deg, #f9f9f9 0%, #ffffff 100%);
  overflow: hidden;
  position: relative;
}

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

.section-header p {
  color: #666;
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}

.testimonial-carousel {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  height: 200px;
}

.testimonial {
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transform: translateY(15px);
  background: #fff;
  border-radius: 16px;
  padding: 2rem 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.testimonial.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.testimonial-content p {
  font-style: italic;
  color: #444;
  font-size: 1.1rem;
  line-height: 1.6;
}

.testimonial-author {
  margin-top: 1.5rem;
  font-weight: 600;
  color: #222;
}

.testimonial-controls {
/*  margin-top: 2rem;*/
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.testimonial-controls button {
  background: #fff;
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 10px;
}

.testimonial-controls button:hover {
  background: #222;
  color: #fff;
  transform: scale(1.1);
}

@media (max-width: 600px) {
  .testimonial {
    padding: 1.5rem;
  }

  .testimonial-carousel {
    height: auto;
  }
}





/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #ffcfc0 0%, #fff 100%);
  /*color: white;*/
  text-align: center;
  box-shadow: inset 0 0 10px;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-block;
  padding: 12px 24px; /* increases tap area */
  min-width: 44px;
  min-height: 44px;
  text-align: center;
  border-radius: 4px; /* optional */
  margin: 8px; /* spacing from other targets */
  font-size: 16px; /* readable text */
}

/* Footer */
footer {
  background: var(--dark);
  color: #cbd5e1;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .upload-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .btn {
    width: 95%;
    justify-content: center;
    margin: 3px;
  }

  /*.gallery {
    padding-top: 250px;
  }*/

 

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

/* Loading spinner */
.spinner {
  display: none;
  width: 40px;
  height: 40px;
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 2rem auto;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

