/* Skeleton Loading Styles */

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

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

    100% {
        background-position: -200% 0;
    }
}

/* Skeleton variants */
.skeleton-text {
    height: 16px;
    margin-bottom: 8px;
    border-radius: 4px;
}

.skeleton-text-sm {
    height: 12px;
    margin-bottom: 6px;
    border-radius: 3px;
}

.skeleton-title {
    height: 32px;
    margin-bottom: 16px;
    border-radius: 6px;
}

.skeleton-image {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.skeleton-button {
    height: 48px;
    border-radius: 5px;
}

.skeleton-badge {
    height: 24px;
    width: 60px;
    border-radius: 3px;
    display: inline-block;
    margin-right: 8px;
}

/* Product detail skeleton layout */
.skeleton-product-detail {
    width: 100%;
}

.skeleton-breadcrumb {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    align-items: center;
}

.skeleton-breadcrumb-item {
    height: 16px;
    width: 80px;
    border-radius: 3px;
}

.skeleton-product-main {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.skeleton-product-media {
    flex: 1;
    display: flex;
    gap: 16px;
}

.skeleton-media-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 80px;
}

.skeleton-media-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
}

.skeleton-media-main {
    flex: 1;
    height: 400px;
    border-radius: 8px;
}

.skeleton-product-info {
    flex: 1;
}

.skeleton-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.skeleton-attributes {
    display: flex;
    gap: 16px;
    margin: 24px 0;
    flex-wrap: wrap;
}

.skeleton-attribute {
    height: 20px;
    width: 120px;
    border-radius: 4px;
}

.skeleton-description {
    margin: 24px 0;
}

.skeleton-price-section {
    margin: 24px 0;
}

.skeleton-price {
    height: 36px;
    width: 120px;
    margin-bottom: 12px;
    border-radius: 6px;
}

.skeleton-reward-points {
    height: 20px;
    width: 150px;
    border-radius: 4px;
}

.skeleton-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.skeleton-qty-selector {
    width: 120px;
    height: 48px;
    border-radius: 5px;
}

.skeleton-buy-button {
    flex: 1;
    height: 48px;
    border-radius: 5px;
}

.skeleton-add-to-cart-button {
    flex: 1;
    height: 48px;
    border-radius: 5px;
}

/* Product details section skeleton */
.skeleton-details-section {
    margin: 40px 0;
}

.skeleton-section-title {
    height: 28px;
    width: 200px;
    margin-bottom: 16px;
    border-radius: 5px;
}

.skeleton-paragraph {
    margin-bottom: 12px;
}

.skeleton-spec-row {
    display: flex;
    gap: 24px;
    margin-bottom: 12px;
}

.skeleton-spec-label {
    height: 18px;
    width: 150px;
    border-radius: 4px;
}

.skeleton-spec-value {
    height: 18px;
    flex: 1;
    border-radius: 4px;
}

/* Review section skeleton */
.skeleton-review-section {
    margin: 40px 0;
    padding: 24px;
    background: #f9f9f9;
    border-radius: 8px;
    text-align: center;
}

.skeleton-review-text {
    height: 20px;
    width: 250px;
    margin: 0 auto 16px;
    border-radius: 4px;
}

.skeleton-review-button {
    height: 40px;
    width: 150px;
    margin: 0 auto;
    border-radius: 5px;
}

/* Related products skeleton */
.skeleton-related-products {
    margin: 40px 0;
}

.skeleton-products-grid {
    display: flex;
    gap: 16px;
    overflow: hidden;
}

.skeleton-product-card {
    flex: 0 0 calc(25% - 12px);
    min-width: 200px;
}

.skeleton-product-image {
    width: 100%;
    height: 200px;
    margin-bottom: 12px;
    border-radius: 8px;
}

.skeleton-product-title {
    height: 20px;
    margin-bottom: 8px;
    border-radius: 4px;
}

.skeleton-product-weight {
    height: 14px;
    width: 60%;
    margin-bottom: 8px;
    border-radius: 3px;
}

.skeleton-product-price {
    height: 18px;
    width: 80px;
    margin-bottom: 8px;
    border-radius: 4px;
}

.skeleton-product-payment {
    height: 14px;
    width: 100%;
    margin-bottom: 12px;
    border-radius: 3px;
}

.skeleton-product-button {
    height: 40px;
    width: 100%;
    border-radius: 5px;
}

/* Responsive styles */
@media (max-width: 1023px) {
    .skeleton-product-main {
        flex-direction: column;
    }

    .skeleton-media-main {
        height: 300px;
    }

    .skeleton-product-card {
        flex: 0 0 calc(33.333% - 12px);
    }
}

@media (max-width: 767px) {
    .skeleton-product-media {
        flex-direction: column-reverse;
    }

    .skeleton-media-thumbnails {
        flex-direction: row;
        width: 100%;
    }

    .skeleton-media-thumbnail {
        width: 60px;
        height: 60px;
    }

    .skeleton-media-main {
        height: 250px;
    }

    .skeleton-actions {
        flex-direction: column;
    }

    .skeleton-qty-selector,
    .skeleton-buy-button,
    .skeleton-add-to-cart-button {
        width: 100%;
    }

    .skeleton-product-card {
        flex: 0 0 calc(50% - 8px);
    }

    .skeleton-attributes {
        flex-direction: column;
    }

    .skeleton-attribute {
        width: 100%;
    }
}