/* Image Styles for GDNOS Website */
.products-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0;
}
.showcase-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 280px;
    background: linear-gradient(135deg, #0d2240, #1a3a5c);
}
.showcase-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
}
.showcase-label span {
    color: #00d4aa;
    font-size: 0.85rem;
    display: block;
    margin-top: 4px;
}
.carousel-images {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.carousel-slide.active {
    opacity: 1;
}
.carousel-dots {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
}
.carousel-dots .dot.active {
    background: #e8872a;
    transform: scale(1.3);
}
.about-image {
    position: relative;
    z-index: 1;
}
.about-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: 12px;
}
.about-image::before {
    display: none;
}
.product-image {
    border-radius: 8px;
    overflow: hidden;
}
.product-image img {
    width: 100%;
    height: auto;
    display: block;
}
.machine-image-placeholder {
    background: linear-gradient(135deg, #0d2240, #1a3a5c);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    color: #00d4aa;
    font-size: 1.2rem;
    font-weight: 600;
}
