/* Loader Styles */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-content {
    text-align: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #b68834;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Lighter video overlay */
.video-right .overlay {
    background: rgba(0, 0, 0, 0.4) !important;
}

/* Products Slider Styles */
.single-product {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 0 5px 30px 5px;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 400px;
    display: flex;
    flex-direction: column;
    width: calc(100% - 10px);
    min-width: 250px;
}

.single-product:hover {
    transform: translateY(-5px);
}

.product-img {
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-content {
    padding: 15px 20px 5px 20px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-content h4 {
    color: #333;
    margin: 8px 0;
    font-size: 16px;
    height: auto;
    line-height: 1.2;
}

.product-content .price {
    color: #b68834;
    font-size: 14px;
    font-weight: bold;
    margin: 8px 0;
}

.product-content p {
    color: #666;
    font-size: 12px;
    margin: 8px 0;
    line-height: 1.3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

/* Banner Slider Styles */
.banner-area {
    position: relative;
    overflow: hidden;
    height: 85vh;
    min-height: 600px;
}

.banner-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.banner-content h6,
.banner-content h1,
.banner-content p {
    text-align: center;
}

.banner-buttons {
    text-align: center;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}

.banner-buttons .btn {
    padding: 12px 30px;
    margin: 0 10px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.primary-btn {
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline-light:hover {
    background: #fff;
    color: #333;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.float-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.float-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.float-3 {
    top: 30%;
    right: 25%;
    animation-delay: 4s;
}

.float-4 {
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Banner Navigation Arrows */
.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
}

.banner-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
}

.banner-nav.prev {
    left: 30px;
}

.banner-nav.next {
    right: 30px;
}

/* Footer Background Override */
.footer-area {
    background: none !important;
    background-image: none !important;
    background-color: #ffffff !important;
    color: #333333 !important;
    padding: 30px 0 !important;
}

.footer-area h6 {
    color: #333333 !important;
}

.footer-area p {
    color: #666666 !important;
}

.footer-area a {
    color: #b68834 !important;
}

.footer-area a:hover {
    color: #8b6428 !important;
}

/* Newsletter Email Input Styling */
.footer-area .form-control {
    background-color: #f5f5f5 !important;
    border: 1px solid #ddd !important;
}