:root {
  --green: #368b23;
  --light-green:  #bef8bf;       /* o tón tmavší kruh za ikonou     */
  --white: #ffffff;
  --body-white-bg: #f9f9f9;
  --light-grey: #e7e7e7;
  --color-bg-dark: #111;
}




#shop-title-img {
    width: 100vw;
    height: auto;
    display: block;
}

#shop-hero{
    background-image: url(../images/ext1-e.jpg);
    height: 70vh;
}

.shop-section{
    max-width: 1000px;
    margin: 1.5rem auto;
}

/*
------- ofer
*/

.carusel-offer{
  background-color: #ffffff;
  padding-top: 2rem;
  padding-bottom: 4rem;
  width: 100%;
  
  
}

.carusel-offer h2{
  width: 100%;
  max-width: 100%;
  margin: 0rem auto 0.25rem;
  text-align: center;
}
.carusel-offer h4{
  width: 100%;
  max-width: 100%;
  margin: 0rem auto 1.5rem;
  text-align: center;
}


.gallery, .gallery * { box-sizing: border-box; }

    /* Obal galérie */
    .gallery {
      margin: 0 auto;
      max-width: 1000px;
      overflow: hidden;
      position: relative;
    }

    /* Pole slidov */
    .gallery .slides {
      display: flex;
      transition: transform 0.6s ease;
    }

    /* Jeden slide */
    .gallery .slide {
      background-color: #238d1e;
      border-radius: 30px;
      flex-shrink: 0;
      text-align: center;
      padding: 0px;
      overflow: hidden;
    }
    .gallery .slide img {
      width: 100%;
      border-radius: 5px;
      display: block;
      
    }
    .gallery .slide p {
      margin: 1rem 0 1rem;
      font-size: 1.25rem;
      font-weight: 500;
      color: var(--white);
    }

    /* Guľôčky */
    .gallery .dots {
      display: flex;
      justify-content: center;
      margin-top: 25px;
    }
    .gallery .dot {
      width: 15px;
      height: 15px;
      border-radius: 50%;
      background-color: #368b23;
      opacity: 0.3;
      margin: 0 6px;
      cursor: pointer;
      transition: opacity 0.3s;
    }
    .gallery .dot.active { opacity: 1; }

    /* Desktop: 3 slide-ov na obrazovku */
    @media (min-width: 769px) {
      .gallery .slide {
        width: calc((100% - 40px) / 3);
        margin-right: 20px;
        
      }

      .gallery .slide:last-child { margin-right: 0; }
    }

    /* Mobil: 1 slide na obrazovku */
    @media (max-width: 768px) {
      .gallery .slide { 
        width: 100%; 
        margin-right: 0;
        border-radius: 0px;
       }
    }

    /* Len na mobiloch */
@media (max-width: 768px) {
  .gallery .slides {
    
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .gallery .slide {
    scroll-snap-align: start;
    flex: 0 0 100%;
  }
  }

  @media (max-width: 768px) {
  .gallery .slides::-webkit-scrollbar {
    height: 6px;
  }

  .gallery .slides::-webkit-scrollbar-track {
    background: transparent;
  }

  .gallery .slides::-webkit-scrollbar-thumb {
    background: #aaa;
    border-radius: 3px;
  }
}


/*
---------------- actual season --------------------
*/
.seasonal-section {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a8f1a 0%, #2db82d 100%);
    border-radius: 40px;
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.seasonal-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.image-container {
    flex: 0 0 450px;
    position: relative;
    z-index: 2;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.seasonal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 1.2s ease-in-out;
}

.seasonal-image.fade-out {
    opacity: 0;
}

.content-container {
    flex: 1;
    position: relative;
    z-index: 2;
}

.season-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.seasonal-title {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.seasonal-description {
    font-size: 1.2rem;
    color: #f0f0f0;
    line-height: 1.6;
    margin-bottom: 15px;
}

.offer-list {
    list-style: none;
    margin: 25px 0;
}

.offer-list li {
    color: #ffffff;
    font-size: 1.1rem;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.offer-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.3rem;
}

.cta-button {
    display: inline-block;
    background: #ffffff;
    color: #1a8f1a;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {
    .seasonal-section {
        flex-direction: column;
        padding: 40px;
        text-align: center;
    }

    .image-container {
        flex: 0 0 auto;
        width: 100%;
        max-width: 500px;
    }

    .content-container {
        width: 100%;
    }

    .seasonal-title {
        font-size: 2.5rem;
    }

    .offer-list li {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .seasonal-section {
        padding: 30px 20px;
    }

    .image-wrapper {
        height: 250px;
    }

    .seasonal-title {
        font-size: 2rem;
    }

    .seasonal-description {
        font-size: 1rem;
    }

    .offer-list li {
        font-size: 1rem;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}


/*
------------------ seasonal offer section ------------------
*/

.seasonal-offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(7, auto);
  gap: 20px;
  padding: 20px;
  max-width: 80vw;
  margin: 60px auto;
}

.offer-text {
  display: flex;
  padding: 2rem;
  font-size: 1rem;
  flex-wrap: wrap;
  align-items: center; 
}



.item {
  background: #edffec;
  font-family: "Inter", sans-serif;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.item img:hover {
    transform: scale(1.03);


}

/* Grid positioning based on your matrix */

/*
-- 1. row
*/

.text {


  grid-column: 1 / 3;
  grid-row: 1 / 2;
  text-align: center;
  
}


.img1 {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}


.text1  {
  grid-column: 4 / 5;
  grid-row: 1 / 2;
}


/*
-- 2. row
*/

.img3 {
  grid-column: 1 / 2;
  grid-row: 2 / 4;
}

.img4 {
  grid-column: 2 / 3;
  grid-row: 2 / 4;
}

.img5 {
  grid-column: 3 / 5;
  grid-row: 2 / 4;
}


/*
-- 3. row
*/

.text2 {
  grid-column: 1 / 3;
  grid-row: 4 / 5;
}

.img6 {
  grid-column: 3 / 5;
  grid-row: 4 / 5;
}


/*
-- 4. row
*/



.img7 {
  grid-column: 1 / 3;
  grid-row: 5 / 7;
}

.img9 {
  grid-column: 3 / 4;
  grid-row: 5 / 7;
}

.text3 {
  grid-column: 4 / 5;
  grid-row: 5 / 7;
  background-color: var(--green);
  color: var(--white);
}

@media (max-width: 1000px) {
.seasonal-offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(15, auto);
  gap: 20px;
  padding: 5px;
  max-width: 95vw;
  margin: 60px auto;
}

.offer-text {

  padding: 1rem;
 
}
  


/*
-- 1. row
*/

.text {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
}


.img1 {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}


.text1  {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}


/*
-- 2. row
*/

.img3 {
  grid-column: 1 / 2;
  grid-row: 3 / 5;
}

.img4 {
  grid-column: 2 / 3;
  grid-row: 3 / 5;
}

.img5 {
  grid-column: 1 / 3;
  grid-row: 5 / 7;
}


/*
-- 3. row
*/

.text2 {
  grid-column: 1 / 3;
  grid-row: 7 / 8;
}

.img6 {
  grid-column: 1 / 3;
  grid-row: 8 / 9;
}


/*
-- 4. row
*/



.img7 {
  grid-column: 1 / 3;
  grid-row: 9 / 11;
}

.img9 {
  grid-column: 1 / 2;
  grid-row: 11 / 13;
}

.text3 {
  grid-column: 2 / 3;
  grid-row: 11 / 13;
}

}
/*
------------------- deco section -------------------
*/

.deco-content{
    margin: 0 auto;
    max-width: 70vw;
    background-color: var(--light-grey);
}

/*
---------------- contact section ----------------
*/

.contact-section {
    background-color: var(--white);
    padding: 60px 0px 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-subtitle {
    color: #6b7280;
    font-size: 1.1rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 40px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    text-align: left;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.card-header i {
    font-size: 1.25rem;
    background-color: var(--green);
    color: var(--white);
    padding: 12px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.card-header i:hover {
    transform: scaleX(-1);
    background-color: var(--white);
    color: var(--green);
    box-shadow: 0 0 0 2px var(--green);
}

.card-header h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
}

.card-body {
    padding-left: 60px;
}

.card-body p {
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

.card-body strong {
    font-weight: 600;
    color: var(--text-dark);
}

.contact-single {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-single h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--green);
    margin-top: 1rem;
}



.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
    max-width: 400px;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast-content i {
    font-size: 1.25rem;
}

.toast-success {
    border-left: 4px solid var(--green);
}

.toast-success i {
    color: var(--green);
}

.toast-error {
    border-left: 4px solid #ef4444;
}

.toast-error i {
    color: #ef4444;
}

.toast-content span {
    color: var(--text-dark);
    font-weight: 500;
}

.form-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.form-container h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.95rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #ffffff;
    color: var(--text-dark);
    transition: all 0.2s ease;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}

.submit-btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background: var(--green);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

.submit-btn:hover {
    background: #15803d;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn svg {
    width: 20px;
    height: 20px;
}

#map {
    width: 100%;
    margin: 0;
}

#map iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        max-width: 600px;
        margin: 0 auto;
    }

    .info-card {
        text-align: center;
    }

    .card-header {
        justify-content: center;
    }

    .card-body {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .contact-header h2 {
        font-size: 2rem;
    }

    .form-container {
        padding: 30px 24px;
    }

    .form-container h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 15px;
    }

    .contact-header h2 {
        font-size: 1.75rem;
    }

    .contact-subtitle,
    .form-subtitle {
        font-size: 0.9rem;
    }

    .card-header {
        flex-direction: column;
    }

    .toast {
        left: 10px;
        right: 10px;
        max-width: calc(100% - 20px);
    }
}