* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Hind Siliguri', 'Poppins', sans-serif;
    font-weight: bold;
    text-decoration: none;
}

body {
    background: url("../images/ponno.jpg") no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    font-weight: bold;
    display: flex;
  flex-direction: column;
  padding-bottom: 67px;
}

header {
  background: red;
  padding: 20px;
  font-size: 26px;
  color: white;
  border-top: 3px solid black;
  border-bottom: 3px solid black;
  display: flex;
  align-items: center;   
  justify-content: center; 
  gap: 10px;  
}

.header-logo {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  border: 2px solid black;
  object-fit: cover; 
}
.span-all {
  color: gold; 
  font-weight: bold; 
}
.marquee {
    background: yellow;
    border-bottom: 3px solid black;
    padding: 15px;
    font-weight: bold;
}

.cart-section {
    max-width: 340px;
    margin: 20px auto;
    padding: 20px;
    background: yellow;
    border: 0px solid black;
    border-radius: 50px;    
    padding: 20px;
}

.cart-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #fff;
    text-align: center;
    font-weight: bold;
    background: red;
    padding: 10px;
    border-radius: 48px;
    border: 0px solid black;
    margin: 10px 20px;
}

.modal-content h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
    text-align: center;
    font-weight: bold;
    background: red;
    padding: 10px;
    border-radius: 48px;
    border: ppx solid black;
    margin: 10px 20px;
}

.cart-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.cart-card {
    width: 280px;
    background-color: #fff;
    border-radius: 48px;
    border: 0px solid black;
    padding: 20px;
    box-sizing: border-box;
    margin-right: 20px;
    margin-left: 20px;
    position: relative;
    transition: transform 0.25s ease;
}
.cart-card:hover { transform: translateY(-4px); }
.cart-card img,
.cart-card video {
    width: 100%;
    height: 150px;
    object-fit: cover;
    
    margin-bottom: 10px;
    border: 0px solid #ccc;
    transition: transform 0.2s ease;
}
.cart-card img:hover,
.cart-card video:hover { transform: scale(1.03); }

.card-title { font-size: 16px; font-weight: 700; color: #333; margin-bottom: 4px; }
.card-sub { font-size: 14px; color: #666; margin-bottom: 6px; }
.quantity-controls { display: flex; justify-content: center; gap: 8px; margin: 10px 0; }
.quantity-controls button {
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background-color: #fff;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}
.quantity-controls button:hover { background-color: #f0f0f0; transform: scale(1.05); }

.remove-btn {
    padding: 12px 10px;
    border-radius: 30px;
    border: 0px solid #c0392b;
    background-color: red;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
    display: block;
    margin: 20px auto; 
}
.remove-btn:hover { background-color: #c0392b; transform: scale(1.03); }

.cart-total { background: wheat;
 padding: 15px;
 border: 0px solid black;
 border-radius: 45px;
 font-size: 16px;
 text-align: center; margin-top: 20px; margin-right: 30px; margin-left: 30px;}
#checkout, #view-orders, #download-orders {
    display: block;
    margin: 20px auto;
    padding: 12px 25px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 38px;
    cursor: pointer;
    border: 0px solid black;
    transition: 0.3s;
}
.button-grid {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 10px;
    justify-content: center;
    margin-top: 5px;
}

.button-grid button {
    padding: 6px 12px;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: 0.2s ease;
    font-size: 13px;
}

#checkout { background: red; color: white; }
#checkout:hover { background: aqua; color: black; }

#view-orders { background: #28a745; color: white; }
#view-orders:hover { background: #218838; }

#download-orders { background: #007bff; color: white; }
#download-orders:hover { background: #0056b3; }
.modal-overlay {
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}
.modal-content {
    background: white;
    padding: 25px;
    border-radius: 50px;
    max-width: 450px;
    width: 90%;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    border: 0px solid black;
}
.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: red;
}
#checkout-form input,
#checkout-form textarea,
#checkout-form select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    background: wheat;
    border-radius: 48px;
    font-size: 14px;
}
#checkout-form button {
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    background: red;
    color: white;
    border: none;
    margin-top: 10px;
    border-radius: 35px;
    cursor: pointer;
}
#checkout-form button:hover { background: aqua; color: black; }


.contact-menu {
  position: fixed;
  bottom: 80px; 
  right: 25px;
  z-index: 999;
  display: flex;
  flex-direction: column-reverse; 
  align-items: center;
}

.contact-btn {
  width: 70px;
  height: 70px;
  background: #e74c3c;
  color: white;
  font-size: 28px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: 3px solid black;
  transition: transform 0.3s, background 0.3s;
}

.contact-btn:hover {
  transform: scale(1.1);
  background: #f1c40f;
  color: black;
}

.contact-options {
  display: flex;
  flex-direction: column-reverse; 
  gap: 12px;
  margin-bottom: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s;
}

.contact-menu.active .contact-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.contact-options .option {
  width: 50px;
  height: 50px;
  background: #e74c3c;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 20px;
  border: 2px solid black;
  transition: transform 0.3s, background 0.3s;
}

.contact-options .option:hover {
  background: #f1c40f;
  color: black;
  transform: scale(1.2);
}

.card-image {
  background-size: cover;
  background-position: center;
}

.popup-menu {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  border: 0px solid black;
  padding: 20px 30px;
  display: none;
  flex-direction: column;
  gap: 15px;
  z-index: 10001;
  min-width: 200px;
  text-align: center;
  animation: fadeInScale 0.3s ease forwards;
}
@keyframes fadeInScale {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.7); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.popup-menu button {
  border: none;
  background-color: #f0f0f0;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-menu button.active {
  background-color: #007bff;
  color: #fff;
}
.popup-menu button:hover {
  background-color: #0056b3;
  color: #fff;
}
.flag-icon {
  width: 20px;
  height: 14px;
  margin-right: 8px;
  vertical-align: middle;
}
.custom-modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10001;
  overflow-y: auto;
}

.modal-content {
  background: #fff;
  border: 0px solid black;
  width: 100%;
  max-width: 400px;
  text-align: center;
  padding: 30px;
  margin: 20px;
  border-radius: 37px;
  position: relative;
  display: flex;
  flex-direction: column;
  max-height: 80vh;
  overflow-y: auto;
}
.close-btn {
  position: absolute;
  top: 10px;
  right: 4px;
  font-size: 36px;
  font-weight: bold;
  cursor: pointer;
  color: #e74c3c;
  transition: all 0.4s ease;
}
.close-btn:hover {
  color: #f1c40f;
  transform: rotate(90deg) scale(1.5);
}
.modal-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border: 4px solid black;
  border-radius: 15px;
  margin-bottom: 15px;
}
#modal-title {
  font-size: 22px;
  background: yellow;
  padding: 5px;
  border-radius: 24px;
  border: 4px solid black;
  color: #2c3e50;
  margin-bottom: 12px;
}
.modal-text {
  flex: 1;  
  font-size: 15px;
  color: #444;
  background: wheat;
  padding: 8px;
  border-radius: 24px;
  border: 4px solid black;
  padding-right: 10px;
  text-align: justify;
  margin-bottom: 15px;
}

.custom-modal {
  display: none;
}

#orders-list { margin: 10px; }
.order-card {
    padding: 10px;
    background: #fff;
    margin-bottom: 12px;
    border-radius: 25px;
    border: 4px solid black;
    box-shadow: 0 1px 5px rgba(0,0,0,0.1);
}
.order-card img { width: 60px; height: 60px; object-fit: cover; margin-right: 10px; border-radius: 4px; }
.order-card-header { display: flex; align-items: center; margin-bottom: 8px; }
.order-card h4 { margin: 0 0 0 5px; font-size: 16px; }
.order-item { display: flex; align-items: center; margin: 5px 0; }
.order-item span { margin-left: 5px; }
.order-footer { margin-top: 8px; font-size: 14px; color: #555; }
.order-status { font-weight: 600; }

@media(max-width:768px) {
  .footer-container { flex-direction: column; text-align: center; gap: 20px; }
  .footer-right a { margin-left: 10px; margin-right: 10px; }
}



footer {
  background: red;
  padding: 40px 20px;
  color: white;
  font-weight: bold;
  border-top: 3px solid black;
  
  position: relative;
  z-index: 100;  
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-left {
  display: inline-block; 
}

.footer-logo {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  border: 2px solid black;
  object-fit: cover; 
  vertical-align: middle;
}

.footer-left h2 {
  font-size: 30px;
  margin: 0 0 0 10px; 
  display: inline-block;
  vertical-align: middle;   
  line-height: 60px; 
  
}

.footer-left p {
  font-size: 18px;
  color: #f5f5f5;
}

.Xrabon {
  color: gold;
  text-decoration: ;
  font-size: 24px;  
} 

.footer-left p i {
  color: yellow;
  border: 3px solid black;
  border-radius: 50%;
  font-size: 26px;
}

.footer-left h2 i {
  color: aqua;
  font-size: 56px;
}

.footer-right a {
  color: white;
  font-size: 22px;
  margin-left: 20px;
  transition: transform 0.3s, color 0.3s;
}

.footer-right a:hover {
  color: gold;
  transform: scale(1.3);
}

.footer-right i {
  background: white;
  padding: 10px;
  color: black;
  border-radius: 12px;
  border: 2px solid black;
}

@media(max-width:768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .footer-right a {
    margin-left: 10px;
    margin-right: 10px;
  }
}
.navbar {
  width: 100%;
  background: rgba(139, 69, 19, 0.85); 
  backdrop-filter: blur(4px); 
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0;
  border-top: 3px solid black;
  box-shadow: 0 -3px 8px rgba(0, 0, 0, 0.2);
  
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999;
}

.nav-item {
  color: #bdc3c7;
  text-align: center;
  font-size: 12px;
  transition: 0.2s;
}

.nav-item i {
  font-size: 22px;
  display: block;
  margin-bottom: 4px;
}

.nav-item.active,
.nav-item:hover {
  color: #f39c12;
}


#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
}

.preloader-content {
  text-align: center;
}

.preloader-logo {
  width: 120px;
  margin-bottom: 20px;
  border-radius: 38px;
  border: 3px solid black;
  animation: logoBounce 2s ease infinite;
}

@keyframes logoBounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.loader {
  width: 60px;
  height: 60px;
  border: 6px solid #f0f0f0;
  border-top: 6px solid #e63946;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 20px auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.typing-text {
  font-size: 28px;
  font-weight: 600;
  color: #1d3557;
  white-space: nowrap;
  display: inline-block;
  min-height: 40px;
  border: 3px solid black;
  border-radius: 28px;
  padding: 15px;
  margin-top: 20px;
}

.cursor {
  display: inline-block;
  font-weight: 600;
  color: #1d3557;
  font-size: 34px;
  margin-left: 2px;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0%,50%,100% { opacity: 1; }
  25%,75% { opacity: 0; }
}
