body {
  font-family: "Segoe UI", sans-serif;
}

nav > div:last-child {
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: black;
    font-weight: 500;
}

nav a:hover{
  border: none;
  color: #e63900;
  text-decoration: none;
}


.head{
    display: flex;
    justify-content: space-between;
    margin-left: 90px;
    margin-right: 90px;
}

.plant{
  text-align: center;
  margin-top: 80px;
}

.flower {
    display: grid;
    padding-top: 60px;
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px; 
    margin: 40px;
}

.flower > div {
    text-align: center;
}

.flower p{
    color: orangered;
    font-weight: 600;
}

.flower button {
  padding: 8px 16px;
  margin-top: 8px;
  background-color: orangered; /* matches your theme */
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s ease;
  margin-bottom: 90px;
}

.flower button:hover {
  background-color: darkorange;
}

.info-card {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 8px;
  max-width: 1000px;
  margin: auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  position: relative;
}

.image-container {
  position: relative;
  flex: 1;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(255, 140, 0, 0.5), transparent);
}

.content {
  flex: 1;
  padding: 20px;
  position: relative;
}

.trusted-badge {
  position: absolute;
  top: -90px;
  left: 45%;
  width: 170px;
  transform: translateX(-50%);
  z-index: 2;
}


h2 {
  font-size: 28px;
  margin-top: 20px;
  margin-left: 20px;
}

ul {
  padding-left: 20px;
}

li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #555;
}

.deal{
  text-align: center;
  margin-top: 60px;
}




.container {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 40px auto;
  max-width: 1000px;
  padding-top: 30px;
}

.left-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.deal-card {
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  color: white;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.deal-card.small {
  width: 300px;
  height: 143px;
}

.deal-card.large {
  width: 500px;
  height: 300px;
}

.overlay{
  background-color: rgba(0,0,0,0.6);
  width: 100%;
  height: 100%;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.discount {
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  margin-bottom: 8px;
}

.overlay button {
  padding: 6px 12px;
  background-color: #ffffffbb;
  border: none;
  color: black;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
}
.news {
  position: relative;
  width: 1300px;        
  margin: 60px auto;    
  border-radius: 10px;
  overflow: hidden; 
}   

.news img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

.news form {
  position: absolute;
  top: 50%;             
  left: 50%;            
  transform: translate(-50%, -50%);  
  text-align: center;
  color: white;
}

.news form h1 {
  font-size: 60px;
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;            
}

.news input {
  padding: 10px;
  width: 440px;
  border-radius: 4px;
  border: none;
}

button.sub {
  padding: 10px 20px;
  background-color: orangered;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

button.sub:hover {
  background-color: #e63900;  
}

.footer-clean {
  padding: 40px 0;
  color: #4b4c4d;
}


.footer-clean ul {
  list-style: none;
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 0;
}

.footer-clean ul a {
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
}

.footer-clean ul a:hover {
  opacity: 1;
}

.footer-clean .item.social {
  display: flex;
  justify-content: flex-end;  
  align-items: center;        
  flex-wrap: nowrap;
  margin-top: 22px;           
}

.footer-clean .item.social > a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border-radius: 50%;
  border: 1px solid #ccc;
  margin-left: 10px;
  color: inherit;
  opacity: 0.75;
  overflow: hidden;
  text-decoration: none;
}

.footer-clean .item.social > a:first-child {
  margin-left: 0;
}

.footer-clean .item.social > a:hover {
  opacity: 0.9;
}

.footer-clean .copyright {
  margin-top: 14px;
  margin-bottom: 0;
  font-size: 13px;
  opacity: 0.6;
  text-align: right;
}






 
