/* Theme Color Guide
Primary Blue: #0054A6
Accent: #00AEEF
Dark Blue: #091a33
Background Light: #F7F9FC
Text Dark: #0D1A2E
Font: Poppins / Inter
*/

:root {
    --primary-blue: #0054A6;
    --accent-blue: #00AEEF;
    --dark-blue: #091a33;
    --bg-light: #F7F9FC;
    --text-dark: #0D1A2E;
    --white: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

/* Premium Header & Navbar */
.header-sticky {
    background: var(--primary-blue);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 8px 0;
    transition: all 0.3s ease;
}

.navbar {
    padding: 0 !important;
}

.navbar-brand img {
    height: 42px;
    transition: transform 0.3s ease;
}

.nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95) !important;
    padding: 10px 18px !important;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link i {
    font-size: 1.1rem;
    color: var(--white) !important;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.15);
}

/* Marquee Announcement Bar */
.marquee-container {
    background: linear-gradient(90deg, #1a5ab3, #00aeee);
    color: var(--white);
    padding: 6px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.8px;
}

.marquee-content {
    display: inline-block;
    animation: marquee 25s linear infinite;
}

.marquee-item {
    display: inline-block;
    padding: 0 30px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Top Bar */
.top-bar {
    background: var(--dark-blue);
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-social-icon {
    color: #fff;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.top-bar-social-icon:hover {
    color: var(--accent-blue);
}

/* Visible Modern Search Bar */
.search-bar-modern-visible {
    flex: 1;
    max-width: 500px;
    margin: 0 15px;
}

.search-input-group {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    padding: 2px 2px 2px 18px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.search-input-group:focus-within {
    border-color: var(--accent-blue);
    box-shadow: 0 8px 20px rgba(0, 174, 239, 0.12);
}

.search-prefix-icon {
    color: #94a3b8;
    font-size: 0.9rem;
}

.form-control-visible {
    border: none;
    background: transparent;
    width: 100%;
    outline: none;
    font-size: 0.88rem;
    padding: 8px 12px;
    color: var(--dark-blue);
}

.btn-search-visible {
    background: var(--primary-blue);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 8px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-search-visible:hover {
    background: var(--accent-blue);
}

/* Header Actions */
.header-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.nav-icon-btn-modern {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-decoration: none !important;
    position: relative;
}

.nav-icon-btn-modern:hover {
    background: #ffffff;
    color: var(--primary-blue);
}

.cart-badge-new {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4d4f;
    color: #fff;
    font-size: 0.65rem;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    border: 2px solid var(--primary-blue);
}

/* Animated Login Icon */
.login-animated-icon {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1)) !important;
    animation: loginPulse 2s infinite;
}

@keyframes loginPulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.login-animated-icon i {
    animation: loginIconMove 3s infinite ease-in-out;
}

@keyframes loginIconMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(3px); }
}

.login-animated-icon:hover {
    background: #ffffff !important;
    color: var(--primary-blue) !important;
    transform: translateY(-3px) scale(1.1);
}

.no-caret::after {
    display: none !important;
}

.login-btn-container {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 15px;
}

.user-avatar-mini {
    font-size: 1.2rem;
}

/* Hero Slider Customization */
#heroSlider {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

#heroSlider .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#heroSlider .carousel-control-prev,
#heroSlider .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.4s ease;
    margin: 0 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

#heroSlider:hover .carousel-control-prev,
#heroSlider:hover .carousel-control-next {
    opacity: 1;
}

#heroSlider .carousel-control-prev:hover,
#heroSlider .carousel-control-next:hover {
    background: var(--accent-blue);
    transform: translateY(-50%) scale(1.1);
}

#heroSlider .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

#heroSlider .carousel-indicators .active {
    background-color: var(--white);
    transform: scale(1.3);
}

@media (max-width: 767px) {
    #heroSlider .carousel-item img {
        height: 100%;
        width: 100%;
    }
}

/* Featured Products Section - Compact Mirror UI V5 */
.featured-products-vibe {
    background: #ffffff;
    position: relative;
    padding: 10px 0 10px 0 !important; /* Reduced padding */
    overflow: hidden;
}

/* Water Bubbles Animation */
.water-bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.water-bubbles span {
    position: absolute;
    bottom: -50px;
    background: rgba(0, 174, 239, 0.08);
    border-radius: 50%;
    animation: rise 15s infinite ease-in;
}

@keyframes rise {
    0% { transform: translateY(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(-800px); opacity: 0; }
}

.product-card-modern-v2 {
    background: #ffffff;
    border-radius: 35px;
    padding: 15px; /* Reduced card padding */
    border: 1.5px solid rgba(0, 174, 239, 0.1);
    box-shadow: 0 10px 30px rgba(0, 84, 166, 0.04);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.product-card-modern-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 174, 239, 0.15);
    border-color: var(--primary-blue);
}

/* Sheesha (Mirror) Shine Effect */
.product-card-modern-v2::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-25deg);
    transition: 0.7s;
    z-index: 10;
    pointer-events: none;
}

.product-card-modern-v2:hover::after {
    left: 150%;
}

.img-container-v2 {
    background: linear-gradient(135deg, #f0faff 0%, #ffffff 100%);
    border-radius: 25px;
    padding: 20px;
    position: relative;
    margin-bottom: 15px;
    min-height: 240px; /* Reduced image box height */
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-container-v2 img {
    width: 100%;
    max-height: 180px; /* Badi image */
    object-fit: contain;
    transition: 0.5s ease;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.05));
}

.product-card-modern-v2:hover img {
    transform: scale(1.1) rotate(2deg);
}

/* Modern Tag System */
.modern-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    z-index: 15;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    letter-spacing: 1px;
}

.discount-tag {
    background: linear-gradient(45deg, #ff4757, #ff6b81);
    color: #fff;
}

.premium-tag {
    background: linear-gradient(45deg, #00AEEF, #0054A6);
    color: #fff;
}

/* Actions Panel */
.actions-v2 {
    position: absolute;
    top: 15px;
    right: -60px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 20;
}

.product-card-modern-v2:hover .actions-v2 {
    right: 15px;
}

.btn-v2 {
    width: 42px;
    height: 42px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
    border: 1px solid rgba(0, 174, 239, 0.1);
}

.btn-v2:hover {
    background: var(--primary-blue);
    color: #fff;
    transform: scale(1.1) rotate(360deg);
}

.wish-v2:hover { background: #ff4757; border-color: #ff4757; }
.cart-v2:hover { background: #00AEEF; border-color: #00AEEF; }
.share-v2:hover { background: #28c76f; border-color: #28c76f; }

/* Details & Pricing */
.details-v2 {
    text-align: center;
    padding: 5px;
}

.title-v2 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 10px;
    min-height: 2.8rem;
    line-height: 1.3;
}

.price-v2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.now-v2 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-blue);
}

.old-v2 {
    font-size: 0.9rem;
    color: #cbd5e1;
    text-decoration: line-through;
    font-weight: 600;
}

/* Buy Button Animation */
.btn-buy-v2 {
    background: linear-gradient(135deg, #00AEEF 0%, #0054A6 100%);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 18px;
    font-weight: 800;
    text-transform: uppercase;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.4s;
    box-shadow: 0 10px 20px rgba(0, 174, 239, 0.2);
}

.btn-buy-v2:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 174, 239, 0.4);
    color: #fff;
}

.btn-buy-v2 i {
    animation: bounceBolt 1.5s infinite;
}

@keyframes bounceBolt {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3) rotate(15deg); }
}

/* Water Themed Toast Notifications */
.water-toast-popup {
    border-radius: 20px !important;
    border: 1px solid rgba(0, 174, 239, 0.2) !important;
    box-shadow: 0 10px 30px rgba(0, 84, 166, 0.1) !important;
    font-family: 'Poppins', sans-serif !important;
    padding: 15px 25px !important;
}

.water-toast-progress {
    background: linear-gradient(90deg, #00AEEF, #0054A6) !important;
    height: 4px !important;
}

/* Explore More Link */
.btn-explore-modern {
    background: transparent;
    border: 1.5px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-explore-modern:hover {
    background: var(--primary-blue);
    color: #fff;
    box-shadow: 0 10px 25px rgba(0, 174, 239, 0.2);
}

/* Responsive adjustments for Premium Product Cards */
@media (max-width: 991px) {
    .product-card-modern-v2 {
        border-radius: 30px;
        padding: 12px;
    }
    .img-container-v2 {
        min-height: 200px;
        padding: 15px;
    }
    .now-v2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 575px) {
    .featured-products-vibe {
        padding: 60px 0 !important;
    }
    .product-card-premium {
        border-radius: 25px;
        padding: 12px;
    }
    .product-img-box {
        min-height: 160px;
        border-radius: 20px;
    }
    .product-main-title {
        font-size: 0.95rem;
    }
    .btn-add-cart-premium {
        padding: 10px 5px;
        font-size: 0.75rem;
    }
    .btn-circle-view {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
}

/* Explore Section Button Modern */
.btn-explore-modern {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 15px 45px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-explore-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 174, 239, 0.1), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn-explore-modern:hover::before {
    left: 100%;
}

.btn-explore-modern:hover {
    background: var(--primary-blue);
    color: #fff;
    box-shadow: 0 15px 35px rgba(0, 174, 239, 0.3);
    transform: scale(1.05);
}

.btn-primary-gradient {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: #fff;
    border: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary-gradient:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 84, 166, 0.3);
    color: #fff;
}

/* Shine Effect Refined */
.product-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.6), transparent);
    transform: skewX(-25deg);
    z-index: 2;
    transition: none;
}

.product-card-modern:hover::before {
    left: 200%;
    transition: left 0.8s ease-in-out;
}

.product-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 84, 166, 0.08);
    border-color: var(--accent-blue);
}

.product-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #f8fafc;
    aspect-ratio: 1/1;
    margin-bottom: 8px; /* Reduced margin */
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

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

/* Compact Actions Overlay */
.product-actions-overlay {
    position: absolute;
    bottom: -45px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(to top, rgba(255,255,255,0.95), transparent);
    z-index: 3;
}

.product-card-modern:hover .product-actions-overlay {
    bottom: 0;
}

.action-btn {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #eee;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.action-btn:hover {
    background: var(--primary-blue);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 84, 166, 0.2);
}

.action-btn.buy-now-btn {
    background: #fff;
    color: #f39c12; /* Golden for contrast on cards */
}

.action-btn.buy-now-btn:hover {
    background: linear-gradient(135deg, #f39c12, #f1c40f);
    color: #fff;
    border-color: #f39c12;
}

.product-info {
    padding: 5px 2px;
}

.product-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin: 0;
    line-height: 1.4;
    height: 2.5rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.new-price {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.old-price {
    font-size: 0.75rem;
    color: #94a3b8;
    text-decoration: line-through;
}

.view-link {
    font-size: 0.75rem;
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--accent-blue);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
    z-index: 4;
    text-transform: uppercase;
}

/* Testimonials Section - Premium Water Flow Refined */
.testimonials-section {
    background: linear-gradient(180deg, #ffffff 0%, #e1f5fe 100%);
   
    position: relative;
    overflow: hidden;
}

/* Floating Water Bubbles */
.testimonials-section::before,
.testimonials-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 174, 239, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.testimonials-section::before { top: -100px; left: -100px; }
.testimonials-section::after { bottom: -100px; right: -100px; }

.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 35px;
    padding: 45px 35px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 50px rgba(0, 84, 166, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    z-index: 1;
}

.testimonial-card:hover {
    transform: translateY(-15px);
    background: #ffffff;
    box-shadow: 0 35px 70px rgba(0, 84, 166, 0.12);
    border-color: var(--accent-blue);
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #28c76f 0%, #1de9b6 100%);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(40, 199, 111, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quote-icon-top {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 4rem;
    color: rgba(0, 174, 239, 0.05);
    transition: all 0.5s ease;
}

.testimonial-card:hover .quote-icon-top {
    color: rgba(0, 174, 239, 0.12);
    transform: rotate(-15deg) translateY(-5px);
}

.star-rating {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #334155;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 500;
    font-style: italic;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 84, 166, 0.08);
}

.customer-avatar-box {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 2.5rem;
    border: 3px solid #fff;
    box-shadow: 0 8px 20px rgba(0, 174, 239, 0.15);
    transition: all 0.4s ease;
}

.testimonial-card:hover .customer-avatar-box {
    transform: scale(1.1) rotate(10deg);
    border-color: var(--accent-blue);
}

.customer-details h6 {
    margin: 0;
    font-weight: 800;
    color: var(--dark-blue);
    font-size: 1.1rem;
}

.customer-details p {
    margin: 0;
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
}

/* Improved Water Drop Controls */
#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
    width: 65px;
    height: 65px;
    background: #ffffff;
    opacity: 1;
    top: 50%;
    box-shadow: 0 15px 35px rgba(0, 174, 239, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

#testimonialCarousel .carousel-control-prev { 
    left: -35px; 
    border-radius: 50% 50% 50% 5px; 
    transform: translateY(-50%) rotate(-45deg);
}

#testimonialCarousel .carousel-control-next { 
    right: -35px; 
    border-radius: 50% 50% 5px 50%; 
    transform: translateY(-50%) rotate(-45deg);
}

#testimonialCarousel .carousel-control-prev:hover,
#testimonialCarousel .carousel-control-next:hover {
    background: var(--primary-blue);
    transform: translateY(-50%) rotate(-45deg) scale(1.1);
}

#testimonialCarousel .carousel-control-prev i,
#testimonialCarousel .carousel-control-next i {
    transform: rotate(45deg);
    color: var(--primary-blue);
    font-size: 1.4rem;
}

#testimonialCarousel .carousel-control-prev:hover i,
#testimonialCarousel .carousel-control-next:hover i {
    color: #ffffff;
}

#testimonialCarousel .carousel-indicators {
    bottom: -70px;
}

#testimonialCarousel .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--accent-blue);
    opacity: 0.3;
    margin: 0 6px;
}

#testimonialCarousel .carousel-indicators .active {
    width: 30px;
    border-radius: 10px;
    opacity: 1;
    background: var(--primary-blue);
}

#testimonialCarousel .carousel-control-prev:hover,
#testimonialCarousel .carousel-control-next:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: translateY(-50%) rotate(-45deg) scale(1.15);
    box-shadow: 0 15px 30px rgba(0, 84, 166, 0.3);
}

/* Counter-rotate icons to keep them straight */
#testimonialCarousel .carousel-control-prev i,
#testimonialCarousel .carousel-control-next i {
    transform: rotate(45deg);
    color: var(--primary-blue);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

#testimonialCarousel .carousel-control-prev:hover i,
#testimonialCarousel .carousel-control-next:hover i {
    color: #ffffff;
}

#testimonialCarousel .carousel-indicators {
    bottom: -50px;
}

#testimonialCarousel .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--accent-blue);
    opacity: 0.2;
    transition: all 0.3s ease;
}

#testimonialCarousel .carousel-indicators .active {
    width: 35px;
    border-radius: 10px;
    opacity: 1;
}

/* Detailed Categories Section */
/* Detailed Product Categories - Vibrant & Stylish */
.detailed-categories {
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
    padding: 10px 0;
    position: relative;
    overflow: hidden;
}

.detailed-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 2px 2px, rgba(0, 174, 239, 0.05) 1px, transparent 0);
    background-size: 30px 30px;
}

.category-detailed-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.category-detailed-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, var(--cat-color), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.category-detailed-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--cat-color);
}

.category-detailed-card:hover::after {
    opacity: 0.05;
}

.cat-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
    margin: 12px;
    border-radius: 18px;
    background: #f1f5f9;
}

.cat-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-detailed-card:hover .cat-image-wrapper img {
    transform: scale(1.15) rotate(2deg);
}

.cat-icon-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 2;
    transition: all 0.4s ease;
}

.category-detailed-card:hover .cat-icon-overlay {
    transform: rotate(360deg) scale(1.1);
}

.cat-body {
    padding: 20px 25px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.cat-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.category-detailed-card:hover .cat-name {
    color: var(--cat-color);
}

.cat-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cat-features {
    margin-bottom: 25px;
}

.cat-features li {
    font-size: 0.85rem;
    color: #475569;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 500;
}

.cat-features li i {
    font-size: 1rem;
    margin-top: 3px;
}

.btn-explore {
    padding: 14px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--cat-color) !important;
    color: var(--cat-color) !important;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.category-detailed-card:hover .btn-explore {
    background: var(--cat-color) !important;
    color: #fff !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.divider-water {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-blue), var(--accent-blue));
    border-radius: 10px;
}

/* Modern Footer Section Refined */
.footer-wave {
    position: relative;
    width: 100%;
    height: 40px;
    line-height: 0;
    margin-top: 30px;
    background: transparent;
    overflow: hidden;
}

.footer-wave svg {
    position: absolute;
    width: 200%;
    height: 100px;
    animation: wave-animation 15s linear infinite;
}

@keyframes wave-animation {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.footer-wave .shape-fill {
    fill: #0b59cf;
}

.footer-modern {
    background: #091a33;
    color: #ffffff;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 15% 50%, rgba(0, 174, 239, 0.05) 0%, transparent 25%),
                radial-gradient(circle at 85% 30%, rgba(0, 84, 166, 0.05) 0%, transparent 25%);
    pointer-events: none;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    letter-spacing: 1px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--accent-blue), transparent);
    border-radius: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-links a i {
    font-size: 0.85rem;
    color: var(--accent-blue);
    opacity: 1;
    transform: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(8px);
}

.footer-links a:hover i {
    color: var(--white);
    transform: scale(1.2);
}

.footer-contact-wrapper {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.footer-contact-wrapper:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: rgba(0, 174, 239, 0.1);
    color: var(--accent-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer-contact-item:hover .contact-icon {
    background: var(--accent-blue);
    color: #fff;
    transform: rotateY(180deg);
}

.social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.1rem;
}

.social-link:hover {
    background: var(--accent-blue);
    color: #fff;
    transform: translateY(-5px) scale(1.1) rotate(8deg);
    box-shadow: 0 10px 20px rgba(0, 174, 239, 0.3);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.animate-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Categories Top Strip - Premium Water Vibe */
.categories-strip {
    background: #f0f8ff; /* Light water blue */
    padding: 15px 0 !important;
    border-bottom: 2px solid rgba(0, 174, 239, 0.1);
    position: relative;
    overflow: hidden;
}

.categories-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
    animation: wave-flow 3s linear infinite;
}

@keyframes wave-flow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.category-water-card {
    display: block;
    position: relative;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 50px;
    padding: 10px 20px;
    text-decoration: none !important;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border-left: 3px solid rgba(0, 78, 247, 0.9);
     border-right: 3px  solid rgba(0, 78, 247, 0.9);
     border-top: 1px  solid rgba(0, 78, 247, 0.9);
     border-bottom: 1px  solid rgba(0, 78, 247, 0.9);
}

.category-water-card .card-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
}

.category-water-card .cat-icon-mini {
    width: 35px;
    height: 35px;
    min-width: 35px;
    background: #f0f9ff;
    color: var(--cat-color, var(--accent-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.4s ease;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.05);
}

.category-water-card h6 {
    color: var(--dark-blue);
    font-weight: 600;
    margin: 0;
    font-size: 0.88rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.water-ripple {
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 150%;
    background: var(--cat-color, var(--accent-blue));
    opacity: 0.08;
    transition: width 0.5s ease;
    z-index: 1;
    transform: translateY(-50%) rotate(5deg);
}

.category-water-card:hover {
    transform: translateX(8px) translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 174, 239, 0.12);
    border-color: var(--cat-color, var(--accent-blue));
}

.category-water-card:hover .water-ripple {
    width: 120%;
}

.category-water-card:hover .cat-icon-mini {
    background: var(--cat-color, var(--accent-blue));
    color: #fff;
    transform: rotate(360deg);
}

.category-water-card:hover h6 {
    color: var(--primary-blue);
}

@media (max-width: 991px) {
    .categories-strip .col-6 {
        margin-bottom: 5px;
    }
    .category-water-card {
        padding: 8px 15px;
    }
    .category-water-card h6 {
        font-size: 0.8rem;
    }
}

/* Ultra-Thin & Colorful Features Strip Refined */
.features-strip {
    background: linear-gradient(180deg, #005fbe 0%, #ffffff 100%);
    padding: 40px 0 !important;
    position: relative;
}

.features-box-container {
    background: #ffffff;
    border: 1px solid rgba(0, 84, 166, 0.08);
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0, 84, 166, 0.05);
    transition: all 0.3s ease;
}

.features-box-container:hover {
    box-shadow: 0 15px 40px rgba(0, 84, 166, 0.08);
    transform: translateY(-5px);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 30px;
    border-right: 4px solid rgba(16, 123, 230, 0.8);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.features-strip .col-lg-3:last-child .feature-item {
    border-right: none;
}

.feat-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: #ffffff;
    color: var(--feat-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-item:hover .feat-icon {
    background: var(--feat-color);
    color: #ffffff;
    transform: rotateY(180deg) scale(1.1);
}

.feat-content h6 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark-blue);
    letter-spacing: 0.3px;
    margin-bottom: 2px;
}

.feat-content p {
    margin: 0;
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 500;
}

@media (max-width: 991px) {
    .feature-item {
        padding: 15px;
        border-right: none;
        border-bottom: 1px solid rgba(0, 84, 166, 0.05);
    }
    
    .features-strip .col-6:nth-child(even) .feature-item {
        border-left: 1px solid rgba(0, 84, 166, 0.05);
    }
    
    .features-strip .col-6:nth-child(3) .feature-item,
    .features-strip .col-6:nth-child(4) .feature-item {
        border-bottom: none;
    }

    .feat-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1.1rem;
    }
}

/* Auth Pages */
/* Auth Pages Styles - Modern & Water Vibe */
.auth-page-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: #f0f9ff;
    padding: 60px 0;
    overflow: hidden;
}

.auth-bg-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 174, 239, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 84, 166, 0.05) 0%, transparent 40%);
    z-index: 0;
}

/* Floating Bubbles for Auth Page */
.auth-page-wrapper::before,
.auth-page-wrapper::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 174, 239, 0.1), rgba(0, 84, 166, 0.1));
    filter: blur(20px);
    z-index: 0;
    animation: auth-float 20s infinite alternate ease-in-out;
}

.auth-page-wrapper::before {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.auth-page-wrapper::after {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
}

@keyframes auth-float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-30px, 40px) scale(1.1); }
}

.auth-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 84, 166, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}

.auth-logo-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(0, 174, 239, 0.3);
    animation: logo-pulse 2s infinite;
}

@keyframes logo-pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 174, 239, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(0, 174, 239, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 174, 239, 0); }
}

.form-group-custom {
    position: relative;
}

.form-label-custom {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--dark-blue);
    margin-bottom: 8px;
    display: block;
}

.input-group-custom {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 18px;
    color: var(--primary-blue);
    font-size: 1rem;
    z-index: 5;
}

.form-control-custom {
    width: 100%;
    padding: 14px 20px 14px 50px;
    border-radius: 15px;
    border: 1.5px solid #e2e8f0;
    background: #f8fafc;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    color: #1e293b;
}

.form-control-custom:focus {
    border-color: var(--accent-blue);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.1);
    outline: none;
}

.btn-toggle-password {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    color: #94a3b8;
    padding: 5px;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 5;
}

.btn-toggle-password:hover {
    color: var(--primary-blue);
}

.custom-checkbox .form-check-input {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    border: 2px solid #cbd5e1;
    cursor: pointer;
}

.custom-checkbox .form-check-input:checked {
    background-color: var(--accent-blue);
    border-color: var(--accent-blue);
}

.btn-auth-submit {
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-blue));
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(0, 84, 166, 0.2);
}

.btn-auth-submit:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 84, 166, 0.3);
}

.auth-divider {
    text-align: center;
    position: relative;
    color: #94a3b8;
    font-size: 0.8rem;
    font-weight: 700;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 42%;
    height: 1px;
    background: #e2e8f0;
}

.auth-divider::before { left: 0; }
.auth-divider::after { right: 0; }

/* Mega Menu & Product Mini Cards */
.mega-menu {
    position: static !important;
}

.mega-menu .dropdown-menu {
    width: 100%;
    left: 0;
    right: 0;
    margin-top: 0;
    border-radius: 0 0 25px 25px !important;
    overflow: hidden;
    background: #ffffff;
}

.mega-menu-content {
    max-width: 1200px;
    margin: 0 auto;
}

.nav-product-mini-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    border-radius: 15px;
    background: #f8fafc;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    height: 100%;
}

.nav-product-mini-card:hover {
    background: #ffffff;
    border-color: var(--accent-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 174, 239, 0.1);
}

.nav-product-img {
    width: 65px;
    height: 65px;
    min-width: 65px;
    background: #fff;
    border-radius: 10px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.nav-product-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.nav-product-mini-card:hover .nav-product-img img {
    transform: scale(1.1);
}

.nav-product-info h6 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 0;
    transition: color 0.3s ease;
}

.nav-product-mini-card:hover .nav-product-info h6 {
    color: var(--primary-blue);
}

.nav-product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}

.nav-product-price .text-primary {
    color: var(--primary-blue) !important;
}

.nav-product-price small {
    font-size: 0.75rem;
    opacity: 0.6;
}

@media (max-width: 991px) {
    .mega-menu .dropdown-menu {
        position: relative !important;
        width: 100%;
        border-radius: 15px !important;
        box-shadow: none !important;
        background: rgba(255, 255, 255, 0.05) !important;
        margin-top: 10px !important;
    }
    
    .nav-product-mini-card {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .nav-product-info h6 {
        color: #fff;
    }
}

/* Profile Page Enhancements - Ultra Modern */
.profile-page-wrapper {
    background: #f8fafc;
    min-height: 80vh;
}

.profile-card-modern {
    background: #ffffff;
    border-radius: 25px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.profile-sidebar-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    padding: 40px 20px;
    text-align: center;
    position: relative;
}

.profile-sidebar-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 30px;
    background: #fff;
    clip-path: ellipse(50% 100% at 50% 100%);
}

.profile-img-container {
    width: 110px;
    height: 110px;
    margin: 0 auto 15px;
    position: relative;
    z-index: 2;
}

.profile-img-container img, 
.profile-img-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    background: #fff;
}

.profile-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 3rem;
}

.profile-nav-list {
    padding: 20px 10px;
}

.profile-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-radius: 15px;
    text-decoration: none;
    color: #64748b;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 5px;
}

.profile-nav-item i {
    font-size: 1.1rem;
    width: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.profile-nav-item:hover {
    background: #f1f5f9;
    color: var(--primary-blue);
    padding-left: 25px;
}

.profile-nav-item.active {
    background: rgba(0, 174, 239, 0.1);
    color: var(--primary-blue);
}

.profile-nav-item.active i {
    color: var(--primary-blue);
}

.profile-nav-item.text-danger:hover {
    background: #fff1f2;
    color: #ef4444;
}

.profile-section-title {
    position: relative;
    padding-left: 15px;
    margin-bottom: 25px;
    font-weight: 800;
    color: var(--dark-blue);
}

.profile-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: var(--accent-blue);
    border-radius: 10px;
}

/* Form Styles Refined for Profile */
.profile-form .form-label-custom {
    color: #64748b;
    font-size: 0.8rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profile-form .form-control-custom {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    padding: 12px 20px;
}

.profile-form .form-control-custom:focus {
    background: #fff;
    border-color: var(--accent-blue);
}

.profile-upload-box {
    background: #f8fafc;
    border: 2px dashed #e2e8f0;
    border-radius: 20px;
    padding: 20px;
    transition: all 0.3s ease;
}

.profile-upload-box:hover {
    border-color: var(--accent-blue);
    background: #f0f9ff;
}

/* Product View Modern Styles */
.product-view-modern {
    background-color: #f8fbff;
}

.main-view-img {
    max-height: 500px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.main-image-container:hover .main-view-img {
    transform: scale(1.2);
}

.gallery-zoom-hint {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.8);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--primary-color);
    backdrop-filter: blur(4px);
    pointer-events: none;
    opacity: 0.8;
}

.thumb-wrapper {
    cursor: pointer;
    border: 2px solid transparent;
    padding: 3px;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.thumb-wrapper:hover {
    border-color: rgba(0, 84, 166, 0.3);
}

.thumb-wrapper.active {
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 84, 166, 0.1);
}

.product-title-modern {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.old-price {
    font-size: 1.2rem;
}

.discount-pill {
    font-size: 0.85rem;
    padding: 6px 12px;
}

.modern-qty-input {
    height: 48px;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.qty-btn:hover {
    background: #f0f0f0;
}

.trust-item i {
    font-size: 1.5rem;
    display: block;
}

.share-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-icon-btn:hover {
    transform: translateY(-3px);
    color: #fff;
}

.share-icon-btn.whatsapp { background: #25D366; }
.share-icon-btn.facebook { background: #1877F2; }
.share-icon-btn.twitter { background: #1DA1F2; }

.product-tabs-modern .nav-link {
    color: #666;
    margin-right: 10px;
}

.product-tabs-modern .nav-link.active {
    background: var(--primary-color) !important;
    color: #fff !important;
}

.similar-card-modern {
    transition: all 0.3s ease;
}

.similar-card-modern:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 84, 166, 0.1) !important;
}

.similar-img-wrapper img {
    transition: transform 0.5s ease;
}

.similar-card-modern:hover .similar-img-wrapper img {
    transform: scale(1.1);
}

.bg-primary-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

/* New Specification Modern Styles */
.spec-icon-box {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.spec-item-box {
    transition: all 0.3s ease;
    border: 1px solid transparent !important;
}

.spec-item-box:hover {
    background: #fff !important;
    border-color: rgba(0, 84, 166, 0.1) !important;
    box-shadow: 0 5px 15px rgba(0, 84, 166, 0.05);
    transform: translateY(-2px);
}

.spec-group-header h5 {
    letter-spacing: -0.5px;
    color: #2c3e50;
}

/* Product View Ultra Modern Refinements */
.offer-card {
    transition: all 0.3s ease;
    border: 1px dashed var(--border-color) !important;
}

.offer-card:hover {
    border-style: solid !important;
    border-color: var(--primary-color) !important;
    background: #fff !important;
    transform: translateX(5px);
}

.delivery-checker input:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.sticky-purchase-bar {
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.product-card-modern {
    transition: all 0.3s ease;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #eee !important;
}

.product-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 84, 166, 0.1) !important;
}

/* Checkout Page Modern Styles */
.checkout-progress {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.checkout-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background: #e2e8f0;
    transform: translateY(-50%);
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    background: #f8fafc;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #e2e8f0;
    color: #94a3b8;
    font-weight: 700;
    transition: all 0.3s ease;
}

.step.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 0 5px rgba(0, 84, 166, 0.1);
}

.step.completed {
    border-color: #2ed573;
    background: #2ed573;
    color: #fff;
}

.step-label {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 10px;
    white-space: nowrap;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #94a3b8;
}

.step.active .step-label { color: var(--primary-color); }
.step.completed .step-label { color: #2ed573; }

.checkout-card {
    border-radius: 20px;
    transition: all 0.3s ease;
}

.checkout-summary-item {
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.checkout-summary-item:last-child {
    border-bottom: none;
}

.checkout-item-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: #f8fafc;
    padding: 5px;
    border-radius: 10px;
}

.price-breakdown .label { color: #64748b; font-size: 0.9rem; }
.price-breakdown .value { font-weight: 600; color: #1e293b; }

.secure-badge {
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 12px;
    padding: 15px;
}

.checkout-footer-trust {
    opacity: 0.7;
    filter: grayscale(1);
    transition: all 0.3s ease;
}

/* Checkout Page - Water Vibe & Blue Theme Refinements */
.checkout-progress::before {
    background: linear-gradient(90deg, #e2e8f0 0%, var(--primary-color) 50%, #e2e8f0 100%);
    height: 4px;
}

.step {
    background: #fff;
    border-color: #e2e8f0;
    box-shadow: 0 4px 10px rgba(0, 84, 166, 0.05);
}

.step.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    animation: wave-pulse 2s infinite;
}

@keyframes wave-pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 84, 166, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(0, 84, 166, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 84, 166, 0); }
}

.checkout-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 84, 166, 0.1) !important;
    border-top: 4px solid var(--primary-color) !important;
}

.bg-light-blue-vibe {
    background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.bg-light-blue-vibe::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 86c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm66-3c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm-46-45c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm54 0c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM57 7c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm-8 48c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM25 30c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm60 5c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM21 46c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm52 2c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM4-4c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm0 100c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm100 0c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm0-100c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%230054a6' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    pointer-events: none;
}

.secure-badge {
    background: linear-gradient(135deg, #eef6ff 0%, #ffffff 100%);
    border: 1px solid rgba(0, 84, 166, 0.1);
    box-shadow: inset 0 0 20px rgba(0, 84, 166, 0.02);
}

.checkout-summary-item {
    background: #fff;
    margin-bottom: 10px;
    padding: 15px !important;
    border-radius: 15px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.checkout-summary-item:hover {
    border-color: var(--primary-color);
    transform: scale(1.02);
}

.price-breakdown {
    background: #f8fbff;
    padding: 20px;
    border-radius: 15px;
    border: 1px dashed rgba(0, 84, 166, 0.2);
}

/* Water Drop animation for icons */
.input-group-text i {
    color: var(--primary-color) !important;
    filter: drop-shadow(0 2px 4px rgba(0, 84, 166, 0.1));
}

/* Address Selector Styles */
.address-selector-card {
    cursor: pointer;
    background: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #f1f5f9 !important;
    height: 100%;
    position: relative;
}

.address-selector-card:hover {
    border-color: rgba(0, 84, 166, 0.2) !important;
    background: #f8fbff;
    transform: translateY(-3px);
}

.address-selector-card.selected {
    border-color: var(--primary-color) !important;
    background: #f0f7ff;
    box-shadow: 0 8px 20px rgba(0, 84, 166, 0.1);
}

.address-selector-card .select-icon {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.bg-soft-primary {
    background-color: rgba(0, 84, 166, 0.1);
}

/* Mini Quantity Buttons for Checkout */
.qty-btn-mini {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    border: 1px solid #e0e7ff;
    background: #f8faff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    box-shadow: 0 2px 4px rgba(0, 84, 166, 0.05);
}

.qty-btn-mini:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 8px rgba(0, 84, 166, 0.2);
    transform: translateY(-1px);
}

.qty-btn-mini:active {
    transform: scale(0.9) translateY(0);
}

.qty-val {
    min-width: 22px;
    text-align: center;
    font-size: 0.9rem;
    color: #1e293b;
}

.opacity-20 { opacity: 0.2; }
.buy-now-btn-premium {
    background: linear-gradient(135deg, #0054A6 0%, #00A3FF 100%);
    color: #fff !important;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px rgba(0, 84, 166, 0.2);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 1;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(0, 84, 166, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(0, 84, 166, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 84, 166, 0); }
}

.buy-now-btn-premium:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 84, 166, 0.4);
    background: linear-gradient(135deg, #00448a 0%, #008ee6 100%);
}

.buy-now-btn-premium:active {
    transform: translateY(0) scale(0.95);
}

/* Shine Animation */
.buy-now-btn-premium::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(25deg);
    animation: btnShine 2.5s infinite linear;
    z-index: -1;
}

@keyframes btnShine {
    0% { left: -100%; }
    20% { left: 150%; }
    100% { left: 150%; }
}

.buy-now-btn-premium i {
    animation: boltPulse 1.2s infinite;
}

@keyframes boltPulse {
    0% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.4) rotate(15deg); }
    50% { transform: scale(1) rotate(0deg); }
    75% { transform: scale(1.4) rotate(-15deg); }
    100% { transform: scale(1) rotate(0deg); }
}

/* Product View - Vertical Tabs & Refined Content */
.details-nav-sticky {
    position: sticky;
    top: 100px;
    z-index: 10;
    background: #f0f7ff; /* Very light blue background for the sidebar */
    padding: 1.5rem !important;
}

.product-vertical-tabs .nav-link {
    text-align: left;
    padding: 15px 20px;
    border-radius: 12px;
    color: #000000 !important; /* Pure black font for inactive */
    font-weight: 700;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    border: 1px solid #e1e8f0;
    background: #fff;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.product-vertical-tabs .nav-link i {
    font-size: 1.1rem;
    width: 35px;
    transition: all 0.3s ease;
}

/* Colorful Icons for Inactive State */
.product-vertical-tabs .nav-link:nth-child(1) i { color: #ff4757; } /* Red */
.product-vertical-tabs .nav-link:nth-child(2) i { color: #2ed573; } /* Green */
.product-vertical-tabs .nav-link:nth-child(3) i { color: #ffa502; } /* Orange */
.product-vertical-tabs .nav-link:nth-child(4) i { color: #3742fa; } /* Blue */

/* Hover Effect */
.product-vertical-tabs .nav-link:hover {
    background: #f8fbff;
    border-color: var(--primary-color);
    transform: translateX(5px);
}

/* ACTIVE STATE - Blue Theme */
.product-vertical-tabs .nav-link.active {
    background: #eef6ff !important; /* Light blue background */
    color: var(--primary-color) !important; /* Blue text */
    border-color: var(--primary-color) !important;
    border-left: 5px solid var(--primary-color) !important; /* Left blue accent */
    box-shadow: 0 5px 15px rgba(0, 84, 166, 0.1);
}

.product-vertical-tabs .nav-link.active i {
    color: var(--primary-color) !important; /* Icon becomes blue when active */
    transform: scale(1.2);
}

.description-text-modern {
    line-height: 1.8;
    color: #333 !important;
}

.tab-pane h4 {
    color: #1a1a1a !important;
}

.spec-item-v2 span.text-dark {
    color: #1a1a1a !important;
}

.spec-item-v2 span.text-muted {
    color: #666 !important;
}

.qna-card-v2 h6 {
    color: #1a1a1a !important;
}

.qna-card-v2 .answer-text {
    color: #444 !important;
}

.spec-cat-title {
    font-size: 1.1rem;
    font-weight: 800;
}

.spec-item-v2 {
    font-size: 0.9rem;
}

.border-end-md {
    border-right: 1px solid #dee2e6;
}

@media (max-width: 767.98px) {
    .border-end-md {
        border-right: none;
    }
}

.qna-card-v2 {
    transition: transform 0.3s ease;
}

.qna-card-v2:hover {
    transform: translateY(-5px);
}

.min-vh-50 {
    min-height: 50vh;
}

/* Similar Products Bottom Layout */
.similar-products-bottom {
    border-top: 1px solid #eee;
}

/* Enhanced Product View Styles */
.description-content {
    line-height: 1.8;
    color: #4a5568;
    font-size: 0.95rem;
}

.spec-group-modern {
    animation: fadeInSlideUp 0.5s ease forwards;
}

@keyframes fadeInSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.spec-item-box {
    background: #fff !important;
    border: 1px solid #edf2f7 !important;
    padding: 1rem 1.5rem !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.spec-item-box:hover {
    border-color: var(--primary-color) !important;
    background: var(--light-bg) !important;
    box-shadow: 0 10px 20px rgba(0, 84, 166, 0.05) !important;
}

.spec-icon-box {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.qna-item {
    transition: all 0.3s ease;
    border: 1px solid #edf2f7 !important;
}

.qna-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background: #fff !important;
}

.qna-item .question .badge {
    width: 24px;
    height: 24px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.product-tabs-modern {
    gap: 10px;
}

.product-tabs-modern .nav-link {
    background: #fff !important;
    border: 1px solid #edf2f7 !important;
    color: #718096 !important;
    transition: all 0.3s ease;
}

.product-tabs-modern .nav-link.active {
    background: var(--primary-color) !important;
    color: #fff !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 4px 12px rgba(0, 84, 166, 0.2);
}

.bg-soft-warning { background-color: rgba(255, 193, 7, 0.1); }
.bg-soft-primary { background-color: rgba(0, 84, 166, 0.1); }
.btn-soft-primary {
    background: rgba(0, 84, 166, 0.1);
    color: var(--primary-color);
    border: none;
}
.btn-soft-primary:hover {
    background: var(--primary-color);
    color: #fff;
}
.btn-soft-danger {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: none;
}
.btn-soft-danger:hover {
    background: #dc3545;
    color: #fff;
}

/* Category Listing Page Styles */
.bg-listing-page {
    background-color: #f4f7fa;
    min-height: 100vh;
}

.category-hero-banner {
    min-height: 260px;
    background: linear-gradient(135deg, #0054A6 0%, #0084ff 100%) !important;
    border-radius: 30px !important;
    margin-bottom: 40px !important;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.category-hero-banner h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff !important;
    margin-bottom: 15px;
}

.category-hero-banner p {
    color: rgba(255,255,255,0.9) !important;
}

.category-hero-banner .breadcrumb-item, 
.category-hero-banner .breadcrumb-item a {
    color: rgba(255,255,255,0.7) !important;
    text-decoration: none;
}

.category-hero-banner .breadcrumb-item.active {
    color: #fff !important;
}

/* Sidebar Refinement */
.category-list-sidebar {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cat-filter-link {
    display: flex;
    align-items: center;
    padding: 12px 18px;
    color: #334155 !important;
    text-decoration: none !important;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
    background: #fff;
    border: 1px solid #edf2f7;
}

.cat-filter-link:hover {
    background: #f1f5f9;
    color: var(--primary-color) !important;
}

.cat-filter-link.active {
    background: var(--primary-color) !important;
    color: #096c9e !important;
    border-color: var(--primary-color);
    box-shadow: 0 8px 15px rgba(0, 84, 166, 0.2);
}

.cat-filter-link .count {
    font-size: 0.75rem;
    background: rgba(0,0,0,0.05);
    padding: 2px 10px;
    border-radius: 50px;
    margin-left: auto;
    font-weight: 700;
}

.cat-filter-link.active .count {
    background: rgba(255,255,255,0.2);
    color: #096c9e;
}

/* Premium Product Cards */
.product-card-modern {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #edf2f7;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.product-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 84, 166, 0.12) !important;
}

.product-image-container {
    position: relative;
    padding-top: 100%;
    background: #f8fafc;
    overflow: hidden;
}

.product-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 25px;
    transition: transform 0.5s ease;
}

.product-card-modern:hover .product-img-main {
    transform: scale(1.08);
}

.product-title-modern a {
    color: #1a202c !important; 
    text-decoration: none !important;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.7rem;
}

.new-price-modern {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color) !important;
}

.old-price-modern {
    font-size: 0.85rem;
    color: #a0aec0 !important;
    text-decoration: line-through;
    margin-left: 6px;
}

.product-badge-premium {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ef4444;
    color: #fff !important;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 800;
    z-index: 10;
}

.btn-add-cart-minimal {
    width: 42px;
    height: 42px;
    background: #ebf4ff;
    border: none;
    border-radius: 10px;
    color: var(--primary-color) !important;
    transition: all 0.3s ease;
}

.btn-add-cart-minimal:hover {
    background: var(--primary-color);
    color: #fff !important;
}

.buy-now-overlay {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    padding: 12px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.product-card-modern:hover .buy-now-overlay {
    bottom: 0;
}

.empty-state-container {
    padding: 60px;
    background: #fff;
    border-radius: 30px;
    border: 1px solid #e2e8f0;
}

@keyframes fadeInSlide {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fadeInSlide {
    animation: fadeInSlide 0.8s ease-out forwards;
}

/* Contact Page Styles */
.contact-page-wrapper {
    background-color: #f4f7fa;
    min-height: 100vh;
}

.contact-hero {
    background: #fff;
}

.input-group-contact {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group-contact .icon {
    position: absolute;
    left: 18px;
    color: var(--primary-blue);
    font-size: 1rem;
    z-index: 5;
}

.form-control-contact {
    width: 100%;
    padding: 14px 20px 14px 50px;
    border-radius: 15px;
    border: 1.5px solid #e2e8f0;
    background: #f8fafc;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    color: #1e293b;
    outline: none;
}

.form-control-contact:focus {
    border-color: var(--accent-blue);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.1);
}

textarea.form-control-contact {
    padding-top: 15px;
    align-items: flex-start;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none !important;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-btn.facebook { background: #1877F2; }
.social-btn.instagram { background: #E4405F; }
.social-btn.whatsapp { background: #25D366; }

.social-btn:hover {
    transform: translateY(-3px) rotate(8deg);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    color: #fff;
}

.method-icon {
    min-width: 55px;
    display: flex;
    justify-content: center;
}

.bg-soft-primary {
    background-color: rgba(0, 84, 166, 0.08);
}

.animate-fadeInSlide {
    animation: fadeInSlide 0.8s ease-out forwards;
}

@keyframes fadeInSlide {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes liquidMove {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    100% { transform: translate(60px, 40px) scale(1.1) rotate(10deg); }
}

@keyframes shineBtn {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes boltBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.4) rotate(10deg); filter: brightness(1.3); }
}

/* Payment Status Pages - Success & Failed */
.payment-status-wrapper {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fbff;
    position: relative;
    overflow: hidden;
    padding: 40px 20px;
}

.status-card-modern {
    max-width: 600px;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 40px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 84, 166, 0.08);
    border: 1px solid rgba(0, 174, 239, 0.1);
    position: relative;
    z-index: 5;
    animation: auth-float 3s ease-in-out infinite;
}

/* Success Icon Animation */
.success-animation {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #28c76f 0%, #17a05d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 15px 35px rgba(40, 199, 111, 0.3);
    position: relative;
}

.success-animation i {
    font-size: 60px;
    color: #fff;
    animation: scaleCheck 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes scaleCheck {
    0% { transform: scale(0) rotate(-45deg); opacity: 0; }
    100% { transform: scale(1) rotate(0); opacity: 1; }
}

/* Error/Failed Icon Animation */
.failed-animation {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ea5455 0%, #d93939 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 15px 35px rgba(234, 84, 85, 0.3);
    position: relative;
}

.failed-animation i {
    font-size: 60px;
    color: #fff;
    animation: shakeError 0.6s ease-in-out forwards;
}

@keyframes shakeError {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-10px); }
    40%, 80% { transform: translateX(10px); }
}

.status-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #001f3f 0%, #0054A6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.status-msg {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.order-detail-box {
    background: #f0faff;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 35px;
    border: 1px dashed rgba(0, 174, 239, 0.3);
}

.order-id-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #00AEEF;
    font-weight: 700;
    margin-bottom: 5px;
}

.order-id-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #001f3f;
}

.status-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-status {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

/* Confetti Particles Success */
.confetti-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.confetti-particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #00AEEF;
    top: -20px;
    border-radius: 50%;
    animation: confettiFall 4s linear infinite;
}

@keyframes confettiFall {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

/* Sad Drips for Failed */
.sad-drips-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.sad-drip {
    position: absolute;
    width: 3px;
    height: 15px;
    background: rgba(234, 84, 85, 0.2);
    border-radius: 5px;
    top: -50px;
    animation: dripMove 3s infinite linear;
}

@keyframes dripMove {
    0% { transform: translateY(0); opacity: 0.8; height: 10px; }
    100% { transform: translateY(100vh); opacity: 0; height: 40px; }
}

/* Water Pattern BG */
.water-status-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    pointer-events: none;
    background-image: radial-gradient(#00AEEF 1.5px, transparent 1.5px);
    background-size: 30px 30px;
}


/* Product Gallery Improvements */
.thumbnails-scroll-container {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 2px;
    scrollbar-width: thin;
    scrollbar-color: #00AEEF #f0faff;
}

.thumbnails-scroll-container::-webkit-scrollbar {
    height: 5px;
}

.thumbnails-scroll-container::-webkit-scrollbar-thumb {
    background: #00AEEF;
    border-radius: 10px;
}

.thumb-wrapper {
    flex: 0 0 70px;
    height: 70px;
    border-radius: 12px;
    border: 2px solid #eee;
    padding: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
}

.thumb-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.thumb-wrapper.active {
    border-color: #00AEEF;
    box-shadow: 0 4px 10px rgba(0, 174, 239, 0.2);
    transform: scale(1.05);
}

.main-image-container:hover .main-view-img {
    transform: scale(1.2);
}

