/* Shop Page Specific Styles */
/* Depends on style.css for CSS variables and base styles */

/* Shop specific styles can be added here */

.card-body ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.card-body li {
    padding: 0.3rem 0;
    font-size: 0.9rem;
    color: var(--dark);
    position: relative;
    padding-left: 1.2rem;
}

.card-body li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.btn-primary {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-primary:hover {
    background: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}
