/* Product Procard Template Styles */

/* Fixed bottom bar shadow */
.product-procard-page .fixed-bottom-bar {
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.1), 0px 5px 20px 0px rgba(0, 0, 0, 0.15);
}

/* Color selector styles */
.product-procard-page .color-option {
    width: 72px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #EDEDED;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.product-procard-page .color-option.active {
    border: 2px solid #1D1D1D;
}

.product-procard-page .color-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.product-procard-page .color-circle.silver {
    background: linear-gradient(135deg, #e8e8e8 0%, #c0c0c0 50%, #a8a8a8 100%);
}

.product-procard-page .color-circle.black {
    background: #1D1D1D;
}

/* Quantity selector styles */
.product-procard-page .qty-selector {
    display: flex;
    align-items: center;
    gap: 16px;
}

.product-procard-page .qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 99px;
    background: #EDEDED;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.product-procard-page .qty-btn:hover {
    background: #d0d0d0;
}

.product-procard-page .qty-btn:active {
    transform: scale(0.95);
}

.product-procard-page .qty-number {
    font-size: 20px;
    font-weight: 500;
    color: #1D1D1D;
    min-width: 20px;
    text-align: center;
}

/* Product item styles */
.product-procard-page .product-item {
    border: 1px solid #EDEDED;
    border-radius: 8px;
    padding: 24px;
    transition: all 0.3s;
}

.product-procard-page .product-item:hover {
    border-color: #c0c0c0;
}

/* Disabled button styles */
.product-procard-page #checkout-btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.product-procard-page #checkout-btn:disabled:hover {
    background: #FF4800;
}
