/* Transportables Page Styles */
.transportables-section {
    padding: 10px 0 20px;
}

.transportables-section h1 {
    margin-bottom: 0;
}

.transportables-subtitle {
    text-align: center;
    margin-bottom: 10px;
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 20px;
}

.carousel-controls-top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.carousel {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.carousel-btn {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 15px 25px;
    cursor: pointer;
    font-size: 24px;
    transition: background 0.3s;
    border-radius: 5px;
}

.carousel-btn:hover {
    background: var(--primary-color);
}

.carousel-pause {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.carousel-pause:hover {
    background: var(--primary-color);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: var(--primary-color);
    opacity: 0.7;
}

.transportables-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.transportables-info h2 {
    margin-bottom: 10px;
}

.transportables-info p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.transportables-info .btn {
    margin-top: 15px;
}

@media (max-width: 768px) {
    .carousel-btn {
        padding: 10px 15px;
        font-size: 18px;
    }

    .carousel-pause {
        width: 40px;
        height: 40px;
    }

    .carousel-pause svg {
        width: 24px;
        height: 24px;
    }
}
