.gb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: 0;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.gb-btn--primary {
    background: var(--accent);
    color: #fff;
    box-shadow: var(--glow-sm);
}

.gb-btn--primary:hover {
    background: var(--accent-hover);
    box-shadow: var(--glow);
}

.gb-btn--outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.gb-btn--outline:hover {
    background: var(--accent);
    color: #fff;
    box-shadow: var(--glow-sm);
}

.gb-btn--block {
    width: 100%;
}

.gb-btn--sm {
    padding: 8px 16px;
    font-size: 13px;
}

.gb-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
}

.gb-badge--preowned {
    background: rgba(59,130,246,0.1);
    color: #3b82f6;
    border: 1px solid rgba(59,130,246,0.3);
}

.gb-badge--preorder {
    background: rgba(168,85,247,0.1);
    color: #a855f7;
    border: 1px solid rgba(168,85,247,0.3);
}

.gb-badge--sale {
    background: rgba(255,68,68,0.1);
    color: #ff4444;
    border: 1px solid rgba(255,68,68,0.3);
}

.gb-badge--new {
    background: rgba(45,212,191,0.1);
    color: var(--success);
    border: 1px solid rgba(45,212,191,0.3);
}

.gb-section {
    padding: 30px 0;
}

.gb-section-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text);
}

.gb-grid {
    display: grid;
    gap: 16px;
}

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

.gb-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 480px) {
    .gb-grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gb-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    contain: layout style paint;
}

.gb-price {
    font-weight: 700;
    font-size: 16px;
    color: var(--accent);
}

.gb-price del {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 13px;
    margin-left: 6px;
}

.gb-price ins {
    text-decoration: none;
}

.gb-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
}

.gb-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.gb-section-header h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
}

.gb-section-link {
    font-size: 14px;
    color: var(--accent);
    font-weight: 600;
}

.gb-page {
    padding: 0 0 20px;
    min-height: 60vh;
}

.gb-page > :first-child {
    margin-top: 0;
}

@media (max-width: 768px) {
    .gb-page {
        padding: 16px 0;
    }
}

.gb-info-cards {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px;
}

@media (max-width: 480px) {
    .gb-info-cards {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

.gb-info-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s ease;
}

.gb-info-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow);
    border-color: var(--accent);
}

.gb-info-card-icon {
    font-size: 32px;
    flex-shrink: 0;
    line-height: 1;
}

.gb-info-card-content {
    min-width: 0;
}

.gb-info-card-content strong {
    display: block;
    font-size: 15px;
    margin-bottom: 2px;
}

.gb-info-card-content span {
    font-size: 12px;
    color: var(--text-muted);
}

body {
    padding-bottom: 80px;
}

@media (min-width: 992px) {
    body {
        padding-bottom: 0;
    }
}

/* Section separator */
.gb-section + .gb-section {
    border-top: 1px solid var(--glass-border);
    padding-top: 30px;
    margin-top: 0;
}
