:root {
  --bg:       #0d0d0d;
  --surface:  #141414;
  --card:     #1a1a1a;
  --border:   rgba(255,255,255,0.07);
  --card-glass: rgba(255,255,255,0.07);
  --accent:   #c8f04a;
  --accent2:  #4af0a0;
  --text:     #f0ede6;
  --muted:    #888;
  --serif:    'DM Serif Display', Georgia, serif;
  --sans:     'DM Sans', system-ui, sans-serif;
  --radius:   12px;
  --radius-lg:20px;
  --header-h: 70px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

.venstore-footer {
    background-color: #1e1e1e;
    color: #f0f0f0;
    padding: 40px 20px;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    border-bottom: 1px solid #444;
    padding-bottom: 30px;
  }
  
  .footer-brand h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--accent);
  }
  
  .footer-brand p {
    max-width: 300px;
    font-size: 14px;
    line-height: 1.6;
  }
  
  .footer-links {
    display: flex;
    gap: 40px;
  }
  
  .footer-links h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--accent);
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li {
    margin-bottom: 8px;
  }
  
  .footer-links a {
    color: #f0f0f0;
    text-decoration: none;
    font-size: 14px;
  }
  
  .footer-links a:hover {
    text-decoration: underline;
  }
  
  .footer-newsletter h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--accent);
  }
  
  .footer-newsletter form {
    display: flex;
    gap: 10px;
  }
  
  .footer-newsletter input {
    padding: 8px;
    border: none;
    border-radius: 4px;
    flex: 1;
  }
  
  .footer-newsletter button {
    padding: 8px 16px;
    background-color: var(--accent);
    border: none;
    border-radius: 4px;
    color: #1e1e1e;
    cursor: pointer;
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    font-size: 13px;
  }
  
  .social-icons a {
    margin-left: 10px;
  }
  
  .social-icons img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
  }