/* ========================================
   COMPAREHUBPRICES HOMEPAGE STYLES
   Playful, Modern, and Engaging Design
   ======================================== */

/* ========================================
   MODERN HERO CAROUSEL
   ======================================== */
.hero-carousel-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-carousel-section .carousel {
    height: 100%;
}

.hero-carousel-section .carousel-inner {
    height: 100%;
}

.hero-carousel-section .carousel-item {
    height: 100%;
}

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

.hero-slide-1 {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://dlcdnwebimgs.asus.com/gain/162B5B42-A9FA-4BA6-B549-E6C5C3E5589F/fwebp/fwebp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide-2 {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../hero/blossom.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-carousel-section .hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-carousel-section .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-carousel-section .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-carousel-section .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-carousel-section .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-carousel-section .btn-primary {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border: none;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.hero-carousel-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
}

.hero-carousel-section .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    background: transparent;
}

.hero-carousel-section .btn-outline-light:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
}

/* Carousel Indicators */
.hero-carousel-section .carousel-indicators {
    bottom: 30px;
    z-index: 3;
}

.hero-carousel-section .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.hero-carousel-section .carousel-indicators button.active {
    background: white;
    transform: scale(1.2);
}

/* Carousel Controls */
.hero-carousel-section .carousel-control-prev,
.hero-carousel-section .carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.hero-carousel-section .carousel-control-prev {
    left: 30px;
}

.hero-carousel-section .carousel-control-next {
    right: 30px;
}

.hero-carousel-section .carousel-control-prev:hover,
.hero-carousel-section .carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 2;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
}

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

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

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

.shape-3 {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 30%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
}

.shape-5 {
    width: 70px;
    height: 70px;
    top: 10%;
    right: 50%;
    animation-delay: 3s;
}

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

.hero-content {
    position: relative;
    z-index: 4;
    color: white;
    padding: 2rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    animation: slideInLeft 1s ease-out;
}

.hero-badge i {
    color: #ffd700;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: slideInLeft 1s ease-out 0.2s both;
}

.gradient-text {
    background: linear-gradient(45deg, #ffd700, #ff6b6b, #4ecdc4);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: slideInLeft 1s ease-out 0.4s both;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    animation: slideInLeft 1s ease-out 0.6s both;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffd700;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    animation: slideInLeft 1s ease-out 0.8s both;
}

.hero-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-btn::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;
}

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

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 4;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out 0.5s both;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    animation: phoneFloat 3s ease-in-out infinite;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #333;
    border-radius: 2px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.app-interface {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.app-logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.app-title {
    font-weight: 700;
    color: #333;
    font-size: 1.1rem;
}

.search-bar {
    background: #f8f9fa;
    border-radius: 25px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    border: 2px solid #e9ecef;
}

.search-bar i {
    color: #667eea;
}

.search-bar span {
    color: #666;
    font-size: 0.9rem;
}

.price-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 15px;
    border: 2px solid #e9ecef;
    position: relative;
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.price-card.best {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-color: #667eea;
}

.retailer {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.price {
    font-size: 1.3rem;
    font-weight: 800;
}

.badge {
    position: absolute;
    top: -8px;
    right: 10px;
    background: #ffd700;
    color: #333;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: bold;
}

@keyframes phoneFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* ========================================
   FEATURES SECTION
   ======================================== */
.features-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, #667eea, #764ba2);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-highlight {
    background: linear-gradient(45deg, #ffd700, #ff6b6b);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}

/* ========================================
   CATEGORIES SECTION
   ======================================== */
.categories-section {
    padding: 100px 0;
    background: white;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s;
}

.category-card:hover::before {
    left: 100%;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

.category-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.category-card p {
    color: #666;
    margin-bottom: 1rem;
}

.category-count {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.testimonials-section .section-title,
.testimonials-section .section-subtitle {
    color: white;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.stars i {
    color: #ffd700;
    font-size: 1.2rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ffd700, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.author-info h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.author-info span {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd700 100%);
    text-align: center;
    color: white;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-text h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-text p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-actions .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-actions .btn::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;
}

.cta-actions .btn:hover::before {
    left: 100%;
}

.cta-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ========================================
   FEATURED SECTION
   ======================================== */
.featured-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Featured Categories */
.featured-categories-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    padding: 2rem;
    margin: 2rem 1rem;
}

/* Trending Deals Container */
.trending-deals-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    padding: 2rem;
    margin: 2rem 1rem;
    position: relative;
}

.trending-deals-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

/* Responsive adjustments for trending deals */
@media (max-width: 768px) {
    .trending-deals-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .trending-deals-showcase {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

/* New Arrivals Container */
.new-arrivals-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    padding: 2rem;
    margin: 2rem 1rem;
}

/* Quick Access Container */
.quick-access-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    padding: 2rem;
    margin: 2rem 1rem;
}

/* Local Business Services Container */
.local-business-services-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    padding: 2rem;
    margin: 2rem 1rem;
}



/* Laptops Deals Container */
.laptops-deals-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    padding: 2rem;
    margin: 2rem 1rem;
}

/* Smartphones Deals Container */
.smartphones-deals-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    padding: 2rem;
    margin: 2rem 1rem;
    position: relative;
}

/* Slide Indicators Container */
.slide-indicators-container {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 1.5rem;
    padding-top: 1rem;
}

.slide-indicator {
    width: 8px;
    height: 8px;
    border-radius: 20px;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
}

.slide-indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
}

.slide-indicator:hover {
    transform: scale(1.3);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.slide-indicator:hover::before {
    left: 0;
}

.slide-indicator.active {
    width: 24px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    box-shadow: 0 4px 16px rgba(40, 167, 69, 0.4);
    transform: scale(1);
}

.slide-indicator.active::before {
    left: 0;
}

/* No More Deals State */
.no-more-deals {
    text-align: center;
    padding: 3rem 2rem;
    color: #6c757d;
}

.no-more-deals i {
    color: #dee2e6;
    margin-bottom: 1rem;
}

.no-more-deals h4 {
    color: #495057;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.no-more-deals p {
    color: #6c757d;
    font-size: 0.9rem;
}

/* No More Businesses State */
.no-more-businesses {
    text-align: center;
    padding: 3rem 2rem;
    color: #6c757d;
    grid-column: 1 / -1;
}

.no-more-businesses i {
    color: #dee2e6;
    margin-bottom: 1rem;
}

.no-more-businesses h4 {
    color: #495057;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.no-more-businesses p {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Appliances Deals Container */
.appliances-deals-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    padding: 2rem;
    margin: 2rem 1rem;
}

/* Product Buying Guides Container */
.product-buying-guides-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    padding: 2rem;
    margin: 2rem 1rem;
}

/* Seasonal Deal Calendar Container */
.seasonal-deal-calendar-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    padding: 2rem;
    margin: 2rem 1rem;
}

/* Gaming Products Container */
.gaming-products-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    padding: 2rem;
    margin: 2rem 1rem;
}

/* Latest Tech News & Reviews Container */
.latest-tech-news-reviews-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    padding: 2rem;
    margin: 2rem 1rem 0 1rem;
}

/* Remove bottom spacing from main element */
.main {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.featured-categories-container h2,
.featured-categories-container .section-title {
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.trending-deals-container h2,
.trending-deals-container .section-title {
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.new-arrivals-container h2,
.new-arrivals-container .section-title {
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.quick-access-container h2,
.quick-access-container .section-title {
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.local-business-services-container h2,
.local-business-services-container .section-title {
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}


.laptops-deals-container h2,
.laptops-deals-container .section-title {
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.smartphones-deals-container h2,
.smartphones-deals-container .section-title {
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.appliances-deals-container h2,
.appliances-deals-container .section-title {
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.product-buying-guides-container h2,
.product-buying-guides-container .section-title {
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.seasonal-deal-calendar-container h2,
.seasonal-deal-calendar-container .section-title {
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.gaming-products-container h2,
.gaming-products-container .section-title {
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.latest-tech-news-reviews-container h2,
.latest-tech-news-reviews-container .section-title {
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.categories-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}


.new-arrivals-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.local-business-services-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.smartphones-deals-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.laptops-deals-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.appliances-deals-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-buying-guides-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.seasonal-deal-calendar-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gaming-products-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.latest-tech-news-reviews-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.quick-access-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.quick-access-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.25rem 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.quick-access-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.05) 0%, rgba(0, 123, 255, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quick-access-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.15);
    border-color: #007bff;
}

.quick-access-item:hover::before {
    opacity: 1;
}

.access-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 12px rgba(0, 123, 255, 0.3);
}

.access-icon i {
    color: white;
    font-size: 1.1rem;
}

.access-content {
    position: relative;
    z-index: 2;
}

.access-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 0.25rem 0;
}

.access-content p {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.3;
}

.category-showcase-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.category-showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.category-bg {
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-showcase-card.appliances .category-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/featured/appliances.jpeg');
    background-size: cover;
    background-position: center;
}

.category-showcase-card.laptops .category-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/featured/laptop.jpeg');
    background-size: cover;
    background-position: center;
}

.category-showcase-card.gaming .category-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/featured/gaming-consoles.jpeg');
    background-size: cover;
    background-position: center;
}

.category-showcase-card.smartphones .category-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/featured/smartphones.jpeg');
    background-size: cover;
    background-position: center;
}

.category-showcase-card.televisions .category-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/featured/televisions.jpeg');
    background-size: cover;
    background-position: center;
}

.category-showcase-card.audio .category-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/featured/audio.jpeg');
    background-size: cover;
    background-position: center;
}

.category-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2.5rem;
    backdrop-filter: blur(10px);
}

.category-info h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-align: center;
}

.category-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    line-height: 1.4;
    text-align: center;
    font-size: 0.95rem;
}

.deal-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.category-stats {
    padding: 1.5rem 2rem;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-stats .stat {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

/* Trending Deals */
.trending-deals {
    margin-bottom: 80px;
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.deal-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.deal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.deal-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.deal-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #ff6b6b, #ffd700);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.deal-content {
    padding: 1.5rem;
}

.deal-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.price-comparison {
    margin-bottom: 1rem;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #667eea;
    margin-right: 0.5rem;
}

.savings {
    background: linear-gradient(45deg, #ff6b6b, #ffd700);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.retailers {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.retailer {
    background: #f8f9fa;
    color: #666;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Local Business Advertisement */
.local-business-ad {
    margin-bottom: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px;
    padding: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.local-business-ad::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.ad-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.ad-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.ad-text {
    flex: 1;
}

.ad-text h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.ad-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.ad-benefits {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.benefit {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.ad-action {
    flex-shrink: 0;
}

.ad-action .btn {
    background: white;
    color: #667eea;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.ad-action .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: #667eea;
}

/* Daily Deals */
.daily-deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.daily-deal-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.daily-deal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #ff6b6b;
}

.deal-timer {
    background: linear-gradient(45deg, #ff6b6b, #ffd700);
    color: white;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    justify-content: center;
}

.deal-timer i {
    animation: pulse 2s infinite;
}

.discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(45deg, #ff6b6b, #ffd700);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.daily-deal-card .deal-image {
    height: 150px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.daily-deal-card .deal-content {
    padding: 1.5rem;
}

.daily-deal-card .deal-content h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.daily-deal-card .price-comparison {
    margin-bottom: 1rem;
}

.daily-deal-card .current-price {
    font-size: 1.3rem;
}

.deal-source {
    background: #f8f9fa;
    color: #666;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

/* ========================================
   ADS SECTION
   ======================================== */
.ads-section {
    padding: 2rem 0;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.ads-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 120px;
}

.ad-placeholder {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    width: 100%;
    max-width: 600px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.ad-placeholder:hover::before {
    left: 100%;
}

.ad-placeholder:hover {
    border-color: #007bff;
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15);
}

.ad-placeholder-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: #6c757d;
    position: relative;
    z-index: 2;
}

.ad-placeholder-text i {
    font-size: 2.5rem;
    color: #007bff;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.ad-placeholder:hover .ad-placeholder-text i {
    opacity: 1;
    transform: scale(1.1);
}

.ad-placeholder-text span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #495057;
    letter-spacing: 0.5px;
}

/* Responsive adjustments for ads section */
@media (max-width: 768px) {
    .ads-section {
        padding: 1.5rem 0;
    }
    
    .ads-container {
        padding: 0 0.5rem;
        min-height: 100px;
    }
    
    .ad-placeholder {
        padding: 1.5rem;
    }
    
    .ad-placeholder-text i {
        font-size: 2rem;
    }
    
    .ad-placeholder-text span {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .ads-section {
        padding: 1rem 0;
    }
    
    .ads-container {
        min-height: 80px;
    }
    
    .ad-placeholder {
        padding: 1rem;
    }
    
    .ad-placeholder-text i {
        font-size: 1.5rem;
    }
    
    .ad-placeholder-text span {
        font-size: 0.9rem;
    }
}

/* ========================================
   PRODUCT BUYING GUIDES
   ======================================== */
.product-buying-guides-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.buying-guide-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.buying-guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #007bff;
}

.guide-card-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.buying-guide-card:hover .guide-card-image {
    transform: scale(1.05);
}

.guide-card-overlay {
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem;
    border-radius: 0 0 0 8px;
}

.guide-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

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

.rating-stars i {
    font-size: 0.8rem;
    color: #ffc107;
}

.rating-text {
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 0.25rem;
}

.guide-card-content {
    padding: 1.5rem;
}

.guide-category {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.guide-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.guide-description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 0 1rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.guide-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #6c757d;
}

.guide-date,
.guide-difficulty {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.guide-date i,
.guide-difficulty i {
    color: #007bff;
    font-size: 0.8rem;
}

/* Guide Modal */
.guide-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.guide-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.guide-modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.guide-modal-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.guide-category-badge {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.guide-date {
    color: #6c757d;
    font-size: 0.9rem;
}

.guide-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6c757d;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.guide-modal-close:hover {
    background: #f8f9fa;
    color: #495057;
}

.guide-modal-body {
    padding: 2rem;
}

.guide-modal-title {
    font-size: 2rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.guide-modal-content-text {
    line-height: 1.8;
    color: #495057;
}

.guide-modal-content-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 2rem 0 1rem;
}

.guide-modal-content-text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin: 1.5rem 0 0.75rem;
}

.guide-modal-content-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 1rem 0 0.5rem;
}

.guide-modal-content-text ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.guide-modal-content-text li {
    margin-bottom: 0.5rem;
}

.guide-modal-content-text p {
    margin-bottom: 1rem;
}

.guide-modal-content-text strong {
    color: #333;
    font-weight: 600;
}

/* Responsive adjustments for buying guides */
@media (max-width: 768px) {
    .product-buying-guides-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .guide-card-content {
        padding: 1.25rem;
    }
    
    .guide-name {
        font-size: 1.1rem;
    }
    
    .guide-description {
        font-size: 0.85rem;
    }
    
    .guide-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .guide-modal {
        padding: 1rem;
    }
    
    .guide-modal-content {
        max-height: 95vh;
    }
    
    .guide-modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .guide-modal-body {
        padding: 1.5rem;
    }
    
    .guide-modal-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .guide-modal-header {
        padding: 1rem;
    }
    
    .guide-modal-body {
        padding: 1rem;
    }
    
    .guide-modal-title {
        font-size: 1.3rem;
    }
}

/* ========================================
   SMARTPHONE DEALS
   ======================================== */
.smartphones-deals-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

/* Responsive adjustments for smartphone deals */
@media (max-width: 768px) {
    .smartphones-deals-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .smartphones-deals-showcase {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

/* ========================================
   LATEST TECH NEWS & REVIEWS
   ======================================== */
.latest-tech-news-reviews-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.article-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #007bff;
}

.article-card-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.article-card-content {
    padding: 1.5rem;
}

.article-category {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.article-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.article-description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 0 1rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #6c757d;
}

.article-date,
.article-type {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.article-date i,
.article-type i {
    color: #28a745;
    font-size: 0.8rem;
}

.guide-type-badge {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive adjustments for articles */
@media (max-width: 768px) {
    .latest-tech-news-reviews-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .article-card-content {
        padding: 1.25rem;
    }
    
    .article-name {
        font-size: 1.1rem;
    }
    
    .article-description {
        font-size: 0.85rem;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
}

@media (max-width: 992px) {
    .hero-section {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
        margin-top: 2rem;
    }
    
    .features-section,
    .categories-section,
    .testimonials-section,
    .cta-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .phone-mockup {
        width: 180px;
        height: 360px;
    }
    
    .feature-card,
    .category-card {
        padding: 1.5rem;
    }
    
    .cta-text h2 {
        font-size: 2rem;
    }
    
    .cta-text p {
        font-size: 1.1rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Featured Section Responsive */
    .featured-section {
        padding: 60px 0;
    }
    
    .categories-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .category-bg {
        padding: 1.5rem;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .category-info h3 {
        font-size: 1.5rem;
    }
    
    .deals-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .local-business-ad {
        padding: 2rem;
    }
    
    .ad-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .ad-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .ad-text h3 {
        font-size: 1.5rem;
    }
    
    .ad-benefits {
        justify-content: center;
    }
    
    .daily-deals-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .phone-mockup {
        width: 150px;
        height: 300px;
        padding: 15px;
    }
    
    .app-interface {
        padding: 15px;
    }
    
    .feature-card,
    .category-card {
        padding: 1rem;
    }
    
    .feature-icon,
    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .cta-text h2 {
        font-size: 1.8rem;
    }
}

/* ========================================
   ANIMATION UTILITIES
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Scroll animations */
.feature-card,
.category-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover effects for interactive elements */
.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Focus states for accessibility */
.btn:focus,
.category-card:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-section {
        background: #000;
    }
    
    .feature-card,
    .category-card {
        border: 2px solid #000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Featured Categories Container Responsive */
@media (max-width: 576px) {
    .featured-categories-container {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
}

/* Quick Access Responsive */
@media (max-width: 992px) {
    .quick-access-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .quick-access-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        max-width: 500px;
    }
    
    .quick-access-item {
        padding: 0.75rem 0.5rem;
    }
    
    .access-icon {
        width: 35px;
        height: 35px;
        margin-bottom: 0.5rem;
    }
    
    .access-icon i {
        font-size: 0.9rem;
    }
    
    .access-content h3 {
        font-size: 0.9rem;
    }
    
    .access-content p {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .featured-categories-container {
        padding: 1rem;
        margin: 0 0.25rem;
    }
}

/* Home-only: reduce gap above footer after "Latest Tech News & Reviews" */
.footer {
    margin-top: 2rem !important; /* was 4rem in footer.css */
}

/* Local Business Services Cards */
.local-business-services-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.local-business-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.local-business-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #007bff;
}

.local-business-card a {
    text-decoration: none;
    color: inherit;
}

.business-card-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.local-business-card:hover .business-card-image {
    transform: scale(1.05);
}

.business-card-overlay {
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem;
    border-radius: 0 0 0 8px;
}

.business-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

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

.rating-stars i {
    font-size: 0.8rem;
    color: #ffc107;
}

.rating-text {
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 0.25rem;
}

.business-card-content {
    padding: 1.5rem;
}

.business-category {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.business-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.business-description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 0 1rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.business-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #6c757d;
}

.business-location,
.business-distance {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.business-location i,
.business-distance i {
    color: #007bff;
    font-size: 0.8rem;
}

/* Responsive adjustments for local business cards */
@media (max-width: 768px) {
    .local-business-services-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .business-card-content {
        padding: 1.25rem;
    }
    
    .business-name {
        font-size: 1.1rem;
    }
    
    .business-description {
        font-size: 0.85rem;
    }
    
    .business-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Seasonal Deal Calendar */
.seasonal-deal-calendar-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.seasonal-deal-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 1.5rem;
    gap: 1rem;
}

.seasonal-deal-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #007bff;
}

.deal-date-badge {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    min-width: 80px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.deal-month {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.deal-day {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.deal-details {
    flex: 1;
}

.deal-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.deal-description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0 0 0.75rem 0;
}

.deal-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.deal-category-tag {
    background: #f8f9fa;
    color: #495057;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
}

.seasonal-deal-item:hover .deal-category-tag {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

/* Responsive adjustments for seasonal deal calendar */
@media (max-width: 768px) {
    .seasonal-deal-calendar-showcase {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .seasonal-deal-item {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }
    
    .deal-date-badge {
        min-width: 70px;
        padding: 0.75rem;
    }
    
    .deal-day {
        font-size: 1.25rem;
    }
    
    .deal-title {
        font-size: 1rem;
    }
    
    .deal-description {
        font-size: 0.85rem;
    }
    
    .deal-categories {
        justify-content: center;
    }
}
