@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;800&family=Outfit:wght@300;400;600;800&display=swap');

:root {
   
    /*--primary: #2563eb;*/
    /*--secondary: #64748b;*/
    /*--accent: #f59e0b;*/
    /*--background: #f8fafc;*/
    /*--surface: #ffffff;*/
    /*--text: #0f172a;*/
    
    
    --primary: #c9a227;
    --secondary: #b8860b;
    --accent: #f59e0b;

    --background: #f8f5e9;
    --surface: #ffffff;

    --text: #1f2937;
    
    --text-muted: #64748b;
    --border: #e2e8f0;
    --radius: 1rem;
    --shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

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

body {
    font-family: 'Cairo', 'Outfit', sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.025em;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    padding: 6rem 0 4rem;
    text-align: center;
    background: radial-gradient(circle at top right, #dbeafe, transparent),
                radial-gradient(circle at bottom left, #fef3c7, transparent);
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 2rem;
    letter-spacing: -0.05em;
}

.hero p {
    font-size: 1.5rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.hero-app-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 240px;
    background: #fff;
    border-radius: 4rem;
    color: var(--primary);
    margin: 1rem 0 4rem;
    box-shadow: 0 35px 60px -15px rgb(0 0 0 / 0.2);
    border: 1px solid var(--border);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.app-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    align-items: center;
}

.badge-btn {
    display: flex;
    align-items: center;
    padding: 0.8rem 2rem;
    border-radius: 1rem;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: right;
}

.badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.badge-text small {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.8;
}

.badge-text span {
    font-size: 1.25rem;
    font-weight: 700;
}

.badge-btn.apple {
    background: #000;
    color: #fff;
}

.badge-btn.android {
    background: #e2e8f0;
    color: #94a3b8;
    cursor: not-allowed;
    position: relative;
}

.badge-btn.android .status-pill {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--accent);
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 700;
}

.badge-btn:hover:not(.android) {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Categories */
.section-title {
    margin: 3rem 0 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.categories-list {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: none;
}

.categories-list::-webkit-scrollbar {
    display: none;
}

.category-pill {
    padding: 0.5rem 1.25rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 2rem;
    text-decoration: none;
    color: var(--text);
    white-space: nowrap;
    transition: all 0.2s;
}

.category-pill.active, .category-pill:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #f1f5f9;
}

.product-info {
    padding: 1.25rem;
}

.product-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.product-details {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-price {
    color: var(--primary);
    font-weight: 800;
    font-size: 1.25rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 4rem 0;
}

.pagination-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s;
}

.pagination-link.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Footer */
footer {
    background: #171411;
    color: #94a3b8;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-column h4 {
    color: #fff;
    margin-bottom: 1rem;
}

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

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
}

/* Utility */
.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .footer-content { flex-direction: column; gap: 2rem; }
    .nav-links { display: none; }
}
