/* Product Icons Styles */
.cbd-product-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.cbd-product-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 80px;
    max-width: 120px;
    flex: 1;
}

.cbd-icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.cbd-icon-wrapper:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.cbd-custom-icon {
    max-width: 50px;
    max-height: 50px;
    object-fit: contain;
    border-radius: 4px;
}

.cbd-icon-label {
    font-size: 14px;
    font-weight: 500;
    color: #495057;
    text-align: center;
    line-height: 1.3;
    word-wrap: break-word;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .cbd-product-icons {
        gap: 15px;
        padding: 15px;
    }
    
    .cbd-product-icon-item {
        min-width: 70px;
        max-width: 100px;
    }
    
    .cbd-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .cbd-custom-icon {
        max-width: 40px;
        max-height: 40px;
    }
    
    .cbd-icon-label {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .cbd-product-icons {
        gap: 10px;
        padding: 10px;
    }
    
    .cbd-product-icon-item {
        min-width: 60px;
        max-width: 80px;
    }
    
    .cbd-icon-wrapper {
        width: 45px;
        height: 45px;
    }
    
    .cbd-custom-icon {
        max-width: 35px;
        max-height: 35px;
    }
    
    .cbd-icon-label {
        font-size: 11px;
    }
}

/* Theme compatibility */
.woocommerce div.product .cbd-product-icons {
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Icon animations */
.cbd-icon-wrapper {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effects */
.cbd-product-icon-item:hover .cbd-icon-wrapper {
    background: #007cba;
    transform: translateY(-3px) scale(1.05);
}

.cbd-product-icon-item:hover .cbd-custom-icon {
    filter: brightness(1.1);
}

.cbd-product-icon-item:hover .cbd-icon-label {
    color: #007cba;
    font-weight: 600;
}

/* Alternative layout for horizontal display */
.cbd-product-icons.horizontal {
    justify-content: center;
    align-items: flex-start;
}

.cbd-product-icons.horizontal .cbd-product-icon-item {
    flex-direction: row;
    align-items: center;
    text-align: left;
    min-width: auto;
    max-width: none;
}

.cbd-product-icons.horizontal .cbd-icon-wrapper {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    margin-bottom: 0;
}

.cbd-product-icons.horizontal .cbd-custom-icon {
    max-width: 30px;
    max-height: 30px;
}

.cbd-product-icons.horizontal .cbd-icon-label {
    font-size: 13px;
    margin-left: 5px;
}

/* Admin styles for better upload experience */
.cbd-custom-icon-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    border: 2px dashed #ddd;
    border-radius: 4px;
    margin-top: 10px;
    background: #f9f9f9;
    transition: all 0.3s ease;
}

.cbd-custom-icon-preview:hover {
    border-color: #007cba;
    background: #f0f8ff;
}

.cbd-custom-icon-preview img {
    max-width: 50px;
    max-height: 50px;
    object-fit: contain;
}

.cbd-upload-icon-btn {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #007cba;
    background: #007cba;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cbd-upload-icon-btn:hover {
    background: #005a87;
    border-color: #005a87;
    transform: translateY(-1px);
} 