/* ========== BREADCRUMBS ========== */
.breadcrumbs-container {
    margin-top: 15px;
    margin-bottom: 20px;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary, #666);
}

.breadcrumb-list li {
    display: inline-flex;
    align-items: center;
}

.home-link {
    display: flex;
    align-items: center;
    color: var(--text-secondary, #666);
    text-decoration: none;
    transition: color 0.2s;
}

.home-link:hover {
    color: var(--primary, #e91e63);
}

.separator {
    color: #ccc;
    font-size: 0.8rem;
}

.category-item {
    color: var(--text-secondary, #666);
    font-weight: 500;
}

.current-item {
    color: var(--primary, #e91e63);
    font-weight: 600;
}

/* ========== FOOTER COLUMN STYLES ========== */
.footer-column h3 {
    color: var(--primary, #e91e63);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--text-secondary, #555);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: var(--primary, #e91e63);
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
}

/* Dark mode links */
.text-pink-600 {
    color: #db2777;
}

.text-pink-600:hover {
    color: #be185d;
}

.underline {
    text-decoration: underline;
}

/* ========== BACK TO TOP BUTTON ========== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.back-to-top.visible {
    display: flex;
}

.back-to-top:hover {
    transform: scale(1.1);
}

/* ========== TOAST NOTIFICATION ========== */
.toast {
    position: fixed;
    bottom: 30px;
    top: auto;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    z-index: 10000;
    box-shadow: 0 8px 24px rgba(233, 30, 99, 0.4);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    max-width: 90vw;
    width: max-content;
    text-align: center;
    word-break: break-word;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ========== MOBILE NAV RESPONSIVE ========== */
@media (max-width: 968px) {
    .hamburger {
        display: flex !important;
        order: 3;
    }

    .dark-mode-toggle {
        order: 2;
        margin-left: auto;
        margin-right: 1px;
    }

    .logo-container {
        order: 1;
        flex-shrink: 1;
        min-width: 0;
    }

    .logo-text {
        font-size: 1.1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--card-bg);
        flex-direction: column;
        padding: 10px 0;
        border-top: 1px solid var(--border-color);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        gap: 0;
        z-index: 999;
        order: 4;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li>a {
        padding: 12px 20px;
        border-radius: 0;
    }

    .navbar {
        position: relative;
    }

    .nav-container {
        flex-wrap: nowrap !important;
        justify-content: space-between;
        gap: 10px;
    }
}

/* ========== SEO CONTENT SECTION ========== */
.seo-content-section {
    margin-top: 40px;
}

.seo-block {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.seo-block h2 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    margin-top: 24px;
}

.seo-block h2:first-child {
    margin-top: 0;
}

.seo-block h3 {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 20px 0 10px;
}

.seo-block p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 14px;
}

.seo-list {
    margin-left: 20px;
    margin-bottom: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.seo-list li {
    margin-bottom: 8px;
}

.faq-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ========== RELATED CARD HOVER ========== */
.related-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.related-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

a.no-underline {
    text-decoration: none;
}

/* ========== CONTENT CARDS (subpages) ========== */
.content-section {
    margin: 0;
}

.content-card {
    background: var(--card-bg);
    padding: 28px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.content-card h2,
.content-card h3 {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.content-card h2 {
    font-size: 1.4rem;
}

.content-card h3 {
    font-size: 1.1rem;
}

.content-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 10px;
}

.content-card.accent-border {
    border-left: 4px solid var(--primary);
}

.content-grid {
    display: grid;
    gap: 20px;
}

.content-grid.two-col {
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 640px) {
    .content-grid.two-col {
        grid-template-columns: 1fr;
    }
}

.feature-list,
.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li,
.tips-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.feature-list li:last-child,
.tips-list li:last-child {
    border-bottom: none;
}

/* ========== POLICY CONTENT ========== */
.policy-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin: 28px 0 12px;
}

.policy-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

.policy-content ul {
    margin-left: 20px;
    margin-bottom: 12px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ========== GRID UTILITIES ========== */
.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-cols-1 {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}