body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    text-align: center;
    color: #333;
}

.products {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.product {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 20px;
    width: calc(33.333% - 20px);
    min-width: 250px;
    box-sizing: border-box;
}

.product img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.product h2 {
    margin-top: 10px;
    color: #333;
}

.product p {
    color: #666;
}

@media (max-width: 768px) {
    .product {
        width: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .product {
        width: 100%;
    }
}

/* Floating PDF Bar (Desktop) */
.floating-pdf-bar {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-radius: 50px;
    padding: 10px 25px;
    z-index: 5000;
    min-width: 500px;
    animation: slideUpDesktop 0.5s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

@keyframes slideUpDesktop {
    from { transform: translate(-50%, 100px); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

.pdf-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.pdf-info {
    font-weight: 700;
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pdf-info i {
    color: #fa1922;
    font-size: 18px;
}

#desktop-pdf-count {
    color: #fa1922;
    font-size: 18px;
    font-weight: 900;
}

.pdf-actions {
    display: flex;
    gap: 10px;
}

.pdf-btn {
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 800;
    font-size: 11px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pdf-btn.primary {
    background: linear-gradient(135deg, #fa1922, #d10000);
    color: white;
}

.pdf-btn.secondary {
    background: #f0f0f0;
    color: #333;
}

.pdf-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}