*{
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;
}

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

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

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

.background{
position:fixed;
inset:0;
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 60px;
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;
color:#1f2937;
}

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

/*==============================
FILTER AREA
==============================*/

.filters{
padding:0 0 55px;
}

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

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

.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);
}

/*==============================
FILTER BUTTONS
==============================*/

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

.filter-buttons a{
display:flex;
align-items:center;
justify-content:center;
min-width:120px;
padding:12px 25px;
background:#eef4ff;
color:#2f6bff;
border-radius:50px;
font-size:15px;
font-weight:600;
transition:.3s;
}

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

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

.store{
padding:0 0 90px;
}

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

.store-grid{
display:grid;
grid-template-columns:repeat(3,minmax(0,1fr));
gap:25px;
align-items:stretch;
}

/*==============================
STORE CARD
==============================*/

.store-card{
position:relative;
display:flex;
flex-direction:column;
background:#fff;
border:1px solid #e8edf5;
border-radius:20px;
padding:24px;
box-shadow:0 10px 30px rgba(0,0,0,.055);
overflow:hidden;
transition:transform .3s ease,box-shadow .3s ease,border-color .3s ease;
}

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

.store-card:hover{
transform:translateY(-6px);
border-color:#d9e6ff;
box-shadow:0 18px 45px rgba(0,0,0,.10);
}

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

/*==============================
APP ICON
==============================*/

.store-icon{
width:92px;
height:92px;
display:flex;
align-items:center;
justify-content:center;
margin:0 auto 18px;
background:#f8faff;
border:1px solid #edf0f6;
border-radius:20px;
flex-shrink:0;
transition:.3s;
}

.store-icon img{
width:68px;
height:68px;
object-fit:contain;
transition:.3s;
}

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

.store-card:hover .store-icon img{
transform:scale(1.06);
}

/*==============================
APP INFORMATION
==============================*/

.store-info{
display:flex;
flex-direction:column;
flex:1;
min-width:0;
}

.store-info h2{
font-size:23px;
line-height:1.3;
font-weight:700;
text-align:center;
color:#1f2937;
margin-bottom:14px;
transition:.3s;
}

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

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

.meta{
display:flex;
justify-content:center;
align-items:center;
flex-wrap:wrap;
gap:7px;
margin-bottom:16px;
}

.meta span{
padding:6px 10px;
background:#f5f7fb;
border-radius:20px;
font-size:12px;
font-weight:500;
color:#555;
white-space:nowrap;
}

.meta .platform{
font-weight:600;
}

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

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

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

.store-description{
font-size:14px;
line-height:1.65;
color:#6b7280;
text-align:center;
margin-bottom:20px;
}

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

.store-buttons{
display:flex;
gap:10px;
margin-top:auto;
padding-top:4px;
}

.store-buttons .details-btn,
.store-buttons .cart-btn{
flex:1;
min-width:0;
min-height:46px;
display:flex;
align-items:center;
justify-content:center;
padding:10px 12px;
border-radius:11px;
font-family:'Poppins',sans-serif;
font-size:13px;
line-height:1.25;
font-weight:600;
text-align:center;
border:none;
transition:.25s;
}

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

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

.store-buttons .cart-btn{
background:#22c55e;
color:#fff;
cursor:pointer;
}

.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;
}

/*==============================
NO APPLICATIONS
==============================*/

.store-empty{
grid-column:1/-1;
background:#fff;
border:1px solid #e8edf5;
border-radius:20px;
padding:50px 30px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.store-empty h2{
font-size:26px;
margin-bottom:10px;
}

.store-empty p{
color:#6b7280;
}

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

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

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

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

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

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

/*==============================
TABLET
==============================*/

@media(max-width:1050px){

.store-grid{
grid-template-columns:repeat(2,minmax(0,1fr));
}

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

}

/*==============================
SMALL TABLET / PHONE
==============================*/

@media(max-width:700px){

.container{
max-width:94%;
}

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

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

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

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

.store-search input,
.store-search button{
width:100%;
height:58px;
}

.filter-buttons{
gap:10px;
}

.filter-buttons a{
flex:1;
min-width:100px;
padding:12px 15px;
}

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

.store-card{
padding:24px;
}

}

/*==============================
PHONE
==============================*/

@media(max-width:480px){

.store-hero{
padding:145px 0 45px;
}

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

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

.tagline{
padding:8px 20px;
font-size:14px;
margin-bottom:20px;
}

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

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

.store-card{
padding:20px;
}

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

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

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

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

.store-buttons .details-btn,
.store-buttons .cart-btn{
width:100%;
min-height:52px;
font-size:15px;
}

}