/* Basic Reset */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
    color: #333;
  }

  .divider {
    border: none;
    height: 2px;
    background-color: silver;
    margin: 0;
  }
  

  .hero {
    width: 100%;
    overflow: hidden;
  }
  
  .hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
  
  
  /* 🔝 Top Navbar */
  .navbar {
    background-color: #222;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    width: 100%;
    box-sizing: border-box;
  }
  
  .navbar .logo {
    font-size: 1.25rem;
    font-weight: bold;
  }
  
  .navbar .nav-links {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
  }
  
  .navbar .nav-links a {
    color: white;
    margin-left: 1.5rem;
    text-decoration: none;
    font-weight: 500;
  }
  
  .navbar .nav-links a:hover {
    text-decoration: underline;
  }
  
  /* Cart styling */
  .cart-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    line-height: normal;
  }
  
  .cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #f44336;
    color: white;
    font-size: 12px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .collections-section {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 60px 20px;
    flex-wrap: wrap;
    text-align: center;
    background-color: #fff; /* Optional: light background */
  }
  
  .collection-card {
    width: 280px;
    transition: transform 0.3s ease;
    padding-bottom: 2rem;;
  }
  
  .collection-card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  .collection-card p {
    margin-top: 22px;
    font-size: 1.4rem;
    font-weight: bold;
    color: #333;
  }
  
  .collection-card:hover {
    transform: translateY(-6px);
  }

  
  
  h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  /* 🎯 Buttons */
  .button-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
    background-color: #0077cc;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
  }
  
  .btn:hover {
    background-color: #005fa3;
  }
  
  .btn.secondary {
    background-color: #e2e2e2;
    color: #333;
  }
  
  .btn.secondary:hover {
    background-color: #cfcfcf;
  }

  .faq-section {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: Arial, sans-serif;
  }
  
  .faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .faq-item {
    border-bottom: 1px solid #ddd;
    padding: 16px 0;
  }
  
  .faq-question {
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    padding: 0.5rem;
    outline: none;
  }
  

  
  .faq-answer {
    display: none;
    padding: 22px 0 0 32px;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: bold;
  }
  
  .feature-banner {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    background: linear-gradient(to right, #3578b2, #0F65AE);
    padding: 30px 10px;
    color: white;
    text-align: left;
    padding-left: 11rem;;
    border-radius: 0.5rem;
    margin: 40px auto 20px auto;
    width: auto;
    margin-bottom: -40px !important;
  }
  
  .feature {
    display: flex;
    align-items: center;
    flex: 1 1 250px;
    margin: 10px 20px;
    gap: 15px;
  }
  
  .feature .icon {
    font-size: 2rem;
  }
  
  .feature h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: bold;
  }
  
  .feature p {
    margin: 2px 0 0;
    font-size: 0.95rem;
  }

  .collection-card a {
    text-decoration: none;
    color: inherit;
  }
  
  .collection-card a:hover p {
    text-decoration: underline;
  }
  

  .collection-card img {
    object-fit: contain; /* or cover */
    background-color: #fff; /* blends with page */
    border-radius: 22px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    clip-path: inset(10px 10px 10px 10px);

  }

  /* Footer Styles */
.footer {
  background-color: #333;
  color: #fff;
  padding: 10px 0 10px;
  margin-top: 10px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin-bottom: 30px;
  padding: 0 15px;
}

.footer-section h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #999;
}

.footer-section p {
  line-height: 1.6;
  margin-bottom: 10px;
  color: #ccc;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  margin-top: 20px;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #999;
}

/* Mailchimp Form Styling */
#mc_embed_signup {
  background: transparent !important;
  clear: left;
  font: 14px Helvetica, Arial, sans-serif;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Ensure all form controls are properly contained */

.form-control,
#mce-EMAIL,
input[name="EMAIL"] {
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  overflow: hidden !important;
}

/* Additional global input fixes */
input[type="email"],
input[type="text"] {
  box-sizing: border-box !important;
  max-width: 100% !important;
}

/* Footer specific input fixes */
.footer .form-control,
.footer input {
  box-sizing: border-box !important;
  max-width: 100% !important;
  width: 100% !important;
}

.footer-section.newsletter {
  flex: 1.5;
}

#mc_embed_signup h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

#mc_embed_signup .indicates-required {
  text-align: right;
  font-size: 11px;
  color: #ccc;
  margin-bottom: 10px;
}

#mc_embed_signup .mc-field-group {
  margin-bottom: 15px;
}

#mc_embed_signup .mc-field-group label {
  display: block;
  margin-bottom: 5px;
  color: #ccc;
}

#mc_embed_signup .mc-field-group input {
  width: 100%;
  padding: 8px 10px;
  border-radius: 4px;
  border: 1px solid #555;
  background-color: #444;
  color: #fff;
  box-sizing: border-box;
  max-width: 100%;
}

#mc_embed_signup .button {
  background-color: #0077cc;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

#mc_embed_signup .button:hover {
  background-color: #005fa3;
}

#mc_embed_signup .asterisk {
  color: #e85c41;
}

@media (max-width: 768px) {
  .footer-section.newsletter {
    flex: 1 1 100%;
  }
  
  #mc_embed_signup {
    width: 100%;
    max-width: 100%;
  }
  
  /* Fix input overflow on mobile - more specific targeting */
  #mc_embed_signup .mc-field-group input,
  .form-control,
  #mce-EMAIL,
  input[name="EMAIL"] {
    width: calc(100% - 12px) !important;
    max-width: calc(100% - 12px) !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
  }
  
  /* Ensure proper column sizing and prevent overflow */
  .col-12.col-md-4 {
    padding-left: 8px !important;
    padding-right: 8px !important;
    overflow: hidden !important;
  }
  
  /* Ensure the form container doesn't overflow */
  #mc-embedded-subscribe-form {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }
  
  /* Specific fix for the mb-3 div containing the input */
  .mb-3 {
    width: calc(100% - 8px) !important;
    max-width: calc(100% - 8px) !important;
    overflow: hidden !important;
  }
}

/* Additional media query for very small screens */
@media (max-width: 576px) {
  .footer .container-fluid,
  .footer .row,
  .footer .col-12 {
    padding-left: 2px !important;
    padding-right: 2px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  
  .form-control,
  #mce-EMAIL {
    font-size: 10px !important;
    padding: 2px 3px !important;
    width: calc(100% - 50px) !important;
    max-width: calc(100% - 50px) !important;
    margin: 0 !important;
    margin-left: 0 !important;
    text-align: left !important;
  }
  
  /* Make Subscribe section more compact */
  .col-12.col-md-4 h5 {
    font-size: 0.9rem !important;
    margin-bottom: 8px !important;
  }
  
  .mb-3 {
    margin-bottom: 6px !important;
    padding: 0 10px !important;
  }
  
  .form-label {
    font-size: 10px !important;
    margin-bottom: 2px !important;
  }
  
  .btn {
    font-size: 11px !important;
    padding: 4px 8px !important;
    min-width: 70px !important;
  }
  
  /* Stack footer columns vertically */
  .footer .row {
    flex-direction: column !important;
  }
  
  .footer .col-12.col-md-4 {
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 15px !important;
    padding: 5px !important;
  }
}

/* Extra aggressive fix for problem screen sizes */
@media (max-width: 900px) and (min-width: 577px) {
  .footer .form-control,
  .footer #mce-EMAIL {
    width: calc(100% - 70px) !important;
    max-width: calc(100% - 70px) !important;
    font-size: 11px !important;
    padding: 3px 5px !important;
    margin: 0 !important;
    margin-left: 0 !important;
    text-align: left !important;
  }
  
  .footer .col-12.col-md-4 {
    padding: 3px !important;
  }
  
  /* Fix border overflow on Subscribe heading */
  .footer .border-bottom {
    border-bottom-width: 1px !important;
    max-width: calc(100% - 20px) !important;
    overflow: hidden !important;
  }
}

/* Specific fix for index.html Subscribe section */
@media (max-width: 1200px) {
  /* Fix all elements in Subscribe section */
  .footer .col-12.col-md-4 * {
    max-width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }
  
  /* Fix the Subscribe heading border */
  .footer .col-12.col-md-4 h5.border-bottom {
    width: calc(100% - 30px) !important;
    max-width: calc(100% - 30px) !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
    border-bottom: 1px solid #6c757d !important;
  }
  
  /* Fix form elements */
  .footer .col-12.col-md-4 .mb-3,
  .footer .col-12.col-md-4 .d-flex {
    width: calc(100% - 20px) !important;
    max-width: calc(100% - 20px) !important;
    margin-left: 0 !important;
  }
}

.footer .row > [class^="col-"] {
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer .row > [class^="col-"] {
    margin-bottom: 0;
    margin-right: 2.5rem;
  }
  .footer .row > [class^="col-"]:last-child {
    margin-right: 0;
  }
  .footer .row.align-items-start {
    flex-wrap: nowrap !important;
    gap: 2.5rem;
  }
  .footer .row.align-items-start > [class^="col-"] {
    margin-bottom: 0 !important;
    margin-right: 0 !important;
  }
}

/* --- Responsive fix for Subscribe section input --- */
.footer-section.newsletter,
.footer .row > [class^="col-"],
.mb-3 {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

/* Force email input to never overflow */
.footer .form-control,
.footer #mce-EMAIL,
.footer input[name="EMAIL"] {
  box-sizing: border-box !important;
  width: calc(100% - 60px) !important;
  max-width: calc(100% - 60px) !important;
  min-width: 0 !important;
  overflow: hidden !important;
  flex: 1 1 auto;
  margin: 0 !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  display: block !important;
  text-align: left !important;
}

/* Force all Subscribe section elements to stay within bounds */
.footer .col-12.col-md-4 {
  overflow: hidden !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.footer .col-12.col-md-4 h5,
.footer .col-12.col-md-4 .border-bottom {
  width: calc(100% - 20px) !important;
  max-width: calc(100% - 20px) !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
  margin-left: 0 !important;
}
/* --- End fix --- */


