/* Floating fake search header (mobile-first) */
.fake-search-header{
  position:fixed;
  top:14px;
  left:50%;
  transform:translateX(-50%);
  width:94%;
  max-width:480px;
  background:var(--glass);
  backdrop-filter: blur(6px);
  border-radius:40px;
  padding:10px 16px;
  z-index:1200;
  display:flex;
  gap:10px;
  align-items:center;
  box-shadow:0 6px 20px rgba(124,58,237,0.18);
  transition:transform .18s ease, box-shadow .18s ease;
  cursor:pointer;
}
.fake-search-header .icon{
  color:var(--purple);
  font-size:18px;
  width:28px;
  text-align:center;
}
.fake-search-header .text{
  color:var(--muted);
  font-size:14px;
  flex:1;
}
.fake-search-header:active,
.fake-search-header.active{
  transform:translateX(-50%) scale(1.03);
  box-shadow:0 10px 30px rgba(124,58,237,0.28);
}

/* floating cart button */
.cart-float{
  position:fixed;
  right:18px;
  bottom:18px;
  background:linear-gradient(180deg,var(--purple),var(--purple-dark));
  color:white;
  width:56px;
  height:56px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 30px rgba(92,33,182,0.25);
  z-index:1200;
}
.cart-float .badge{
  position:absolute;
  top:6px; right:6px;
  background:#ff4757;
  color:white;
  font-size:12px;
  padding:4px 6px;
  border-radius:999px;
}

/* Currency Switcher */
.currency-switcher {
    position: fixed;
    top: 76px; /* Below fake search header */
    left: 50%;
    transform: translateX(-50%);
    z-index: 1100;
    display: flex;
    background: var(--glass);
    backdrop-filter: blur(6px);
    border-radius: 999px;
    padding: 3px;
    box-shadow: 0 4px 15px rgba(124,58,237,0.1);
}
.currency-switcher .btn.active {
    background: var(--purple);
    color: white;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(124,58,237,0.3);
}

/* Hero Section */
header.hero{
  padding:150px 18px 40px;
  text-align:center;
}
.hero .title{
  font-size:22px;
  font-weight:600;
  color:var(--purple-dark);
  margin:0 0 8px;
}
.hero .lead{
  font-size:14px;
  color:var(--muted);
  margin:0 0 18px;
}
.hero .cta{
  display:inline-flex;
  gap:10px;
  flex-wrap:wrap;
}

/* --- Advanced Contact Section --- */
.contact-section {
  padding: 18px;
  margin-top: 30px;
}
.contact-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--accent);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.1);
}

.contact-card .card-title {
  font-size: 20px;
  color: var(--purple-dark);
  margin: 0 0 4px;
}
.contact-card .card-lead {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 15px;
}

.product-scope-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
    font-size: 14px;
    line-height: 1.5;
}
.product-scope-list li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    color: #333;
}
.product-scope-list li::before {
    content: "•";
    color: var(--purple);
    font-weight: 900;
    position: absolute;
    left: 0;
    font-size: 1.2em;
    top: 0;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #333;
  font-weight: 400;
  font-size: 14px;
  transition: color 0.2s;
}
.contact-link i {
  color: var(--purple);
  font-size: 18px;
  width: 20px;
  text-align: center;
}
.contact-link:hover {
  color: var(--purple-dark);
}

.map-placeholder {
  background: #e2e8f0;
  min-height: 150px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}
.map-placeholder i {
  font-size: 32px;
  margin-bottom: 8px;
}

footer{
  /* Resetting previous minimal footer styles */
  text-align:initial;
  padding:0;
  color:initial;
  font-size:initial;
  margin-top: 0;
}

/* --- Advanced Footer --- */
.advanced-footer {
  background: #1f083d; /* Dark purple/navy tone */
  color: #fff;
  padding: 40px 18px 10px;
  margin-top: 30px;
}
.advanced-footer a {
  color: #d1b4f8;
  text-decoration: none;
  transition: color 0.2s;
}
.advanced-footer a:hover {
  color: white;
}
.advanced-footer h4, .advanced-footer h5 {
  color: var(--purple);
  margin-top: 0;
  margin-bottom: 12px;
}
.advanced-footer h4 { font-size: 18px; }
.advanced-footer h5 { font-size: 16px; font-weight: 600; }

.footer-grid {
  display: grid;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 20px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}

.footer-brand p {
  font-size: 14px;
  color: #ccc;
}

.social-icons {
  margin-top: 15px;
  display: flex;
  gap: 15px;
}
.social-icons a {
  font-size: 18px;
  display: block;
}

.newsletter-mock {
  display: flex;
  flex-direction: column; /* Default stack on small screen */
}
.newsletter-mock input {
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px solid #5b21b6;
  background: #fff;
  color: #333;
  width: 100%;
  margin-bottom: 10px;
  max-width: 250px;
  outline: none;
}
.newsletter-mock .btn {
  /* adjust button style for dark background */
  padding: 8px 12px;
  border-radius: 6px;
  box-shadow: none;
  height: 38px;
}
.footer-newsletter p {
    font-size: 14px;
    color: #ccc;
}

.footer-bottom {
  border-top: 1px solid #3d2363;
  text-align: center;
  padding: 20px 0;
  margin-top: 20px;
  font-size: 12px;
  color: #aaa;
}

/* responsive tweaks */
@media(min-width:500px){
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .newsletter-mock {
        flex-direction: row;
    }
    .newsletter-mock input {
        border-radius: 6px 0 0 6px;
        margin-bottom: 0;
    }
    .newsletter-mock .btn {
        border-radius: 0 6px 6px 0;
        margin-left: -1px;
    }
}

@media(min-width:700px){
  header.hero{ padding-top:140px; }
  .contact-card {
    flex-direction: row;
    justify-content: space-between;
    padding: 30px;
  }
  .contact-details {
    flex: 1;
    padding-right: 30px;
  }
  .map-placeholder {
    flex: 1;
  }
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 2fr;
  }
}