/**
 * UI/UX Enhancements
 * Product Guidelines and Trust Badges
 */

/* Hero Trust Badges */
.hero-trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 3rem;
}

.hero-trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 25px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.hero-trust-badge:hover {
    background: rgba(0, 255, 136, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.hero-badge-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* Product Guidelines */
.product-guidelines {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 0, 128, 0.05);
    border: 1px solid rgba(255, 0, 128, 0.2);
    border-radius: 15px;
}

.guidelines-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.guidelines-title-icon {
    font-size: 1.5rem;
}

.guidelines-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.guideline-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.guideline-item:hover {
    background: rgba(255, 0, 128, 0.1);
    border-left-color: var(--primary-color);
    transform: translateX(5px);
}

.guideline-icon {
    font-size: 1.2rem;
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* Product Card Guidelines (Collapsible) */
.product-guidelines-card {
    margin-top: 1rem;
    border: 1px solid rgba(255, 0, 128, 0.2);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 0, 128, 0.05);
}

.guidelines-toggle {
    width: 100%;
    padding: 0.8rem 1rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.guidelines-toggle:hover {
    background: rgba(255, 0, 128, 0.1);
    color: var(--primary-color);
}

.toggle-icon {
    font-size: 0.8rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.guidelines-toggle.active .toggle-icon {
    transform: rotate(180deg);
}

.guidelines-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1rem;
}

.guidelines-content.active {
    max-height: 500px;
    padding: 1rem;
}

.guidelines-content .guideline-item {
    font-size: 0.85rem;
    padding: 0.6rem;
    margin-bottom: 0.5rem;
}

/* Enhanced Footer */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.footer-trust-badges {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-trust-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.footer-trust-badge:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-badge-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.3rem 0;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-disclaimer {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

.footer-divider {
    height: 1px;
    background: var(--border-color);
    margin: 2rem 0 1.5rem;
}

.footer-copyright {
    text-align: center;
    padding-top: 1rem;
}

.footer-copyright p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .hero-trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-trust-badge {
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 1rem;
    }
    
    .footer-section {
        text-align: center;
        width: 100%;
    }
    
    .footer-trust-badges {
        gap: 1rem;
        align-items: center;
    }
    
    .footer-trust-badge {
        justify-content: center;
        text-align: center;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .footer-links {
        align-items: center;
        gap: 1rem;
    }
    
    .footer-links a {
        font-size: 0.95rem;
        line-height: 1.8;
    }
    
    .footer-disclaimer {
        text-align: center;
        font-size: 0.9rem;
        line-height: 1.9;
        padding: 0 1rem;
    }
    
    .product-guidelines {
        padding: 1rem;
    }
    
    .guidelines-list {
        gap: 0.8rem;
    }
    
    .guideline-item {
        font-size: 0.9rem;
        padding: 0.7rem;
    }
    
    .product-guidelines-card {
        margin-top: 0.8rem;
    }
    
    .guidelines-content {
        font-size: 0.85rem;
    }
}

/* Ensure no horizontal scroll on mobile */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .container {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    * {
        max-width: 100%;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
}

