/* ========================================
   GC STORE - Shared Design System
   ======================================== */

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

/* ===== CSS Variables ===== */
:root {
    --bg-primary: #070b14;
    --bg-secondary: #0d1322;
    --bg-card: #111a2e;
    --bg-card-hover: #162038;
    --bg-input: #0d1322;
    --bg-surface: #0f1728;

    --blue-primary: #1a6dff;
    --blue-secondary: #0a4fd4;
    --blue-light: #3b82f6;
    --blue-glow: rgba(26, 109, 255, 0.15);
    --blue-gradient: linear-gradient(135deg, #1a6dff, #0a4fd4);

    --text-primary: #ffffff;
    --text-secondary: #7d8ba0;
    --text-muted: #4a5568;

    --border-color: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255, 255, 255, 0.1);

    --star-color: #f59e0b;
    --green-color: #22c55e;
    --red-color: #ef4444;

    --nav-height: 68px;
    --header-height: 56px;
    --card-radius: 14px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;

    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(26, 109, 255, 0.2);
}

/* ===== Reset ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    background: var(--bg-primary);
    color: var(--text-primary);
    max-width: 430px;
    margin: 0 auto;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-bottom: calc(var(--nav-height) + 10px);
    position: relative;
}

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

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    -webkit-user-drag: none;
}

button {
    border: none;
    background: none;
    font-family: inherit;
    cursor: pointer;
    color: inherit;
    font-size: inherit;
}

input, textarea, select {
    border: none;
    background: none;
    font-family: inherit;
    color: inherit;
    outline: none;
    font-size: inherit;
}

/* ===== Status Bar ===== */
.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 24px 4px;
    font-size: 15px;
    font-weight: 600;
    user-select: none;
}

.status-bar-left {
    font-variant-numeric: tabular-nums;
}

.status-bar-right {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 15px;
}

.status-bar-right i {
    font-size: 15px;
}

/* ===== Header ===== */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px 14px;
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(to bottom, var(--bg-primary) 60%, transparent);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-logo .logo-img {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    object-fit: cover;
}

.header-logo .logo-text {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.8px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-actions button,
.header-actions a {
    color: var(--text-primary);
    font-size: 20px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.header-actions button:hover,
.header-actions a:hover {
    color: var(--blue-primary);
    background: var(--blue-glow);
}

/* ===== Bottom Navigation ===== */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 430px;
    background: rgba(13, 19, 34, 0.95);
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: var(--nav-height);
    z-index: 1000;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 8px 16px;
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    letter-spacing: 0.2px;
}

.nav-item i {
    font-size: 21px;
    transition: var(--transition);
    margin-bottom: 1px;
}

.nav-item.active {
    color: var(--blue-primary);
}

.nav-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--blue-primary);
    border-radius: 0 0 2px 2px;
}

.nav-item:hover {
    color: var(--blue-light);
}

/* ===== Section Headers ===== */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    margin-bottom: 14px;
    margin-top: 24px;
}

.section-header:first-of-type {
    margin-top: 0;
}

.section-title {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.section-link {
    font-size: 13px;
    color: var(--blue-primary);
    font-weight: 500;
    transition: var(--transition);
}

.section-link:hover {
    color: var(--blue-light);
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 0;
    height: 0;
}

/* ===== Badge ===== */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.badge-blue {
    background: var(--blue-glow);
    color: var(--blue-primary);
    border: 1px solid rgba(26, 109, 255, 0.2);
}

.badge-green {
    background: rgba(34, 197, 94, 0.12);
    color: var(--green-color);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

/* ===== Star Rating ===== */
.stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.stars i {
    color: var(--star-color);
    font-size: 10px;
}

.rating-value {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    margin-left: 4px;
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

/* ===== Utility ===== */
.verified-icon {
    color: var(--blue-primary);
    font-size: 14px;
    margin-left: 4px;
}

.divider {
    height: 1px;
    background: var(--border-color);
    margin: 0 20px;
}

/* ===== Dot indicators ===== */
.dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-muted);
    transition: var(--transition);
    cursor: pointer;
}

.dot.active {
    width: 18px;
    border-radius: 3px;
    background: var(--blue-primary);
}
/* Share Banner */
.share-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(26, 109, 255, 0.2), rgba(13, 19, 34, 0.8));
    border: 1px solid var(--blue-primary);
    border-radius: var(--card-radius);
    padding: 16px;
    margin: 16px 20px;
    cursor: pointer;
    transition: var(--transition);
}

.share-banner:active {
    transform: scale(0.98);
}

.share-banner-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.share-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--blue-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: var(--shadow-glow);
}

.share-text-area {
    display: flex;
    flex-direction: column;
}

.share-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.share-subtitle {
    font-size: 12px;
    color: var(--text-secondary);
}

.btn-share-banner {
    background: var(--blue-primary);
    color: white;
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--shadow-glow);
}
