.menu-icon {
    font-size: 30px;
    cursor: pointer;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    color: #5a3a3a;
}
.side-nav {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #f8e1e7; /* Light pink */
    overflow-x: hidden;
    transition: 0.4s ease;
    padding-top: 60px;
    box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.2);
    z-index: 1001;
}
.side-nav a {
    padding: 12px 20px;
    text-decoration: none;
    font-size: 20px;
    color: #5a3a3a;
    display: block;
    transition: 0.3s;
    cursor:pointer;
    position:relative;
    z-index:1002;
}

.side-nav a:hover {
    background-color: #eac4ce;
}

.close-btn {
    position: absolute;
    top: 15px;
    left:200px;
    font-size: 36px;
    cursor: pointer;
    transition:left 0.4s ease;
}
.visually-hidden{
    position:absolute;
    left:-9999px;
}
.Mvideo {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background-color: #f8d7da;
    padding: 0;
    text-align:center;
}

.Mvideo video {
    width: 100%;              
    height: auto;              
    max-width: 80vw;          
    object-fit: contain;       
    border-radius: 10px;       
    margin: 20px auto;
    display:inline-block;
}

/* Desktop-specific (optional) */
@media (min-width: 768px) {
    .Mvideo {
        width: 80%;
        max-width:1000px;
        max-height:600px;
    }

    .Mvideo video {
        max-width: 100%;       
    }
}

body {
    margin:0;
    padding:0;
    overflow-x:hidden;
    background-color: #f8d7da;
}
.intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 8%;
    background-color: #f8d7da;
    width: 100%;
    box-sizing: border-box;
}

.logo {
    width: 45%; 
    max-width: 600px; 
    height: auto; 
}

a.logo-link {
    display:inline-block;
    height: 100%;
}
.logo-link img {
    display:block;
    width: 100%;
    height:auto
}

.intro-text {
    width: 55%;
    text-align: left;
    font-family: 'Playfair Display', sans-serif;
    font-size: 30px;
    font-weight: 600;
    color:#4a2c2a;
    line-height:1.5;
    padding-left: 5%;
}
.intro-text h2 {
    font-family: 'Great Vibes',cursive;
    font-size: 60px;
    font-weight:900;
    color:#3d1c1a;
    margin-bottom:15px;
}
.featured {
    text-align: center;
    padding: 50px 10px;
    background-color: #fff5f7; /* Light pastel pink */
}

/* Carousel Container */
.carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: auto;
    max-width: 1000px;
}

/* Carousel Track (Scrolling Effect) */
.carousel-track {
    display: flex;
    gap: 20px;
    width: 100%; 
    overflow-x:auto;
}

/* Individual Product Items */
.carousel-item {
    min-width: 200px;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Product Images */
.carousel-item img {
    width: 100%;
    max-width:200px;
    height: 250px;
    object-fit:cover;
    border-radius: 10px;
}

/* Product Titles */
.carousel-item p {
    font-size: 30px;
    font-weight: bold;
    margin: 10px 0;
    color: #5a3a3a;
}

/* Shop Now Button */
.shop-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #a05d6a;
    color: white;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    transition: background 0.3s;
}

.shop-btn:hover {
    background: #7e4754;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255,255,255,0.7);
    border: none;
    padding: 10px;
    font-size: 30px;
    cursor: pointer;
    z-index: 2;
    border-radius: 50%;
}
.carousel-btn.prev {
    left: 10px;
}
.carousel-btn.next {
    right: 10px;
}
.img-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
    cursor: pointer;
  }
  
  .modal-content {
    display: block;
    margin: auto;
    max-width: 80%;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    color: #5a2a2a;
    text-align:center;
  }
.custom-orders {
    background-color: #fce4ec; 
    padding: 50px 10px;
    display: flex;
    justify-content: center;
}

/* Custom Orders Content */
.custom-orders-content {
    display: flex;
    align-items: center;
    max-width: 1000px;
    width: 90%;
    gap: 40px;
}

/* Image Styling */
.custom-orders-image img {
    width: 100%;
    max-width: 600px;
    max-height:400px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Text Styling */
.custom-orders-text {
    max-width: 700px;
}

.custom-orders-text h2 {
    font-size: 32px;
    color: #5a3a3a;
    font-weight: bold;
}

.custom-orders-text p {
    font-size: 18px;
    color: #7e4754;
    line-height: 1.5;
}

.custom-order-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #a05d6a;
    color: white;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    transition: background 0.3s;
    margin-top: 10px;
}

.custom-order-btn:hover {
    background: #7e4754;
}
.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;
}
.coder {
    text-align:center;
    font-size:14;
    color:#5a3a3a;
    margin-top:20px;
  }