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

html{
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:#fff;
color:#1f2937;
line-height:1.6;
overflow-x:hidden;
}

a{
text-decoration:none;
color:inherit;
}

ul{
list-style:none;
}

img{
display:block;
max-width:100%;
}

.container{
width:1300px;
max-width:92%;
margin:auto;
}

section{
padding:80px 0;
}

/*=========================
BACKGROUND
=========================*/

.background{
position:fixed;
left:0;
top:0;
width:100%;
height:100%;
overflow:hidden;
z-index:-1;
background:#fff;
}

.blob{
position:absolute;
border-radius:50%;
filter:blur(80px);
opacity:.16;
animation:blobMove 18s ease-in-out infinite;
}

.blob1{
width:420px;
height:420px;
background:#4f8cff;
top:-120px;
left:-120px;
}

.blob2{
width:350px;
height:350px;
background:#77d8ff;
top:250px;
right:-100px;
animation-delay:5s;
}

.blob3{
width:420px;
height:420px;
background:#82f0b0;
left:35%;
bottom:-180px;
animation-delay:9s;
}

@keyframes blobMove{
0%{transform:translate(0,0);}
25%{transform:translate(40px,-30px);}
50%{transform:translate(-25px,35px);}
75%{transform:translate(30px,15px);}
100%{transform:translate(0,0);}
}

/*=========================
STORE HERO
=========================*/

.store-hero{
padding:180px 0 70px;
text-align:center;
}

.tagline{
display:inline-block;
padding:10px 24px;
background:#eef4ff;
color:#2f6bff;
border-radius:40px;
font-weight:600;
margin-bottom:25px;
}

.store-hero h1{
font-size:58px;
font-weight:800;
margin-bottom:20px;
}

.store-hero p{
font-size:19px;
color:#6b7280;
max-width:700px;
margin:auto;
}

/*=========================
FILTERS
=========================*/

.filters{
padding:0 0 70px;
}

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

.filter-buttons button{
padding:14px 30px;
border:none;
border-radius:50px;
background:#eef4ff;
color:#2f6bff;
font-size:15px;
font-weight:600;
cursor:pointer;
transition:.3s;
}

.filter-buttons button:hover,
.filter-buttons button.active{
background:#2f6bff;
color:#fff;
box-shadow:0 15px 35px rgba(47,107,255,.25);
}

/*=========================
STORE GRID
=========================*/

.store-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:35px;
}
/*=========================
STORE CARD
=========================*/

.store-card{
display:flex;
align-items:center;
gap:30px;
background:#fff;
padding:30px;
border-radius:24px;
border:1px solid #edf0f6;
box-shadow:0 15px 40px rgba(0,0,0,.06);
transition:.35s;
position:relative;
overflow:hidden;
}

.store-card::before{
content:"";
position:absolute;
left:0;
top:0;
width:5px;
height:100%;
background:linear-gradient(#2f6bff,#22c55e);
transform:scaleY(0);
transform-origin:top;
transition:.35s;
}

.store-card:hover::before{
transform:scaleY(1);
}

.store-card:hover{
transform:translateY(-8px);
box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.store-icon{
flex:0 0 130px;
width:130px;
height:130px;
display:flex;
align-items:center;
justify-content:center;
background:#f8faff;
border-radius:24px;
border:1px solid #edf0f6;
transition:.35s;
}

.store-card:hover .store-icon{
background:#eef4ff;
}

.store-icon img{
width:90px;
height:90px;
transition:.35s;
}

.store-card:hover .store-icon img{
transform:rotate(-8deg) scale(1.08);
}

/*=========================
APP INFO
=========================*/

.store-info{
flex:1;
}

.store-info h2{
font-size:30px;
font-weight:700;
margin-bottom:12px;
color:#1f2937;
}

/*=========================
RATING
=========================*/

.rating{
display:flex;
align-items:center;
gap:10px;
font-size:18px;
font-weight:600;
color:#f5b301;
margin-bottom:18px;
}

.rating span{
color:#555;
font-size:15px;
}

/*=========================
META
=========================*/

.meta{
display:flex;
flex-wrap:wrap;
gap:12px;
margin-bottom:22px;
}

.meta span{
padding:8px 16px;
background:#f5f7fb;
border-radius:30px;
font-size:14px;
font-weight:500;
color:#555;
}

.platform{
font-weight:600;
}

.platform.android{
background:#dff8e8;
color:#0f8d45;
}

.platform.windows{
background:#e5eeff;
color:#1b64f2;
}

/*=========================
DESCRIPTION
=========================*/

.store-info p{
font-size:16px;
line-height:1.8;
color:#6b7280;
margin-bottom:28px;
}

/*=========================
BUTTON
=========================*/

.details-btn{
display:inline-flex;
align-items:center;
justify-content:center;
padding:15px 34px;
background:#2f6bff;
color:#fff;
font-weight:600;
border-radius:12px;
transition:.35s;
box-shadow:0 15px 35px rgba(47,107,255,.25);
}

.details-btn:hover{
background:#1e5bf5;
transform:translateY(-4px);
box-shadow:0 20px 45px rgba(47,107,255,.35);
}

.details-btn.disabled{
background:#b8c0cc;
box-shadow:none;
cursor:default;
pointer-events:none;
}

/*=========================
SHINE EFFECT
=========================*/

.store-card::after{
content:"";
position:absolute;
top:-80%;
left:-60%;
width:45%;
height:260%;
background:rgba(255,255,255,.35);
transform:rotate(25deg);
transition:.8s;
pointer-events:none;
}

.store-card:hover::after{
left:150%;
}

/*=========================
CARD ANIMATION
=========================*/

.store-card{
animation:cardFade .8s ease both;
}

.store-card:nth-child(2){
animation-delay:.15s;
}

.store-card:nth-child(3){
animation-delay:.3s;
}

.store-card:nth-child(4){
animation-delay:.45s;
}

@keyframes cardFade{
from{
opacity:0;
transform:translateY(35px);
}
to{
opacity:1;
transform:translateY(0);
}
}
/*=========================
LIGHT FOOTER
=========================*/


 

/*=========================
HOVER GLOW
=========================*/

.store-card:hover{
border-color:#d9e6ff;
}

.store-card:hover h2{
color:#2f6bff;
}

/*=========================
SMOOTH TRANSITIONS
=========================*/

.store-card,
.store-icon,
.store-icon img,
.details-btn,
.filter-buttons button,
nav a,
footer a{
transition:all .35s ease;
}

/*=========================
SCROLLBAR
=========================*/

::-webkit-scrollbar{
width:10px;
}

::-webkit-scrollbar-track{
background:#eef2f7;
}

::-webkit-scrollbar-thumb{
background:#2f6bff;
border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
background:#1d4ed8;
}

/*=========================
TEXT SELECTION
=========================*/

::selection{
background:#2f6bff;
color:#fff;
}

/*=========================
FOCUS
=========================*/

button:focus,
a:focus{
outline:none;
}

/*=========================
ANIMATIONS
=========================*/

.fade-up{
opacity:0;
transform:translateY(40px);
transition:1s ease;
}

.fade-up.show{
opacity:1;
transform:translateY(0);
}

/*=========================
UTILITY
=========================*/

.text-center{
text-align:center;
}

.mt-20{
margin-top:20px;
}

.mt-30{
margin-top:30px;
}

.mt-40{
margin-top:40px;
}

.mb-20{
margin-bottom:20px;
}

.mb-30{
margin-bottom:30px;
}

.mb-40{
margin-bottom:40px;
}

/*==============================
SEARCH
==============================*/

.store-search{
margin-bottom:35px;
}

.store-search form{
display:flex;
gap:15px;
max-width:700px;
margin:0 auto 35px;
}

.store-search input{
flex:1;
height:56px;
padding:0 18px;
border:2px solid #e5e7eb;
border-radius:14px;
background:#fff;
font-family:'Poppins',sans-serif;
font-size:16px;
outline:none;
transition:.3s;
}

.store-search input:focus{
border-color:#2f6bff;
box-shadow:0 0 0 4px rgba(47,107,255,.12);
}

.store-search button{
height:56px;
padding:0 28px;
border:none;
border-radius:14px;
background:#2f6bff;
color:#fff;
font-family:'Poppins',sans-serif;
font-size:16px;
font-weight:600;
cursor:pointer;
transition:.3s;
}

.store-search button:hover{
background:#1d4ed8;
transform:translateY(-2px);
}



.store-buttons{
display:flex;
gap:12px;
margin-top:20px;
}

.store-buttons .details-btn,
.store-buttons .cart-btn{
flex:1;
height:48px;
display:flex;
align-items:center;
justify-content:center;
border-radius:12px;
font-size:15px;
font-weight:600;
text-decoration:none;
transition:.25s;
box-sizing:border-box;
}

.store-buttons .details-btn{
background:#3b82f6;
color:#fff;
}

.store-buttons .details-btn:hover{
background:#2563eb;
transform:translateY(-2px);
}

.store-buttons .cart-btn{
background:#22c55e;
color:#fff;
border:none;
cursor:pointer;
font-family:inherit;
}

.store-buttons .cart-btn:hover:not(.disabled):not(.owned){
background:#16a34a;
transform:translateY(-2px);
}

.store-buttons .cart-btn.owned{
background:#0ea5e9;
cursor:pointer;
}

.store-buttons .cart-btn.owned:hover{
background:#0284c7;
transform:translateY(-2px);
}

.store-buttons .cart-btn.disabled{
background:#9ca3af;
cursor:not-allowed;
}


.store-buttons .cart-btn.free{
background:#10b981;
cursor:default;
}




/*=================================
1200px
=================================*/

@media(max-width:1200px){

.store-grid{
grid-template-columns:1fr;
}

}

/*=================================
992px
=================================*/

@media(max-width:992px){

.container{
width:95%;
}
 
.store-hero h1{
font-size:46px;
}

.footer-grid{
grid-template-columns:1fr;
text-align:center;
}

}
/*=================================
768px
=================================*/

@media(max-width:768px){

.store-card{
flex-direction:column;
text-align:center;
padding:25px;
}

.store-icon{
margin:auto;
}

.store-info{
width:100%;
}

.meta{
justify-content:center;
}
.filter-buttons{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:12px;
}

.filter-buttons a{
flex:1 1 calc(33.333% - 8px);
min-width:110px;
text-align:center;
}

.store-search{
width:100%;
}

.store-search form{
display:flex;
flex-direction:column;
width:100%;
max-width:100%;
margin:0 0 30px;
gap:12px;
}

.store-search input,
.store-search button{
width:100%;
height:60px;
min-height:60px;
padding:0 18px;
font-size:16px;
box-sizing:border-box;
}

.store-search button{
flex:none;
}

.store-buttons{
flex-direction:column;
gap:12px;
}

.store-buttons .details-btn,
.store-buttons .cart-btn{
width:100%;
min-height:60px;
padding:16px 20px;
font-size:16px;
box-sizing:border-box;
}

.store-hero h1{
font-size:34px;
}

.store-hero p{
font-size:16px;
}

}
/*=================================
480px
=================================*/
@media(max-width:480px){

.container{
max-width:94%;
}

.store-hero{
padding:150px 0 50px;
}

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

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

.store-card{
padding:20px;
}

.store-info h2{
font-size:22px;
}

.store-icon{
width:90px;
height:90px;
}

.store-icon img{
width:64px;
height:64px;
}

.filter-buttons{
flex-direction:column;
}

.filter-buttons button{
width:100%;
}

.store-search input,
.store-search button{
width:100%;
height:60px;
padding:0 20px;
font-size:17px;
}

.store-buttons{
gap:14px;
}

.store-buttons{
flex-direction:column;
gap:12px;
}

.store-buttons .details-btn,
.store-buttons .cart-btn{
display:flex;
align-items:center;
justify-content:center;
width:100%;
min-height:60px;
padding:16px 20px;
font-size:16px;
line-height:1.4;
text-align:center;
white-space:normal;
word-break:break-word;
box-sizing:border-box;
}

}


