/* ======================================= */
/* 1. CẤU HÌNH CƠ BẢN (RESET & BODY) */
/* ======================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f0f0f0; /* Màu nền xám nhẹ dịu mắt hơn */
    color: #333;
    
    /* Padding cho Header cố định */
    padding-top: 220px; 
    
    overflow-x: hidden;
}

.container {
    width: 95%; /* Mở rộng khung nhìn một chút */
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px; 
}

/* ======================================= */
/* 2. DANH SÁCH SẢN PHẨM (LÀM ĐẸP Ở ĐÂY) */
/* ======================================= */
.book-list {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.book-list h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #333;
    font-size: 24px;
    text-transform: uppercase;
    border-bottom: 3px solid #007bff; /* Gạch chân tiêu đề */
    display: inline-block;
    padding-bottom: 5px;
    /* Căn giữa tiêu đề */
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.product-grid {
    display: grid;
    /* SỬA: Chuyển thành 4 cột cho gọn */
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px;
}

.product-card {
    background-color: #ffffff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

/* Hiệu ứng hover nhẹ nhàng */
.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: #007bff;
}

.product-card img {
    width: 100%;          /* Chiều rộng luôn full khung */
    height: 260px;        /* Ép tất cả ảnh cao đúng 260px */
    object-fit: contain;  /* Giữ nguyên tỉ lệ ảnh, không bị méo, hiển thị toàn bộ ảnh */
    background-color: #fff; 
    margin-bottom: 15px;
    padding: 5px;         /* Khoảng hở nhỏ để ảnh không dính sát viền */
    border-radius: 4px;
}

.product-card h3 {
    font-size: 15px; /* Cỡ chữ */
    color: #333;
    margin: 0 0 5px 0;
    line-height: 1.4em; /* Khoảng cách giữa 2 dòng */
    
    /* CÔNG THỨC: height = line-height * số dòng (1.4 * 15px * 2 = 42px) */
    height: 42px; 
    
    /* Cắt chữ thừa */
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card .author {
    font-size: 13px;
    color: #888;
    margin: 0 0 10px 0;
    
    /* Kỹ thuật cắt chữ an toàn nhất */
    display: -webkit-box;
    -webkit-line-clamp: 1;  /* Chỉ cho phép hiện đúng 1 dòng */
    -webkit-box-orient: vertical;
    overflow: hidden;       /* Ẩn phần thừa */
    text-overflow: ellipsis; /* Thêm dấu "..." */
    
    /* Đảm bảo chiều cao cố định (phòng khi font lỗi) */
    height: 20px; 
    line-height: 1.5;
}

.product-card .price {
    font-size: 18px;
    font-weight: bold;
    color: #d9534f;
    margin-top: auto; /* Đẩy giá xuống đáy phần text */
    margin-bottom: 15px;
}

/* Form thêm vào giỏ */
.add-to-cart-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quantity-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}
.quantity-wrapper label {
    margin-right: 5px;
    font-size: 13px;
    color: #666;
}
.quantity-input {
    width: 50px;
    padding: 3px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: center;
}

/* Nút Bấm (Nhỏ gọn hơn) */
.btn-add, .btn-detail {
    display: block;
    width: 100%;
    padding: 8px;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    border: none;
    transition: background 0.2s;
}

.btn-add {
    background-color: #fff;
    color: #28a745;
    border: 1px solid #28a745;
}
.btn-add:hover { 
    background-color: #28a745;
    color: white;
}

.btn-detail {
    background-color: #f8f9fa;
    color: #555;
    border: 1px solid #ddd;
    margin-top: 5px;
}
.btn-detail:hover { 
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

/* ======================================= */
/* 3. DANH MỤC THỂ LOẠI (CATEGORY) */
/* ======================================= */
.category-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.category-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    color: #555;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s;
}

.category-item:hover {
    background: #007bff;
    color: white;
    border-color: #007bff;
    transform: translateY(-2px);
}

/* ======================================= */
/* 4. POPUP THÔNG BÁO (MODAL) */
/* ======================================= */
#modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999999;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s;
}

.success-modal {
    background: white;
    width: 400px;
    max-width: 90%;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    animation: scaleUp 0.3s ease-out;
}

.success-modal i {
    font-size: 60px;
    color: #28a745;
    margin-bottom: 15px;
    display: block;
}

.success-modal h3 {
    margin: 10px 0;
    font-size: 22px;
    color: #333;
    font-weight: bold;
}

.success-modal p {
    color: #666;
    margin-bottom: 25px;
    font-size: 15px;
}

.success-modal button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 40px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
}
.success-modal button:hover { background-color: #0056b3; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleUp { from { transform: scale(0.8); } to { transform: scale(1); } }

/* ======================================= */
/* 5. TRANG THANH TOÁN (CHECKOUT) */
/* ======================================= */
/* 1. Thanh Tiến Trình (Stepper) */
.checkout-stepper {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 50px;
}
.step-item {
    text-align: center;
    position: relative;
    color: #ccc;
    font-weight: 500;
}
.step-item.active { color: #28a745; } /* Màu xanh lá */
.step-icon {
    width: 40px; height: 40px;
    background: #eee;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 10px;
    font-size: 18px;
}
.step-item.active .step-icon {
    background: #28a745;
    color: white;
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
}

/* 2. Layout Chính */
.checkout-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* 3. Cột Trái (Form Nhập liệu) */
.checkout-left {
    flex: 1.5;
    background: #fff;
    padding: 0; /* Bỏ padding ngoài để icon title sát lề */
}

.checkout-section {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding: 30px;
    margin-bottom: 20px;
    border: 1px solid #f0f0f0;
}

.section-title {
    font-size: 20px;
    color: #28a745; /* Màu xanh lá chủ đạo */
    font-weight: bold;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #f5f5f5;
    padding-bottom: 15px;
}

/* Grid cho Form */
.form-row-2 {
    display: flex;
    gap: 20px;
}
.form-group {
    margin-bottom: 20px;
    width: 100%;
}
.form-group label {
    font-weight: 600;
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
    display: block;
}
.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #f9f9f9;
    transition: all 0.3s;
    font-size: 14px;
}
.form-control:focus {
    background: #fff;
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
    outline: none;
}

/* Style Radio Button (Phương thức thanh toán) */
.payment-option {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: 0.2s;
    background: #fbfbfb;
}
.payment-option:hover { border-color: #28a745; background: #f0fff4; }
.payment-option input { margin-right: 15px; transform: scale(1.3); accent-color: #28a745; }
.payment-option label { margin: 0; cursor: pointer; font-weight: 500; }

/* 4. Cột Phải (Đơn hàng - Màu tím) */
.checkout-right {
    flex: 1;
    background: linear-gradient(135deg, #42a5f5 0%, #1565c0 100%);
    border-radius: 15px;
    padding: 30px;
    color: white;
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.3);
    position: sticky;
    top: 100px; /* Trượt theo khi cuộn */
}

.order-title {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 15px;
}

/* Danh sách sản phẩm có thanh cuộn */
.order-scroll-list {
    max-height: 300px; /* Chiều cao tối đa */
    overflow-y: auto;  /* Thanh cuộn dọc */
    margin-bottom: 20px;
    padding-right: 5px;
}
/* Tùy chỉnh thanh cuộn cho đẹp */
.order-scroll-list::-webkit-scrollbar { width: 6px; }
.order-scroll-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.3); border-radius: 10px; }

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(255,255,255,0.2);
}
.item-name { font-weight: 600; font-size: 15px; }
.item-qty { font-size: 13px; opacity: 0.8; }
.item-price { font-weight: bold; font-size: 15px; }

.order-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 15px;
}
.order-total-row {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    font-size: 24px;
    font-weight: bold;
    border-top: 2px solid rgba(255,255,255,0.3);
    margin-top: 10px;
}

/* Nút Đặt Hàng (Màu Vàng/Cam) */
.btn-checkout {
    width: 100%;
    background-color: #ffc107; /* Màu vàng cam */
    color: #333;
    font-size: 18px;
    font-weight: 800;
    padding: 15px;
    border: none;
    border-radius: 30px; /* Bo tròn nhiều */
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-checkout:hover {
    background-color: #ffca2c;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.5);
}

/* Responsive */
@media (max-width: 992px) {
    .checkout-container { flex-direction: column; }
    .checkout-right { width: 100%; position: static; }
}

/* ======================================= */
/* 6. TRANG GIỎ HÀNG (CART) */
/* ======================================= */
.cart-table { width: 100%; border-collapse: separate; border-spacing: 0; background-color: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.05); margin-bottom: 30px; border: 1px solid #eee; }
.cart-table thead tr { background-color: #f8f9fa; }
.cart-table th { padding: 15px; text-align: left; font-weight: 600; color: #555; text-transform: uppercase; font-size: 13px; border-bottom: 2px solid #eee; }
.cart-table td { padding: 20px 15px; vertical-align: middle; border-bottom: 1px solid #f0f0f0; color: #333; }
.cart-table td img { border: 1px solid #ddd; border-radius: 4px; padding: 2px; background: #fff; }
.cart-table td a { font-weight: 500; font-size: 15px; color: #333; text-decoration: none; }
.cart-table input[type="number"] { width: 60px; padding: 5px 0 5px 10px; border: 1px solid #ccc; border-radius: 4px; text-align: center; font-size: 14px; }
.cart-table a[href*="remove"] { color: #dc3545; font-size: 13px; border: 1px solid #eee; padding: 5px 10px; border-radius: 4px; transition: all 0.3s; }
.cart-table a[href*="remove"]:hover { background-color: #dc3545; color: white; }
.btn-secondary { background-color: #fff; border: 1px solid #ccc; color: #555; padding: 10px 20px; display: inline-block; width: auto; border-radius: 4px; cursor: pointer; }
.btn-secondary:hover { background-color: #f1f1f1; }
.order-summary { background-color: #fff; border: 1px solid #e0e0e0; border-radius: 8px; padding: 20px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); flex: 1; }
.cart-total-price { font-size: 26px; color: #d9534f; font-weight: bold; display: block; margin-bottom: 10px; }
.btn-primary { background-color: #d9534f; color: white; padding: 12px 30px; font-size: 16px; text-transform: uppercase; display: inline-block; width: auto; border-radius: 4px; border: none; cursor: pointer; }
.btn-primary:hover { background-color: #c9302c; }

/* ======================================= */
/* 7. RESPONSIVE (DI ĐỘNG) */
/* ======================================= */
@media (max-width: 992px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .checkout-layout { flex-direction: column; }
}
@media (max-width: 480px) {
    .product-grid { grid-template-columns: 1fr; }
    body { padding-top: 180px; } /* Chỉnh lại padding cho mobile */
}
/* ======================================= */
/* CSS CHI TIẾT SẢN PHẨM (PRODUCT DETAIL) */
/* ======================================= */

/* Khung bao quanh toàn bộ nội dung chi tiết */
.product-detail-layout {
    display: flex;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* Đổ bóng nhẹ cho sang */
    gap: 40px; /* Khoảng cách giữa ảnh và chữ */
    align-items: flex-start;
    border: 1px solid #eee;
}

/* Cột bên trái: Ảnh */
.product-detail-image {
    flex: 1; /* Chiếm 1 phần chiều rộng */
    text-align: center;
    border: 1px solid #f0f0f0;
    padding: 10px;
    border-radius: 8px;
}

.product-detail-image img {
    width: 100%;
    height: auto;
    max-height: 450px; /* Giới hạn chiều cao ảnh */
    object-fit: contain;
}

/* Cột bên phải: Thông tin */
.product-detail-info {
    flex: 1.5; /* Chiếm 1.5 phần chiều rộng (rộng hơn ảnh) */
}

.product-detail-info h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    text-align: left; /* Căn trái tiêu đề */
}

.product-detail-info .author, 
.product-detail-info .publisher {
    font-size: 16px;
    color: #666;
    margin-bottom: 8px;
}

.product-detail-info .price {
    font-size: 32px;
    color: #d9534f; /* Màu đỏ */
    font-weight: bold;
    margin: 20px 0;
}

/* --- SỬA NÚT THÊM VÀO GIỎ (QUAN TRỌNG) --- */
.add-to-cart-container {
    display: flex; /* Xếp ngang số lượng và nút */
    align-items: center; /* Căn giữa theo chiều dọc */
    gap: 15px; /* Khoảng cách giữa nút và ô nhập */
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f9f9f9; /* Nền xám nhẹ làm nổi bật khu vực mua */
    border-radius: 8px;
}

.add-to-cart-container input[type="number"] {
    width: 80px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: center;
}

.add-to-cart-container label {
    font-weight: bold;
    margin: 0;
}

.add-to-cart-container button {
    width: auto; /* QUAN TRỌNG: Để nút tự co lại theo nội dung chữ */
    padding: 12px 30px;
    font-size: 16px;
    background-color: #28a745; /* Màu xanh lá */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
    margin: 0; /* Bỏ margin thừa */
}

.add-to-cart-container button:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

/* Phần mô tả */
.description-box {
    margin-top: 20px;
}
.description-box h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
    border-left: 4px solid #007bff;
    padding-left: 10px;
}
.description-content {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    text-align: justify;
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .product-detail-layout {
        flex-direction: column; /* Xếp dọc trên điện thoại */
        padding: 20px;
    }
    .add-to-cart-container {
        flex-direction: column;
        align-items: stretch;
    }
    .add-to-cart-container button {
        width: 100%; /* Trên điện thoại thì nút to ra cho dễ bấm */
    }
}
/* ======================================= */
/* CSS TRANG NỘI DUNG (PAGE.PHP) */
/* ======================================= */

/* Layout chia 2 cột: Sidebar 25% - Content 75% */
.page-layout {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    margin-bottom: 50px;
}

/* --- SIDEBAR --- */
.page-sidebar {
    flex: 0 0 280px; /* Chiều rộng cố định */
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    height: fit-content; /* Chiều cao tự động theo nội dung */
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.sidebar-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    text-transform: uppercase;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    margin-bottom: 8px;
}

.sidebar-menu a {
    display: block;
    padding: 10px 15px;
    color: #555;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.2s;
    font-size: 14px;
}

.sidebar-menu a i {
    margin-right: 8px;
    font-size: 12px;
    color: #999;
}

.sidebar-menu a:hover {
    background-color: #f8f9fa;
    color: #007bff;
    padding-left: 20px; /* Hiệu ứng dịch chuyển nhẹ */
}

/* Link đang được chọn (Active) */
.sidebar-menu a.active {
    background-color: #e3f2fd;
    color: #007bff;
    font-weight: 600;
}
.sidebar-menu a.active i {
    color: #007bff;
}

/* --- NỘI DUNG CHÍNH --- */
.page-content {
    flex: 1; /* Chiếm hết phần còn lại */
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #eee;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    min-height: 500px;
}

.page-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.page-body {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

/* Style cho các thẻ HTML trong bài viết */
.page-body h3 { color: #007bff; margin-top: 25px; margin-bottom: 10px; }
.page-body p { margin-bottom: 15px; text-align: justify; }
.page-body ul { margin-bottom: 15px; padding-left: 20px; }
.page-body li { margin-bottom: 5px; }

/* Mobile Responsive */
@media (max-width: 768px) {
    .page-layout {
        flex-direction: column;
    }
    .page-sidebar {
        flex: none;
        width: 100%;
    }
}
/* ======================================================= */
/* CSS CHO BANNER SLIDER                  */
/* ======================================================= */

.home-slider {
    width: 100%;
    /* Bạn có thể tăng chiều cao lên 300px-350px nếu thấy ảnh bị nhỏ */
    height: 470px; 
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.home-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f4f4f4;
}

.home-slider .swiper-slide img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover; /* Quan trọng: lấp đầy khung ảnh */
    border-radius: 10px;
}

/* --- XỬ LÝ MŨI TÊN (Chỉ hiện khi di chuột) --- */

.swiper-button-next, .swiper-button-prev {
    /* Loại bỏ nền và khung tròn */
    background: none !important; /* Không có màu nền */
    border: none !important;    /* Không có viền */
    border-radius: 0 !important;/* Không bo tròn */
    box-shadow: none !important;/* Không bóng đổ */
    
    /* Đặt màu và kích thước cho vùng chứa icon */
    color: #222 !important;     /* Màu icon mũi tên (đen đậm) */
    width: 40px; 
    height: 40px;
    
    /* Mặc định: Ẩn đi */
    opacity: 0; 
    visibility: hidden;
    transition: all 0.3s ease-in-out; 
}

/* Khi di chuột vào slider -> Hiện nút lên */
.home-slider:hover .swiper-button-next, 
.home-slider:hover .swiper-button-prev {
    opacity: 1;
    visibility: visible;
}

/* Chỉnh icon bên trong TO và RÕ hơn */
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 32px !important; /* Tăng kích thước icon lên cho rõ */
    font-weight: bold !important; /* Làm đậm nét hơn */
}

/* Đẩy nút sát ra mép ngoài hơn (Tùy chọn) */
.swiper-button-next { right: 0px !important; }
.swiper-button-prev { left: 0px !important; }

/* Responsive: Trên điện thoại vẫn hiện nút để bấm cho dễ */
@media (max-width: 768px) {
    .home-slider { height: 180px; }
    .swiper-button-next, .swiper-button-prev {
        opacity: 1; visibility: visible; width: 30px; height: 30px;
    }
}

/* ======================================================= */
/* RESPONSIVE (GIAO DIỆN ĐIỆN THOẠI)                       */
/* ======================================================= */
@media (max-width: 768px) {
    .home-slider {
        /* Giảm chiều cao trên điện thoại kẻo chiếm hết màn hình */
        height: 200px; 
        border-radius: 10px;
        margin-bottom: 20px;
    }
    
    /* Ẩn nút mũi tên trên điện thoại cho đỡ vướng (người dùng quen vuốt tay hơn) */
    .swiper-button-next, .swiper-button-prev {
        display: none;
    }
    
    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
    .swiper-pagination-bullet-active {
        width: 20px;
    }
}