:root{
  --bg:#f7f8fa;
  --card:#ffffff;
  --accent:#cfcfcf;
  --primary:#bdbdbd;
  --text:#222;
  --muted:#6b6b6b;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  background:linear-gradient(180deg,var(--bg),#fff);
  color:var(--text);
}
.site-header {
  background: #C0C0C0;   /* pastel silver */
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between; /* left = logo, right = cart */
}
.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo {
  height: 55px; /* adjust logo size */
  width: auto;
  object-fit: contain;
}
.brand-name {
  font-size: 1.6rem;
  font-weight: bold;
  color: #333;
}
.header-right .cart-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #000;
  text-decoration: none;
}
.cart-count {
  background: #fff;
  color: #000;
  font-size: 1.1rem;   /* bigger count */
  font-weight: bold;
  padding: 2px 8px;
  border-radius: 12px;
  margin-left: 5px;
  border: 2px solid #000;
}
.logo {
  width: 120px;   /* Adjust size */
  height: auto;   /* Keeps aspect ratio */
}
.logo{display:flex;align-items:center;gap:12px}
.logo img{height:40px}
.logo h1{margin:0;font-size:20px;color:var(--primary);letter-spacing:1px}
.header-right a{color:var(--muted);text-decoration:none}
.container{max-width:1100px;margin:28px auto;padding:0 18px}
grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px; /* space between products */
  margin: 20px 0;
}
.sub-header {
  width: 100%;
  background-color: #0a0909; /* pastel silver (matches header/footer theme) */
  text-align: center;
  padding: 12px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.sub-header ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center; /* centers buttons horizontally */
  gap: 20px;               /* space between buttons */
}

.sub-header ul li a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  font-weight: 600;
  padding: 8px 20px;
  border: 2px solid white;   /* button border */
  border-radius: 6px;        /* rounded corners */
  transition: all 0.3s ease; /* smooth hover effect */
}

.sub-header ul li a:hover {
  background-color: #ffffff; /* button fills white */
  color: #333;               /* text turns dark */
  border-color: #121010;        /* border turns dark */
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f5f5f5;
}

header {
  background: #c0c0c0;
  padding: 15px;
  text-align: center;
  color: white;
}

.sub-header, .subcategory-bar {
  background: #c0c0c0;
  padding: 12px;
  text-align: center;
}

.sub-header ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.sub-header ul li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  border: 2px solid white;
  padding: 6px 15px;
  border-radius: 5px;
  transition: 0.3s;
}

.sub-header ul li a:hover {
  background: white;
  color: #333;
}

.subcategory-bar button {
  margin: 0 10px;
  padding: 8px 18px;
  border: 2px solid white;
  background: transparent;
  color: rgb(248, 242, 242);
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.subcategory-bar button:hover {
  background: rgb(231, 225, 225);
  color: #333;
}

.product-sections {
  padding: 20px;
  text-align: center;
}

.product-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.product-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 15px;
  width: 200px;
}

.product-card img {
  width: 100%;
  border-radius: 8px;
}

.product-card button {
  background: #c0c0c0;
  border: none;
  padding: 8px 15px;
  margin-top: 8px;
  border-radius: 5px;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.product-card button:hover {
  background: #333;
}

/* Product Styling */
.product-sections {
  padding: 30px;
}

.product-category h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.product-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.product-card {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  width: 180px;
  text-align: center;
  font-weight: bold;
}

.card.product {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.card.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.card.product img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 10px;
}
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:18px}
.card{background:var(--card);border-radius:10px;padding:14px;border:1px solid #eee;box-shadow:0 6px 18px rgba(0,0,0,0.04)}
.products {
  display: flex;
  justify-content: center;   /* center them */
  gap: 20px;                 /* spacing between items */
  flex-wrap: wrap;           /* allows wrap on smaller screens */
}
.product {
  flex: 1 1 200px;  /* responsive width: min 200px */
  max-width: 250px; /* keeps product card neat */
  text-align: center;
}
.product img{width:100%;height:180px;object-fit:cover;border-radius:8px}
.product h3{margin:8px 0 4px;font-size:18px;color:#111}
.product p{font-size:13px;color:var(--muted);margin:0 0 8px}
.price{font-weight:700;color:#111;font-size:16px}
.row{display:flex;justify-content:space-between;align-items:center;margin-top:10px}
.btn{display:inline-block;padding:8px 12px;border-radius:8px;background:var(--primary);color:#fff;text-decoration:none;border:none;cursor:pointer}
.btn.secondary{background:#fff;color:var(--primary);border:1px solid var(--accent)}
.small{font-size:13px;color:var(--muted)}
.site-footer {
  width: 100%;
  background-color: #c0c0c0; /* pastel silver */
  color: white;
  padding: 40px 20px;
  margin-top: 40px;
  font-size: 14px;
}

.footer-columns {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap; /* responsive */
  text-align: left;
  margin-bottom: 20px;
}

.footer-col {
  flex: 1;
  min-width: 180px;
  margin: 10px 20px;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 6px 0;
}

.footer-col ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #222; /* dark hover */
}

.social-links {
  text-align: center;
  margin: 20px 0;
}

.social-links a {
  display: inline-block;
  margin: 0 10px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.2);
  opacity: 0.8;
}

.social-icon {
  width: 28px;
  height: 28px;
  fill: white;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: #fff;
}
.social-icon:hover {
  transform: scale(1.2);
  fill: #222; /* dark hover effect */
}
.table{width:100%;border-collapse:collapse}
.table th,.table td{padding:10px;border-bottom:1px solid #eee;text-align:left}
.form-row{display:flex;flex-direction:column;gap:8px;margin-bottom:12px}
.input,textarea,select{padding:10px;border:1px solid #e6e6e6;border-radius:6px}
@media(max-width:600px){.product img{height:150px}}
/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-icon {
  width: 35px;
  height: 35px;
  margin-top: 12px;
}
/* Popup message styling */
.popup {
  position: fixed;
  top: 80px; /* distance from top */
  right: -350px; /* start hidden outside screen */
  background-color: #007bff; /* blue color */
  color: white;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  font-weight: 500;
  font-size: 16px;
  z-index: 10000;
  transition: right 0.6s ease-in-out;
}

/* Optional red version (you can switch class in JS) */
.popup.red {
  background-color: #dc3545;
}







