 
    .top-bar {
      background: #333;
      color: white;
      text-align: center;
      padding: 10px;
      font-size: 14px;
    }
     .slider {
      height: 300px;
      position: relative;
      overflow: hidden;
    }
    .slide {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 100%;
      left: 0;
      color: white;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      transition: top 1s ease-in-out;
      background-size: cover;
      background-position: center;
    }
    .slide.active {
      top: 0;
    }
    .section {
      padding: 60px 20px;
      text-align: center;
    }
    .section p {
      max-width: 800px;
      margin: 10px auto;
    }
    .product {
      border: 1px solid #ddd;
      padding: 20px;
      border-radius: 8px;
      transition: box-shadow 0.3s;
    }
    .product:hover {
      box-shadow: 0 0 10px rgba(0,0,0,0.2);
    }
	.product>p{
		font-weight:700;
		color:#f00;
	}
    .footer {
      background: #222;
      color: #ccc;
      padding: 40px 20px;
    }
    .footer h4 {
      color: #fff;
    }
    .footer a {
      color: #aaa;
      text-decoration: none;
    }
    .footer a:hover {
      color: #fff;
    }
.product-details {
      padding: 60px 20px;
      background-color: #0c3c6c;
	  color:#fff;
    }
    .product-details img {
      max-width: 100%;
      border-radius: 8px;
    }
.product-details h4{
	color:#f00;
	font-weight:800;
	margin-top:30px;
}
.btn-buy{
	width:100%;
	margin-top:40px;
}