/* Icon Base Styles */
.icon {
    stroke: var(--accent-gold);
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    vertical-align: middle;
    transition: all 0.3s ease;
}

/* Header Icons */
.header-icon {
    width: 32px;
    height: 32px;
    margin-right: 8px;
    stroke-width: 1.5;
}

/* Tile Icons */
.tile-icon {
    fill: none;
}

.tile-icon svg {
    width: 48px;
    height: 48px;
    stroke-width: 1.5;
}

/* Button Icons */
.btn-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    stroke-width: 2;
}

#loginBtn {
    stroke: #000000;
}

/* Filter Icons */
.filter-icon {
    width: 14px;
    height: 14px;
    margin-right: 8px;
    stroke-width: 2;
}

/* Deal Badge Icons */
.deal-badge-icon {
    width: 12px;
    height: 12px;
    margin-right: 6px;
    stroke-width: 2;
}

/* Upload Icon */
.upload-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    stroke-width: 1.5;
    opacity: 0.7;
}

/* Color Overrides (when you need different colors) */
.icon-white {
    stroke: var(--text-primary);
}

.icon-muted {
    stroke: var(--text-muted);
}

.icon-error {
    stroke: #ff6b6b;
}

/* Set most icons to golden color */
.icon, .header-icon, .header-icon.icon, .tile-icon svg, .btn-icon, .deal-badge.badge-buy .deal-badge-icon, .upload-icon {
    stroke: var(--accent-gold);
}

/* Hover Effects */
.tile:hover .tile-icon svg {
    transform: scale(1.05);
}

.filter-btn:hover .filter-icon,
.filter-btn.active .filter-icon {
    stroke: var(--accent-gold);
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .header-icon {
        width: 28px;
        height: 28px;
    }
    
    .tile-icon svg {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .header-icon {
        width: 24px;
        height: 24px;
    }
    
    .tile-icon svg {
        width: 36px;
        height: 36px;
    }
}