.store-btn-img{
    height: 80PX;
}
/* Store Section */

.store-section {
    background: #000;
    padding: 80px 40px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* White Box Container */
.store-wrapper {
    max-width: 1400px;
    width: 100%;
    /* background: linear-gradient(135deg, rgba(20, 25, 40, 0.8) 0%, rgba(10, 15, 30, 0.9) 100%); */
    /* border: 2px solid rgba(138, 87, 255, 0.3); */
    border-radius: 40px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(138, 87, 255, 0.2); 
}

.store-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(138, 87, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Left Side */
.store-left {
    width: 45%;
    z-index: 1;
}

.store-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 25px;
}

.store-content p {
    font-size: 16px;
    color: #999;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Store Buttons */
.store-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.store-btn {
    display: inline-block;
    transition: all 0.3s;
    cursor: pointer;
}

.store-btn img {
    height: 50px;
    width: auto;
    display: block;
    transition: all 0.3s;
}

.store-btn:hover {
    transform: translateY(-3px);
}

.store-btn:hover img {
    filter: brightness(1.1);
}

/* Right Side */
.store-right {
    width: 55%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.phone-mockup {
    position: relative;
    max-width: 450px;
    width: 100%;
}

.phone-mockup img {
    width: 100%;
    height: auto;
    display: block;
    /* filter: drop-shadow(0 20px 60px rgba(138, 87, 255, 0.4)); */
    animation: float 6s ease-in-out infinite;
}

/* Float Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .store-wrapper {
        flex-direction: column;
        padding: 50px 40px;
        text-align: center;
    }

    .store-left {
        width: 100%;
    }

    .store-content h1 {
        font-size: 36px;
    }

    .store-buttons {
        justify-content: center;
    }

    .store-right {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .store-section {
        padding: 40px 20px;
    }

    .store-wrapper {
        padding: 40px 30px;
        border-radius: 30px;
    }

    .store-content h1 {
        font-size: 28px;
    }

    .store-content p {
        font-size: 15px;
    }

    .store-btn img {
        height: 45px;
    }

    .phone-mockup {
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .store-wrapper {
        padding: 30px 20px;
        border-radius: 25px;
    }

    .store-content h1 {
        font-size: 24px;
    }

    .store-buttons {
        flex-direction: column;
        align-items: center;
    }

    .store-btn img {
        height: 50px;
        width: 160px;
    }
}