*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background-color: #f7f6f2;
  color: #333;
}

header {
  background-color: #3b4b3a;
  color: #f2e8c6; 
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 5%;
}

header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

header .logo img
{
  height: 50px;
  width: 50px;
}

header h1 
{
  font-size: 24px;
  letter-spacing: 1px;
  margin: 0;
}

nav ul 
{
  list-style: none;
  display: flex;
  gap: 25px;
}

nav ul li a 
{
  text-decoration: none;
  color: #f2e8c6;
  font-weight: 500;
  transition: 0.3s;
}

nav ul li a:hover,
nav ul li a.active 
{
  color: #d4af37;
  border-bottom: 2px solid #d4af37;
}

.container {
  display: flex;
  width: 100%;
  padding: 20px 0;
  gap: 20px;
}

.sidebar 
{
  width: 25%;
  background-color: #e9e6d7;
  padding: 20px;
  border-radius: 8px;
}

.sidebar h3 
{
  color: #3b4b3a;
  margin-bottom: 10px;
}

.sidebar input 
{
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 8px;
}

.sidebar button 
{
  width: 100%;
  padding: 8px;
  background-color: #3b4b3a;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.sidebar ul 
{
  list-style: none;
  margin: 10px 0 20px 0;
}

.sidebar ul li 
{
  margin-bottom: 8px;
}

.sidebar ul li a 
{
  text-decoration: none;
  color: #3b4b3a;
  transition: 0.3s;
}

.sidebar ul li a:hover 
{
  color: #d4af37;
}

main {
  flex: 1;
}

.banner {
  position: relative;
}

.banner img
{
  width: 100%;
  border-radius: 8px;
}

.banner-text 
{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  background: rgba(59, 75, 58, 0.6);
  padding: 20px 40px;
  border-radius: 8px;
}

.banner-text h2 
{
  font-size: 28px;
  color: #f2e8c6;
}

.banner-text p 
{
  font-size: 16px;
  margin: 10px 0;
}

.btn 
{
  display: inline-block;
  background-color: #d4af37;
  color: #3b4b3a;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s;
}

.btn:hover 
{
  background-color: #c19a2e;
  color: #fff;
}

.intro 
{
  text-align: center;
  padding: 40px 20px;
}

.intro h2 
{
  color: #3b4b3a;
  margin-bottom: 15px;
}

.intro .features 
{
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 20px;
}

.feature 
{
  width: 30%;
  background: #fff;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}

.feature img 
{
  width: 60px;
  margin-bottom: 10px;
}

.highlight-products 
{
  text-align: center;
  padding: 40px 0;
}

.product-grid 
{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.product 
{
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  padding: 15px;
  transition: 0.3s;
}

.product:hover 
{
  transform: translateY(-5px);
}

.product img 
{
  width: 100%;
  height: 180px;
  border-radius: 6px;
  object-fit: cover;
  margin-bottom: 10px;
}

.product-detail 
{
  display: flex;
  gap: 40px;
  padding: 40px 5%;
}

.product-detail-image img 
{
  width: 400px;
  border-radius: 8px;
}

.product-detail-info h2 
{
  color: #3b4b3a;
  margin-bottom: 10px;
}

.price 
{
  color: #d4af37;
  font-weight: bold;
  font-size: 18px;
}

.news 
{
  padding: 40px 5%;
}

.news-item 
{
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  background-color: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.news-item img 
{
  width: 220px;
  border-radius: 8px;
  object-fit: cover;
}

.about 
{
  padding: 40px 10%;
  line-height: 1.6;
}

.about h2, .about h3 
{
  color: #3b4b3a;
  margin-top: 20px;
  margin-bottom: 10px;
}

.contact 
{
  padding: 40px 5%;
}

.contact-container 
{
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-form 
{
  flex: 1;
}

.contact-form input,
.contact-form textarea 
{
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.contact-info 
{
  flex: 1;
}

footer 
{
  background-color: #3b4b3a;
  color: #f2e8c6;
  text-align: center;
  padding: 15px 0;
  margin-top: 40px;
}

.search-bar input {
    display: flex;
    gap: 5px;
    font-size: 18px;
    padding: 10px;
    width: 280px;
}
.search-bar button {
    font-size: 20px;
    padding: 15px 20px;
}
@media (max-width: 900px) 
{
  .container 
  {
    flex-direction: column;
  }
  .sidebar 
  {
    width: 100%;
  }
  .product-detail 
  {
    flex-direction: column;
    align-items: center;
  }
  .news-item 
  {
    flex-direction: column;
    align-items: center;
  }
}
iframe {
    display: block;
    margin: 20px auto;
    width: 100%;       
    max-width: 900px;  
    aspect-ratio: 16/9;
    height: auto;
}
.wide-image{
  max-width: 100%;
    width: auto;    
    height: auto;   
    display: block;
}