/* Oak Fusion Perfume Brand Enhancements */

/* Social Media Icons for Perfume Brand */
.social-icon-perfume {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--deep-burgundy) 100%);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(139, 38, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.social-icon-perfume::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.social-icon-perfume:hover::before {
    left: 100%;
}

.social-icon-perfume:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 38, 53, 0.4);
    color: var(--cream);
}

/* Removed WhatsApp special styling - now uses consistent brand colors */

/* Enhanced Wishlist Icons - Moved to LEFT side */
.wishlist-toggle {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 25;
    background: rgba(255, 255, 255, 0.98);
    border: 2px solid var(--cream);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    box-shadow: 0 3px 12px rgba(139, 38, 53, 0.25);
    opacity: 1;
    visibility: visible;
}

.wishlist-toggle i {
    font-size: 16px;
    color: var(--burgundy);
    transition: all 0.3s ease;
}

.wishlist-toggle:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(139, 38, 53, 0.4);
    border-color: var(--burgundy);
}

.wishlist-toggle:hover i {
    color: var(--burgundy);
}

.wishlist-toggle.active,
.wishlist-toggle.in-wishlist {
    background: var(--burgundy);
    border-color: var(--burgundy);
    box-shadow: 0 6px 20px rgba(139, 38, 53, 0.5);
}

.wishlist-toggle.active i,
.wishlist-toggle.in-wishlist i {
    color: var(--cream);
}

/* Ensure wishlist button is always visible */
.product-card .wishlist-toggle {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 25 !important;
}

/* Enhanced Search Button Styling */
.navbar form button[type="submit"] {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--deep-burgundy) 100%) !important;
    border: 2px solid var(--gold) !important;
    color: var(--cream) !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    padding: 8px 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.navbar form button[type="submit"]:hover {
    background: linear-gradient(135deg, var(--deep-burgundy) 0%, var(--burgundy) 100%) !important;
    border-color: var(--cream) !important;
    color: var(--gold) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(139, 38, 53, 0.4) !important;
}

.navbar form button[type="submit"] i {
    font-size: 14px !important;
}

/* Product Details Page Styling Enhancements */

/* Stock Badge Styling */
.stock-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid;
    margin: 5px 0;
}

.stock-in-stock {
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.1) 0%, rgba(46, 125, 50, 0.1) 100%);
    color: #2E7D32;
    border-color: #4CAF50;
}

.stock-low-stock {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.1) 0%, rgba(255, 193, 7, 0.1) 100%);
    color: #E65100;
    border-color: #FF9800;
}

.stock-out-of-stock {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.1) 0%, rgba(211, 47, 47, 0.1) 100%);
    color: #C62828;
    border-color: #F44336;
}

/* Free Shipping Badge */
.free-shipping-badge {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--deep-burgundy) 100%);
    color: var(--cream);
    border: 2px solid var(--gold);
    padding: 12px 20px;
    border-radius: 15px;
    margin: 10px 0;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 4px 15px rgba(139, 38, 53, 0.3);
}

.free-shipping-badge i {
    color: var(--gold);
    margin-right: 8px;
}

/* Discount Badge */
.discount-badge {
    background: linear-gradient(135deg, var(--gold) 0%, #E6C068 100%);
    color: var(--burgundy);
    border: 2px solid var(--burgundy);
    padding: 12px 20px;
    border-radius: 15px;
    margin: 10px 0;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.discount-badge i {
    color: var(--burgundy);
    margin-right: 8px;
}

/* Product Card Modern Enhancements */
.product-card-modern {
    border-radius: 15px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    border: none !important;
    box-shadow: 0 2px 8px rgba(139, 38, 53, 0.08) !important;
}

.product-card-modern:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 25px rgba(139, 38, 53, 0.15) !important;
}

/* You Might Also Like - Badge Positioning - Top Right Corner */
.product-card-modern .position-absolute.top-0.end-0.bg-danger {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%) !important;
    border-radius: 0 0 0 15px !important;
    padding: 6px 10px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    font-size: 0.75rem !important;
    z-index: 10 !important;
    color: white !important;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3) !important;
}

.product-card-modern .position-absolute.bg-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
    border-radius: 0 0 0 15px !important;
    padding: 4px 8px !important;
    font-weight: 600 !important;
    font-size: 0.65rem !important;
    z-index: 9 !important;
    color: white !important;
    box-shadow: 0 2px 6px rgba(40, 167, 69, 0.3) !important;
}

/* View More Button Styling */
.btn-view-more {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--deep-burgundy) 100%) !important;
    border: 2px solid var(--cream) !important;
    color: var(--cream) !important;
    border-radius: 25px !important;
    padding: 8px 20px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-block !important;
}

.btn-view-more:hover {
    background: linear-gradient(135deg, var(--deep-burgundy) 0%, var(--burgundy) 100%) !important;
    border-color: var(--light-cream) !important;
    color: var(--light-cream) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(139, 38, 53, 0.4) !important;
    text-decoration: none !important;
}

.btn-view-more:hover {
    background: linear-gradient(135deg, var(--deep-burgundy) 0%, var(--burgundy) 100%) !important;
    border-color: var(--cream) !important;
    color: var(--gold) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(139, 38, 53, 0.4) !important;
    text-decoration: none !important;
}

.btn-view-more:hover,
.btn-view-more:focus,
.btn-view-more:active {
    color: var(--gold) !important;
    background: linear-gradient(135deg, var(--deep-burgundy) 0%, var(--burgundy) 100%) !important;
}

/* Store Logo Title Styling */
.store-logo-title {
    font-weight: 900 !important;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--deep-burgundy) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(139, 38, 53, 0.3);
    letter-spacing: 1px;
    position: relative;
}

.store-logo-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--warm-gold, #F4E4BC) 100%);
    border-radius: 2px;
}

/* Wishlist Page Image Fix */
.wishlist-card .product-image {
    height: 220px !important;
    width: 100% !important;
    overflow: hidden !important;
    position: relative !important;
    background: linear-gradient(135deg, var(--warm-beige, #F5F5DC) 0%, #FFFFFF 100%) !important;
    border-radius: 15px 15px 0 0 !important;
}

.wishlist-card .product-image img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    transition: transform 0.3s ease !important;
}

.wishlist-card:hover .product-image img {
    transform: scale(1.05) !important;
}

/* Fix wishlist placeholder */
.wishlist-placeholder-img {
    height: 220px !important;
    width: 100% !important;
    background: linear-gradient(135deg, var(--warm-beige, #F5F5DC) 0%, #FFFFFF 100%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 15px 15px 0 0 !important;
}

.wishlist-placeholder-img i {
    font-size: 3rem !important;
    color: var(--burgundy, #8B2635) !important;
    opacity: 0.3 !important;
}

.product-card:hover .wishlist-toggle {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 30 !important;
}

/* Perfume Brand Overlays for Categories */
.perfume-brand-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(139, 38, 53, 0.9);
    color: var(--cream);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    backdrop-filter: blur(10px);
    border: 2px solid var(--cream);
    transition: all 0.3s ease;
}

.category-card-modern:hover .perfume-brand-overlay {
    background: var(--burgundy);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(139, 38, 53, 0.4);
}

/* Enhanced Product Cards */
.product-card {
    position: relative;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--cream);
}

/* Contact Information Icons - Brand Colors */
.contact-info-icon {
    color: var(--burgundy) !important;
    font-size: 1.1rem;
    margin-right: 0.5rem;
}

.contact-info-icon:hover {
    color: var(--deep-burgundy) !important;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 38, 53, 0.15);
    border-color: var(--burgundy);
}

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

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

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

/* Enhanced Admin Panel for Perfume Brand */
.admin-perfume-header {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--deep-burgundy) 100%);
    color: white;
    padding: 20px;
    border-radius: 10px 10px 0 0;
    margin-bottom: 0;
}

.admin-perfume-sidebar {
    background: linear-gradient(180deg, var(--cream) 0%, var(--warm-cream) 100%);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(139, 38, 53, 0.1);
}

.admin-perfume-sidebar .list-group-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(139, 38, 53, 0.1);
    color: var(--burgundy);
    font-weight: 500;
    transition: all 0.3s ease;
}

.admin-perfume-sidebar .list-group-item:hover,
.admin-perfume-sidebar .list-group-item.active {
    background: var(--burgundy);
    color: white;
    padding-left: 25px;
}

.admin-perfume-sidebar .list-group-item i {
    width: 20px;
    text-align: center;
}

/* Enhanced Slider Styles */
.oak-fusion-hero .carousel-inner {
    height: 100%;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
}

.oak-fusion-hero .carousel-item {
    height: 100%;
    position: relative;
}

.oak-fusion-hero .slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: var(--burgundy);
}

.oak-fusion-hero .slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 1;
    transition: transform 0.6s ease-in-out;
}

.oak-fusion-hero .slide-image.loaded {
    opacity: 1;
}

.oak-fusion-hero .carousel-item.active .slide-image {
    transform: scale(1);
}

.oak-fusion-hero .carousel-item .slide-image {
    transform: scale(1.05);
}

.oak-fusion-hero .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 38, 53, 0.6) 0%, rgba(44, 24, 16, 0.7) 50%, rgba(107, 30, 41, 0.8) 100%);
    z-index: 2;
}

.oak-fusion-hero .oak-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 20;
    width: 90%;
    max-width: 800px;
}

.oak-fusion-hero .oak-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
    color: white;
    letter-spacing: 2px;
}

.oak-fusion-hero .oak-subtitle {
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.oak-fusion-hero .btn-oak-primary {
    background: linear-gradient(135deg, var(--cream) 0%, var(--accent-color) 100%);
    color: var(--burgundy);
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(232, 213, 183, 0.3);
}

.oak-fusion-hero .btn-oak-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(232, 213, 183, 0.5);
    color: var(--burgundy);
}

.oak-fusion-hero .oak-control {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 55px;
    height: 55px;
    backdrop-filter: blur(15px);
    z-index: 20;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.oak-fusion-hero .oak-control:hover {
    background: rgba(139, 38, 53, 0.9);
    border-color: var(--cream);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(139, 38, 53, 0.4);
}

.oak-fusion-hero .oak-control.carousel-control-prev {
    left: 25px;
}

.oak-fusion-hero .oak-control.carousel-control-next {
    right: 25px;
}

.oak-fusion-hero .oak-arrow {
    background: none;
    width: auto;
    height: auto;
}

.oak-fusion-hero .oak-arrow i {
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
}

.oak-fusion-hero .oak-control:hover .oak-arrow i {
    color: var(--cream);
}

/* Category Cards Enhancement */
.category-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(139, 38, 53, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.category-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(139, 38, 53, 0.2);
}

.category-card-modern .category-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.category-card-modern .category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card-modern:hover .category-image img {
    transform: scale(1.1);
}

.category-card-modern .category-content {
    padding: 25px;
    text-align: center;
}

.category-card-modern .category-content h3 {
    color: var(--burgundy);
    font-weight: 600;
    margin-bottom: 10px;
}

.category-card-modern .btn-category {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--deep-burgundy) 100%);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 10px;
}

.category-card-modern .btn-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 38, 53, 0.3);
    color: white;
}

/* Contact page specific styles */
.contact .social-icon-perfume,
.social-icon-perfume {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--burgundy), var(--deep-burgundy));
    border: 2px solid var(--cream);
    color: var(--cream) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.contact .social-icon-perfume:hover,
.social-icon-perfume:hover {
    background: linear-gradient(135deg, var(--deep-burgundy), var(--burgundy));
    color: var(--cream) !important;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(139, 38, 53, 0.4);
    border-color: var(--light-cream);
}

/* Mobile Review Form Styling */
.review-form .row {
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .review-form .row .col-6 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-bottom: 1rem !important;
    }
    
    .review-form .col-6:first-child {
        margin-bottom: 1rem !important;
    }
    
    .review-form .col-6:last-child {
        margin-bottom: 1rem !important;
    }
}

/* Remove black hover effect from buttons */
.btn:hover,
.btn-primary:hover,
.btn-card:hover,
.btn-view-more:hover {
    color: inherit !important;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--deep-burgundy) 0%, var(--burgundy) 100%) !important;
    color: var(--cream) !important;
}

/* Remove Free Shipping text from product details */
.product-details .free-shipping-text {
    display: none !important;
}

/* Hide free shipping mentions in product page */
.product-page .free-shipping-badge,
.product-page .free-shipping-text {
    display: none !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-slider-container {
        height: 50vh;
        min-height: 350px;
    }

    .oak-fusion-hero .oak-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }

    .oak-fusion-hero .oak-subtitle {
        font-size: 1.1rem;
    }

    .oak-fusion-hero .oak-control {
        width: 40px;
        height: 40px;
    }

    .oak-fusion-hero .oak-arrow i {
        font-size: 14px;
    }

    .wishlist-toggle {
        width: 38px;
        height: 38px;
        top: 10px;
        right: 10px;
        z-index: 25;
    }

    .wishlist-toggle i {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .hero-slider-container {
        height: 45vh;
        min-height: 300px;
    }

    .oak-fusion-hero .oak-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .oak-fusion-hero .oak-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .wishlist-toggle {
        width: 36px;
        height: 36px;
        top: 8px;
        right: 8px;
        z-index: 25;
    }

    .wishlist-toggle i {
        font-size: 14px;
    }
}