/* made by luci */
* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; 
}

body { 
    transition: background 0.3s ease; 
    min-height: 100vh; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: start; 
    padding: 40px 20px; 
    color: #fff; 
}

.container { 
    width: 100%; 
    max-width: 580px; 
    text-align: center; 
}

.avatar { 
    width: 96px; 
    height: 96px; 
    border-radius: 50%; 
    object-fit: cover; 
    border: 3px solid rgba(255,255,255,0.2); 
    margin-bottom: 16px; 
}

.profile-title { 
    font-size: 20px; 
    font-weight: 700; 
    margin-bottom: 8px; 
}

.profile-bio { 
    font-size: 14px; 
    color: rgba(255,255,255,0.7); 
    margin-bottom: 32px; 
}

.links-wrapper { 
    display: flex; 
    flex-direction: column; 
    gap: 16px; 
    width: 100%; 
    margin-bottom: 40px; 
}

.link-btn { 
    display: flex; 
    align-items: center; 
    background: rgba(255, 255, 255, 0.06); 
    backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px); 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    padding: 16px 24px; 
    border-radius: 16px; 
    text-decoration: none; 
    color: #fff; 
    font-weight: 600; 
    font-size: 15px; 
    transition: transform 0.2s, background 0.2s; 
    position: relative; 
}

.link-btn:hover { 
    transform: scale(1.02); 
    background: rgba(255, 255, 255, 0.12); 
}

.link-icon { 
    width: 24px; 
    height: 24px; 
    object-fit: contain; 
    position: absolute; 
    left: 24px; 
}

.link-text { 
    width: 100%; 
    text-align: center; 
}

.store-divider { 
    margin: 20px 0; 
    border: none; 
    height: 1px; 
    background: rgba(255,255,255,0.1); 
    width: 100%; 
}

.store-title { 
    text-align: left; 
    font-size: 16px; 
    font-weight: 700; 
    margin-bottom: 15px; 
    letter-spacing: 0.5px; 
    opacity: 0.9; 
    display: flex; 
    align-items: center; 
    gap: 8px; 
}

.search-box { 
    width: 100%; 
    padding: 14px 18px; 
    background: rgba(255,255,255,0.05); 
    backdrop-filter: blur(8px); 
    border: 1px solid rgba(255,255,255,0.1); 
    border-radius: 14px; 
    color: #fff; 
    font-size: 14px; 
    outline: none; 
    margin-bottom: 20px; 
    transition: border-color 0.2s; 
    text-align: left; 
}

.search-box:focus { 
    border-color: rgba(255,255,255,0.3); 
}

.products-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 15px; 
    margin-bottom: 20px; 
    width: 100%; 
}

.product-card { 
    background: rgba(255,255,255,0.04); 
    backdrop-filter: blur(10px); 
    border: 1px solid rgba(255,255,255,0.06); 
    border-radius: 18px; 
    padding: 12px; 
    display: flex; 
    flex-direction: column; 
    justify-content: space-between; 
    text-align: left; 
    transition: transform 0.2s; 
}

.product-card:hover { 
    transform: translateY(-3px); 
}

.product-img { 
    width: 100%; 
    aspect-ratio: 1; 
    object-fit: cover; 
    border-radius: 12px; 
    margin-bottom: 10px; 
    background: rgba(0,0,0,0.2); 
}

.product-name { 
    font-size: 13px; 
    font-weight: 600; 
    line-height: 1.4; 
    margin-bottom: 6px; 
    display: -webkit-box; 
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical; 
    overflow: hidden; 
    height: 36px; 
    color: rgba(255,255,255,0.9); 
}

.product-price { 
    font-size: 13px; 
    font-weight: 700; 
    color: #4ade80; 
    margin-bottom: 12px; 
}

.buy-btn { 
    display: block; 
    text-align: center; 
    background: #ffffff; 
    color: #000000; 
    text-decoration: none; 
    padding: 10px; 
    border-radius: 10px; 
    font-size: 12px; 
    font-weight: 700; 
    transition: background 0.2s; 
}

.buy-btn:hover { 
    background: rgba(255,255,255,0.9); 
}

.pagination { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 12px; 
    margin-top: 15px; 
    width: 100%; 
}

.page-btn { 
    background: rgba(255,255,255,0.06); 
    border: 1px solid rgba(255,255,255,0.08); 
    color: #fff; 
    padding: 8px 14px; 
    border-radius: 10px; 
    cursor: pointer; 
    font-size: 12px; 
    font-weight: 600; 
    transition: background 0.2s; 
}

.page-btn:hover:not(:disabled) { 
    background: rgba(255,255,255,0.12); 
}

.page-btn:disabled { 
    opacity: 0.3; 
    cursor: not-allowed; 
}

.page-info { 
    font-size: 12px; 
    color: rgba(255,255,255,0.5); 
}