.product-price-details {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
    margin: 20px 0;
    display: block;
}

.product-price-details small {
    font-size: 16px;
    opacity: 0.7;
    margin-right: 5px;
}

.cart-details-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    max-width: 400px;
    background: var(--gradient-primary);
    color: #fff;
    padding: 18px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 800;
    font-size: 17px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 136, 204, 0.3);
}

.cart-details-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 136, 204, 0.4);
    filter: brightness(1.1);
}

.wide-container {
    max-width: 1100px;
    margin: 0 auto;
}

.main-image-circle {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.main-image-circle img {
    width: 90% !important;
    height: 90% !important;
    object-fit: contain !important;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.hud-label {
    background: rgba(10, 10, 26, 0.8) !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}