 body {
    font-family: 'Merriweather', sans-serif;
    background-color: #112250;
    color: #F5FDE9;
    margin: 0;
    
  }

  a {
    text-decoration: none;
    color: #E0C58F;
  }

  h1, h2, h4 {
    color: #BD9060;
  }

  .back-link {
    text-align: center;
    margin-bottom: 30px;
  }
  
 .product-title-center {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #BD9060;
    margin: 10px 0 30px 0;
    line-height: 1.2;
}

  .product-title-right {
    color: #BD9060;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 10px 0;
    text-align: left;
}

  .product-teaser-right {
    color: #E0C58F;
    font-size: 15px;
    line-height: 1.5;
    margin: 0 0 25px 0;
    text-align: left;
}

  
 .product-teaser {
    text-align: center;
    color: #E0C58F;
    font-size: 15px;
    font-style: normal;
    margin: -15px auto 35px;
    max-width: 700px;
    line-height: 1.5;
}

 
   .product-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: #112250;
    border-radius: 20px;
    margin: 0 auto;
    overflow: hidden;
    max-width: 1100px;

  }

 .product-image {
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}


  .product-image img {
    width: 100%;
    height: auto;
    max-width: 400px;
    border-radius: 30px 10px 30px 10px;
    display: block;
   
  }

  .thumbnails {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
  }

  .thumbnails img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border: 2px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
    opacity: 0.75;
}

.thumbnails img:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.thumbnails img.selected {
    border-color: #E0C58F;
    opacity: 1;
}

.product-info {
    padding: 10px 30px 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.purchase-box {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 20px;
}


.product-price {
    font-size: 28px;
    font-weight: 700;
    color: #F5FDE9;
    margin: 0;
}

.buy-btn {
    display: block;
    width: 100%;
    box-sizing: border-box;
    background: linear-gradient(135deg, #BD9060, #D1A878);
    color: #ffffff;
    padding: 13px 32px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: 30px;
    cursor: pointer;
    margin-bottom: 0;
    transition: all 0.25s ease;
    box-shadow: 0 6px 18px rgba(189, 144, 96, 0.18);
}



.buy-btn:hover {
    background: linear-gradient(135deg, #D1A878, #E0C58F);
    color: #112250;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(189, 144, 96, 0.28);
}



  .icons-list {
    margin-bottom: 20px;
  }

  .icons-list div {
    margin-bottom: 10px;
    font-size: 15px;
  }

  .icons-list i {
    color: #E0C58F;
    margin-right: 8px;
    
      
  }


.description {
    margin-top: 20px;
    padding-top: 25px;
    border-top: 1px solid rgba(224, 197, 143, 0.25);
}

.description h2 {
    color: #BD9060;
    font-size: 22px;
    margin-bottom: 15px;
}

.description p {
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}
  
.related-products {
    max-width: 1000px;
    margin: 35px auto 30px;
    padding: 30px 20px;
    border-top: 1px solid rgba(224, 197, 143, 0.18);
}


.related-products h2 {
    text-align: center;
    color: #BD9060;
    font-size: 25px;
    margin-bottom: 20px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 280px));
    justify-content: center;
    gap: 25px;
}

.related-card {
    display: block;
    background: #0d1b42;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(224, 197, 143, 0.12);
    transition: all 0.3s ease;
    color: inherit;
}

.related-card:hover {
    transform: translateY(-5px);
    border-color: rgba(224, 197, 143, 0.45);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.related-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.related-card-info {
    padding: 18px;
    text-align: center;
}

.related-card-info h3 {
    color: #F5FDE9;
    font-size: 17px;
    margin: 0 0 8px;
}

.related-card-info p {
    color: #E0C58F;
    font-size: 14px;
    margin: 0;
}


.related-intro {
    text-align: center;
    color: #d8d8d8;
    font-size: 14px;
    margin: -15px auto 30px;
    max-width: 600px;
}


.product-benefits {
    display: flex;
    gap: 25px;
    margin: 20px 0 30px;

    
}

.benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    font-size: 14px;
}

.benefit i {
    color: #E0C58F;
    font-size: 16px;
}



@media (max-width: 600px) {
    .related-products {
        margin-top: 50px;
        padding: 30px 15px;
    }

    .related-card img {
        height: 260px;
    }
}

.purchase-details {
    display: flex;
    gap: 30px;
    
    
    padding: 18px 0;
    border-top: 1px solid rgba(224, 197, 143, 0.15);
    
}


.purchase-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.purchase-detail i {
    color: #E0C58F;
    font-size: 20px;
    min-width: 22px;
    text-align: center;
}

.purchase-detail span {
    display: block;
    color: #aaa;
    font-size: 12px;
    margin-bottom: 3px;
}

.purchase-detail strong {
    display: block;
    color: #F5FDE9;
    font-size: 14px;
    font-weight: 500;
}

 
 @media (max-width: 768px) {

    .product-box {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .product-image,
    .product-info {
        padding: 20px;
    }

    .product-image img {
        max-width: 100%;
    }

    .product-info {
        width: 100%;
    }

}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
    .buy-btn {
        display: block;
        width: 100%;
    }
}
