/* Archive Page Styles */
.vpd-archive-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #0A0A0F;
}

.vpd-category-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.vpd-tab-btn {
    padding: 12px 24px;
    background: transparent;
    color: #A0A0A0;
    border: 2px solid #2A2A3E;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.vpd-tab-btn:hover {
    border-color: #9333EA;
    color: #fff;
}

.vpd-tab-btn.active {
    background: #9333EA;
    border-color: #9333EA;
    color: #fff;
}

.vpd-search-bar {
    position: relative;
    max-width: 600px;
    margin: 0 auto 40px;
}

.vpd-search-input {
    width: 100%;
    padding: 14px 50px 14px 20px;
    background: #1A1A2E;
    border: 2px solid #2A2A3E;
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
}

.vpd-search-input:focus {
    outline: none;
    border-color: #9333EA;
}

.vpd-search-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #6B6B7B;
}

.vpd-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.vpd-product-card {
    background: #1A1A2E;
    border: 2px solid #2A2A3E;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    cursor: pointer;
}

.vpd-product-card:hover {
    border-color: #9333EA;
    transform: translateY(-5px);
}

.vpd-card-link {
    text-decoration: none;
    color: inherit;
}

.vpd-card-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #0A0A0F;
}

.vpd-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vpd-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
}

.vpd-card-title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.vpd-card-details {
    padding: 16px;
}

.vpd-card-price {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.vpd-card-original-price {
    font-size: 14px;
    color: #6B6B7B;
    text-decoration: line-through;
    margin-left: 8px;
}

.vpd-card-name {
    font-size: 14px;
    color: #A0A0A0;
    text-transform: uppercase;
}

.vpd-load-more-container {
    text-align: center;
    margin-top: 40px;
}

.vpd-load-more-btn {
    padding: 16px 48px;
    background: transparent;
    color: #9333EA;
    border: 2px solid #9333EA;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.vpd-load-more-btn:hover {
    background: #9333EA;
    color: #fff;
}

.vpd-no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px;
    color: #6B6B7B;
}

@media (max-width: 1024px) {
    .vpd-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .vpd-products-grid {
        grid-template-columns: 1fr;
    }
}
