/** en/cources.css - Complete file with Simple Premium Bundle Design*/.filter-buttons {    display: flex;    gap: 10px;    flex-wrap: wrap;}.pagination {    text-align: center;    margin-top: 20px;    display: flex;    justify-content: center;}.pagination-button {    margin: 0 6px;    border: 1px solid #707070;    background-color: transparent;    cursor: pointer;    border-radius: 99999px;    width: 48px;    height: 48px;    display: flex;    justify-content: center;    align-items: center;}.pagination-button.active {    background-color: var(--black-primary);    color: white;}/* Course card specific styling */.course-container .course-card {    transition: all 0.3s ease !important;    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;    border-radius: 0 !important;    overflow: hidden !important;    background-color: white !important;    height: 100% !important;    display: flex !important;    flex-direction: column !important;    padding-top: 0 !important;}/* Course image container - changed to 16:9 aspect ratio */.course-container .course-card .course-img,.course-container .course-img-container {    position: relative !important;    overflow: hidden !important;    padding: 0 !important;    margin: 0 !important;    border: none !important;    background: none !important;    display: block !important;    aspect-ratio: 16/9 !important;    width: 100% !important;}/* Images inside course cards */.course-container .course-card .course-img img,.course-container .course-img-container img {    width: 100% !important;    height: 100% !important;    display: block !important;    border: none !important;    padding: 0 !important;    margin: 0 !important;    object-fit: cover !important;    object-position: center !important;    border-radius: 0 !important;    box-shadow: none !important;    image-rendering: -webkit-optimize-contrast !important;    transform: translateZ(0);}/* Course content with proper padding */.course-container .course-card .card-content,.course-container .course-card > div:not(.course-img) {    padding: 15px !important;    background-color: white !important;    display: flex !important;    flex-direction: column !important;    flex-grow: 1 !important;    justify-content: space-between !important;}/* Course link styling */.course-container .course-link {    text-decoration: none !important;    color: inherit !important;    height: 100% !important;    display: block !important;    background-color: transparent !important;}/* Remove any white frame/background from the link */.course-container .course-link {    background-color: transparent !important;    padding: 0 !important;    margin: 0 !important;    border: none !important;}/* Column padding consistent across all breakpoints */.course-container .col-xxl-3,.course-container .col-lg-4,.course-container .col-sm-6,.course-container .col-12 {    padding-left: 15px !important;    padding-right: 15px !important;}/* Transition effect for smoother loading */.course-container .course-img img {    opacity: 0;    transition: opacity 0.3s ease, transform 0.3s ease;}.course-container .course-img img.loaded {    opacity: 1;}/* Optional hover effect */.course-container .course-card:hover .course-img img {    transform: scale(1.05) translateZ(0);}/* Browser-specific fixes */@-moz-document url-prefix() {    .course-container .course-img img {        image-rendering: crisp-edges;    }}@media not all and (min-resolution: .001dpcm) {    @supports (-webkit-appearance:none) {        .course-container .course-img img {            transform: translateZ(0);        }    }}/* ============================================ *//* SIMPLE PREMIUM BUNDLE DESIGN *//* ============================================ */.premium-bundle-showcase {    margin-bottom: 35px;}.premium-showcase-wrapper {    max-width: 100%;    background: white;    border: 1px solid #e0e0e0;    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);    overflow: hidden;}/* Top bar */.premium-top-bar {    background: #ff6208;    color: white;    padding: 8px 20px;    font-size: 13px;    font-weight: 600;    text-align: center;    letter-spacing: 0.5px;}/* Main content */.premium-main-content {    display: flex;    height: 250px;}/* Image section - exactly like regular bundle cards */.premium-img-section {    flex: 0 0 400px;    position: relative;    overflow: hidden;    background: #000;}.premium-bundle-img {    width: 100%;    height: 100%;    object-fit: cover;    object-position: center;    display: block;}/* Discount badge - same as regular cards */.premium-discount-label {    position: absolute;    top: 10px;    right: 10px;    background-color: #ff6b6b;    color: white;    padding: 5px 10px;    font-size: 12px;    font-weight: bold;}/* Content section */.premium-details {    flex: 1;    padding: 25px 30px;    display: flex;    flex-direction: column;    justify-content: space-between;}/* Top section with tags */.premium-tags-row {    display: flex;    gap: 8px;    margin-bottom: 12px;}.tag-bundle {    background-color: #e9ecef;    padding: 4px 8px;    font-size: 12px;    color: #495057;}.tag-featured {    background-color: #231f20;    color: white;    padding: 4px 8px;    font-size: 12px;}/* Title and description */.premium-heading {    font-size: 20px;    font-weight: 600;    color: #231f20;    margin-bottom: 8px;    line-height: 1.3;}.premium-description {    font-size: 13px;    color: #666;    line-height: 1.4;    margin-bottom: 15px;}/* Features */.premium-features-inline {    display: flex;    gap: 20px;    margin-bottom: 15px;}.premium-feat-item {    display: flex;    align-items: center;    gap: 5px;    font-size: 12px;    color: #666;}.premium-feat-item img {    width: 16px;    height: 16px;}/* Bottom section with price and CTA */.premium-action-area {    display: flex;    align-items: center;    justify-content: space-between;    padding-top: 15px;    border-top: 1px solid #f0f0f0;}.premium-price-display {    display: flex;    align-items: baseline;    gap: 10px;}.price-now {    font-size: 24px;    font-weight: bold;    color: #ff6208;}.price-was {    font-size: 16px;    color: #999;    text-decoration: line-through;}.premium-btn {    background: #231f20;    color: white;    padding: 10px 24px;    font-size: 14px;    font-weight: 600;    border: none;    cursor: pointer;    transition: all 0.2s ease;    text-decoration: none;    display: inline-block;}.premium-btn:hover {    background: #ff6208;}.premium-btn.is-owned {    background: #28a745;}/* ============================================ *//* RESPONSIVE DESIGN *//* ============================================ *//* Large screens (1400px and up) */@media (min-width: 1400px) {    .premium-main-content {        height: 280px;    }    .premium-img-section {        flex: 0 0 450px;    }    .premium-details {        padding: 30px 40px;    }}/* Desktop (992px to 1399px) */@media (max-width: 1399px) and (min-width: 992px) {    .premium-main-content {        height: 260px;    }    .premium-img-section {        flex: 0 0 380px;    }    .premium-details {        padding: 25px 30px;    }}/* Tablet landscape (768px to 991px) */@media (max-width: 991px) {    .premium-main-content {        flex-direction: column;        height: auto;    }    .premium-img-section {        flex: none;        width: 100%;        height: 220px;    }    .premium-details {        padding: 25px;    }    .premium-heading {        font-size: 19px;    }    .premium-action-area {        gap: 15px;    }}/* Tablet portrait and large phones (576px to 767px) */@media (max-width: 767px) {    .pagination-button {        width: 36px;        height: 36px;    }    .course-container .course-card .course-img {        aspect-ratio: 16/9 !important;    }    .premium-bundle-showcase {        margin-bottom: 25px;    }    .premium-showcase-wrapper {        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);    }    .premium-top-bar {        padding: 6px 15px;        font-size: 12px;    }    .premium-img-section {        height: 200px;    }    .premium-details {        padding: 20px;    }    .premium-heading {        font-size: 18px;        margin-bottom: 6px;    }    .premium-description {        margin-bottom: 12px;        line-height: 1.3;    }    .price-now {        font-size: 22px;    }    .price-was {        font-size: 15px;    }    .premium-features-inline {        gap: 15px;    }    .premium-feat-item {        font-size: 11px;    }    .premium-action-area {        flex-direction: column;        gap: 12px;        align-items: stretch;    }    .premium-price-display {        justify-content: center;    }    .premium-btn {        width: 100%;        text-align: center;        padding: 12px 20px;    }}/* Small phones (480px to 575px) */@media (max-width: 575px) {    .premium-img-section {        height: 180px;    }    .premium-details {        padding: 18px 15px;    }    .premium-tags-row {        gap: 6px;        margin-bottom: 10px;    }    .tag-bundle,    .tag-featured {        font-size: 11px;        padding: 3px 6px;    }    .premium-heading {        font-size: 17px;    }    .premium-description {        font-size: 12px;        margin-bottom: 10px;    }    .premium-features-inline {        flex-wrap: wrap;        gap: 10px;    }    .premium-feat-item {        flex: 0 0 calc(50% - 5px);    }    .price-now {        font-size: 20px;    }    .price-was {        font-size: 14px;    }    .premium-btn {        font-size: 13px;    }}/* Extra small phones (below 480px) */@media (max-width: 479px) {    .premium-top-bar {        font-size: 11px;        padding: 5px 10px;    }    .premium-img-section {        height: 230px;    }    .premium-details {        padding: 15px 12px;    }    .premium-heading {        font-size: 16px;    }    .premium-description {        display: -webkit-box;        -webkit-line-clamp: 2;        -webkit-box-orient: vertical;        overflow: hidden;    }    .premium-feat-item {        font-size: 10px;    }    .premium-feat-item img,    .premium-feat-item svg {        width: 14px;        height: 14px;    }    .price-now {        font-size: 18px;    }    .price-was {        font-size: 13px;    }    .premium-btn {        padding: 10px 15px;        font-size: 12px;    }}/* Very small phones (below 360px) */@media (max-width: 359px) {    .premium-img-section {        height: 140px;    }    .premium-heading {        font-size: 15px;    }    .premium-features-inline {        gap: 8px;    }    .premium-feat-item {        flex: 0 0 100%;        justify-content: center;    }    .price-now {        font-size: 16px;    }    .premium-discount-label {        font-size: 10px;        padding: 4px 8px;    }}