/* EasyRx Medication Cards Widget Styles */

.easyrx-featured-medications-container *{
    margin: 0;
}

.easyrx-featured-medications-container {
    display: grid;
    gap: 16px;
    padding: 0;
}

.easyrx-featured-medications-container.cards-1 {
    grid-template-columns: 1fr;
}

.easyrx-featured-medications-container.cards-2 {
    grid-template-columns: repeat(2, 1fr);
}

.easyrx-featured-medications-container.cards-3 {
    grid-template-columns: repeat(3, 1fr);
}

.easyrx-featured-medications-container.cards-4 {
    grid-template-columns: repeat(4, 1fr);
}

.easyrx-featured-medications-container.cards-5 {
    grid-template-columns: repeat(5, 1fr);
}

.easyrx-medication-card-container * {
    margin: 0
}

.easyrx-medication-card {
    background: white;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid #D0D5DD;
    position: relative;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 212px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
}

.easyrx-medication-card:hover {
    transform: translateY(-2px);
}

.easyrx-medication-card .easyrx-rx-symbol {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 48px;
    height: 48px;
    z-index: 10;
}

.easyrx-product-image {
    margin-bottom: 16px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    background: #f8fafc;
}

.easyrx-product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

.easyrx-medication-card.featured .easyrx-product-image {
    display: none;
}

.easyrx-drug-info .easyrx-drug-name {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    color: #101828;
}

.easyrx-generic-for {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: #101828;
}


.easyrx-price .price-amount {
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px;
    color: #101828;
}

.easyrx-savings {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    color: #038935;
}

.easyrx-retail-price {
    margin-top: 4px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: #344054;
}

.easyrx-delivery {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    color: #155EEF;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.easyrx-delivery .delivery-icon {
    width: 20px;
    height: 20px;
}

.easyrx-disclaimer {
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    color: #344054;
    margin-top: 10px;
}

.easyrx-error,
.easyrx-no-results {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    margin: 20px 0;
}

.easyrx-no-results {
    background: #f9fafb;
    border-color: #d1d5db;
    color: #6b7280;
}

/* Loading state - Hidden when skeletons are shown */
.easyrx-loading {
    display: none;
}

/* Skeleton Loading Styles */
.easyrx-skeleton-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 0;
}

.easyrx-skeleton-card {
    background: white;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid #D0D5DD;
    position: relative;
    min-height: 212px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
    overflow: hidden;
}

.easyrx-skeleton-rx {
    position: absolute;
    top: 0;
    right: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: easyrx-shimmer 1.5s infinite;
    border-radius: 0 12px 0 8px;
}

.easyrx-skeleton-drug-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.easyrx-skeleton-line {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: easyrx-shimmer 1.5s infinite;
    border-radius: 4px;
}

.easyrx-skeleton-title {
    width: 70%;
    height: 24px;
}

.easyrx-skeleton-subtitle {
    width: 55%;
    height: 20px;
}

.easyrx-skeleton-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.easyrx-skeleton-price-amount {
    width: 80px;
    height: 36px;
}

.easyrx-skeleton-savings {
    width: 60px;
    height: 20px;
}

.easyrx-skeleton-retail {
    width: 90px;
    height: 18px;
}

.easyrx-skeleton-delivery {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.easyrx-skeleton-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: easyrx-shimmer 1.5s infinite;
    border-radius: 4px;
}

.easyrx-skeleton-delivery-text {
    width: 120px;
    height: 16px;
}

@keyframes easyrx-shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Hide skeleton when content is loaded */
.easyrx-medication-carousel:not(.easyrx-ajax-carousel) .easyrx-skeleton-container {
    display: none;
}

/* Skeleton Responsive - Show only 1 on mobile */
@media (max-width: 1200px) {
    .easyrx-skeleton-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .easyrx-skeleton-card:nth-child(4) {
        display: none;
    }
}

@media (max-width: 992px) {
    .easyrx-skeleton-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .easyrx-skeleton-card:nth-child(3),
    .easyrx-skeleton-card:nth-child(4) {
        display: none;
    }
}

@media (max-width: 768px) {
    .easyrx-skeleton-container {
        grid-template-columns: 1fr;
    }
    
    /* Hide all desktop-only skeleton cards on mobile - show only first one */
    .easyrx-skeleton-desktop-only {
        display: none !important;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .easyrx-featured-medications-container.cards-5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .easyrx-featured-medications-container.cards-4,
    .easyrx-featured-medications-container.cards-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .easyrx-featured-medications-container.cards-3,
    .easyrx-featured-medications-container.cards-4,
    .easyrx-featured-medications-container.cards-5 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .easyrx-medication-card {
        padding: 20px 16px;
        min-height: 260px;
    }
    
    .easyrx-drug-name {
        font-size: 16px;
    }
    
    .easyrx-price .price-amount {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .easyrx-featured-medications-container {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }
    
    .easyrx-medication-card {
        padding: 18px 14px;
        min-height: 240px;
    }
    
    .easyrx-drug-name {
        font-size: 16px;
    }
    
    .easyrx-price .price-amount {
        font-size: 22px;
    }
    
    .easyrx-rx-symbol {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
}

/* Elementor Editor Styles */
.elementor-editor .easyrx-featured-medications-container {
    pointer-events: none;
}

.elementor-editor .easyrx-medication-card {
    opacity: 0.8;
}

/* Carousel Specific Styles */
.easyrx-medication-carousel-preview {
    padding: 20px 0;
}

.easyrx-carousel-disclaimer {
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    color: #344054;
    margin-top: 20px;
}

/* Carousel Card Adjustments */
.raven-main-swiper .easyrx-medication-card {
    margin: 0;
    height: auto;
    min-height: 280px;
}

.raven-main-swiper .easyrx-medication-card-container {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.raven-main-swiper .swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
}

/* Carousel Navigation Styling */
.raven-main-swiper .elementor-swiper-button {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.raven-main-swiper .elementor-swiper-button:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: scale(1.1);
}

.raven-main-swiper .elementor-swiper-button i {
    font-size: 18px;
    color: #101828;
}

/* Carousel Pagination Styling */
.raven-main-swiper .swiper-pagination-bullet {
    background: #D0D5DD;
    opacity: 1;
    width: 12px;
    height: 12px;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.raven-main-swiper .swiper-pagination-bullet-active {
    background: #155EEF;
    transform: scale(1.2);
}

/* Responsive Carousel Adjustments */
@media (max-width: 768px) {
    .raven-main-swiper .easyrx-medication-card {
        min-height: 260px;
    }
    
    .raven-main-swiper .elementor-swiper-button {
        width: 36px;
        height: 36px;
    }
    
    .raven-main-swiper .elementor-swiper-button i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .raven-main-swiper .easyrx-medication-card {
        min-height: 240px;
    }
    
    .raven-main-swiper .elementor-swiper-button {
        width: 32px;
        height: 32px;
    }
    
    .raven-main-swiper .elementor-swiper-button i {
        font-size: 14px;
    }
}

/* EasyRx Medication Carousel - Following Posts Carousel Pattern Exactly */
.easyrx-medication-carousel {
    position: relative;
    width: 100%;
}

.easyrx-medication-carousel-swiper-container {
    width: 100%;
    overflow: hidden;
}

.easyrx-medication-carousel .swiper-slide {
    height: auto;
    display: flex;
}

.easyrx-medication-carousel .easyrx-medication-card {
    width: 100%;
    height: 100%;
    margin: 0;
    min-height: 212px;
}

.easyrx-medication-carousel .easyrx-medication-card-container {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Carousel Navigation Styling - Following Posts Carousel */
.easyrx-medication-carousel .swiper-button-prev,
.easyrx-medication-carousel .swiper-button-next {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    border: 1px solid #D0D5DD;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #101828;
    font-size: 18px;
}

.easyrx-medication-carousel .swiper-button-prev:hover,
.easyrx-medication-carousel .swiper-button-next:hover {
    background: rgba(255, 255, 255, 1);
}

.easyrx-medication-carousel .swiper-button-prev:after,
.easyrx-medication-carousel .swiper-button-next:after {
    font-size: 18px;
    font-weight: bold;
}

.raven-swiper-slider .swiper-button-prev {
    left: -50px;
}

.raven-swiper-slider .swiper-button-next {
    right: -50px;
}

.raven-swiper-slider .swiper-button-next:before, .raven-swiper-slider .swiper-button-prev:before{
    font-size: 24px;
}

/* Carousel Pagination Styling - Following Posts Carousel */
.easyrx-medication-carousel .swiper-pagination-bullet {
    background: #D0D5DD;
    opacity: 1;
    width: 12px;
    height: 12px;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.easyrx-medication-carousel .swiper-pagination-bullet-active {
    background: #155EEF;
    transform: scale(1.2);
}

/* Responsive Carousel Adjustments */
@media (max-width: 1024px) {
    .easyrx-medication-carousel {
        padding: 0px 52px;
    }

    .raven-swiper-slider .swiper-button-prev {
        left: 5px;
    }

    .raven-swiper-slider .swiper-button-next {
        right: 5px;
    }
}

@media (max-width: 768px) {
    .easyrx-medication-carousel .easyrx-medication-card {
        min-height: 212px;
    }
    
    .easyrx-medication-carousel .swiper-button-prev,
    .easyrx-medication-carousel .swiper-button-next {
        width: 36px;
        height: 36px;
    }
    
    .easyrx-medication-carousel .swiper-button-prev:after,
    .easyrx-medication-carousel .swiper-button-next:after {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .easyrx-medication-carousel .easyrx-medication-card {
        min-height: 212px;
    }
    
    
    .easyrx-medication-carousel .swiper-button-prev:after,
    .easyrx-medication-carousel .swiper-button-next:after {
        font-size: 14px;
    }
}

/* Print Styles */
@media print {
    .easyrx-featured-medications-container {
        display: block;
    }
    
    .easyrx-medication-card {
        break-inside: avoid;
        margin-bottom: 20px;
        box-shadow: none;
        border: 1px solid #000;
    }
    
    .easyrx-medication-carousel-wrapper .swiper-button-prev,
    .easyrx-medication-carousel-wrapper .swiper-button-next,
    .easyrx-medication-carousel-wrapper .swiper-pagination {
        display: none;
    }
}
