/* LovenseCam.live - Custom CSS */
/* Theme: Pink/Magenta gradient - Lovense brand colors */

:root {
    --primary: #e83e8c;
    --primary-dark: #c9379d;
    --primary-light: #f06292;
    --secondary: #2d2d44;
    --accent: #ff6b9d;
    --dark: #1a1a2e;
    --darker: #12121f;
    --light-bg: #fdf2f8;
    --text: #333;
    --text-muted: #666;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text);
    line-height: 1.7;
}

/* Navbar */
.navbar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 0.8rem 0;
}

.navbar-brand {
    font-size: 1.4rem;
}

.brand-icon {
    display: inline-block;
    animation: pulse 2s infinite;
}

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

.nav-link {
    font-weight: 500;
    transition: opacity 0.2s;
}

.nav-link:hover {
    opacity: 0.85;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, var(--secondary) 100%);
    color: white;
    padding: 4rem 0;
}

.hero-sm {
    padding: 3rem 0;
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-section .lead {
    font-size: 1.15rem;
    opacity: 0.95;
}

.hero-section .btn-primary {
    background: white;
    color: var(--primary);
    border: none;
    font-weight: 600;
}

.hero-section .btn-primary:hover {
    background: var(--light-bg);
    color: var(--primary-dark);
}

.hero-section .btn-outline-light:hover {
    background: rgba(255,255,255,0.15);
}

/* Breadcrumb */
.breadcrumb-dark {
    background: none;
    padding: 0;
    margin-bottom: 1rem;
}

.breadcrumb-dark .breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.breadcrumb-dark .breadcrumb-item.active {
    color: rgba(255,255,255,0.6);
}

.breadcrumb-dark .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}

/* Step Numbers */
.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

/* Cards */
.card {
    border-radius: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(232, 62, 140, 0.15);
}

/* Toy Cards */
.toy-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.toy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(232, 62, 140, 0.2);
}

.toy-card img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

/* Pink Gradient Section */
.bg-gradient-pink {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

/* Tip Box */
.tip-box {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: 100%;
}

.tip-box h4 {
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

/* Category Links */
.category-link {
    display: block;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
}

.category-link img {
    height: 150px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.3s;
}

.category-link:hover img {
    transform: scale(1.05);
}

.category-link span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1rem 0.75rem;
    font-weight: 600;
}

/* Buttons */
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* Accordion */
.accordion-button:not(.collapsed) {
    background: var(--light-bg);
    color: var(--primary-dark);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(232, 62, 140, 0.25);
}

/* Sidebar */
.sticky-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-box {
    background: white;
    padding: 1.25rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.sidebar-box h5 {
    font-size: 1rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-bg);
}

.sidebar-box a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s;
}

.sidebar-box a:hover {
    color: var(--primary);
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--light-bg) 0%, #fff 100%);
    border-radius: 15px;
    border: 2px solid var(--primary-light);
}

.cta-box h3 {
    color: var(--primary-dark);
}

/* Tables */
.table-striped tbody tr:nth-of-type(odd) {
    background-color: var(--light-bg);
}

/* Alerts */
.alert-primary {
    background: var(--light-bg);
    border-color: var(--primary-light);
    color: var(--primary-dark);
}

.alert-info {
    background: #e8f4f8;
    border-color: #b8dae5;
}

.alert-warning {
    background: #fff8e6;
    border-color: #f0d78c;
}

/* Footer */
.bg-darker {
    background: var(--darker);
}

footer h5, footer h6 {
    font-size: 1rem;
}

footer a {
    transition: color 0.2s;
}

footer a:hover {
    color: var(--primary-light) !important;
}

/* Background */
.bg-light {
    background-color: var(--light-bg) !important;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-section {
        padding: 3rem 0;
        text-align: center;
    }

    .hero-section .d-flex {
        justify-content: center;
    }

    .min-vh-75 {
        min-height: auto;
    }
}

@media (max-width: 767px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .toy-card img {
        height: 160px;
    }

    .category-link img {
        height: 120px;
    }
}
