.orders-header {
    text-align: center;
    padding: 20px;
}

.orders-header img {
    max-height: 80px;
}

.category {
    background: #a05d6a;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 22px;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 5px;
    transition: background 0.3s;
}

.category:hover {
    background: #7e4754;
}
.intro1 {
    display: flex;
    align-items: center;
    justify-content: space-between; 
    padding: 20px 5%;
    max-height: 180px; 
    gap: 40px;
    width:100%;
    background-color: #f8d7da;
    box-sizing: border-box;
    overflow: hidden;
}
.logo1 {
    width: 35%; 
    max-width: 300px; 
    max-height: 150px;
}

.intro-text1 {
    width: 55%; 
    text-align: left;
    font-family: 'Playfair Display', sans-serif;
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 600;
    color: #4a2c2a;
    line-height: 1.4;
    padding-left: 5%;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    
    white-space: normal; 
    overflow: visible; 
    text-overflow: clip;
}
.intro-text1 h2 {
    font-family: 'Great Vibes',cursive;
    font-size: clamp(36px, 4vw, 55px);
    font-weight: 800;
    white-space: nowrap; 
    margin-bottom: 5px;
}
.categories {
    display: flex !important; 
    flex-direction: row !important;
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 20px; 
    padding: 20px 0;
    width: 100%;
}

.category {
    position: relative;
    width: 20%;
    text-align: center;
    cursor: pointer;
    background-color: #91575c;
    padding: 15px;
    border-radius: 8px;
    transition: transform 0.2s ease-in-out;
    min-width: 150px;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.category:hover {
    transform: scale(1.05);
}
.dropdown {
    display:none;
    height: 0;
    width: 100%;
    background-color: #f8d7da;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: height 0.5s ease-in-out;
    position: relative;
}
.dropdown.show {
    height:auto;
    max-height:1000px;
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 20px;
}
.product img {
    width:100%;
    min-height:200px;
    min-width:200px;
    max-height: 300px;
    object-fit:cover;
    border-radius:8px;
}
.grid {
    display:grid;
    grid-template-columns: repeat(4,1fr);
    gap: 15px;
    padding:20px;
    width:100vw;
    max-width: 93%;
    min-height:200px;
}
.product.placeholder {
    min-height:200px;
    opacity: 0.6;
}
.product.placeholder img {
    width:100%;
    height:auto;
    min-height:150px;
    filter: blur(5px);
    opacity: 0.6;
}

.product.placeholder p {
    color: #777; 
}

.product.placeholder:hover {
    transform: none; 
    cursor: default;
}
.modal-content {
    display: block;
    margin: auto;
    max-width: 80%;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    color: #5a2a2a; /* now it's readable */
    text-align: center;
  }
  
  .modal-content h2 {
    margin-top: 0;
    font-size: 28px;
  }
  
  .modal-content p {
    font-size: 18px;
    line-height: 1.5;
  }
.featured-product {
    background-color: #fce4ec;
    padding: 40px 20px;
    margin-top: 40px;
    width:100%;
}

.featured-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.featured-image-group {
    display:flex;
    flex-direction: row;
    gap:15px;
}

.featured-image-group img {
    width: 100%;
    max-height: 400px;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.featured-info {
    max-width: 600px;
}

.featured-info h2 {
    font-size: 50px;
    color: #5a3a3a;
    margin-bottom: 10px;
}

.featured-info p {
    font-size: 25px;
    color: #7e4754;
    margin-bottom: 20px;
}

.shop-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #a05d6a;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.shop-btn:hover {
    background-color: #7e4754;
}
.reviews-section {
    padding: 40px;
    background-color: #f8d7da;
    text-align: center;
  }
  
  .reviews-section h2 {
    font-size: 32px;
    color: #5a2a2a;
    margin-bottom: 30px;
  }
  
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px;
    justify-items: center;
    margin:0 auto;
  }
  
  .review {
    width:100%;
    max-width: 700px;
    text-align: left;
  }
  
  .review img {
    width: 100%;
    max-height:250px;
    max-width: 250px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
  }
  
  .review p {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
  }
  .contact {
    background-color: #fce4ec; /* Light pink */
    text-align: center;
    padding: 50px 20px;
}
.contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 500px;
    margin: auto;
}

.contact input,
.contact textarea {
    width: 100%;
    max-width: 400px;
    padding: 10px;
    border: 1px solid #d8a1b0;
    border-radius: 5px;
    font-size: 16px;
}

.contact button {
    background-color: #a05d6a;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact button:hover {
    background-color: #7e4754;
}
.contact-links {
    margin-top: 20px;
    font-size: 18px;
}

.contact-links a {
    color: #7e4754;
    text-decoration: none;
    font-weight: bold;
}

.contact-links a:hover {
    text-decoration: underline;
}