* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}
body {
  background-color: #E5E5E5;;
  overflow-x: hidden;
}
.product-in a{
  margin-right: 200px;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  background: white;
  box-shadow: 0 2px 10px #333;
  top: 0;
  z-index: 1000;
  position: sticky;
  width:100%;
}
.logo-img {
  display: flex;
  align-items: center;
  font-size: 20px;
}
.logo-img img {
  width: 50px;
  margin-right: 10px;
}
.logo-img strong {
  color: orangered;
}
.logo-img h1 span{
  color: orangered;
}
nav a {
  margin-left: 30px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
}
nav a:hover {
  color: orangered;
}
.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
  gap: 60px;
}
.product{
  width: 500px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product img {
  width:90%;
}
.product-in {
  max-width: 500px;
}
.product-in h1 {
  font-size: 45px;
  color: #1e1e4f;
  line-height: 1.2;
}
.product-in h1 span {
  color: orangered;
}
.product-in p {
  margin: 20px 0;
  color: #444;
  font-size: 16px;
}
.btn {
  display: inline-block;
  padding: 10px 10px;
  background-color: #3f51b5;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: 0.3s;
  float: right !important;
}
.btn:hover {
  background-color: #1d297b;
}

.section {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f0eeee;
  padding: 60px 80px;
}
.section h2 {
  margin-bottom: 30px;
  font-size: 24px;
  color: #333;

}
.card-container {
  display: flex;
  justify-content:center;
  gap: 30px;
  max-width: 800px;
  padding: 20px;
  margin: auto;
}
.card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  width: 250px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
}
.card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 15px;
}
.card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.card p {
  font-size: 14px;
  margin-bottom: 15px;
  color: #555;
}
.card-footer {
  display: flex;
  justify-content:space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
  padding: 0 10px;
}
.card-footer span {
  font-size: 16px;
  font-weight: bold;
  color: orangered;
  flex-shrink: 0;
}
.card-footer a {
  display: inline-block;
  text-decoration: none;
  text-align: center;
  white-space:nowrap;
  padding: 10px 10px;
  background-color:#3f51b5;
  color: white;
  border-radius: 6px;
}
.perfect{
  display: flex;
  flex-direction: column;
  padding-right: 200px;
  gap: -1px;
}
.perfect-card{
  background-color: white;
  border-radius: 10px;
  padding-left: 50px;
  padding-bottom: 50px;
  padding-top: 50px;
  padding-right: 50px;
  box-shadow:0 2px 8px ;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  width: 500px;
  margin: 80px;
  height:200px ;
} 
.perfect-card img {
  width:150px ;
  height:150px ;
}
.perfect-card h3 {
  margin-bottom: 5px;
  font-size: 1.1em;
}
.perfect-card p {
  font-size: 0.95em;
  color: #555;
}
.container{
  display: flex;
}
.shopping img{
  width: 800px;
  height: 700px;
  gap: 10px;
  display: flex;
  justify-content: center;
  padding-right:300px
}
.shopping{
  margin-top: 100px;  
}
.newsletter {
  background: white;
  margin: 20px;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.newsletter h2 {
  color: #333;
  margin-bottom: 15px;
}
.newsletter form {
  display: flex;
  justify-content: center;
  gap: 0;
}
.newsletter input[type="email"] {
  padding: 10px;
  border: 1px solid #ccc;
  border-right: none;
  flex: 1;
  min-width: 180px;
}
.newsletter button {
  padding: 10px 20px;
  background: #3d5afe;
  color: white;
  border: none;
  cursor: pointer;
}
.categories {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 20px;
  text-align: center;
}
.category h3 {
  color: #333366;
  margin-bottom: 10px;
}
.category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.category li {
  margin: 5px 0;
}
