/* ============================================
   CHIMEOLE SOFTWARE — Mint Tech Theme
   Dark #0B120F · Mint #2ECC71 · White #F8F9FA
   ============================================ */
:root {
    --bg-deep:       #0B120F;
    --bg-mid:        #121D18;
    --bg-card:       rgba(46, 204, 113, 0.03);
    --primary:       #2ECC71; /* Light Green / Mint */
    --primary-dark:  #27AE60;
    --primary-soft:  #D5F5E3;
    --dark:          #0B120F;
    --dark-light:    #1A2E25;
    --white:         #FFFFFF;
    --off-white:     #F8F9FA;
    --text-white:    #F8F9FA;
    --text-muted:    #8DA399;
    --border:        rgba(46, 204, 113, 0.12);
    --border-accent: rgba(46, 204, 113, 0.35);
    --gradient:      linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
    --gradient-dark: linear-gradient(135deg, #121D18 0%, #0B120F 100%);
    --shadow:        0 0 35px rgba(46, 204, 113, 0.2);
    --font-display:  'Outfit', 'Inter', sans-serif;
    --font-body:     'Inter', sans-serif;
    --r-sm: 4px; --r-md: 8px; --r-lg: 14px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text-white);
    line-height: 1.65;
    overflow-x: hidden;
}

h1,h2,h3,h4,h5 {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

/* ── Text Gradient ── */
.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Section Label ── */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}
.section-label::before {
    content: '';
    width: 22px; height: 2px;
    background: var(--primary);
    display: block;
}

/* ── Navbar ── */
.navbar {
    background: var(--dark-light) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    transition: all .3s ease;
}
.navbar.scrolled {
    padding: .65rem 0;
    background: var(--bg-deep) !important;
    border-bottom-color: rgba(46, 204, 113, 0.25);
}
.navbar-brand {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 900;
    color: var(--white) !important;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.navbar-brand .accent { color: var(--primary); }
.navbar-brand .sub {
    font-size: .52em;
    opacity: .55;
    letter-spacing: .1em;
    font-weight: 500;
}
.nav-link {
    color: var(--text-muted) !important;
    font-size: .88rem;
    font-weight: 500;
    letter-spacing: .03em;
    padding: .4rem .9rem !important;
    transition: color .2s;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: .9rem; right: .9rem;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform .25s ease;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link:hover, .nav-link.active { color: var(--white) !important; }

/* ── Buttons ── */
.btn-premium {
    background: var(--gradient);
    color: var(--dark);
    border: none;
    padding: .78rem 2.1rem;
    border-radius: var(--r-sm);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .88rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: all .25s ease;
    box-shadow: var(--shadow);
    display: inline-block;
}
.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(46, 204, 113, 0.45);
    color: var(--dark);
}
.btn-outline-premium {
    background: transparent;
    border: 1px solid var(--border-accent);
    color: var(--text-white);
    padding: .78rem 2.1rem;
    border-radius: var(--r-sm);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .88rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: all .25s ease;
    display: inline-block;
}
.btn-outline-premium:hover {
    background: rgba(46, 204, 113, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

/* ── Section ── */
.section-padding { padding: 7rem 0; }

/* ── Grid Card ── */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 2.2rem;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}
.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform .3s ease;
}
.glass-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-5px);
    background: rgba(46, 204, 113, 0.08);
}
.glass-card:hover::before { transform: scaleX(1); }

/* ── Hero ── */
.hero {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 700px;
}

.hero .swiper {
    width: 100%;
    height: 100%;
}

.hero .swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(11, 18, 15, 0.7) 0%, rgba(11, 18, 15, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px; /* Offset for navbar */
}

.hero-tag {
    display: inline-flex;
    align-items: center; gap: .5rem;
    font-size: .72rem; font-weight: 700;
    letter-spacing: .18em; text-transform: uppercase;
    color: var(--primary); margin-bottom: 1.6rem;
}
.hero-tag::before { content:''; width:20px; height:2px; background:var(--primary); }

.hero-headline {
    font-size: clamp(2.8rem, 5.5vw, 5.2rem);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -.045em;
    margin-bottom: 1.8rem;
}

/* Animated number counter color */
.stat-item h4 { color: var(--primary); font-size: 2rem; font-weight: 900; margin: 0; }
.stat-item p {
    font-size: .76rem; color: var(--text-muted);
    margin: 0; letter-spacing: .06em; text-transform: uppercase;
}
.hero-stats-wrapper {
    background: var(--bg-mid);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2rem 0;
    position: relative;
    z-index: 10;
}
.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Swiper */
.swiper-slide { opacity: 0 !important; transition: opacity .8s ease; }
.swiper-slide-active { opacity: 1 !important; }
.swiper-pagination-bullet { background: var(--text-muted); opacity: .4; width: 8px; height: 8px; }
.swiper-pagination-bullet-active { background: var(--primary); opacity: 1; width: 28px; border-radius: 4px; }

/* Slide animations */
.swiper-slide-active .hero-headline { animation: fadeUp .8s both .1s; }
.swiper-slide-active .lead, .swiper-slide-active .hero-body { animation: fadeUp .8s both .25s; }
.swiper-slide-active .btn-wrap { animation: fadeUp .8s both .4s; }
.swiper-slide-active .floating-img { animation: zoomIn .8s both .3s, float 6s ease-in-out infinite 1s; }
@keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
@keyframes zoomIn { from{opacity:0;transform:scale(.88)} to{opacity:1;transform:scale(1)} }

/* ── Services ── */
.service-icon {
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(230, 57, 70, 0.1);
    border: 1px solid var(--border-accent);
    border-radius: var(--r-md);
    font-size: 1.4rem; color: var(--primary);
    margin-bottom: 1.5rem;
    transition: all .3s ease;
}
.glass-card:hover .service-icon {
    background: var(--gradient);
    color: var(--dark);
    border-color: transparent;
}

/* ── About section checks ── */
.bi-check-circle-fill, .text-primary { color: var(--primary) !important; }

/* ── Portfolio ── */
.filter-tabs, .tabs-bar {
    display: flex; flex-wrap: wrap; gap: .5rem;
    margin-bottom: 2.5rem;
}
.filter-btn {
    padding: .45rem 1.2rem;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    border-radius: var(--r-sm);
    font-size: .78rem; font-weight: 700;
    letter-spacing: .06em; text-transform: uppercase;
    cursor: pointer;
    transition: all .2s ease;
}
.filter-btn:hover, .filter-btn.active {
    background: var(--gradient);
    border-color: transparent;
    color: var(--dark);
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 1.5rem;
}
.portfolio-item {
    position: relative; border-radius: var(--r-lg);
    overflow: hidden; cursor: pointer;
    border: 1px solid var(--border);
    transition: all .3s ease;
}
.portfolio-item:hover {
    border-color: var(--border-accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}
.portfolio-item img {
    width: 100%; aspect-ratio: 16/10;
    object-fit: cover; display: block;
    transition: transform .5s ease;
}
.portfolio-item:hover img { transform: scale(1.07); }
.portfolio-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, var(--dark) 0%, rgba(18, 29, 24, 0.3) 60%, transparent 100%);
    padding: 1.5rem;
    display: flex; flex-direction: column; justify-content: flex-end;
    opacity: 0; transition: opacity .3s ease;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-tag {
    font-size: .68rem; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--primary); margin-bottom: .4rem;
}
.portfolio-overlay h4 { font-size: 1.05rem; font-weight: 700; margin: 0; }
.portfolio-overlay p { font-size: .82rem; color: var(--text-muted); margin-top: .4rem; }

/* ── Form Select & Dropdown Visibility Fix ── */
.form-select {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid var(--border) !important;
    color: #FFFFFF !important;
    border-radius: var(--r-md) !important;
    padding: .9rem 1.2rem !important;
    font-size: .9rem;
    cursor: pointer;
}
.form-select:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.15) !important;
    background-color: rgba(18, 29, 24, 0.95) !important;
}
.form-select option {
    background-color: #121D18 !important;
    color: #FFFFFF !important;
    padding: 12px 16px !important;
    font-size: 0.95rem;
}

/* ── Expanded & Colored Pricing Cards ── */
.pricing-card {
    border-radius: 20px;
    padding: 3rem 2.2rem;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Card 1: Emerald Theme (Basic) */
.pricing-card.plan-emerald {
    background: linear-gradient(145deg, rgba(18, 42, 30, 0.9) 0%, rgba(10, 22, 16, 0.95) 100%);
    border: 1px solid rgba(46, 204, 113, 0.25);
    box-shadow: 0 10px 30px rgba(11, 18, 15, 0.5);
}
.pricing-card.plan-emerald:hover {
    border-color: #2ECC71;
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(46, 204, 113, 0.25);
}

/* Card 2: Electric Cyan / Popular Theme (Standard) */
.pricing-card.plan-cyan, .pricing-card.popular {
    background: linear-gradient(145deg, rgba(16, 42, 67, 0.92) 0%, rgba(9, 24, 38, 0.96) 100%);
    border: 2px solid #00F2FE;
    box-shadow: 0 15px 40px rgba(0, 242, 254, 0.2);
    transform: scale(1.03);
}
.pricing-card.plan-cyan:hover, .pricing-card.popular:hover {
    border-color: #4FACFE;
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 242, 254, 0.35);
}
.pricing-card.plan-cyan .price, .pricing-card.popular .price {
    color: #00F2FE;
}
.popular-badge {
    position: absolute; top: 0; right: 0;
    background: linear-gradient(135deg, #00F2FE 0%, #4FACFE 100%);
    color: #0B120F;
    padding: .35rem 1.2rem;
    border-bottom-left-radius: 14px;
    font-size: .75rem; font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.4);
}

/* Card 3: Deep Gold / Royalty Theme (Premium) */
.pricing-card.plan-gold {
    background: linear-gradient(145deg, rgba(38, 30, 16, 0.92) 0%, rgba(20, 15, 8, 0.96) 100%);
    border: 1px solid rgba(255, 184, 0, 0.35);
    box-shadow: 0 10px 30px rgba(11, 18, 15, 0.5);
}
.pricing-card.plan-gold:hover {
    border-color: #FFB800;
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(255, 184, 0, 0.3);
}
.pricing-card.plan-gold .price {
    color: #FFB800;
}

.price {
    font-size: 2.8rem;
    font-weight: 900;
    font-family: var(--font-display);
    line-height: 1;
}
.pricing-features {
    flex-grow: 1;
}
.pricing-features li {
    color: rgba(248, 249, 250, 0.88);
    font-size: .92rem;
    line-height: 1.6;
}
.bi-check2 { color: var(--primary) !important; font-weight: 900; }

/* ── Testimonials ── */
.avatar {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--gradient);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.2rem; color: var(--dark);
    margin-bottom: 1.2rem;
}

/* ── Contact Form ── */
.contact-info-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: rgba(230, 57, 70, 0.08);
    border: 1px solid var(--border-accent);
    border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: var(--primary);
}
.form-control {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid var(--border) !important;
    color: var(--text-white) !important;
    border-radius: var(--r-md) !important;
    padding: .9rem 1.2rem !important;
    font-size: .9rem;
    transition: border-color .2s ease !important;
}
.form-control:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.12) !important;
    background: rgba(46, 204, 113, 0.07) !important;
}
.form-control::placeholder { color: var(--text-muted) !important; }
.form-label {
    font-size: .78rem; font-weight: 700;
    letter-spacing: .06em; text-transform: uppercase;
    color: var(--text-muted); margin-bottom: .5rem;
}

/* ── CTA / Newsletter strip ── */
.newsletter-wrap, .cta-strip {
    background: var(--bg-mid);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 4rem 3rem;
    position: relative; overflow: hidden;
}
.newsletter-wrap::after, .cta-strip::before {
    content: '';
    position: absolute; bottom: -60px; right: -60px;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.15) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
}

/* ── Footer ── */
footer {
    background: var(--bg-mid);
    border-top: 1px solid var(--border);
    padding: 4.5rem 0 2rem;
}
.footer-brand {
    font-family: var(--font-display);
    font-size: 1.55rem; font-weight: 900;
    letter-spacing: .06em; text-transform: uppercase;
}
.footer-brand .accent { color: var(--primary); }
.footer-links a {
    color: var(--text-muted); text-decoration: none;
    font-size: .88rem; display: block;
    margin-bottom: .65rem;
    transition: color .2s ease;
}
.footer-links a:hover { color: var(--primary); }
.social-link {
    width: 40px; height: 40px;
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--text-muted); text-decoration: none;
    font-size: 1rem;
    transition: all .2s ease;
    margin-right: .5rem;
}
.social-link:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}
.footer-divider {
    border-top: 1px solid var(--border);
    padding-top: 2rem; margin-top: 3rem;
}

/* ── WhatsApp Float ── */
.whatsapp-float {
    position: fixed; bottom: 28px; right: 28px;
    width: 56px; height: 56px;
    background: #25D366;
    border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; color: #fff;
    text-decoration: none; z-index: 999;
    box-shadow: 0 4px 20px rgba(37,211,102,.4);
    transition: all .25s ease;
}
.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(37,211,102,.5);
    color: #fff;
}

/* ── About Section — bg override ── */
#about { background: var(--bg-mid); }

/* ── AOS Fix ── */
[data-aos] { pointer-events: none; }
.aos-animate { pointer-events: auto; }

/* ── Scroll-reveal text colors ── */
h2, h3 { color: var(--text-white); }
.text-muted { color: var(--text-muted) !important; }

/* ── Responsive ── */
@media (max-width: 991px) {
    .hero { padding: 8rem 0 4rem; min-height: auto; }
    .hero-headline { font-size: 2.8rem; }
    .hero-stats { gap: 1.5rem; }
}
@media (max-width: 768px) {
    .section-padding { padding: 5rem 0; }
    .hero-headline { font-size: 2.2rem; }
    .hero-stats { flex-wrap: wrap; gap: 1rem; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .newsletter-wrap, .cta-strip { padding: 2.5rem 1.5rem; }
}
/* ── Sale Badges & Product Cards ── */
.sale-badge {
    position: absolute; top: 12px; right: 12px;
    background: #E74C3C;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    z-index: 5;
    text-transform: uppercase;
}
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.product-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    background: rgba(46, 204, 113, 0.06);
}
.product-media-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #050a08;
}
.product-media-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-media-wrap img {
    transform: scale(1.06);
}
.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-right: 0.5rem;
}
.current-price {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
}

/* ── Checkout Modal & Payment Options ── */
.payment-option-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.1rem 1.4rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    color: #fff;
    font-weight: 700;
    transition: all 0.25s ease;
    text-align: left;
    margin-bottom: 0.8rem;
    cursor: pointer;
}
.payment-option-btn:hover, .payment-option-btn.selected {
    border-color: var(--primary);
    background: rgba(46, 204, 113, 0.12);
    box-shadow: 0 0 20px rgba(46, 204, 113, 0.2);
}
.payment-option-btn i {
    font-size: 1.4rem;
}

/* ── WhatsApp Live Agent Drawer ── */
.whatsapp-agent-widget {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 1050;
}
.whatsapp-agent-trigger {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45);
    cursor: pointer;
    position: relative;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.whatsapp-agent-trigger:hover {
    transform: scale(1.08);
}
.agent-status-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 15px;
    height: 15px;
    background: #00FF66;
    border: 2px solid var(--bg-deep);
    border-radius: 50%;
}
.whatsapp-chat-drawer {
    position: fixed;
    bottom: 100px;
    right: 28px;
    width: 360px;
    max-width: calc(100vw - 40px);
    background: #111e18;
    border: 1px solid var(--border-accent);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    display: none;
    flex-direction: column;
    z-index: 1050;
    animation: drawerUp 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@keyframes drawerUp {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.drawer-header {
    background: linear-gradient(135deg, #162B21 0%, #0F1E17 100%);
    padding: 1.2rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.drawer-body {
    padding: 1.2rem;
    max-height: 380px;
    overflow-y: auto;
}
.agent-bubble {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid var(--border);
    border-radius: 14px 14px 14px 2px;
    padding: 0.9rem;
    font-size: 0.88rem;
    color: var(--text-white);
    margin-bottom: 1rem;
}
.quick-replies-title {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
    font-weight: 700;
}
.quick-reply-chip {
    display: block;
    width: 100%;
    text-align: left;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.65rem 0.9rem;
    font-size: 0.82rem;
    color: #fff;
    margin-bottom: 0.5rem;
    transition: all 0.2s ease;
    cursor: pointer;
}
.quick-reply-chip:hover {
    background: rgba(46, 204, 113, 0.15);
    border-color: var(--primary);
    color: var(--primary);
}

