   /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            font-family: 'acumin-pro', 'Helvetica Neue', Arial, sans-serif;
        }

 

        body {
            min-height: 100vh;
        }
        
        /* Promo Banner */
        .promo-banner {
		
            background-color: #ffde59;
            color: #e50000;
            text-align: center;
            padding: 10px;
            font-weight: bold;
            position: relative;
        }
        
        .promo-btn {
            background-color: #e50000;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: bold;
            margin: 0 10px;
            display: inline-block;
        }
        
        /* Header */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 30px;
            border-bottom: 1px solid #e7e7e7;
        }
        
        .logo {
            color: #e63946;
            font-size: 28px;
            font-weight: bold;
        }
        
        .search-container {
            flex-grow: 1;
            max-width: 500px;
            margin: 0 20px;
            position: relative;
        }
        
        .search-container input {
            width: 100%;
            padding: 10px 15px;
            border: 1px solid #ccc;
            border-radius: 25px;
            outline: none;
        }
        
        .search-icon {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            color: #333;
            font-size: 18px;
        }
        
        .account-info {
            display: flex;
            align-items: center;
            font-weight: 500;
        }
        
        .cart-icon {
            position: relative;
            margin-left: 20px;
            font-size: 20px;
            color: #333;
        }
        
        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: #e63946;
            color: white;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
        }
        
        /* Navigation */
        .navbar {
            display: flex;
            align-items: center;
            padding: 0 30px;
            border-bottom: 1px solid #e7e7e7;
            position: relative;
        }
        
        .nav-item {
            padding: 15px 20px;
            cursor: pointer;
            font-weight: bold;
            position: relative;
        }
        
        .nav-item.active {
            border-bottom: 3px solid #e63946;
        }
        
        .nav-item:hover {
            color: #e63946;
        }
        
        .dropdown-arrow {
            display: inline-block;
            margin-left: 5px;
            transition: transform 0.3s ease;
        }
        
        .dropdown-arrow.active {
            transform: rotate(180deg);
        }
        
        /* Mega Menu */
        .mega-menu {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: #fff;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            z-index: 1000;
            display: none;
            padding: 20px;
        }
        
        .mega-menu-content {
            display: grid;
            grid-template-columns: '1fr', '1fr', '1fr', '1fr';
            gap: 20px;
        }
        
        .menu-column {
            padding: 10px;
        }
        
        .menu-column h3 {
            margin-bottom: 15px;
            color: #333;
        }
        
        .menu-list {
            list-style: none;
        }
        
        .menu-list li {
            margin-bottom: 10px;
        }
        
        .menu-list a {
            text-decoration: none;
            color: #555;
            transition: color 0.3s;
        }
        
        .menu-list a:hover {
            color: #e63946;
        }
        
        /* YouTube Grid Section */
        .youtube-section {
            padding: 30px;
        }
        
        .youtube-section h2 {
            margin-bottom: 20px;
            color: #e63946;
            text-align: center;
            font-weight: 600;
        }
        
        .youtube-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .youtube-video {
            position: relative;
            padding-bottom: 50%; /* Slightly smaller than 16:9 */
            height: 0;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        
        .youtube-video iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* Featured Buttons */
        .featured-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin: 30px 0;
        }
        
        .featured-btn {
            padding: 12px 25px;
            border-radius: 30px;
            background: #000;
            color: white;
            font-weight: bold;
            text-decoration: none;
            transition: transform 0.3s;
        }
        
        .featured-btn:hover {
            transform: translateY(-3px);
        }
        
        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .mega-menu-content {
                grid-template-columns: 1fr 1fr;
            }
            
            .youtube-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
			.promo-banner{
				margin: 0;		
			}
            .header {
                flex-wrap: wrap;
            }
            
            .search-container {
                order: 3;
                max-width: 100%;
                margin: 10px 0 0;
            }
            
            .mobile-menu-toggle {
                display: block;
            }
            
            .navbar {
                display: none;
                flex-direction: column;
                align-items: flex-start;
            }
            
            .navbar.active {
                display: flex;
            }
            
            .nav-item {
                width: 100%;
                border-bottom: 1px solid #eee;
            }
            
            .mega-menu {
                position: static;
                box-shadow: none;
                padding: 0 20px;
            }
            
            .mega-menu-content {
                grid-template-columns: 1fr;
            }
            
            .youtube-grid {
                grid-template-columns: 1fr;
            }
        }
		 .slider-container {
			
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
        }

        .slider {
			margin-top: 2rem;
            display: flex;
            transition: transform 0.5s ease;
        }

        .slide {
            min-width: 100%;
            display: flex;
            background-color: #fff;
        }

        .slide-content {
            width: 50%;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .slide-content.red {
            background-color: #d1232a;
            color: white;
        }

        .slide-content.blue {
            background-color: #0078d4;
            color: white;
        }

        .slide-content.green {
            background-color: #107c10;
            color: white;
        }

        .slide-image {
            width: 50%;
            overflow: hidden;
			height: 400px;
            position: relative;
        }

        .slide-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slide-title {
            font-size: 36px;
            font-weight: bold;
            text-transform: uppercase;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .slide-description {
            font-size: 16px;
            line-height: 1.5;
            margin-bottom: 30px;
        }

        .slide-button {
            display: inline-block;
            padding: 12px 30px;
            background-color: white;
            color: #333;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s, transform 0.3s;
            width: fit-content;
        }

        .slide-button:hover {
            background-color: #f5f5f5;
            transform: translateY(-2px);
        }

        .slider-controls {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .dot.active {
            background-color: white;
        }

        @media screen and (max-width: 768px) {
            .slide {
                flex-direction: column;
            }
            
            .slide-content,
            .slide-image {
                width: 100%;
            }
            
            .slide-content {
                padding: 30px;
            }
            
            .slide-title {
                font-size: 28px;
            }
        }
		
		 .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }
    
    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
    }
    
    .section-title {
      font-size: 24px;
      font-weight: bold;
      color: #111;
    }
    
    .view-all {
      text-decoration: none;
      color: #000;
      font-weight: 500;
    }
    
    .book-carousel {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 20px;
      overflow-x: auto;
      padding-bottom: 20px;
      scroll-behavior: smooth;
    }
    
    @media (max-width: 1200px) {
      .book-carousel {
        grid-template-columns: repeat(4, 1fr);
      }
    }
    
    @media (max-width: 768px) {
      .book-carousel {
        grid-template-columns: repeat(3, 1fr);
      }
    }
    
    @media (max-width: 480px) {
      .book-carousel {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    .book-item {
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease;
    }
    
    .book-item:hover {
      transform: translateY(-5px);
    }
    
    .book-cover {
      width: 100%;
      aspect-ratio: 2/3;
      object-fit: cover;
      border-radius: 5px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    
    .book-info {
      margin-top: 10px;
    }
    
    .book-title {
      font-size: 14px;
      font-weight: bold;
      margin: 5px 0;
    }
    
    .book-author {
      font-size: 12px;
      color: #666;
    }
    
    .section-container {
      margin-bottom: 50px;
    }
    
    /* Publisher labels */
    .publisher-label {
      position: absolute;
      top: 5px;
      right: 5px;
      background-color: rgba(255, 255, 255, 0.8);
      padding: 2px 5px;
      border-radius: 3px;
      font-size: 10px;
      font-weight: bold;
    }
    
    .book-cover-container {
      position: relative;
    }
    
    /* Common Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 600;
    color: #333;
}

/* Instagram Section Styles */
.instagram-follow-section {
    padding: 60px 0;
    background-color: #fff;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 15px;
    margin-bottom: 25px;
}

.instagram-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.instagram-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instagram-item:hover img {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-item:hover .overlay {
    opacity: 1;
}

.overlay-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.follow-button-container {
    text-align: center;
    margin-top: 20px;
}

.follow-button {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.follow-button:hover {
    background-color: #333;
    color: #fff;
}

/* Book Promotions Section Styles */
.book-promotions-section {
    padding: 60px 0;
   
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}

.promo-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: transform 0.3s ease;
}

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

.promo-image {
    height: 220px;
    overflow: hidden;
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-content {
    padding: 20px;
    background-color: #e63946;
    color: #fff;
}

.promo-content p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}

.promo-link {
    color: #fff;
    text-decoration: underline;
}

.promo-link:hover {
    color: #fff;
    text-decoration: none;
}

/* Footer Styles */
.site-footer {
    background-color: #E63946;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 0 0 20%;
}

.footer-logo img {
    max-width: 150px;
}

.footer-menu {
    flex: 0 0 60%;
}

.footer-menu-list {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-list li {
    margin: 0 15px;
}

.footer-menu-list a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-menu-list a:hover {
    color: #e63946;
}

.footer-social {
    flex: 0 0 20%;
}

.social-icons {
    display: flex;
    justify-content: flex-end;
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-icons li {
    margin-left: 15px;
}

.social-icons a {
	margin-top:-1rem;
    display: inline-block;
    width: 36px;
    height: 36px;
 
    color: #fff;
    text-align: center;
    line-height: 36px;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: #e63946;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .instagram-grid,
    .promotions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-logo,
    .footer-menu,
    .footer-social {
        flex: 0 0 100%;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .social-icons li {
        margin: 0 7px;
    }
}

@media (max-width: 576px) {
    .instagram-grid,
    .promotions-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-menu-list {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-menu-list li {
        margin: 5px 0;
    }
}