/* Category Section */
.category-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #fff5f8 100%);
    position: relative;
    overflow: hidden;
}
.left-right-padding{
    padding-left: 50px;padding-right: 50px;
}

.category-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape-1, .shape-2, .shape-3 {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 51, 148, 0.1), rgba(103, 43, 131, 0.1));
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: -100px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: -75px;
    left: -75px;
    animation: float 8s ease-in-out infinite reverse;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 10%;
    animation: float 10s ease-in-out infinite;
}

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

.categoryImage {
    height: 220px;
    width: 220px;
    border-radius: 50%;
    object-fit: cover;
    transition: all 0.4s ease;
    border: 5px solid #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.balloon-shap {
    position: relative;
    overflow: hidden;
    border-radius: 50%;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 51, 148, 0.9), rgba(103, 43, 131, 0.9));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.category-overlay i {
    color: white;
    font-size: 24px;
    transform: scale(0);
    transition: transform 0.3s ease 0.1s;
}

.item:hover .category-overlay {
    opacity: 1;
}

.item:hover .categoryImage {
    transform: scale(1.1);
    opacity: 0.8;
    box-shadow: 0 20px 50px rgba(255, 51, 148, 0.4);
}

.balloon-text {
    text-align: center;
    margin-top: 2px;
}

.balloon-text h5 {
    color: #333;
    font-weight: 700;
    margin: 0;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.item:hover .balloon-text h5 {
    color: #ff3394;
    transform: translateY(-5px);
}

/* Modern Products Section */
.modern-products-section {
    background: linear-gradient(135deg, #fafbff 0%, #fff8fa 100%);
    position: relative;
}

.modern-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.modern-products-grid.search {
    grid-template-columns: repeat(3, 1fr);
}

.modern-product-card {
    background: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 51, 148, 0.1);
}

.modern-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 51, 148, 0.15);
}

.product-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.modern-product-card:hover .product-image {
    transform: scale(1.05);
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.wishlist-btn:hover {
    background: #ff3394;
    color: white;
    transform: scale(1.1);
}

.wishlist-btn i {
    color: #ff3394;
    font-size: 16px;
}

.wishlist-btn:hover i {
    color: white;
}

.discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(45deg, #ff3394, #672b83);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
}

.product-content {
    padding: 15px;
}

.product-location {
    color: #999;
    font-size: 14px;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-location i {
    color: #ff3394;
}

.product-title {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.product-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: #ff3394;
}

.rating {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #444;
    margin-bottom: 10px;
}

.rating i {
    color: hotpink;
    margin-right: 5px;
}

.rating-line {
    height: 1px;
    background-color: #e0e0e0;
    margin-bottom: 15px;
}

.product-price-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.old-price {
    color: #999;
    text-decoration: line-through;
    font-size: 16px;
    margin-right: 10px;
}

.current-price {
    color: #ff3394;
    font-size: 20px;
    font-weight: 700;
}

.book-now-btn {
    background: linear-gradient(45deg, #ff3394, #672b83);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
    font-size: 14px;
    flex-shrink: 0;
}

.book-now-btn:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 51, 148, 0.3);
}

/* Modern Hero Slider Styles */
.slider-home-1 {
    position: relative;
    overflow: hidden;
}

.modern-hero-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 20vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(103, 43, 131, 0.8) 0%, rgba(255, 51, 148, 0.6) 100%);
    z-index: 1;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.floating-shape.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.floating-shape.shape-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.floating-shape.shape-3 {
    width: 80px;
    height: 80px;
    top: 40%;
    right: 5%;
    animation-delay: 4s;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge i {
    color: #ffd700;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.gradient-text {
    background: linear-gradient(45deg, #ffd700, #ff3394);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 20px;
    opacity: 0.9;
    max-width: 500px;
    color: #dbd7d7
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.stat-item {
    text-align: center;
}

.stat-item h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 3px;
    color: #ffd700;
}

.stat-item span {
    font-size: 14px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-btn.primary {
    background: linear-gradient(45deg, #ff3394, #672b83);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 51, 148, 0.3);
}

.hero-btn.primary:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 51, 148, 0.4);
}

.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-btn.secondary:hover {
    color: white;
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Modern Rating Section Styles */
.modern-rating-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #fff5f8 100%);
    position: relative;
    overflow: hidden;
}

.modern-rating-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(255, 51, 148, 0.1), rgba(103, 43, 131, 0.1));
    border-radius: 50%;
    z-index: 0;
}

.rating-carousel-container {
    position: relative;
    z-index: 1;
}

.modern-rating-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 51, 148, 0.1);
    position: relative;
    overflow: hidden;
}

.modern-rating-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff3394, #672b83);
}

.modern-rating-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 51, 148, 0.2);
}

.rating-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.customer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid #ff3394;
    padding: 2px;
}

.customer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.customer-info h5 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.rating-stars {
    display: flex;
    gap: 3px;
}

.rating-stars i {
    color: #ffc107;
    font-size: 16px;
}

.rating-content {
    margin: 20px 0;
}

.rating-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    font-style: italic;
    margin: 0;
    position: relative;
}

.rating-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.rating-date {
    color: #999;
    font-size: 14px;
    font-weight: 500;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #28a745;
    font-size: 12px;
    font-weight: 600;
}

.verified-badge i {
    font-size: 14px;
}

/* Carousel Styles */
.rating-slider.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.rating-slider.owl-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid #ff3394;
    color: #ff3394;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.rating-slider.owl-carousel .owl-nav button:hover {
    background: #ff3394;
    color: white;
    transform: scale(1.1);
}

.rating-slider.owl-carousel .owl-nav .owl-prev {
    margin-left: -25px;
}

.rating-slider.owl-carousel .owl-nav .owl-next {
    margin-right: -25px;
}

.rating-slider.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.rating-slider.owl-carousel .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.rating-slider.owl-carousel .owl-dots .owl-dot.active {
    background: #ff3394;
    transform: scale(1.2);
}

.rating-slider.owl-carousel .owl-dots .owl-dot span {
    display: none;
}

/* Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .modern-hero-slide {
        min-height: 32vh;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .hero-stats {
        gap: 25px;
        margin-bottom: 25px;
    }

    .stat-item h4 {
        font-size: 1.4rem;
    }

    .hero-btn {
        padding: 12px 22px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .categoryImage {
        height: 150px;
        width: 150px;
    }
    
    .product-image-container {
        height: 180px;
    }
    
    .balloon-slider .owl-dot,
    .product-slider .owl-dot,
    .feedback-slider .owl-dot,
    .weekly-slider .owl-dot {
        margin-top: 20px;
    }
    
    .modern-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
    }
    
    .modern-products-grid.search {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-content {
        padding: 15px;
    }

    .product-location {
        font-size: 12px;
    }

    .product-title {
        font-size: 13px;
    }

    .rating {
        font-size: 10px;
    }

    .current-price {
        font-size: 15px;
    }

    .old-price {
        font-size: 14px;
    }

    .book-now-btn {
        font-size: 12px;
        padding: 6px 12px;
    }

    .product-price-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .book-now-btn {
        width: 100%;
        justify-content: center;
    }

    .modern-hero-slide {
        min-height: 35vh;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .hero-stats {
        gap: 15px;
        justify-content: center;
        margin-bottom: 20px;
    }

    .stat-item h4 {
        font-size: 1.2rem;
    }

    .stat-item span {
        font-size: 12px;
    }

    .hero-actions {
        justify-content: center;
        gap: 15px;
    }

    .hero-btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 12px;
        margin-bottom: 15px;
    }

    .floating-shape {
        display: none;
    }

    .modern-rating-card {
        margin: 10px 5px;
        padding: 20px;
    }

    .rating-header {
        flex-direction: column;
        text-align: center;
        margin-bottom: 15px;
    }

    .customer-avatar {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .rating-footer {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .rating-slider.owl-carousel .owl-nav {
        display: none;
    }
}

@media (max-width: 576px) {
    .categoryImage {
        height: 120px;
        width: 120px;
    }
    
    .product-image-container {
        height: 150px;
    }
    
    .balloon-slider .owl-dot,
    .product-slider .owl-dot,
    .feedback-slider .owl-dot,
    .weekly-slider .owl-dot {
        margin-top: 15px;
    }
    
    .modern-hero-slide {
        min-height: 40vh;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .hero-stats {
        flex-direction: row;
        gap: 10px;
        margin-bottom: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-item {
        flex: 1;
        min-width: 80px;
    }

    .stat-item h4 {
        font-size: 1rem;
    }

    .stat-item span {
        font-size: 10px;
    }

    .hero-actions {
        gap: 10px;
    }

    .hero-btn {
        justify-content: center;
        padding: 10px 16px;
        font-size: 11px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 5px 10px;
    }
}