


.site-header {
  position: relative;
  width: 100%;
  background-color: white;
  text-align: center;
  padding: 20px 0;
  z-index: 10;
}

.logo {
  height: auto;
  width: auto;
  margin-top:-300px;
  max-height: 700px; /* logo vizibil, dar rezonabil */
  max-width: 100%;
  display: inline-block;
}

.slideshow {
  position: relative;
  margin-top: 180px; /* păstrat ca să nu se suprapună cu headerul */
  overflow: hidden;
}

.container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}

.container.active {
  opacity: 1;
  z-index: 2;
  position: relative;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px; /* mai mici decât 48px */
  color: white;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 6px 10px;

  cursor: pointer;
  border-radius: 50%;
  user-select: none;
  z-index: 10;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}


.site-footer {
  background-color: #1f1f1f; /* gri foarte închis */
  padding: 40px 20px; /* mai mult padding pentru înălțime */
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
}

.footer-text {
  text-align: center;
  font-size: 14px;
  color: #ccc;
  z-index: 1;
}

.footer-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #444;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease;
  z-index: 2;
}

.footer-button:hover {
  background-color: #666;
}

.footer-button.left {
  left: 400px;
}

.footer-button.right {
  right: 400px;
}


.storinfo-section {
  max-width: 1000px;
  margin: 60px auto;
  padding: 20px;
  font-family: sans-serif;
  color: #333;
}

.storinfo-section h2 {
  text-align: center;
 
  margin: 20px 20px 20px -1870px
}

.storinfo-section h4 {
  margin-top: 30px;
  color: #222;
}

.storinfo-section ol, .storinfo-section ul {
  margin-left: 20px;
  padding-left: 20px;
}

.video-section {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
}


.storinfo-details {
  max-width: 1000px;
  margin: 60px auto;
  padding: 20px;
  font-family: sans-serif;
  color: #333;
  line-height: 1.6;
}

.storinfo-details h3 {
  margin-top: 40px;
  color: #111;
}

.storinfo-details ol,
.storinfo-details ul {
  margin-left: 20px;
  padding-left: 20px;
}

.storinfo-details li {
  margin-bottom: 10px;
}

.storinfo-details .closing-line {
  margin-top: 30px;
  font-style: italic;
  font-size: 1.1em;
}


.image-fullwidth-stack {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 60px 0;
}

.full-img {
  width: 100%;
  height: auto;
  display: block;
}


.storingo-products {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.storingo-intro {
  color: #555;
  font-size: 16px;
  margin-bottom: 30px;
}

.section-title {
  font-size: 28px;
  margin-bottom: 50px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: left;
}

.product-item img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
  border-radius: 8px;
}

.product-item h3 {
  text-transform: lowercase;
  font-size: 18px;
  margin-bottom: 10px;
  color: #111;
}

.product-item p {
  font-size: 14px;
  margin-bottom: 10px;
  color: #333;
}

.product-item ul {
  font-size: 13px;
  padding-left: 18px;
  color: #555;
}

.product-item ul li {
  margin-bottom: 6px;
}

.storingo-cta {
  margin-top: 60px;
}

.storingo-cta p {
  font-size: 16px;
  margin: 6px 0;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
    border: 2px solid #0b77ec; /* Albastru */
  color: #0b77ec;
    background-color: transparent;
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn:hover {
   background-color: #007BFF;
  color: white;
}



/* General container style to make sections wider */
.storinfo-section,
.video-section,
.storinfo-details,
.storingo-products {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 40px 60px; /* mai mult padding lateral pentru respirabilitate */
  box-sizing: border-box;
}



.video-section video {
  width: 70%;
  height: auto;
  border-radius: 12px;
}


.storinfo-section,
.storinfo-details,
.image-fullwidth-stack,
.storingo-products {
  margin: 80px auto;
  padding: 40px 60px;
}


.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}


.logo {
  margin-top: -200px; /* mai puțin negativ dacă era prea sus */
  max-width: 90%;
  height: auto;
}

.slideshow {
  margin-top: 100px;
}


.image-fullwidth-stack {
  width: 100%;
  padding: 0;
}



.site-footer {
  width: 100%;
  padding: 40px 60px;
  box-sizing: border-box;
}


section {
  max-width: 100%;
  width: 100%;
  padding: 40px 60px;
  box-sizing: border-box;
}


.storinfo-section,
.storinfo-section h2,
.video-section,
.storinfo-details
 {
  padding: 40px 60px;
  padding-left: 500px; /* adăugat sau modificat aici */
}

/* Mobile styles for products.html */

@media(max-width: 768px) {

  .logo {
  width: 100%;
  margin-top: -100px; 
  display: flex;
  margin-left: auto;
  margin-right: auto;
}


  .storinfo-section,
  .storinfo-details,
  .video-section,
  .storingo-products,
  section,
  .image-fullwidth-stack {
    padding: 20px;
    margin: 40px 0;
  }
 .storinfo-section h2 {
    margin: 0 auto 20px auto;
    text-align: center;
    font-size: 22px;
    padding-left: 0 !important;
    width: 100%;
  }
  .storinfo-section h2,
  .storinfo-section h4,
  .storinfo-details h3,
  .section-title,
  .product-item h3,
  .product-item p,
  .product-item ul,
  .storingo-cta p {
    text-align: left;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .video-section video {
    width: 100%;
  }



  .btn {
    width: 100%;
    box-sizing: border-box;
  }

  .storinfo-section h2 {
    margin: 0 0 20px 0;
    text-align: center;
    font-size: 22px;
  }

  .storinfo-section ol,
  .storinfo-section ul,
  .storinfo-details ul,
  .storinfo-details ol {
    padding-left: 20px;
  }

  .product-item ul {
    font-size: 14px;
  }

  .product-item p {
    font-size: 15px;
  }

  .section-title {
    font-size: 24px;
    text-align: center;
  }
.product-item h3 {
  position: relative;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin: 50px auto 20px auto;
  padding-bottom: 10px;
}

.product-item h3::after {
  content: "";
  display: block;
  width: 60%;
  height: 2px;
  background-color: #999;
  margin: 10px auto 0 auto;
}

   .site-footer {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 30px 15px;
    text-align: center;
  }

  .footer-button {
    position: static;
    width: 80%;
    max-width: 250px;
    text-align: center;
    font-size: 16px;
    padding: 12px 0;
    background-color: #444;
    color: white;
    border-radius: 6px;
    margin-bottom: 10px;
  }

  .footer-button:hover {
    background-color: #666;
  }

  .footer-button.left,
  .footer-button.right {
    left: auto;
    right: auto;
    transform: none;
  }

  .footer-text {
    order: 3;
    font-size: 14px;
    color: #ccc;
    margin-top: 10px;
  }
}
