/* Color Gallery Styles */.color-scroll-container{display:flex;overflow-x:auto;padding:1rem 0;gap:1rem;scrollbar-width:thin;scrollbar-color:#666 #f1f1f1;}.color-scroll-container::-webkit-scrollbar{height:8px;}.color-scroll-container::-webkit-scrollbar-track{background:#f1f1f1;border-radius:4px;}.color-scroll-container::-webkit-scrollbar-thumb{background:#666;border-radius:4px;}.color-item{flex:0 0 auto;width:150px;cursor:pointer;transition:transform 0.3s ease,box-shadow 0.3s ease;border-radius:8px;overflow:hidden;background:#fff;box-shadow:0 2px 8px rgba(0,0,0,0.1);}.color-item:hover{transform:translateY(-5px);box-shadow:0 5px 15px rgba(0,0,0,0.15);}.color-item img{width:100%;height:150px;object-fit:cover;display:block;transition:opacity 0.3s ease;}.color-item:hover img{opacity:0.9;}.color-name{padding:0.75rem;text-align:center;font-weight:500;color:#333;background:#fff;margin:0;}/* Loading state */.color-item.loading{position:relative;min-height:200px;background:#f8f9fa;display:flex;align-items:center;justify-content:center;}/* Responsive adjustments */@media (max-width:768px){.color-item{width:120px;}.color-item img{height:120px;}}/* Fullscreen view */.color-fullscreen-container{position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,0.9);display:flex;align-items:center;justify-content:center;z-index:9999;padding:2rem;}.color-fullscreen-content{position:relative;max-width:90%;max-height:90%;}.color-fullscreen-content img{max-width:100%;max-height:80vh;border-radius:8px;box-shadow:0 4px 20px rgba(0,0,0,0.3);}.color-fullscreen-nav{position:absolute;top:50%;transform:translateY(-50%);background:rgba(255,255,255,0.2);color:white;border:none;width:50px;height:50px;border-radius:50%;font-size:1.5rem;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:background 0.2s ease;}.color-fullscreen-nav:hover{background:rgba(255,255,255,0.3);}.color-fullscreen-prev{left:20px;}.color-fullscreen-next{right:20px;}.color-fullscreen-close{position:absolute;top:20px;right:20px;background:none;border:none;color:white;font-size:2rem;cursor:pointer;padding:0.5rem;}