body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f1f2f6;
  }
  
  /* Navbar */
  .navbar {
    background-color: #1e1e1e;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
  }
  
  .logo {
    font-size: 24px;
    font-weight: bold;
  }
  
  
  .logo span {
    color: gold;
  }

  
  .nav-right a {
    margin-left: 20px;
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  .container {
    display: flex;
    padding: 20px;
  }
  
  /* Sidebar */
  .sidebar {
    width: 200px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    height: fit-content;
  }
  
  .sidebar h3 {
    margin-bottom: 15px;
    color: #333;
  }
  
  .sidebar ul {
    list-style: none;
    padding: 0;
  }
  
  .sidebar ul li a {
    display: block;
    padding: 10px 0;
    color: #333;
    text-decoration: none;
    font-weight: 500;
  }
  
  .sidebar ul li a:hover {
    color: #2575fc;
  }
  
  /* Product Grid */
  .product-area {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-left: 30px;
    flex: 1;
  }
  
  /* Product Card
  .product-card {
    background: white;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: 0.3s ease;
    cursor: pointer;
    transform: scaleY(2);
  }
  
  .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  } */
  /* animation */
  /* .product-card {
    background: white;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    
  }
    
  .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  } */
  

  .product-card {
    background: white;
    border-radius: 16px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }
  
  .product-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  }
  
  .product-card img {
    width: 100%;
    border-radius: 12px;
    transition: transform 0.3s ease;
  }
  
  .product-card:hover img {
    transform: scale(1.05);
  }
  

  
  .product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
  } */
  
  .product-card h4 {
    margin: 10px 0 5px;
    font-size: 16px;
    font-weight: 600;
  }
  
  .rating {
    font-size: 14px;
    color: #888;
    margin-bottom: 5px;
  }
  
  .price {
    color: #2575fc;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .product-card button {
    padding: 10px;
    background: #2575fc;
    color: white;
    border: none;
    border-radius: 8px;
    width: 100%;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .product-card button:hover {
    background: #1a5edc;
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 20px;
    /* background: #eee; */
    margin-top: 70px;
    font-size: 20px;
    font-weight: 100px;
  }
/* Banner Section */
.banner {
    background: linear-gradient(to right, #ff416c, #ff4b2b);
    color: white;
    padding: 60px 30px;
    text-align: center;
    position: relative;
    
  }
  
  .banner-content h2 {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 800;
  }
  
  .banner-content p {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .banner-btn {
    display: inline-block;
    background: white;
    color: #ff416c;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .banner-btn:hover {
    background: #ffe2e6;
  }
/* Banner Carousel Styling */
.carousel {
  width: 100%;
  height: 400px; /* Adjust as needed */
  overflow: hidden;
  position: relative;
}

.slides {
  display: flex;
  width: 300%;
  height: 100%;
  animation: slide 15s infinite;
}

.slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
} 

.carousel {
  width: 100%;
  overflow: hidden;
}

.carousel .slides {
  display: flex;
  width: 100%;
}

.carousel .slide {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover; /* This prevents stretching */
}

/* Optional animation */
@keyframes slide {
  0% { transform: translateX(0); }
  33% { transform: translateX(-100%); }
  66% { transform: translateX(-200%); }
  100% { transform: translateX(0); }
}

  
  /* Optional: add left/right controls or dots later */
/* Deal Timer Section */
.deal-timer {
    text-align: center;
    background: #fff0f3;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 12px;
    font-size: 20px;
    color: #d62828;
  }
  
  .deal-timer h3 {
    margin-bottom: 10px;
    font-size: 24px;
  }
  .banner-container {
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  
  .banner-img {
    width: 100%;
    height: auto;
    object-fit: cover; /* Optional: keeps aspect ratio */
    display: block;
  }

/* 1 */

.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}
.category-filters {
  text-align: center;
  margin: 20px 0;
}
.category-filters button {
  padding: 10px 15px;
  margin: 5px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s;
}
.category-filters button:hover {
  background: #0077ff;
}


.product-section {
  display: block; /* or remove this rule entirely */
}

.product-area {
  width: 100%;
  padding: 20px;
}


.filter-buttons {
  text-align: center;
  margin-bottom: 20px;
}
.filter-buttons button {
  margin: 5px;
}

.cart-container {
  padding: 20px;
  max-width: 800px;
  margin: auto;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.cart-item img {
  border-radius: 10px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 15px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}

.cart-item img {
  border-radius: 10px;
}

.item-info {
  flex-grow: 1;
}

.remove-btn {
  background-color: #ff4444;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 5px;
  cursor: pointer;
}


.checkout-container {
  max-width: 500px;
  margin: 30px auto;
  padding: 20px;
  background: #fdfdfd;
  border: 1px solid #ccc;
  border-radius: 10px;
}

.checkout-container input[type="text"],
.checkout-container input[type="tel"] {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #bbb;
}

.checkout-container button {
  padding: 12px 20px;
  background: #007bff;
  border: none;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}


.confirmation-box {
  text-align: center;
  margin-top: 100px;
  font-family: sans-serif;
}

.confirmation-box h1 {
  color: green;
  margin-bottom: 20px;
}


/* Responsive Design */

@media (max-width: 768px) {
  .navbar, .nav-right {
    flex-direction: column;
    align-items: center;
  }

  .product-card {
    width: 90%;
    margin: 10px auto;
  }

  .product-area {
    flex-direction: column;
    align-items: center;
  }

  .cart-container, .confirmation-box {
    padding: 15px;
  }
}



.checkout-container {
  max-width: 400px;
  margin: 50px auto;
  padding: 30px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.checkout-container label {
  display: block;
  margin-top: 15px;
  font-weight: 600;
}

.checkout-container input,
.checkout-container textarea,
.checkout-container select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

#razorpayButton {
  display: none; /* initially hidden */
  background-color: #0070f3;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-right: 10px;
}


.logo {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1.6rem;
  text-decoration: none;
  color: white;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo img {
  height: 40px;
  margin-right: 10px;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Animation on hover */
.logo:hover img {
  /* transform: rotate(-5deg) scale(1.05); */
  box-shadow: 0 0 12px gold;
}


@media (max-width: 600px) {
  .logo {
    font-size: 1.2rem;
  }
  .logo img {
    height: 30px;
  }
}


/* Splash Screen */
#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

#splash-screen video {
  width: 200px;
  height: auto;
}

/* Fade Out Animation */
.fade-out {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s;
}



/* Splash Screen */
#splash-screen {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 1s ease;
}

#splash-screen img {
  width: 180px;
  animation: popUp 1.2s ease-out forwards;
}

/* Optional logo entrance animation */
@keyframes popUp {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Fade out */
#splash-screen.fade-out {
  opacity: 0;
  visibility: hidden;
}



/* part1 completed  */

.orders-section {
  padding: 20px;
  max-width: 800px;
  margin: auto;
}
.orders-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.order-item {
  display: flex;
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.order-img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  margin-right: 15px;
}
.order-details {
  flex: 1;
}
.order-status {
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
}
.order-status.paid {
  background: #d1e7dd;
  color: #0f5132;
}



#chatbot-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

#chatbot-toggle {
  background-color: #111;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
}

#chatbot-box {
  display: none;
  flex-direction: column;
  width: 300px;
  height: 400px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  overflow: hidden;
  position: relative;
}

#chatbot-header {
  background-color: #111;
  color: white;
  padding: 10px;
  text-align: center;
  font-weight: bold;
}

#chatbot-messages {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  font-size: 14px;
}

#chatbot-input {
  border: none;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
  border-top: 1px solid #ccc;
}


.measurement-form {
  margin-top: 20px;
  padding: 10px;
  background: #f3f3f3;
  border-radius: 8px;
}
.measurement-form label {
  display: block;
  margin-bottom: 8px;
}

