/* Vertical Blinds theme styles */
.vertical-blinds-carousel .carousel-nav-btn {
    background-color: #FFA500; /* Orange color for Vertical Blinds theme */
    color: #ffffff; /* White arrow color */
    fill: #ffffff; /* Ensure the arrow is white */
    --border-color: rgba(255, 165, 0, 0.5); /* 50% transparent orange border */
    border: 2px solid var(--border-color);
    font-size: 24px; /* Larger font size for visibility */
}

.vertical-blinds-carousel .carousel-nav-btn:hover {
    background-color: #d7831d; /* Darker orange for hover state */
    color: #ffffff; /* Ensure arrow remains white */
    fill: #ffffff; /* Ensure fill color changes on hover */
    --border-color: rgba(215, 131, 29, 0.5); /* 50% transparent darker orange border */
}

.vertical-blinds-carousel .owl-dots .owl-dot.active {
    background-color: #FFA500; /* Orange color */
}

.vertical-blinds-card-border-bg {
    border-top: 7px solid #FFA500; /* Example color */
}

.vertical-blinds-hero-tile-bg {
    background-color: #d7831d;
}

.vertical-blinds-light-banner-bg {
    background-color: #FFE4B5;
}

.vertical-blinds-dark-banner-bg {
    background-color: #d7831d;
}

.vertical-blinds-light-banner-bg-arrow-down {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 40px solid #FFE4B5; /* Same color as light banner background */
    position: absolute;
    bottom: -40px; /* Adjust if necessary */
    left: 50%;
    transform: translateX(-50%);
}

/* Additional styles to ensure arrows are visible */
.vertical-blinds-carousel .carousel-nav-btn:hover {
    color: #ffffff; /* White color for hover state */
    fill: #ffffff; /* Ensure fill color changes on hover */
}
