body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #fefefe;
  color: #111;
}

a {
  text-decoration: none;
  color: inherit;
}

/* 🔝 Nav */
.shop-navbar {
  background-color: #fff;
  border-bottom: 4px solid #0057b8;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.shop-logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e63946;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-weight: 600;
  color: #444;
}

.nav-links a:hover {
  color: #e63946;
}

/* 🎯 Hero */
.shop-hero {
  background-color: #fff;
  text-align: center;
  padding: 5rem 2rem 4rem;
}

.shop-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.shop-hero p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* 🟥 Categories */
.shop-categories {
  padding: 4rem 2rem;
  background-color: #fafafa;
}

.section-heading {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-heading .stripe {
  height: 6px;
  width: 100px;
  background-color: #0057b8;
  margin: 0 auto 1rem;
  border-radius: 3px;
}

.section-heading h2 {
  font-size: 2rem;
  font-weight: 700;
}

.category-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.category-card {
  background-color: #fff;
  padding: 2rem;
  width: 300px;
  border-radius: 10px;
  position: relative;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.category-card h3 {
  margin: 1rem 0 0.5rem;
}

.category-card p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.card-stripe {
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background-color: #0057b8;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.btn.primary {
  background-color: #e63946;
  color: #fff;
  border: none;
}

.btn.primary:hover {
  background-color: #c9303b;
}

.btn.outline {
  border: 2px solid #e63946;
  color: #e63946;
  background: transparent;
}

.btn.outline:hover {
  background-color: #e63946;
  color: #fff;
}

/* Footer */
.shop-footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  color: #666;
  border-top: 1px solid #eee;
}

.shop-footer a {
  color: #e63946;
  font-weight: 600;
}
.product-grid-section {
  padding: 4rem 2rem;
  background: #fff;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.product-card {
  background-color: #fff;
  width: 280px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
  position: relative;
  text-align: center;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
}

.card-stripe {
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background-color: #e63946;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.product-card h4 {
  margin: 1rem 0 0.5rem;
  font-size: 1.1rem;
}

.product-card p {
  font-size: 0.9rem;
  color: #666;
  padding: 0 1rem;
}

.product-card .btn {
  margin: 1rem auto 1.5rem;
}
.filter-bar {
  text-align: center;
  padding: 1rem 2rem;
  background-color: #f9f9f9;
}

.filter-btn {
  background: transparent;
  border: 2px solid #e63946;
  color: #e63946;
  font-weight: 600;
  padding: 0.5rem 1rem;
  margin: 0.5rem;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background-color: #e63946;
  color: #fff;
}
/* 🔺 Cart & Checkout Base */
.cart-section,
.checkout-section {
  padding: 4rem 2rem;
  background-color: #fefefe;
}

.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.section-heading .stripe {
  height: 6px;
  width: 80px;
  background-color: #e63946;
  margin: 0 auto 1rem;
  border-radius: 3px;
}

.section-heading h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
}

/* 🧾 Cart Item Cards */
.product-card {
  background-color: #fff;
  width: 280px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
  position: relative;
  text-align: center;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
}

.card-stripe {
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background-color: #0057b8;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.product-card h4 {
  margin: 1rem 0 0.5rem;
  font-size: 1.1rem;
}

.product-card p {
  font-size: 0.9rem;
  color: #666;
  padding: 0 1rem;
}

/* 🧹 Cart Controls */
.cart-controls {
  text-align: center;
  margin-top: 2rem;
}

/* 📬 Checkout Form */
form {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  position: relative;
}

form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background-color: #0057b8;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #444;
}

.form-group input {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #e63946;
  box-shadow: 0 0 0 2px rgba(230, 57, 70, 0.2);
}

/* ✅ Success Message */
#success-message {
  display: none;
  color: #28a745;
  font-weight: bold;
  margin-top: 1.5rem;
  text-align: center;
}
.checkout-options {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
}
.floating-cart-btn {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  background-color: #cc0000;
  color: white;
  font-size: 1.5rem;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  z-index: 9999;
  text-decoration: none;
  transition: background 0.3s ease;
}

.floating-cart-btn:hover {
  background-color: #a80000;
}

.floating-cart-btn #cart-count {
  position: absolute;
  top: 5px;
  right: 5px;
  background-color: white;
  color: #cc0000;
  border-radius: 50%;
  font-size: 0.75rem;
  padding: 2px 6px;
  font-weight: bold;
}
.floating-shop-btn {
  position: fixed;
  bottom: 1.8rem;
  left: 1.8rem;
  background-color: #cc0000;
  color: white;
  font-size: 1.5rem;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  z-index: 9999;
  text-decoration: none;
  transition: background 0.3s ease;
}

.floating-shop-btn:hover {
  background-color: #a80000;
}
.floating-cart-btn::after,
.floating-shop-btn::after {
  content: attr(title);
  position: absolute;
  top: -30px;
  background: #000;
  color: white;
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: 5px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.floating-cart-btn:hover::after,
.floating-shop-btn:hover::after {
  opacity: 1;
}
.tenacious-footer {
  background-color: #000;
  color: #fff;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.95rem;
}

.tenacious-footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.tenacious-footer .footer-links {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
}

.tenacious-footer .footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.tenacious-footer .footer-links a:hover {
  color: #ff3333;
}
.tenacious-footer {
  background-color: #000;
  color: #fff;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.95rem;
}

.tenacious-footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.tenacious-footer .footer-links {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
}

.tenacious-footer .footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.tenacious-footer .footer-links a:hover {
  color: #ff3333;
}
