/*
Theme Name: Vibe Vape Shop ere
Theme URI: https://vibevapeshop.rs
Author: Vibe Vape Shop
Author URI: https://vibevapeshop.rs
Description: Moderna WordPress tema za Vibe Vape Shop sa neon efektima i tamnom temom
Version: 1.0
License: GPL v2 or later
Text Domain: vibe-vape
*/

/* Osnovni reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0A0A0F;
    color: #F5F5F7;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5rem;
    background: linear-gradient(90deg, #9D00FF, #00FFFF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 15px rgba(157, 0, 255, 0.5);
}

h2 {
    font-size: 2.5rem;
    color: #FFFFFF;
    position: relative;
    margin-bottom: 40px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #9D00FF, #00FFFF);
    border-radius: 2px;
}

h3 {
    font-size: 1.8rem;
    color: #FFFFFF;
}

p {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #CCCCCC;
}

a {
    color: #00FFFF;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #9D00FF;
}

/* Header */
.main-header {
    background-color: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(157, 0, 255, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #FFFFFF;
    display: flex;
    align-items: center;
}

.logo a span {
    background: linear-gradient(90deg, #9D00FF, #00FFFF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin-left: 30px;
}

.main-nav a {
    color: #F5F5F7;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
}

.main-nav a:hover {
    color: #00FFFF;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #9D00FF, #00FFFF);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.header-contact {
    display: flex;
    align-items: center;
}

.phone-link {
    background: linear-gradient(90deg, #9D00FF, #00FFFF);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    box-shadow: 0 0 15px rgba(157, 0, 255, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phone-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(157, 0, 255, 0.7);
    color: white;
}

.phone-link i {
    margin-right: 8px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero sekcija */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Fallback pozadina je u temi; customizer može da prosledi --hero-bg iz hero.php */
    background: var(--hero-bg, url('assets/images/placeholder-gallery1.jpg')) no-repeat center center/cover;
    opacity: 0.48;
    filter: saturate(1.05) contrast(1.05);
    transform: translate3d(0, var(--hero-parallax, 0px), 0);
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Zatamnjenje da bude prisutno, ali da se i dalje vidi slika u pozadini */
    background: linear-gradient(to bottom, rgba(10, 10, 15, 0.55), rgba(10, 10, 15, 0.82));
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 700ms ease, transform 700ms ease;
}

body.is-loaded .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.hero h1 {
    margin-bottom: 20px;
    font-size: 4rem;
    text-shadow: 0 0 15px rgba(157, 0, 255, 0.35);
}

.hero p {
    display: block;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    backdrop-filter: none;
    font-size: 1.3rem;
    color: #CCCCCC;
    margin-bottom: 40px;
    max-width: 740px;
    margin-left: auto;
    margin-right: auto;
}

/* Google Material Symbols (ikonice) */
.material-symbols-rounded{
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  line-height: 1;
  vertical-align: -0.15em;
}
.btn .material-symbols-rounded{ margin-right: 8px; }
.info-card-icon .material-symbols-rounded,
.product-card-icon .material-symbols-rounded{ margin-right: 0; }
.btn .material-symbols-rounded{ margin-right: 8px; font-size: 20px; }

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    min-width: 180px;
}

.btn-primary {
    background: linear-gradient(90deg, #9D00FF, #00FFFF);
    color: white;
    border: none;
    box-shadow: 0 0 20px rgba(157, 0, 255, 0.5);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(157, 0, 255, 0.7);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #9D00FF;
}

.btn-secondary:hover {
    background: rgba(157, 0, 255, 0.1);
    transform: translateY(-5px);
    color: #FFFFFF;
}

/* Sekcije */
.section {
    padding: 100px 0;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 600ms ease, transform 600ms ease;
    will-change: opacity, transform;
}

.section.in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .section, .hero-content, .btn, .product-card, .brand-item, .gallery-item { transition: none !important; }
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

/* Proizvodi sekcija */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    border-radius: 18px;
    padding: 22px;
    position: relative;
    overflow: hidden;
    background: rgba(20, 20, 28, 0.7);
    box-shadow: 0 10px 35px rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color .3s ease;
}
.product-card::before{
    content:'';
    position:absolute;
    inset:-2px;
    opacity: 0.9;
    pointer-events:none;
}
.product-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

/* Plavi akcent (kao info kartice, ali u light-blue tonu) */
.product-card--blue{
    border-color: rgba(0, 229, 255, 0.22);
}
.product-card--blue::before{
    background: radial-gradient(circle at 20% 10%, rgba(0, 229, 255, 0.22), transparent 55%);
}
.product-card--blue:hover{
    border-color: rgba(0, 229, 255, 0.38);
}

.product-card-icon{
    width: 46px; height: 46px;
    display:flex; align-items:center; justify-content:center;
    border-radius: 14px;
    background: rgba(0,229,255,0.12);
    border: 1px solid rgba(0,229,255,0.30);
    margin-bottom: 14px;
}
.product-card-icon .material-symbols-rounded{ color: rgba(0,229,255,0.95); font-size: 24px; }

.product-card-body h3{ margin-bottom: 8px; }
.product-card-body p{ margin: 0; color: rgba(255,255,255,0.78); }

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00FFFF;
    margin: 15px 0;
}

/* Brendovi sekcija */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.brand-item {
    text-align: center;
    padding: 30px;
    background-color: rgba(20, 20, 30, 0.5);
    border-radius: 15px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.brand-item:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 255, 0.3);
}

.brand-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #00FFFF;
}

/* O nama sekcija (premium kartice, kao na početku) */
.about-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: stretch;
}
@media (max-width: 900px){
  .about-grid{ grid-template-columns: 1fr; }
}

.about-card{
  border: 1px solid rgba(157,0,255,0.25);
  background: rgba(20, 20, 28, 0.7);
  border-radius: 18px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0,0,0,0.35);
}
.about-card::before{
  content:'';
  position:absolute;
  inset:-2px;
  background: radial-gradient(circle at 20% 10%, rgba(157,0,255,0.22), transparent 55%);
  opacity: 0.9;
  pointer-events:none;
}
.about-card p{ color: rgba(255,255,255,0.80); }

.about-features{ margin: 18px 0 10px; display:grid; gap: 12px; }
.feature-item{ display:flex; gap: 10px; align-items:flex-start; }
.feature-item .material-symbols-rounded{ color: rgba(0,229,255,0.95); font-size: 22px; margin-top: 2px; }

.about-card--media{
  padding: 0;
  border-color: rgba(0, 229, 255, 0.22);
}
.about-card--media::before{
  background: radial-gradient(circle at 20% 10%, rgba(0, 229, 255, 0.18), transparent 55%);
}
.about-card--media img{
  width:100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display:block;
  border-radius: 18px;
  filter: saturate(1.05) contrast(1.05);
  opacity: 0.95;
  transition: transform .5s ease;
}
.about-card--media:hover img{ transform: scale(1.03); }

.about-media-badge{
  position:absolute;
  left: 16px;
  bottom: 16px;
  display:flex;
  gap: 8px;
  align-items:center;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(12,12,18,0.65);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(6px);
}
.about-media-badge .material-symbols-rounded{ color: rgba(0,229,255,0.95); }
.about-media-badge span:last-child{ color: rgba(255,255,255,0.90); font-weight: 700; }

/* Galerija sekcija */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(10, 10, 15, 0.9), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Kontakt sekcija */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    margin-bottom: 30px;
    color: #FFFFFF;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item i {
    color: #9D00FF;
    margin-right: 15px;
    font-size: 1.2rem;
    margin-top: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(20, 20, 30, 0.8);
    border-radius: 50%;
    color: #FFFFFF;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(90deg, #9D00FF, #00FFFF);
    transform: translateY(-5px);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background-color: rgba(20, 20, 30, 0.8);
    border: 1px solid rgba(157, 0, 255, 0.2);
    border-radius: 10px;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #9D00FF;
}

.contact-form button {
    background: linear-gradient(90deg, #9D00FF, #00FFFF);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(157, 0, 255, 0.4);
}

.map-container {
    margin-top: 60px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Footer */
.main-footer {
    background-color: rgba(15, 15, 20, 0.95);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(157, 0, 255, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #CCCCCC;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00FFFF;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888888;
    font-size: 0.9rem;
}

/* Animacije */
@keyframes glow {
    0% {
        text-shadow: 0 0 10px rgba(157, 0, 255, 0.5);
    }
    100% {
        text-shadow: 0 0 20px rgba(157, 0, 255, 0.8), 0 0 30px rgba(0, 255, 255, 0.5);
    }
}

/* Responsivni dizajn */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .about-grid,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(10, 10, 15, 0.98);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav li {
        margin: 10px 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-contact {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(12,12,18,0.35);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);

        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section {
        padding: 70px 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .products-grid,
    .brands-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
/* ===================== */
/* MOBILE MENU STYLES */
/* ===================== */
@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(10px);
        padding: 20px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .main-nav.active {
        display: block;
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }
    
    .main-nav li {
        margin: 0;
        width: 100%;
        text-align: center;
    }
    
    .main-nav a {
        display: block;
        padding: 15px 20px;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(157, 0, 255, 0.1);
        color: #FFFFFF;
    }
    
    .main-nav a:hover {
        background-color: rgba(157, 0, 255, 0.1);
        color: #00FFFF;
    }
    
    .main-nav a::after {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: linear-gradient(90deg, #9D00FF, #00FFFF);
        border-radius: 50%;
        color: white;
        font-size: 1.2rem;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 1000;
    }
    
    .mobile-menu-toggle:hover {
        transform: scale(1.1);
        box-shadow: 0 0 15px rgba(157, 0, 255, 0.5);
    }
    
    .header-contact {
        display: none;
    }
    
    /* Dodatni stilovi za responzivnost */
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(12,12,18,0.35);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);

        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 15px;
    }
    
    .section {
        padding: 70px 0;
    }

}

@media (max-width: 480px) {
    .main-nav {
        top: 60px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .products-grid,
    .brands-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================
   Premium spacing & type
   ========================= */
.section { padding: 90px 0; }
@media (max-width: 768px){ .section { padding: 70px 0; } }

.section-title p { max-width: 820px; margin: 10px auto 0; line-height: 1.6; color: rgba(255,255,255,0.78); }

p { line-height: 1.75; }

/* Buttons small */
.btn-sm { padding: 10px 14px; font-size: 0.95rem; }

/* =========================
   Info cards
   ========================= */
.info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px){ .info-cards { grid-template-columns: 1fr; } }

.info-card {
  border: 1px solid rgba(157, 0, 255, 0.25);
  background: rgba(20, 20, 28, 0.7);
  border-radius: 18px;
  padding: 22px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0,0,0,0.35);
}
.info-card::before{
  content:'';
  position:absolute;
  inset:-2px;
  background: radial-gradient(circle at 20% 10%, rgba(157,0,255,0.25), transparent 55%);
  opacity: 0.9;
  pointer-events:none;
}
.info-card-icon {
  width: 46px; height: 46px;
  display:flex; align-items:center; justify-content:center;
  border-radius: 14px;
  background: rgba(157,0,255,0.15);
  border: 1px solid rgba(157,0,255,0.35);
  margin-bottom: 14px;
}
.info-card-body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.info-card-body p { margin: 4px 0; color: rgba(255,255,255,0.78); }
.info-card-actions { margin-top: 12px; display:flex; gap: 10px; flex-wrap:wrap; }
.link-cta { display:inline-flex; margin-top: 10px; color: rgba(157,0,255,0.95); text-decoration:none; }
.link-cta:hover { text-decoration: underline; }

/* =========================
   Contact form with icons
   ========================= */
.contact-form .field{
  position: relative;
  margin-bottom: 14px;
}
.contact-form .field-icon{
  position:absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.65);
  pointer-events:none;
}
.contact-form .field input,
.contact-form .field textarea{
  width:100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(12,12,18,0.65);
  color: #fff;
  padding: 14px 14px 14px 44px;
  outline: none;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.contact-form .field textarea{ padding-top: 14px; }
.contact-form .field-textarea .field-icon{ top: 18px; transform: none; }
.contact-form .field input:focus,
.contact-form .field textarea:focus{
  border-color: rgba(157,0,255,0.55);
  box-shadow: 0 0 0 4px rgba(157,0,255,0.12);
}
.contact-form button.btn i { margin-right: 8px; }

/* =========================
   Mobile nav quick CTA
   ========================= */
.mobile-quick-cta { display:none; gap: 10px; padding: 14px 0 8px; border-top: 1px solid rgba(255,255,255,0.08); margin-top: 10px; flex-wrap: wrap; }
.mobile-quick-cta .cta-chip{
  display:inline-flex; align-items:center; gap:8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(157,0,255,0.35);
  background: rgba(157,0,255,0.12);
  color: #fff;
  text-decoration:none;
  font-size: 0.95rem;
}
.mobile-quick-cta .cta-chip:hover{ transform: translateY(-1px); }

@media (max-width: 900px){
  .main-nav.active .mobile-quick-cta{ display:flex; }
}

/* =========================
   Brands infinite marquee
   ========================= */
.brands-marquee{
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(12,12,18,0.55);
  padding: 18px 0;
}
.brands-track{
  display:flex;
  gap: 14px;
  width: max-content;
  animation: brands-marquee 38s linear infinite;
  will-change: transform;
  padding-left: 14px;
}
.brand-card{
  min-width: 190px;
  height: 72px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 16px;
  border: 1px solid rgba(0,229,255,0.18);
  background: rgba(20,20,28,0.65);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  position: relative;
  overflow: hidden;
}
.brand-card::before{
  content:'';
  position:absolute;
  inset:-2px;
  background: radial-gradient(circle at 20% 10%, rgba(0,229,255,0.18), transparent 55%);
  opacity: 0.9;
  pointer-events:none;
}
.brand-card img{
  width: 160px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,0.35));
  opacity: 0.95;
}
@keyframes brands-marquee{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce){
  .brands-track{ animation: none; }
}

/* Brands note */
.brands-note{ margin-top: 22px; display:flex; gap: 12px; align-items:center; justify-content: space-between; flex-wrap: wrap; }
.brands-note p{ margin: 0; color: rgba(255,255,255,0.78); max-width: 820px; }

/* =========================
   Extra subtle motion
   ========================= */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
