/* Reset & Global */
:root {
    --bg-color: #020d06;
    --bg-gradient: radial-gradient(circle at 50% 30%, #0a2a1a 0%, #020d06 70%);
    --card-bg: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    --border-color: #1c5236;
    --accent-green: #39ff14;
    /* Neon green */
    --text-white: #ffffff;
    --text-gray: #31e42b;

    --font-main: 'Outfit', sans-serif;

    --container-width: 1200px;
    --header-height: 80px;
}

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

body {
    background-color: var(--bg-color);
    background-image: var(--bg-gradient);
    color: var(--text-white);
    font-family: var(--font-main);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.5;
}

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

/* Header */
.header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-ugreen {
    font-size: 1.5rem;
    color: var(--text-white);
}

.logo-x {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.logo-genshin {
    font-size: 0.8rem;
    line-height: 0.9;
    text-align: center;
    color: var(--text-white);
}

.logo-impact {
    font-size: 0.5rem;
    letter-spacing: 2px;
}

.nav-desktop {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--accent-green);
}

.btn-buy {
    background: var(--accent-green);
    color: #000;
    padding: 8px 24px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(57, 255, 20, 0.4);
}

/* Mobile Menu & Hamburger */
.hamburger {
    display: flex;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 101;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-white);
    border-radius: 3px;
    transition: 0.3s;
}

/* Hamburger Animation */
.hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    /* Hidden */
    width: 250px;
    height: 100vh;
    background: #0a1a10;
    display: flex;
    flex-direction: column;
    padding-top: 100px;
    gap: 20px;
    align-items: center;
    transition: right 0.4s ease;
    z-index: 99;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
    right: 0;
}

.mobile-link {
    color: var(--link-white);
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: 600;
}

.btn-buy-mobile {
    background: var(--accent-green);
    color: #000;
    padding: 10px 30px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-buy-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(57, 255, 20, 0.4);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 500px;
    padding: 40px 0;
    position: relative;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
}

.text-green {
    color: var(--accent-green);
    text-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-img-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    /* Adding a simulated glow behind the product */
    filter: drop-shadow(0 0 50px rgba(104, 219, 83, 0.15));
}

.main-product-img {
    width: 100%;
    height: auto;
    /* Rotation to match image if needed, but placeholder is standard */
    transform: rotate(0deg);
}

/* Floating Cubes (Decoration) */
.shape {
    position: absolute;
    background: rgba(57, 255, 20, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(57, 255, 20, 0.4);
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.2);
}

.cube-1 {
    width: 40px;
    height: 40px;
    top: -20px;
    right: 20px;
    transform: rotate(30deg) skew(10deg);
}

.cube-2 {
    width: 25px;
    height: 25px;
    bottom: 20px;
    left: -10px;
    transform: rotate(-15deg);
}

/* Features Grid */
.features {
    display: grid;
    /* Column logic: 1.5fr (large card), 1fr (split col), 0.8fr (vert card), 0.8fr (vert card) */
    grid-template-columns: 1.6fr 1.1fr 0.9fr 0.9fr;
    gap: 16px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
}

.card:hover {
    border-color: var(--accent-gray);
    transform: translateY(-5px);
}

/* Card Typography */
.card-title {
    font-size: 1.1rem;
    color: var(--text-green);
    margin-bottom: 5px;
    font-weight: 400;
}

.card-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-green);
    line-height: 1;
}

.card-value .unit {
    font-size: 1.5rem;
    margin-left: 2px;
}

.card-value-large {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-green);
    margin-top: 10px;
}

/* Card 1: Capacity */
.card-capacity {
    display: flex;
    flex-direction: row;
    /* Horizontal layout for wide card */
    align-items: center;
    justify-content: space-between;
}

.card-capacity .card-content {
    flex: 1;
    z-index: 2;
}

.card-capacity .card-img-container {
    flex: 1.2;
    transform: rotate(-20deg) translateX(px) translateY(50px);
}

.card-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(30px 20px 40px rgba(0, 255, 13, 0.5));
}

/* Column 2 Wrapper */
.col-2-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Card 2: 3-in-1 */
.card-charging {
    flex: 4;
    /* 2/3 height approx */
    position: relative;
    color: var(--accent-green);
}

.card-img-container-small {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    filter: drop-shadow(30px 20px 40px rgba(0, 255, 13, 0.5));
}

.card-img-small {
    height: 200px;
    width: auto;
}

/* Card 3: Airline */
.card-airline {
    flex: 1;
    /* 1/3 height approx */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

.airline-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.airline-text {
    font-size: rem;
    color: var(--accent-green);
}

.plane-icon {
    font-size: 2rem;
    color: var(--accent-green);
    transform: rotate(-15deg);
}

/* Card 4: 130W (Vertical) */
.card-output {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.icon-bolt {
    font-size: 2rem;
    color: var(--accent-green);
    margin-bottom: 10px;
    border: 2px solid var(--accent-green);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Card 5: 65W (Vertical) */
.card-recharging {
    position: relative;
}

.charging-time {
    position: absolute;
    top: 50%;
    right: 10px;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-green);
    z-index: 5;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.card-img-container-vertical {
    margin-top: 20px;
    display: flex;
    justify-content: flex-start;
}

.card-img-vertical {
    height: 150px;
    width: auto;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .features {
        grid-template-columns: 1fr 1fr;
        /* 2x2 grid */
    }

    .card-capacity {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }

    .hero-img-wrapper {
        margin-top: 40px;
    }

    .features {
        grid-template-columns: 1fr;
        /* Stacked */
        margin-bottom: 40px;
    }

    .card-capacity {
        grid-column: span 1;
        flex-direction: column;
        /* Stack image below text on mobile */
        text-align: center;
    }

    .card-capacity .card-img-container {
        transform: rotate(0);
        margin-top: 20px;
    }

    .col-2-wrapper {
        height: auto;
    }

    .card-charging {
        height: 250px;
        /* specific height for visuals */
    }
}

.site-footer {
    background-color: #011b12;
    /* Footer-ի գույնը ըստ կայքի դիզայնի փոխիր */
    color: #0bbe1a;
    padding: 40px 20px 20px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.footer-logo h2 {
    margin: 0;
}

.footer-nav a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
    font-size: 14px;
}

.footer-nav a:hover {
    text-decoration: underline;
}

.footer-social a {
    margin: 0 5px;
}

.footer-social img {
    width: 24px;
    height: 24px;
}

.footer-copy {
    margin-top: 20px;
    font-size: 12px;
    color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 15px;
    }
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.product-card-small {
    text-decoration: none;
    /* bg transparent? or very transparent white */
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.small-card-img-box {
    background: #fff;
    border-radius: 35px;
    /* Rounder borders */
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
    box-shadow: 0 10px 25px rgba(128, 245, 32, 0.15);
    /* Little violet shadow */
    transition: box-shadow 0.3s ease, border-radius 0.3s ease;
    overflow: hidden;
}

.small-card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(0 4px 6px rgba(23, 167, 23, 0.2));
}

.small-card-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
}

.small-card-info p {
    font-size: 0.75rem;
    color: var(--text-gray);
    margin: 2px 0 5px;
}

.small-card-info .price {
    font-size: 0.8rem;
    font-weight: 600;
}


/* Image zoom on hover */
.product-card-small:hover img {
    transform: scale(1.08);
}

/* ===== Text ===== */
.small-card-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #95d83d;
    line-height: 1.3;
    margin-bottom: 4px;
}

.small-card-info p {
    font-size: 12px;
    color: #05923b;
    opacity: 0.85;
    text-decoration: none;
}

@media screen and (max-width: 480px) {
    .product-grid {
        display: grid;
        /* Սահմանում ենք միայն 1 սյունակ ամբողջ լայնությամբ */
        grid-template-columns: 1fr !important;
        gap: 20px;
        padding: 0 15px;
    }

    .product-card-small {
        width: 100% !important;
        margin: 0 auto;
    }
}

/* Hero բաժնի տեքստի Glassmorphism էֆեկտը */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 60px 20px;
}

/* Ձախ կողմի տեքստի կոնտեյները */
.hero-content {
    background: rgba(255, 255, 255, 0.03);
    /* Թափանցիկ ֆոն */
    backdrop-filter: blur(12px);
    /* Ապակու բլյուր էֆեկտ */
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    max-width: 500px;

    /* Հայտնվելու անիմացիա */
    animation: fadeInSlide 1s ease-out forwards;
}

/* Աջ կողմի նկարի «լողացող» անիմացիան */
.hero-image img {
    width: 100%;
    max-width: 600px;
    filter: drop-shadow(0 0 20px rgba(57, 255, 20, 0.3));
    animation: floatImage 4s ease-in-out infinite;
}

/* Անիմացիաների կանոնները */
@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Մոբայլի համար հարմարեցում */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding: 20px;
    }
}

.site-footer {
    background-color: #0a0a0c;
    /* Մուգ ֆոն */
    color: #ffffff;
    padding: 60px 20px 20px;
    font-family: sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

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

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

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

.footer-column ul li a {
    color: #b0b0b0;
    /* Մոխրագույն տեքստ */
    text-decoration: none;
    transition: 0.3s;
}

.footer-column ul li a:hover {
    color: #39FF14;
    /* Կանաչ փայլ հովերի ժամանակ */
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-item a {
    color: #fff;
    text-decoration: none;
}

/* Ստորին գծերը և հեղինակային իրավունքը */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom hr {
    border: 0;
    border-top: 1px solid #333;
    margin: 20px 0;
}

.copyright {
    font-size: 0.8rem;
    color: #666;
}

/* Մոբայլ տարբերակի համար */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: left;
    }
}

/* Սկզբնական վիճակում մենյուն թաքնված է */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100vh;
    background-color: #050a05;
    z-index: 1000;
    flex-direction: column;
    padding: 80px 20px;
    transition: 0.3s;
}

/* Երբ սեղմում ենք կոճակը, այս դասը ակտիվանում է */
.mobile-menu.active {
    display: flex !important;
}

.hamburger {
    display: flex;
    /* Մոբայլի վրա պետք է երևա */
    cursor: pointer;
    z-index: 1001;
}

@media (max-width: 768px) {
    img {
        display: block;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
}

@media only screen and (max-width: 768px) {
    /* Այս բլոկի ներսում գրվածը կաշխատի միայն մոբայլի վրա */

    footer,
    .footer,
    [class*="footer"],
    .footer-section {
        text-align: left !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        padding-left: 20px !important;
        /* բացատ ձախից */
    }

    /* Համոզվում ենք, որ բոլոր տարրերը (լինկեր, տեքստ) ձախ են */
    footer *,
    .footer * {
        text-align: left !important;
        margin-left: 0 !important;
        margin-right: auto !important;
    }
}

/* --- Էկրանի շտկումներ --- */

/* 1. Թաքցնել մենյուն համակարգչի վրա */
.menu-toggle,
.hamburger,
.mobile-nav-toggle {
    display: none !important;
}

/* 2. Ցույց տալ մենյուն միայն հեռախոսի վրա */
@media screen and (max-width: 768px) {

    .menu-toggle,
    .hamburger,
    .mobile-nav-toggle {
        display: block !important;
    }
}

/* 3. Աղջիկների նկարը շարժել աջ */
.hero-image-container,
.image-section {
    display: flex;
    justify-content: flex-end;
    padding-right: 20px;
}

/* --- Մենյուի կատարյալ շտկում --- */

/* 1. Թաքցնել բոլոր տեսակի մենյուի կոճակները համակարգչի վրա */
.menu-toggle,
.hamburger,
.mobile-nav-toggle,
.nav-toggle {
    display: none !important;
    visibility: hidden;
}

/* 2. Շտկել սպիտակ քառակուսու խնդիրը */
span.menu-icon,
.hamburger-inner {
    background: none !important;
    /* Ջնջում է սպիտակ ֆոնը */
}

/* 3. Ցույց տալ մենյուն միայն հեռախոսի վրա (երբ էկրանը փոքր է 768px-ից) */
@media screen and (max-width: 768px) {

    .menu-toggle,
    .hamburger,
    .mobile-nav-toggle {
        display: block !important;
        visibility: visible;
    }
}

/* 4. Նկարի դիրքը */
.hero-image-container {
    display: flex;
    justify-content: flex-end;
    padding-right: 20px;
}

/* --- Մենյուի կոճակի (Hamburger) շտկում --- */

/* 1. Համակարգչի վրա ամբողջությամբ թաքցնել */
.menu-toggle,
.hamburger,
.mobile-nav-toggle {
    display: none !important;
}

/* 2. Հեռախոսի վրա (մինչև 768px) սարքել սիրուն և հեռու գծիկներով */
@media screen and (max-width: 768px) {

    .menu-toggle,
    .hamburger {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        /* Սա կհեռացնի գծիկները իրարից */
        width: 30px;
        /* Կոճակի լայնությունը */
        height: 20px;
        /* Կոճակի բարձրությունը, որ գծիկները հեռու լինեն */
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
    }

    /* Սա հենց գծիկների տեսքն է */
    .menu-toggle span,
    .hamburger span,
    .line {
        display: block;
        width: 100%;
        height: 3px;
        /* Գծիկի հաստությունը */
        background-color: #ffffff;
        /* Գծիկի գույնը (սպիտակ) */
        border-radius: 5px;
    }
}

/* 1. Ստիպում ենք հղմանը լինել «թափանցիկ» դասավորության համար */
.card-link {
    display: contents !important;
    /* Սա ամենակարևոր տողն է */
    text-decoration: none !important;
}

/* 2. Ապահովում ենք, որ ամբողջ քարտը լինի սեղմվող */
.card.card-capacity {
    position: relative;
    cursor: pointer;
}

/* 3. Ստեղծում ենք անտեսանելի շերտ քարտի վրա, որը կաշխատի որպես հղում */
.card-link::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
}

.nicotine-warning {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 12px 10px;
    font-size: 14px;
    font-weight: bold;
    width: 100%;
    text-transform: uppercase;
}

.product-card-small {
    text-decoration: none !important;
}

.product-card-small h4,
.product-card-small p {
    text-decoration: none !important;
}

/* This removes the underline from the links in your card */
.small-card-info a {
    text-decoration: none;
}

/* Or, to be safe, remove it from all links in your project */
a {
    text-decoration: none;
}

/* Նկարի կոնտեյները դարձնում ենք հիմք */
.small-card-img-box {
    position: relative;
    overflow: hidden;
    /* Որպեսզի ավելորդ մասերը չերևան */
}

/* Տեղավորում ենք տեքստն ու կոճակը նկարի վրա */
/* Տեղավորում ենք տեքստն ու կոճակը նկարի վրա */
/* .image-overlay-info removed */

/* .puffs-count removed */

.buy-now-btn {
    background-color: #39ff14;
    /* Neon green matching accent */
    color: #000;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.8rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    margin-top: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
    align-self: flex-start;
    /* Align left if flex column */
}

.buy-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(57, 255, 20, 0.4);
}

.footer-home-link {
    text-decoration: none;
    /* Հեռացնում է տակի գիծը */
    color: inherit;
    /* Վերցնում է ծնող թեգի (h3) գույնը */
    cursor: pointer;
    /* Ցույց է տալիս, որ սեղմվող է */
}

.footer-home-link:hover,
.footer-home-link:active,
.footer-home-link:visited {
    text-decoration: none;
    /* Ոչ մի պարագայում գիծ չի հայտնվի */
    color: inherit;
    /* Գույնը չի փոխվի անգամ սեղմելուց հետո */
}

/* Սա վերաբերում է միայն այս հղմանը */
.clean-link {
    text-decoration: none !important;
    /* Վերացնում է տակի գիծը */
    color: inherit !important;
    /* Վերցնում է h3-ի բնական գույնը */
    outline: none;
    /* Վերացնում է սեղմելուց հայտնվող շրջանակը */
}

.clean-link:hover,
.clean-link:visited,
.clean-link:active {
    text-decoration: none !important;
    color: inherit !important;
}

/* 1. Ավելացնում ենք շարժվող փայլի էֆեկտ (Pulse) */
@keyframes button-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(57, 255, 20, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(57, 255, 20, 0);
    }
}

.buy-now-btn {
    display: block;
    /* Դարձնում է բլոկային տարր */
    width: 100%;
    /* Ձգում է ամբողջ տողով */
    padding: 12px 0;
    /* Մեծացնում է բարձրությունը */
    font-size: 18px;
    /* Մեծացնում է տառաչափը */
    text-align: center;
    /* Տեքստը դնում է կենտրոնում */
    box-sizing: border-box;
    /* Որպեսզի width-ը ճիշտ հաշվարկվի */
    /* Քո ունեցած սթայլերին ավելացրու այս տողը՝ անընդհատ շարժի համար */
    animation: button-glow 2s infinite;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

/* 2. Փոխում ենք Hover-ը, որ ավելի կենդանի լինի */
.buy-now-btn:hover {
    transform: scale(1.1) translateY(-3px) !important;
    /* Մեծանում է ու բարձրանում */
    background-color: #ffffff !important;
    /* Գույնը դառնում է սպիտակ */
    color: #000 !important;
    box-shadow: 0 8px 20px rgba(57, 255, 20, 0.6) !important;
}

/* 3. Սեղմելու պահին (Active) */
.buy-now-btn:active {
    transform: scale(0.95);
    /* Մի փոքր սեղմվում է */
}

/* 1. Լոգոյի կարգավորում */
.logo {
    display: flex !important;
    align-items: center !important;
    gap: 10px;
    /* Բացատ լոգոյի և տեքստի միջև */
}

.header-logo-img {
    height: 35px;
    /* Կարող ես սարքել 40px կամ 45px, եթե ուզում ես ավելի մեծ */
    width: auto;
    display: block;
}

/* 2. Կոճակների (Kup Teraz) կարգավորում */
.buy-now-btn {
    display: block !important;
    width: 100% !important;
    padding: 15px 0 !important;
    /* Մեծացնում ենք բարձրությունը */
    font-size: 18px !important;
    /* Մեծացնում ենք տառերը */
    text-align: center !important;
    margin-top: 10px !important;
    box-sizing: border-box !important;
}