/* Birth Control Packs Section Styles */

.birth-control-packs-section {
    background-color: #ffffff;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: #707070;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--font-color-1);
    max-width: 800px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

.pack-display-card {
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.nav-arrow {
    background: none;
    border: none;
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--font-color-2);
    cursor: pointer;
    transition: var(--transition);
    padding: 0.5rem;
    position: relative;
    z-index: 10;
}

.nav-arrow:hover {
    color: var(--cta-orange);
}

.pack-image-container {
    text-align: center;
    overflow: hidden;
    position: relative;
}

.pack-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    opacity: 1;
    transform: translateX(0);
}

.pack-image.fade-out {
    opacity: 0;
    transform: translateX(-20px);
}

.pack-image.fade-in {
    opacity: 1;
    transform: translateX(0);
}


.pack-type-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.pack-type-btn {
    background: var(--white);
    border: 2px solid #e9ecef;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--font-color-1);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.pack-type-btn:hover {
    border-color: var(--cta-orange);
    color: var(--cta-orange);
}

.pack-type-btn.active {
    border-color: var(--cta-orange);
    color: var(--cta-orange);
}

/* Tablet Styles */
@media (max-width: 992px) and (min-width: 769px) {
    .nav-arrow {
        font-size: 1.8rem;
        padding: 0.4rem;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .pack-display-card {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    /* Mobile button styles are not needed since buttons are hidden on mobile */
    
    .nav-arrow {
        font-size: 1.5rem;
        padding: 0.3rem;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .pack-display-card {
        padding: 1rem;
        margin: 0.5rem 0;
    }
    
    .nav-arrow {
        font-size: 1.2rem;
        padding: 0.2rem;
    }
}
