/* Skeleton Loading Styles */
.pdp-skeleton {
    width: 100%;
    height: 100%;
    padding: 0 15px 60px;
    box-sizing: border-box;
    background: #34274C;
}

.pdp-skeleton__main {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 480px;
    margin: 0 auto;
}

.pdp-skeleton__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 8px 0 5px;
}

.pdp-skeleton__header-left {
    width: 140px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(90deg, #4A3B66 0%, #5D4B7F 50%, #4A3B66 100%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

.pdp-skeleton__header-right {
    display: flex;
    gap: 16px;
}

.pdp-skeleton__header-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(90deg, #4A3B66 0%, #5D4B7F 50%, #4A3B66 100%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

.pdp-skeleton__tools-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 10px 0;
}

.pdp-skeleton__tool-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pdp-skeleton__tool-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.pdp-skeleton__tool-icon {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    background: linear-gradient(90deg, #4A3B66 0%, #5D4B7F 50%, #4A3B66 100%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

.pdp-skeleton__tool-name {
    width: 70%;
    height: 18px;
    border-radius: 6px;
    background: linear-gradient(90deg, #4A3B66 0%, #5D4B7F 50%, #4A3B66 100%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

.pdp-skeleton__tabbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 12px 0;
    background: rgba(52, 39, 76, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.pdp-skeleton__tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
}

.pdp-skeleton__tab-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(90deg, #4A3B66 0%, #5D4B7F 50%, #4A3B66 100%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

.pdp-skeleton__tab-text {
    width: 40px;
    height: 12px;
    border-radius: 4px;
    background: linear-gradient(90deg, #4A3B66 0%, #5D4B7F 50%, #4A3B66 100%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

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