/* ==========================================
   RSS Accessories - Custom Styles
   ========================================== */

/* CSS Custom Properties */
:root {
    --primary-color: #1F2937;
    --secondary-color: #3B82F6;
    --accent-color: #FBBF24;
    --light-gray: #F9FAFB;
    --dark-gray: #374151;
    --success-color: #10B981;
    --white: #FFFFFF;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
}

/* ==========================================
   Navigation Styles
   ========================================== */

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

.navbar-brand:hover img {
    transform: scale(1.05);
}

/* Responsive logo sizing */
@media (max-width: 768px) {
    .navbar-brand img {
        width: 120px;
        height: auto;
    }
}

.navbar {
    background: linear-gradient(135deg, var(--primary-color) 0%, #374151 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--light-gray) !important;
}

.navbar-nav .nav-link {
    color: var(--light-gray) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    border-radius: 5px;
    margin: 0 2px;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-1px);
}

.dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.dropdown-item {
    color: var(--primary-color) !important;
    padding: 0.7rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: var(--secondary-color);
    color: var(--white) !important;
    transform: translateX(5px);
}

/* ==========================================
   Hero Section
   ========================================== */

.hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
}

.hero-slider img {
    width: 100%;
    height: 70vh;
    min-height: 500px;
    object-fit: cover;
    filter: brightness(0.8);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(31, 41, 55, 0.6), rgba(31, 41, 55, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.cta-button {
    background: linear-gradient(135deg, var(--secondary-color), #2563EB);
    color: var(--white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
    color: var(--white);
}

/* Slick Slider Customization */
.slick-dots {
    bottom: 30px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: var(--white);
    opacity: 0.7;
}

.slick-dots li.slick-active button:before {
    color: var(--accent-color);
    opacity: 1;
}

.slick-prev, .slick-next {
    z-index: 3;
    width: 50px;
    height: 50px;
}

.slick-prev:before, .slick-next:before {
    font-size: 30px;
    color: var(--white);
    opacity: 0.8;
}

/* ==========================================
   Products Section
   ========================================== */

.products-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Product Filter Tabs */
.product-filter-tabs {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-filter-tabs .nav-pills {
    background: var(--white);
    padding: 0.5rem;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: inline-flex;
    margin: 0;
    width: auto;
}

.product-filter-tabs .nav-link {
    color: var(--dark-gray);
    background: transparent;
    border-radius: 40px;
    padding: 1rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
}

.product-filter-tabs .nav-link:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.product-filter-tabs .nav-link.active {
    background: linear-gradient(135deg, var(--secondary-color), #2563EB);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-item {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.product-item.filtering {
    opacity: 0;
    transform: translateY(30px);
    pointer-events: none;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--secondary-color);
}

/* Product Image */
.product-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

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

/* Product Overlay */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.8), rgba(37, 99, 235, 0.8));
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-actions {
    display: flex;
    gap: 1rem;
}

.btn-action {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    color: var(--secondary-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(20px);
    opacity: 0;
}

.product-card:hover .btn-action {
    transform: translateY(0);
    opacity: 1;
}

.btn-action:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: scale(1.1);
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--accent-color), #F59E0B);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

/* Product Content */
.product-content {
    padding: 2rem;
    text-align: left;
}

.product-category {
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;}

    .product-content h5 {
            color: var(--primary-color);
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .product-content p {
            color: var(--dark-gray);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        /* Product Features */
        .product-features {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .feature-tag {
            background: rgba(59, 130, 246, 0.1);
            color: var(--secondary-color);
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        /* Info Section */
        .info-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary-color) 0%, #374151 100%);
            color: white;
            text-align: center;
        }

        .info-section h3 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--accent-color);
        }

        .info-section p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            line-height: 1.8;
        }

        .features-grid {
            margin-top: 3rem;
        }

        .feature-item {
            text-align: center;
            padding: 1.5rem;
        }

        .feature-item i {
            font-size: 2.5rem;
            color: var(--accent-color);
            margin-bottom: 1rem;
        }

        .feature-item h5 {
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, #111827 0%, var(--primary-color) 100%);
            color: var(--light-gray);
            padding: 50px 0 30px;
        }

        .footer-content {
            margin-bottom: 2rem;
        }

        .footer h5 {
            color: var(--accent-color);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .footer a {
            color: var(--light-gray);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            margin-bottom: 0.5rem;
        }

        .footer a:hover {
            color: var(--accent-color);
            transform: translateX(5px);
        }

        .social-links a {
            margin-right: 1rem;
            font-size: 1.5rem;
        }

        .footer-bottom {
            border-top: 1px solid rgba(249, 250, 251, 0.1);
            padding-top: 2rem;
            text-align: center;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-content p {
                font-size: 1.1rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .product-card {
                margin-bottom: 2rem;
            }
        }

        @media (max-width: 576px) {
            .hero-section {
                height: 50vh;
                min-height: 400px;
            }
            
            .hero-slider img {
                height: 50vh;
                min-height: 400px;
            }
            
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .cta-button {
                padding: 0.8rem 2rem;
                font-size: 1rem;
            }
        }

        /* Loading Animation */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.show {
            opacity: 1;
            transform: translateY(0);
        }

        /* Scroll to top button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--secondary-color);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 1000;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
        }

        .scroll-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
        }