/* Products Page Styles */
/* ==================== */

/* Base Styles */
/* ---------- */
.products-page {
    --primary-color: #4361ee;
    --primary-hover: #3a56d4;
    --secondary-color: #3f37c9;
    --accent-color: #4895ef;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    --success-color: #4cc9f0;
    --warning-color: #f72585;
    --border-radius: 0.5rem;
    --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Section Padding */
.section-padding {
    padding: 5rem 0;
}

@media (max-width: 992px) {
    .section-padding {
        padding: 3rem 0;
    }
}

/* Text Center */
.text-center {
    text-align: center;
}

/* Hero Section */
/* ------------ */
.products-hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 6rem 0 8rem;
    overflow: hidden;
}

.products-hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 400px;
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transform: perspective(1000px) rotateY(-15deg);
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    margin-top: 2rem;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
}

.breadcrumb i {
    margin: 0 0.5rem;
    font-size: 0.8rem;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .products-hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .breadcrumb {
        justify-content: center;
    }
}

/* Wave Divider */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    color: var(--light-color);
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

/* Section Header */
.section-header {
    margin-bottom: 3rem;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    background-color: rgba(67, 97, 238, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.section-description {
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Product Cards */
/* ------------ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--light-gray);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}

.product-card.featured {
    border: 2px solid var(--primary-color);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.product-badge.discount {
    background-color: var(--warning-color);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-actions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    opacity: 0;
    transition: var(--transition);
    z-index: 3;
}

.product-card:hover .product-actions {
    opacity: 1;
}

.product-actions button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    color: var(--dark-color);
    border: none;
    margin: 0 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.product-actions button:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.product-details {
    padding: 1.5rem;
}

.product-category {
    display: block;
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.product-title a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.product-title a:hover {
    color: var(--primary-color);
}

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #ffc107;
}

.product-rating i {
    font-size: 0.9rem;
    margin-right: 0.2rem;
}

.product-rating i.uil-star-slash {
    color: var(--light-gray);
}

.product-rating span {
    font-size: 0.8rem;
    color: var(--gray-color);
    margin-left: 0.5rem;
}

.product-excerpt {
    color: var(--gray-color);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.product-price {
    margin-bottom: 1rem;
}

.product-price .original-price {
    text-decoration: line-through;
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.product-price .discounted-price {
    color: var(--warning-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.product-price .normal-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-sm {
    padding: 0.4rem 0.9rem;
    font-size: 0.85rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(67, 97, 238, 0.2);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Featured Products Slider */
/* ---------------------- */
.featured-products-slider {
    padding: 1rem;
    margin: -1rem;
}

.featured-products-slider .swiper-slide {
    height: auto;
    padding: 1rem 0;
}

.featured-products-slider .swiper-pagination {
    position: static;
    margin-top: 2rem;
}

.featured-products-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--light-gray);
    opacity: 1;
}

.featured-products-slider .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

.featured-products-slider .swiper-button-next,
.featured-products-slider .swiper-button-prev {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    color: var(--dark-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.featured-products-slider .swiper-button-next::after,
.featured-products-slider .swiper-button-prev::after {
    font-size: 1rem;
    font-weight: bold;
}

.featured-products-slider .swiper-button-next:hover,
.featured-products-slider .swiper-button-prev:hover {
    background: var(--primary-color);
    color: white;
}

/* Products Filter */
/* -------------- */
.products-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: center;
}

.filter-group {
    display: flex;
    align-items: center;
}

.filter-label {
    margin-left: 0.75rem;
    font-weight: 600;
    color: var(--dark-color);
    white-space: nowrap;
}

.select-wrapper {
    position: relative;
    min-width: 180px;
}

.select-wrapper i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--gray-color);
}

.form-control {
    width: 100%;
    padding: 0.6rem 1rem 0.6rem 2.5rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    background-color: white;
    color: var(--dark-color);
    font-size: 0.9rem;
    transition: var(--transition);
    appearance: none;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
}

.search-group {
    flex: 1;
    min-width: 250px;
    position: relative;
}

.search-group .form-control {
    padding-left: 1rem;
    padding-right: 3rem;
}

.search-btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 40px;
    background: transparent;
    border: none;
    color: var(--gray-color);
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    color: var(--primary-color);
}

/* No Products */
.no-products {
    grid-column: 1 / -1;
    padding: 3rem 1rem;
    text-align: center;
}

.no-products img {
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.no-products h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.no-products p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Pagination */
.pagination-wrapper {
    margin-top: 3rem;
}

.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-item {
    margin: 0 0.25rem;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius);
    background-color: white;
    color: var(--dark-color);
    border: 1px solid var(--light-gray);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
}

.page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.page-item:not(.active):not(.disabled) .page-link:hover {
    background-color: var(--light-gray);
    border-color: var(--light-gray);
}

.page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Features Section */
/* --------------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid var(--light-gray);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background-color: rgba(67, 97, 238, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.feature-card p {
    color: var(--gray-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Testimonials */
/* ----------- */
.testimonials-slider {
    padding: 1rem;
    margin: -1rem;
}

.testimonials-slider .swiper-slide {
    height: auto;
    padding: 1rem 0;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    height: 100%;
    position: relative;
    border: 1px solid var(--light-gray);
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--dark-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 3rem;
    color: var(--light-gray);
    font-family: serif;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: 1rem;
    border: 3px solid var(--light-gray);
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--dark-color);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--gray-color);
}

.testimonials-slider .swiper-pagination {
    position: static;
    margin-top: 2rem;
}

.testimonials-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--light-gray);
    opacity: 1;
}

.testimonials-slider .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

/* FAQ Section */
/* ---------- */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--light-gray);
}

.accordion-button {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: white;
    border: none;
    text-align: right;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark-color);
    transition: var(--transition);
}

.accordion-button:hover {
    background-color: var(--light-gray);
}

.accordion-button i {
    transition: var(--transition);
    font-size: 1.1rem;
}

.accordion-button[aria-expanded="true"] i {
    transform: rotate(45deg);
}

.accordion-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: white;
}

.accordion-content p {
    padding-bottom: 1.5rem;
    color: var(--gray-color);
    line-height: 1.7;
    margin: 0;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

/* Newsletter */
/* --------- */
.newsletter-section {
    background: linear-gradient(135deg, var(--dark-color), #2a2a4a);
    color: white;
    padding: 4rem 0;
}

.newsletter-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.newsletter-text {
    flex: 1;
    min-width: 300px;
}

.newsletter-text h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.newsletter-text p {
    opacity: 0.9;
    line-height: 1.6;
}

.newsletter-form {
    flex: 1;
    min-width: 300px;
}

.newsletter-form .form-group {
    display: flex;
    margin-bottom: 1rem;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 1rem;
    min-width: 0;
}

.newsletter-form button {
    padding: 0 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    display: flex;
    align-items: center;
}

.newsletter-form button:hover {
    background: var(--primary-hover);
}

.newsletter-form button i {
    margin-right: 0.5rem;
}

.form-check {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.form-check input {
    margin-left: 0.5rem;
}

.form-check label {
    font-size: 0.85rem;
    opacity: 0.9;
    cursor: pointer;
}

.form-message {
    margin-top: 1rem;
    font-size: 0.9rem;
    padding: 0.5rem;
    border-radius: var(--border-radius);
    display: none;
}

.form-message.show {
    display: block;
}

/* Modal */
/* ----- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-dialog {
    max-width: 800px;
    width: 95%;
    margin: 0 auto;
}

.modal-content {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transform: translateY(-50px);
    transition: var(--transition);
}

.modal.show .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
    transition: var(--transition);
}

.modal-close:hover {
    background-color: var(--primary-color);
    color: white;
}

.modal-body {
    padding: 2rem;
    max-height: 80vh;
    overflow-y: auto;
}

.product-gallery {
    margin-bottom: 1.5rem;
}

.main-image {
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.thumbnail-images {
    display: flex;
    gap: 0.5rem;
}

.thumbnail-images img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--border-radius);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.thumbnail-images img:hover,
.thumbnail-images img.active {
    border-color: var(--primary-color);
}

.product-meta {
    margin-bottom: 1rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.quantity-btn {
    width: 35px;
    height: 35px;
    background-color: var(--light-gray);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.quantity-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.quantity-selector input {
    width: 50px;
    height: 35px;
    text-align: center;
    border: 1px solid var(--light-gray);
    margin: 0 0.5rem;
    -moz-appearance: textfield;
}

.quantity-selector input::-webkit-outer-spin-button,
.quantity-selector input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.product-actions .btn {
    flex: 1;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.features-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.features-list i {
    margin-left: 0.5rem;
    color: var(--primary-color);
}

.product-meta-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-gray);
}

.meta-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--gray-color);
}

.meta-item i {
    margin-left: 0.5rem;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Floating Actions */
/* --------------- */
.floating-actions {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 100;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    position: relative;
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.floating-btn.whatsapp {
    background-color: #25D366;
}

.floating-btn.messenger {
    background-color: #006AFF;
}

.floating-btn.scroll-top {
    background-color: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .products-filter {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-group {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .filter-label {
        margin-left: 0;
        margin-bottom: 0.5rem;
    }
    
    .select-wrapper {
        width: 100%;
    }
    
    .floating-actions {
        bottom: 1rem;
        left: 1rem;
    }
    
    .floating-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Dark Mode */
/* --------- */
.dark-mode .product-card,
.dark-mode .feature-card,
.dark-mode .testimonial-card,
.dark-mode .accordion-item {
    background-color: #2a2a4a;
    border-color: #3a3a5a;
}

.dark-mode .product-title,
.dark-mode .product-price .normal-price,
.dark-mode .feature-card h3,
.dark-mode .testimonial-text,
.dark-mode .accordion-button {
    color: white;
}

.dark-mode .product-excerpt,
.dark-mode .feature-card p,
.dark-mode .author-info span,
.dark-mode .accordion-content p {
    color: #b8b8d0;
}

.dark-mode .form-control,
.dark-mode .quantity-selector input {
    background-color: #3a3a5a;
    border-color: #4a4a6a;
    color: white;
}

.dark-mode .page-link {
    background-color: #3a3a5a;
    border-color: #4a4a6a;
    color: white;
}

.dark-mode .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.dark-mode .accordion-button:hover {
    background-color: #3a3a5a;
}

.dark-mode .modal-content {
    background-color: #2a2a4a;
}

.dark-mode .modal-close {
    background-color: #3a3a5a;
    color: white;
}

.dark-mode .modal-close:hover {
    background-color: var(--primary-color);
}




