/* Custom Florist Styles for VIP ÇİÇEKÇİLİK */

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 10000;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    color: #fff;
    transform: scale(1.08);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25d366;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.7;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Custom WhatsApp Order Button Style for Product Cards */
.theme-btn.whatsapp-order-btn {
    background: #25d366 !important;
    border-color: #25d366 !important;
}

.theme-btn.whatsapp-order-btn::before {
    background: #20ba5a !important;
}

.theme-btn.whatsapp-order-btn:hover {
    background: #20ba5a !important;
}

/* Adjustments for flower images to prevent distortion */
.flower-card-img {
    height: 350px !important;
    object-fit: cover !important;
    width: 100%;
    border-radius: 8px;
    transition: transform 0.5s ease;
}

.flower-card-img:hover {
    transform: scale(1.03);
}

/* Logo Sizing adjustments for header */
.header-logo img, .header-logo-2 img {
    max-height: 55px !important;
    width: auto !important;
    object-fit: contain;
}

/* Category Slider (Brand Box) Multi-line text fix */
.brand-box-1 {
    line-height: normal !important; /* Override 125px line-height */
}

.brand-box-1 .brand-img-1 {
    line-height: 1.3 !important;
    text-align: center;
    padding: 0 15px; /* Give some breathing room on sides */
}

/* Category Filters Styling */
.category-filters {
    margin: 20px 0;
}

.btn-filter {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff !important;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
    cursor: pointer;
}

.btn-filter:hover {
    background: rgba(217, 119, 6, 0.1);
    border-color: #d97706;
    color: #d97706 !important;
    transform: translateY(-2px);
}

.btn-filter.active {
    background: #d97706;
    border-color: #d97706;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
}

/* Premium Preloader Style Overrides */
.preloader {
    background-color: #0d0f13 !important; /* Rich deep dark background */
}

.preloader .loading-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    height: auto !important;
    gap: 30px !important; /* Space between logo and spinner */
    margin: 0 !important;
}

.preloader .loading {
    position: static !important;
    width: 45px !important;
    height: 45px !important;
    border: 3px solid transparent !important;
    border-color: transparent #d97706 transparent #d97706 !important; /* Elegant gold/amber spinner */
    animation: rotate-loading 1.2s linear infinite !important;
    border-radius: 50% !important;
}

.preloader #loading-icon {
    position: static !important;
    transform: none !important;
    max-width: 220px !important; /* Perfect size for readability */
    height: auto !important;
    animation: loader-logo-pulse 2.5s infinite ease-in-out !important;
}

.preloader #loading-icon img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
}

@keyframes loader-logo-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.04);
        opacity: 1;
    }
}



