
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        
        a {
            text-decoration: none;
            color: #0066c0;
            transition: color 0.3s;
        }
        
        a:hover {
            color: #c45500;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header Styles */
        header {
            background: linear-gradient(to bottom, #232f3e, #131a22);
            color: white;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: 700;
            color: white;
            display: flex;
            align-items: center;
        }
        
        .logo i {
            margin-right: 10px;
            color: #d24033;
        }
        
        .logo-text {
            color: #d24033;
        }
        
        .logo-text-deals {
            color: black;
        }
        
        .logo-text-hub {
            color: white;
        }
        
        /* Mobile menu button */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        
        /* Top Navigation */
        .top-nav {
            background-color: #131a22;
            padding: 0;
        }
        
        .top-nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .top-menu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .top-menu li {
            margin: 0;
        }
        
        .top-menu a {
            color: #eaeded;
            font-weight: 500;
            font-size: 16px;
            padding: 12px 15px;
            display: block;
            transition: background 0.3s;
        }
        
        .top-menu a:hover {
            color: #ff9900;
            background: rgba(255, 255, 255, 0.1);
        }
        
        .social-icons-top {
            display: flex;
            gap: 15px;
        }
        
        .social-icons-top a {
            color: #eaeded;
            font-size: 18px;
            transition: color 0.3s;
        }
        
        .social-icons-top a:hover {
            color: #ff9900;
        }
        
        /* Hero Carousel */
        .hero-carousel {
            position: relative;
            height: 450px;
            overflow: hidden;
            margin-bottom: 30px;
        }
        
        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
        }
        
        .carousel-slide.active {
            opacity: 1;
        }
        
        .carousel-content {
            background: rgba(0, 0, 0, 0.7);
            padding: 30px;
            border-radius: 8px;
            max-width: 700px;
        }
        
        .carousel-content h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
        }
        
        .carousel-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
        .cta-button {
            display: inline-block;
            background: #ff9900;
            color: white;
            padding: 12px 30px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 18px;
            transition: background 0.3s;
        }
        
        .cta-button:hover {
            background: #e88a00;
            color: white;
        }
        
        .carousel-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .dot.active {
            background: white;
        }
        
        /* Categories Section */
        .section-title {
            text-align: center;
            margin: 40px 0 30px;
            font-size: 28px;
            color: #232f3e;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: #ff9900;
            margin: 10px auto;
        }
        
        .categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .category-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            text-align: center;
            cursor: pointer;
        }
        
        .category-card:hover {
            transform: translateY(-5px);
        }
        
        .category-img {
            height: 140px;
            background-color: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .category-img i {
            font-size: 50px;
            color: #232f3e;
        }
        
        .category-content {
            padding: 20px;
        }
        
        .category-content h3 {
            margin-bottom: 10px;
        }
        
        /* Mobile Category Slider */
        .mobile-categories-section {
            display: none;
            margin-bottom: 30px;
            position: relative;
        }
        
        .mobile-categories-container {
            overflow: hidden;
            position: relative;
            padding: 0 40px;
        }
        
        .mobile-categories-slider {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .mobile-category-card {
            flex: 0 0 5%; /* Show 4 categories per slide on mobile */
            padding: 10px;
            text-align: center;
        }
        
        .mobile-category-card-inner {
            background: white;
            border-radius: 8px;
            width: 140px;
            padding: 35px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            transition: transform 0.3s;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        .mobile-category-card-inner:hover {
            transform: translateY(-3px);
        }
        
        .mobile-category-icon {
            font-size: 30px;
            color: #232f3e;
            margin-bottom: 10px;
        }
        
        .mobile-category-title {
            font-size: 14px;
            font-weight: 600;
        }
        
        .mobile-categories-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            border: none;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: all 0.3s;
        }
        
        .mobile-categories-arrow:hover {
            background: #ff9900;
            color: white;
        }
        
        .mobile-categories-arrow-left {
            left: 0;
        }
        
        .mobile-categories-arrow-right {
            right: 0;
        }
        
        .mobile-categories-dots {
            display: flex;
            justify-content: center;
            margin-top: 10px;
            gap: 8px;
        }
        
        .mobile-categories-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .mobile-categories-dot.active {
            background: #ff9900;
        }
        
        /* Hot Deals Marquee */
        .hot-deals-section {
            background: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
        }
        
        .hot-deals-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .hot-deals-header h2 {
            font-size: 24px;
            color: #232f3e;
            margin-right: 15px;
        }
        
        .hot-deals-header i {
            color: #ff9900;
            font-size: 24px;
        }
        
        .hot-deals-marquee {
            overflow: hidden;
            position: relative;
            height: 120px;
            background: #fff4e0;
            border-radius: 8px;
            padding: 15px 0;
        }
        
        .hot-deals-track {
            display: flex;
            position: absolute;
            animation: marquee 30s linear infinite;
            gap: 30px;
            padding: 0 15px;
        }
        
        .hot-deal-item {
            flex: 0 0 auto;
            width: 300px;
            background: white;
            border-radius: 8px;
            padding: 15px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .hot-deal-image {
            width: 80px;
            height: 80px;
            border-radius: 6px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f5f5f5;
        }
        
        .hot-deal-image img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        
        .hot-deal-content h3 {
            font-size: 16px;
            margin-bottom: 5px;
        }
        
        .hot-deal-content p {
            font-size: 14px;
            color: #666;
        }
        
        .hot-deal-badge {
            background: #b12704;
            color: white;
            padding: 3px 8px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 600;
            display: inline-block;
            margin-top: 5px;
        }
        
        @keyframes marquee {
            0% {
                transform: translateX(0%);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        
        .hot-deals-marquee:hover .hot-deals-track {
            animation-play-state: paused;
        }
        
        /* Search and Filter */
        .search-container {
            margin: 20px auto;
            max-width: 600px;
            position: relative;
        }
        
        .search-box {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #ddd;
            border-radius: 30px;
            font-size: 16px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: border-color 0.3s;
        }
        
        .search-box:focus {
            outline: none;
            border-color: #ff9900;
        }
        
        .search-icon {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #888;
        }
        
        .filter-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px 0;
        }
        
        .filter-btn {
            background: white;
            border: 1px solid #ddd;
            padding: 8px 16px;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 14px;
        }
        
        .filter-btn:hover, .filter-btn.active {
            background: #ff9900;
            color: white;
            border-color: #ff9900;
        }
        
        /* Products Section */
        .products {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 30px;
        }
        
        .product-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s;
            position: relative;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
        }
        
        .product-image-container {
            position: relative;
            height: 200px;
            background-color: #f5f5f5;
            overflow: hidden;
        }
        
        .product-image-slider {
            display: flex;
            transition: transform 0.5s ease;
            height: 100%;
        }
        
        .product-image {
          
            min-width: 100%;
           
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            
            position: relative;
        }
        
        .product-image img {
            max-width: 100%;
            
            max-height: 200%;
            object-fit: fill;
        }
        
        .image-dots {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 6px;
        }
        
        .image-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.3);
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .image-dot.active {
            background: #ff9900;
        }
        
        .product-actions {
            position: absolute;
            top: 10px;
            right: 10px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            z-index: 10;
        }
        
        .action-btn {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: white;
            border: none;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .action-btn:hover {
            background: #ff9900;
            color: white;
            transform: scale(1.1);
        }
        
        .action-btn.saved {
            background: #ff9900;
            color: white;
        }
        
        .product-content {
            padding: 20px;
        }
        
        .product-title {
            font-size: 16px;
            margin-bottom: 12px;
            height: 40px;
            overflow: hidden;
        }
        
        .product-price {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .new-price {
            font-size: 20px;
            font-weight: 700;
            color: #b12704;
        }
        
        .old-price {
            text-decoration: line-through;
            color: #888;
            margin-left: 10px;
        }
        
        .product-discount {
            background: #b12704;
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 15px;
        }
        
        .product-buttons {
            display: flex;
            gap: 10px;
        }
        
        .amazon-button {
            display: block;
            background: #ff9900;
            color: white;
            text-align: center;
            padding: 10px;
            border-radius: 4px;
            font-weight: 600;
            transition: background 0.3s;
            flex: 1;
        }
        
        .amazon-button:hover {
            background: #e88a00;
            color: white;
        }
        
        .read-more-button {
            display: block;
            background: #232f3e;
            color: white;
            text-align: center;
            padding: 10px;
            border-radius: 4px;
            font-weight: 600;
            transition: background 0.3s;
            flex: 1;
        }
        
        .read-more-button:hover {
            background: #131a22;
            color: white;
        }
        
        /* Product Details Section */
        .product-details {
            background: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
            display: none;
        }
        
        .product-details-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .close-details {
            background: #232f3e;
            color: white;
            padding: 10px 20px;
            border-radius: 4px;
            font-weight: 600;
            transition: background 0.3s;
            cursor: pointer;
            border: none;
        }
        
        .close-details:hover {
            background: #131a22;
        }
        
        .product-details-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        
        .product-details-image {
            background-color: #f5f5f5;
            border-radius: 8px;
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 400px;
        }
        
        .product-details-image img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        
        .product-details-info h1 {
            font-size: 24px;
            margin-bottom: 15px;
            color: #232f3e;
        }
        
        .product-details-price {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .product-details-discount {
            background: #b12704;
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 18px;
            font-weight: 700;
            margin-right: 15px;
        }
        
        .product-details-description {
            margin-bottom: 25px;
            line-height: 1.8;
        }
        
        .product-details-features {
            margin-bottom: 25px;
        }
        
        .product-details-features ul {
            padding-left: 20px;
        }
        
        .product-details-features li {
            margin-bottom: 8px;
        }
        
        .product-details-buttons {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
        }
        
        .share-buttons {
            display: flex;
            gap: 10px;
            margin-bottom: 25px;
        }
        
        .share-button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            color: white;
            font-size: 18px;
            transition: transform 0.3s;
        }
        
        .share-button:hover {
            transform: scale(1.1);
        }
        
        .share-facebook {
            background: #3b5998;
        }
        
        .share-twitter {
            background: #1da1f2;
        }
        
        .share-pinterest {
            background: #bd081c;
        }
        
        .share-link {
            background: #232f3e;
        }
        
        .video-container {
            margin-top: 25px;
        }
        
        .video-placeholder {
            background: #f5f5f5;
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
        }
        
        .video-placeholder i {
            font-size: 48px;
            color: #ff9900;
            margin-bottom: 15px;
        }
        
        /* FAQ Section */
        .faq-section {
            background: white;
            border-radius: 8px;
            padding: 40px 30px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            margin-bottom: 40px;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-bottom: 1px solid #eee;
            padding-bottom: 20px;
        }
        
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-size: 18px;
            font-weight: 600;
            color: #232f3e;
        }
        
        .faq-answer {
            margin-top: 15px;
            color: #555;
            line-height: 1.6;
            display: none;
        }
        
        .faq-answer.active {
            display: block;
        }
        
        .faq-toggle {
            font-size: 20px;
            transition: transform 0.3s;
        }
        
        .faq-toggle.active {
            transform: rotate(180deg);
        }
        
        /* Saved Products Notification */
      .saved-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4caf50;
    color: white;
    padding: 15px 20px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: none;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    transform: translateX(100%); /* hidden by default */
    transition: transform 0.3s ease;
}

.saved-notification.show {
    display: flex;
    transform: translateX(0); /* visible */
}

        /* Share Modal */
        .share-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .share-modal.show {
            opacity: 1;
            visibility: visible;
        }
        
        .share-modal-content {
            background: white;
            border-radius: 8px;
            padding: 30px;
            max-width: 500px;
            width: 90%;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
        
        .share-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .share-modal-header h2 {
            color: #232f3e;
        }
        
        .close-modal {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #888;
        }
        
        .share-options {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 25px;
        }
        
        .share-option {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            transition: transform 0.3s;
        }
        
        .share-option:hover {
            transform: scale(1.05);
        }
        
        .share-option i {
            font-size: 32px;
            color: #232f3e;
        }
        
        .share-option span {
            font-size: 14px;
        }
        
        .share-link-container {
            display: flex;
            margin-bottom: 20px;
        }
        
        .share-link-input {
            flex: 1;
            padding: 10px 15px;
            border: 1px solid #ddd;
            border-radius: 4px 0 0 4px;
            font-size: 14px;
        }
        
        .copy-link-btn {
            background: #232f3e;
            color: white;
            border: none;
            padding: 10px 15px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
        }
        
        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            margin: 30px 0 50px;
        }
        
        .pagination a {
            color: #232f3e;
            padding: 8px 16px;
            margin: 0 4px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
        
        .pagination a.active {
            background-color: #ff9900;
            color: white;
            border: 1px solid #ff9900;
        }
        
        .pagination a:hover:not(.active) {
            background-color: #ddd;
        }
        
        /* Blog Slider Section */
        .blog-slider-section {
            padding: 60px 0;
            background: #f8f9fa;
        }
        
        .blog-slider-container {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
        }
        
        .blog-slides {
            display: flex;
            transition: transform 0.6s ease-in-out;
        }
        
        .blog-slide {
            min-width: 100%;
            box-sizing: border-box;
            background: #fff;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
        }
        
        .blog-slide-content {
            padding: 30px;
            flex: 1;
        }
        
        .blog-slide h2 {
            font-size: 24px;
            margin-bottom: 15px;
            color: #232f3e;
        }
        
        .blog-slide p {
            font-size: 16px;
            color: #555;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .blog-slide-meta {
            display: flex;
            align-items: center;
            color: #777;
            font-size: 14px;
        }
        
        .blog-slide-meta i {
            margin-right: 5px;
            color: #ff9900;
        }
        
        .blog-slide img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }
        
        .blog-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 28px;
            font-weight: bold;
            color: #fff;
            background: rgba(0,0,0,0.6);
            border: none;
            padding: 12px 18px;
            cursor: pointer;
            border-radius: 50%;
            z-index: 10;
            transition: background 0.3s;
        }
        
        .blog-arrow:hover { 
            background: rgba(0,0,0,0.8); 
        }
        
        .blog-arrow-left { 
            left: 20px; 
        }
        
        .blog-arrow-right { 
            right: 20px; 
        }
        
        .blog-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }
        
        .blog-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .blog-dot.active {
            background: white;
        }
        
        /* Footer */
        footer {
            background: #232f3e;
            color: #eaeded;
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: #ff9900;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column a {
            color: #ccc;
        }
        
        .footer-column a:hover {
            color: #ff9900;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }
        
        .social-icons a {
            color: #ccc;
            font-size: 20px;
        }
        
        .social-icons a:hover {
            color: #ff9900;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #3a4553;
            color: #ccc;
            font-size: 14px;
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #ff9900;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background: #e88a00;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .header-container {
                flex-direction: row;
            }
            
            .top-nav-container {
                flex-direction: column;
                padding: 10px 0;
            }
            
            .top-menu {
                margin-bottom: 10px;
                justify-content: center;
                flex-wrap: wrap;
            }
            
            .social-icons-top {
                justify-content: center;
            }
            
            .hero-carousel {
                height: 400px;
            }
            
            .carousel-content h1 {
                font-size: 2.2rem;
            }
            
            .carousel-content p {
                font-size: 1rem;
            }
            
            .products {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
            
            .product-details-content {
                grid-template-columns: 1fr;
            }
            
            .product-details-image {
                height: 300px;
            }
            
            .product-buttons {
                flex-direction: column;
            }
            
            .product-details-buttons {
                flex-direction: column;
            }
            
            .share-buttons {
                justify-content: center;
            }
            
            .hot-deal-item {
                width: 250px;
            }
            
            .blog-slide-content {
                padding: 20px;
            }
            
            .blog-slide h2 {
                font-size: 20px;
            }
            
            .blog-slide img {
                height: 250px;
            }
            
            .blog-arrow {
                padding: 10px 15px;
                font-size: 24px;
            }
            
            .faq-question {
                font-size: 16px;
            }
        }
        
        @media (max-width: 768px) {
            .mobile-category-card-inner {
          
            width: 95%;
           
        }
            .mobile-menu-btn {
                display: block;
            }
            
            .top-menu {
                display: none;
                flex-direction: column;
                width: 100%;
            }
            
            .top-menu.show {
                display: flex;
            }
            .section-title.desktop-categories-title {
                display: none;
            }
            
            .top-menu li {
                width: 100%;
                text-align: center;
            }
            
            .social-icons-top {
                display: none;
            }
            
            /* FIX: Hide desktop categories on mobile */
            .categories {
                display: none;
            }
            
            /* FIX: Show mobile categories on mobile */
            .mobile-categories-section {
                display: block;
            }
            
            .hero-carousel {
                height: 350px;
            }
            
            .carousel-content {
                padding: 20px;
            }
            
            .carousel-content h1 {
                font-size: 1.8rem;
            }
            
            .section-title {
                font-size: 24px;
            }
            
            .pagination a {
                padding: 6px 12px;
            }
            
            .top-menu a {
                padding: 8px 10px;
                font-size: 14px;
            }
            
            .product-details-buttons {
                flex-direction: column;
            }
            
            .filter-buttons {
                overflow-x: auto;
                justify-content: flex-start;
                padding-bottom: 10px;
            }
            
            .filter-btn {
                white-space: nowrap;
            }
            
            .share-options {
                flex-wrap: wrap;
            }
            
            .hot-deal-item {
                width: 220px;
            }
            
            .blog-slide-content {
                padding: 15px;
            }
            
            .blog-slide h2 {
                font-size: 18px;
            }
            
            .blog-slide p {
                font-size: 14px;
            }
            
            .blog-slide img {
                height: 200px;
            }
            
            .blog-arrow {
                padding: 8px 12px;
                font-size: 20px;
            }
            
            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
        }
        
        @media (max-width: 480px) {
            /* FIX: Show 4 categories per slide on very small screens */
            .mobile-category-card {
                flex: 0 0 25%;
            }
            
            .products {
                grid-template-columns: 1fr;
            }
            
            .hero-carousel {
                height: 300px;
            }
            
            .carousel-content h1 {
                font-size: 1.5rem;
            }
            
            .carousel-content p {
                font-size: 0.9rem;
            }
            
            .cta-button {
                padding: 10px 20px;
                font-size: 16px;
            }
            
            .hot-deal-item {
                width: 200px;
            }
            
            .faq-section {
                padding: 20px 15px;
            }
            
            .faq-question {
                font-size: 15px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
   