/* Cammello Sunglasses Gallery Styles */

.cammello-sunglasses-gallery {
    padding: 4rem 0;
    background: #0a0a0a;
}

.products-grid {
    display: grid;
    gap: 3rem 2rem;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.product-card {
    background: #121212;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(187, 140, 76, 0.3);
}

.product-image {
    width: 100%;
    aspect-ratio: 1;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.product-image .image-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.product-image .image-slide.active {
    opacity: 1;
    position: relative;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(187, 140, 76, 0.1), transparent);
    transition: left 0.6s;
    pointer-events: none;
}

.product-card:hover .product-image::after {
    left: 100%;
}

.image-navigation {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.image-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.image-dot.active {
    background: #bb8c4c;
    width: 20px;
    border-radius: 4px;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: #666;
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    color: #fff;
    text-transform: uppercase;
}

.specs-list {
    list-style: none;
    margin-bottom: 1rem;
}

.specs-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 0.85rem;
}

.spec-label {
    color: #666;
    letter-spacing: 0.5px;
}

.spec-value {
    color: #999;
    letter-spacing: 0.5px;
    text-align: right;
}

.color-dots {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.color-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}

.color-dot:hover {
    transform: scale(1.2);
    border-color: #bb8c4c;
}

.color-dot.active {
    border-color: #bb8c4c;
    box-shadow: 0 0 0 2px rgba(187, 140, 76, 0.3);
}

.color-dot.dual-color {
    display: flex;
    overflow: hidden;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.color-dot.dual-color:hover {
    border-color: #bb8c4c;
}

.color-dot .color-half {
    width: 50%;
    height: 100%;
    flex-shrink: 0;
}

.size-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.size-values {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.size-item {
    text-align: center;
    flex: 1;
}

.size-label {
    color: #666;
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.size-value {
    color: #bb8c4c;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-name {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .cammello-sunglasses-gallery {
        padding: 2rem 0;
    }
    
    .product-name {
        font-size: 1rem;
        letter-spacing: 1.5px;
    }
    
    .product-info {
        padding: 1rem;
    }
}