.product-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
}
.popup-content {
    background: #171E22;
    max-width: 1200px;
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 12px;
    overflow: hidden;
}
.popup-close {
    position: absolute;
    right: 20px;
    top: 5px;
    color: #B2B4B2;
    font-size: 30px;
    cursor: pointer;
    z-index: 1001;
    font-weight: 600;
}
.popup-layout {
    display: flex;
}
.popup-carousel {
    flex: 0 0 50%;
    background: #0F1316;
    position: relative;
    overflow: hidden;
    height: 100%;
}
.popup-carousel-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    border: none;
    padding: 15px;
    cursor: pointer;
    z-index: 2;
    font-size: 20px;
}
.popup-carousel-prev {
    left: 10px;
}
.popup-carousel-next {
    right: 10px;
}
.popup-carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}
.popup-carousel-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.popup-carousel-dot.active {
    padding: 0 17px;
    border-radius: 10px;
}
.popup-carousel-slide {
    flex: 0 0 100%;
    height: 100%;
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
    opacity: 1;
    transition: opacity 0.5s ease;
}
.popup-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.popup-carousel-track {
    height: 100%;
    display: flex;
    transition: transform 0.3s ease;
    touch-action: pan-x pinch-zoom;
    will-change: transform;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
.popup-carousel-track:active {
    cursor: grabbing;
}
.popup-carousel-track img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}
.popup-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}
.popup-header h2 {
    color: #333F48;
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1px;
}
.popup-body p {
    color: #171e22;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 0;
}
.popup-body p:first-of-type {
    color: #00A7B5;
    font-weight: 500;
    margin-bottom: 20px;
}
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}
.popup-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.popup-footer .contact-btn {
    background: #00A7B5;
    color: #ffffff;
    padding: 12px 36px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 7px 5px 15px rgba(0, 0, 0, 0.3);
}
.popup-footer .contact-btn::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid #94193b;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px #0000004d;
}
.popup-footer .contact-btn:hover {
    background: #94193b;
    transform: translateY(-3px);
}
.popup-footer .contact-btn:hover::after {
    transform: translateX(3px);
    border-left: 8px solid #ffffff;
}
.popup-logo {
    max-width: 55px;
    height: auto;
}
