

.product-section {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    border-radius: 3px;
}

.product-section h3 {
    margin-bottom: 10px;
    font-weight: bold;
    color: #000;
}

.product-section p {
    line-height: 1.4;
    color: #222;
}


.window-content {
    
    overflow-y: auto;
}


.product-images {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.product-image {
    max-width: 150px;
    border: 1px solid #333;
    cursor: pointer;
}

.product-image:hover {
    border-color: #666;
}


.pdf-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 10px 0;
}

.pdf-link {
    display: inline-block;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #333;
    color: #000;
    text-decoration: none;
    font-family: 'Chicago', monospace;
    cursor: pointer;
    transition: all 0.2s;
}

.pdf-link:hover {
    background: #000;
    color: #fff;
}

.pdf-link:active {
    background: #333;
}



.lightbox-pdf-container {
    text-align: center;
    padding: 10px;
    padding-bottom: 80px; 
    position: relative;
    
    max-height: 75vh;
    max-width: 90vw;
    overflow: auto;
    
    scroll-behavior: smooth;
    
    overflow-x: auto;
    overflow-y: auto;
}


.lightbox-pdf-container::-webkit-scrollbar {
    width: 20px;
    height: 20px;
    background: #ffffff;
}

.lightbox-pdf-container::-webkit-scrollbar-track {
    background: #ffffff;
    border: 2px inset #c0c0c0;
    border-radius: 0;
}

.lightbox-pdf-container::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, 
        #e0e0e0 25%, 
        transparent 25%, 
        transparent 50%, 
        #e0e0e0 50%, 
        #e0e0e0 75%, 
        transparent 75%);
    background-size: 4px 4px;
    background-color: #d0d0d0;
    border: 2px outset #c0c0c0;
    border-radius: 0;
    min-height: 30px;
    min-width: 30px;
}

.lightbox-pdf-container::-webkit-scrollbar-thumb:hover {
    background-color: #b0b0b0;
    border: 2px outset #a0a0a0;
}

.lightbox-pdf-container::-webkit-scrollbar-thumb:active {
    background-color: #808080;
    border: 2px inset #a0a0a0;
}

.lightbox-pdf-container::-webkit-scrollbar-corner {
    background: #c0c0c0;
    border: 2px outset #c0c0c0;
}


.lightbox-pdf-container::-webkit-scrollbar-button:vertical:start:decrement {
    background: linear-gradient(to bottom, #f0f0f0, #d0d0d0);
    border: 2px outset #c0c0c0;
    height: 20px;
}

.lightbox-pdf-container::-webkit-scrollbar-button:vertical:end:increment {
    background: linear-gradient(to bottom, #f0f0f0, #d0d0d0);
    border: 2px outset #c0c0c0;
    height: 20px;
}

.lightbox-pdf-container::-webkit-scrollbar-button:horizontal:start:decrement {
    background: linear-gradient(to right, #f0f0f0, #d0d0d0);
    border: 2px outset #c0c0c0;
    width: 20px;
}

.lightbox-pdf-container::-webkit-scrollbar-button:horizontal:end:increment {
    background: linear-gradient(to right, #f0f0f0, #d0d0d0);
    border: 2px outset #c0c0c0;
    width: 20px;
}

.lightbox-pdf-container::-webkit-scrollbar-button:hover {
    background: linear-gradient(45deg, #e0e0e0, #c0c0c0);
}

.lightbox-pdf-container::-webkit-scrollbar-button:active {
    border: 2px inset #c0c0c0;
    background: linear-gradient(45deg, #c0c0c0, #a0a0a0);
}

.lightbox-pdf-controls {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #333;
    border-radius: 0;
    z-index: 1000;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.3);
    white-space: nowrap;
}

.lightbox-pdf-controls button {
    background: white;
    border: 2px solid #333;
    padding: 8px 12px;
    cursor: pointer;
    font-family: 'Chicago', monospace;
    font-size: 14px;
    font-weight: bold;
    min-width: 40px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-pdf-controls button:hover {
    background: #000;
    color: #fff;
}

.pdf-info {
    font-family: 'Chicago', monospace;
    font-size: 12px;
    font-weight: bold;
    color: #000;
    padding: 0 10px;
    white-space: nowrap;
}


.pdf-action-buttons {
    display: flex;
    gap: 8px;
    margin-left: 20px;
    padding-left: 15px;
    border-left: 1px solid #333;
}


.pdf-download-btn,
.pdf-open-new-btn {
    width: 32px;
    height: 32px;
    background: white;
    border: 2px solid #333;
    border-radius: 0;
    cursor: pointer;
    font-family: 'Chicago', monospace;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.1s ease;
}

.pdf-download-btn:hover,
.pdf-open-new-btn:hover {
    background: #000;
    color: #fff;
}

.pdf-download-btn:active,
.pdf-open-new-btn:active {
    background: #333;
}


.pdf-zoom-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
    padding-left: 15px;
    border-left: 1px solid #333;
}

.pdf-zoom-out,
.pdf-zoom-in {
    width: 28px;
    height: 28px;
    background: white;
    border: 2px solid #333;
    border-radius: 0;
    font-family: 'Chicago', monospace;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.1s ease;
    color: #000;
}

.pdf-zoom-out:hover,
.pdf-zoom-in:hover {
    background: #000;
    color: #fff;
}

.pdf-zoom-level {
    font-family: 'Chicago', monospace;
    font-size: 12px;
    min-width: 45px;
    text-align: center;
    font-weight: bold;
    color: #000;
    padding: 0 5px;
}


.lightbox-pdf-controls {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #333;
}


.link-box {
    display: block;
    background: #f0f0f0;
    border: 2px solid #000;
    border-radius: 0;
    padding: 12px;
    margin: 10px 0;
    text-decoration: none;
    color: #000;
    cursor: pointer;
    transition: all 0.1s ease;
    font-family: 'Chicago', monospace;
    min-width: 200px;
    box-sizing: border-box;
}

.link-box:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

.link-box-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.link-box-icon {
    font-size: 24px;
    min-width: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.link-box-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.link-box:hover .link-box-icon {
    filter: invert(1);
}

.link-box:hover .link-box-icon img {
    filter: invert(1);
}

.link-box-text {
    flex: 1;
}

.link-box-title {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 2px;
}

.link-box-description {
    font-size: 12px;
    opacity: 0.8;
}

.link-box:hover .link-box-description {
    opacity: 1;
}


.pdf-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}


.pdf-links .pdf-link,
.pdf-links .link-box {
    display: inline-block;
    min-width: 120px;
}