/* 🔒 Scoped to .storage-page only */
body.storage-page {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f6f8;
  margin: 0;
  padding: 0;
}

/* 🧢 Header */
body.storage-page .branding-bar {
  background-color: #546E7A;
  color: white;
  text-align: center;
  padding: 16px 12px;
}

body.storage-page .branding-bar h1 {
  margin: 0;
  font-size: 2rem;
}

body.storage-page .branding-bar .tagline {
  margin: 4px 0 0;
  font-size: 1rem;
  font-weight: 300;
}

/* 🧭 Nav bar */
body.storage-page .top-bar ul {
  display: flex;
  justify-content: center;
  gap: 16px;
  list-style: none;
  padding: 12px;
  background-color: #37474F;
  margin: 0;
}

body.storage-page .top-bar a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* 🛍️ Product grid */
body.storage-page .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  padding: 20px;
}

body.storage-page .product-card {
  background-color: white;
  border: 1px solid #ccc;
  padding: 12px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

body.storage-page .product-card img {
  max-width:60%;
  height: auto;
}
body.storage-page .product-zone > h2 {
  font-size: 2.0em;
  color:  #333;
  margin-bottom: 24px;
}
body.storage-page .cta-button {
  background-color: #546E7A;
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  margin-top: 8px;
}

/* 🧱 Footer */
body.storage-page .storage-footer {
  background-color: #333;
  color: #eee;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
}

body.storage-page .storage-footer a {
  color: #B0BEC5;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 500;
}

body.storage-page .storage-footer a:hover {
  color: #CFD8DC;
}

body.storage-page .footer-links,
body.storage-page .footer-social {
  margin-bottom: 12px;
}

body.storage-page .footer-social .icon {
  margin-right: 6px;
}

body.storage-page .affiliate-disclosure {
  font-size: 0.85rem;
  color: #ccc;
  margin-top: 12px;
}

/* 📱 Mobile tweaks */
@media (max-width: 600px) {
  body.storage-page .top-bar ul,
  body.storage-page .footer-links,
  body.storage-page .footer-social {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  body.storage-page .product-grid {
    grid-template-columns: 1fr;
  }
}
.product-zone > h2 {
  font-size: 4em;
  color: #333;
  text-align: center;
  margin-bottom: 20px;
  padding-left: 10px; /* optional for spacing */
}
.product-card h3 {
  font-size: 1.1em;
  font-weight: bold;
  color: #222;
  margin: 10px 0 6px;
  text-align: center;
}
.scroll-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
}



body.storage-page .storage-nav a.active {
  color: #ff6600;
  border-bottom: 2px solid #ff6600;
}

html {
  scroll-behavior: smooth;
}
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color:  #546E7A;
  color: #fff8dc;
  border: none;
  border-radius: 50px;
  padding: 12px 18px;
  font-size: 1em;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  display: none;
  z-index: 1000;
}
.storage-header {
  text-align: center;
}

.storage-nav {
  display: inline-flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.storage-nav a {
  text-decoration: none;
  font-weight: bold;
  color: #333;
  padding: 8px 12px;
  border-radius: 4px;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

.storage-nav a:hover {
  color: #ff6600;
  border-bottom: 2px solid #ff6600;
}