/* ==========================================
   GLOBAL & STORE CONTAINER
   ========================================== */
body {
  background: #0b0b0b;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.store-section { 
  width: 100%;
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 40px 20px; 
  color: #eaedf3; 
  box-sizing: border-box;
}

/* Back Button Styling */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fefdfd;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.back-btn:hover {
  color: #dce8e9;
  border-color: #f5f8f8;
  background: rgba(0, 117, 124, 0.1);
  transform: translateX(-3px);
}

.store-header { 
  text-align: center; 
  margin-bottom: 30px; 
}

.store-header h1 { 
  font-size: 2.2rem; 
  color: #00f2fe; 
  margin-bottom: 8px; 
}

.store-header p { 
  color: #5590cf; 
  font-size: 1rem; 
}

/* Filter Bar */
.filter-bar { 
  display: flex; 
  justify-content: center; 
  gap: 10px; 
  margin-bottom: 35px; 
  flex-wrap: wrap; 
}

.filter-btn { 
  background: #1a1a2e; 
  border: 1px solid #333; 
  color: #ccc; 
  padding: 8px 18px; 
  border-radius: 20px; 
  cursor: pointer; 
  transition: 0.3s; 
}

.filter-btn.active, .filter-btn:hover { 
  background: #4facfe; 
  color: #fff; 
  border-color: #4facfe; 
}

/* Product Cards Grid */
.product-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 25px; 
}

.product-card { 
  background: #16213e; 
  border-radius: 12px; 
  overflow: hidden; 
  position: relative; 
  border: 1px solid rgba(255, 255, 255, 0.05); 
  transition: transform 0.3s ease, border-color 0.3s; 
}

.product-card:hover { 
  transform: translateY(-5px); 
  border-color: #4facfe;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.badge { 
  position: absolute; 
  top: 12px; 
  right: 12px; 
  background: #e94560; 
  color: #fff; 
  font-size: 0.75rem; 
  padding: 4px 10px; 
  border-radius: 12px; 
  font-weight: bold; 
}

.card-img-holder img { 
  width: 100%; 
  height: 160px; 
  object-fit: cover; 
}

.card-body { 
  padding: 18px; 
}

.card-body h3 { 
  font-size: 1.1rem; 
  margin-bottom: 8px; 
}

.card-body p { 
  font-size: 0.85rem; 
  color: #b0b0b0; 
  margin-bottom: 15px; 
  min-height: 40px; 
}

.price-row { 
  margin-bottom: 15px; 
  display: flex; 
  align-items: center; 
  gap: 10px; 
}

.price { 
  font-size: 1.4rem; 
  font-weight: bold; 
  color: #00f2fe; 
}

.original-price { 
  font-size: 0.9rem; 
  color: #777; 
  text-decoration: line-through; 
}

/* Action Buttons */
.card-actions { 
  display: flex; 
  gap: 10px; 
}

.btn-buy { 
  flex: 1; 
  background: #00f2fe; 
  border: none; 
  color: #000; 
  font-weight: bold; 
  padding: 10px; 
  border-radius: 6px; 
  cursor: pointer; 
  transition: opacity 0.2s;
}

.btn-buy:hover {
  opacity: 0.9;
}

/* Preview Modal Popup */
.modal { 
  display: none; 
  position: fixed; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  background: rgba(0,0,0,0.8); 
  z-index: 1000; 
  justify-content: center; 
  align-items: center; 
}

.modal-content { 
  background: #1a1a2e; 
  padding: 20px; 
  border-radius: 10px; 
  width: 90%; 
  max-width: 600px; 
  color: #fff; 
  position: relative; 
}

.close-btn { 
  position: absolute; 
  top: 10px; 
  right: 15px; 
  font-size: 1.5rem; 
  cursor: pointer; 
  color: #fff; 
}


/* ==========================================
   FULL WIDTH PROFESSIONAL FOOTER
   ========================================== */
.site-footer {
  width: 100%; /* Poori screen ki width lega */
  background-color: #080e18;
  color: #ffffff;
  padding: 60px 40px 30px 40px;
  box-sizing: border-box; /* Padding ki wajah se overflow nahi hoga */
  margin-top: 60px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(5, 1fr); 
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 50px auto;
}

.footer-col h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 18px;
  color: #ffffff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #a0aab8;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Footer Middle Section */
.footer-middle {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1200px;
  margin: 0 auto 25px auto;
}

.footer-brand h2 {
  font-size: 48px;
  letter-spacing: 2px;
  margin: 0;
  line-height: 1;
}

.footer-brand span {
  font-size: 13px;
  letter-spacing: 1.5px;
  color: #a0aab8;
}

.footer-socials {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-socials a {
  color: #ffffff;
  font-size: 22px;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease;
}

.footer-socials a:hover {
  color: #a0aab8;
  transform: translateY(-2px);
}

.footer-divider {
  border: 0;
  border-top: 1px solid #1a2332;
  max-width: 1200px;
  margin: 20px auto 25px auto;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-size: 13px;
  color: #a0aab8;
}

.optout-link {
  text-align: right;
  margin-bottom: 15px;
}

.optout-link a {
  color: #a0aab8;
  text-decoration: underline;
  font-size: 12px;
}

.copyright-text {
  line-height: 1.8;
  margin-bottom: 25px;
}

.copyright-text a {
  color: #a0aab8;
  text-decoration: underline;
}

.copyright-text strong {
  color: #ffffff;
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .site-footer {
    padding: 40px 20px 20px 20px;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-middle {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .optout-link {
    text-align: center;
  }
}