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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Force desktop layout on page load for larger screens */
@media (min-width: 769px) {
    body .nav-menu {
        left: auto !important;
    }
    
    body .nav-menu.active {
        left: auto !important;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Header Styles */
.header-top {
    background-color: #2c3e50;
    color: white;
    padding: 8px 0;
    font-size: 14px;
    text-align: center;
}

.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: 1px;
}

/* Base navigation styles - Desktop First */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

/* Ensure mobile menu is hidden on desktop */
.mobile-menu-btn {
    display: none;
}

/* Force desktop layout on larger screens */
@media (min-width: 769px) {
    .nav-menu {
        position: static !important;
        top: auto !important;
        left: auto !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        padding-top: 0 !important;
        transition: none !important;
        z-index: auto !important;
        transform: none !important;
    }
    
    .nav-menu.active {
        left: auto !important;
        transform: none !important;
    }
    
    .nav-list {
        flex-direction: row !important;
        gap: 30px !important;
        text-align: left !important;
    }
    
    .mobile-menu-btn {
        display: none !important;
    }
    
    .hero-content {
        flex-direction: row !important;
        text-align: left !important;
    }
    
    .hero-text {
        flex: 1 !important;
        padding: 40px !important;
        order: 0 !important;
    }
    
    .hero-image {
        flex: 1 !important;
        order: 0 !important;
    }
}

.nav-list a {
    font-weight: 500;
    font-size: 14px;
    color: #2c3e50;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-list a:hover {
    color: #e74c3c;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-actions button {
    font-size: 18px;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.nav-actions button:hover {
    color: #e74c3c;
}

.mobile-menu-btn {
    display: none;
}

/* CSS-Only Hero Slider */
.hero-carousel {
    position: relative;
    height: 50vh;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
    width: 100%;
}

.css-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Hide radio inputs */
.css-slider input[type="radio"] {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide-container {
    position: relative;
    width: 300%;
    height: 100%;
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide {
    position: relative;
    width: 33.333%;
    height: 100%;
    overflow: hidden;
}

/* Slide transitions */
#slide1:checked ~ .slider-wrapper .slide-container {
    transform: translateX(0%);
}

#slide2:checked ~ .slider-wrapper .slide-container {
    transform: translateX(-33.333%);
}

#slide3:checked ~ .slider-wrapper .slide-container {
    transform: translateX(-66.666%);
}

/* Hero content styling */
.hero-content {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    position: relative;
}

.hero-text {
    flex: 1;
    padding: 40px;
    color: white;
    z-index: 2;
}

.hero-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.shop-now-btn {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    margin-top: 20px;
}

.shop-now-btn:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 8s ease-in-out;
}

/* Ken Burns effect */
.slide .hero-image img {
    animation: kenburns 8s ease-in-out infinite alternate;
}

@keyframes kenburns {
    0% {
        transform: scale(1) rotate(0deg);
    }
    100% {
        transform: scale(1.1) rotate(1deg);
    }
}

/* Navigation arrows */
.slider-controls {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.prev-arrow,
.next-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
    border: none;
}

.prev-arrow:hover,
.next-arrow:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.prev-arrow {
    left: 30px;
}

.next-arrow {
    right: 30px;
}

/* Show appropriate arrows for each slide */
#slide1:checked ~ .slider-wrapper .slider-controls .slide1-prev,
#slide1:checked ~ .slider-wrapper .slider-controls .slide1-next {
    display: flex;
}

#slide2:checked ~ .slider-wrapper .slider-controls .slide2-prev,
#slide2:checked ~ .slider-wrapper .slider-controls .slide2-next {
    display: flex;
}

#slide3:checked ~ .slider-wrapper .slider-controls .slide3-prev,
#slide3:checked ~ .slider-wrapper .slider-controls .slide3-next {
    display: flex;
}

/* Slide indicators */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

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

.indicator:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Active indicator states */
#slide1:checked ~ .slider-wrapper .slider-indicators .indicator1,
#slide2:checked ~ .slider-wrapper .slider-indicators .indicator2,
#slide3:checked ~ .slider-wrapper .slider-indicators .indicator3 {
    background-color: white;
    transform: scale(1.2);
}

/* Autoplay animation */
.css-slider.autoplay #slide1:checked ~ .slider-wrapper .slide-container {
    animation: slideshow 9s infinite;
}

@keyframes slideshow {
    0%, 30% { transform: translateX(0%); }
    33%, 63% { transform: translateX(-33.333%); }
    66%, 96% { transform: translateX(-66.666%); }
    100% { transform: translateX(0%); }
}

/* Featured Products Section */
.featured-products {
    padding: 80px 0;
    background-color: #f8f9fa;
}



/* Pagination Controls */
.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding: 20px 0;
}

.pagination-btn {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-btn:hover:not(:disabled) {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.pagination-btn:disabled {
    background-color: #bdc3c7;
    cursor: not-allowed;
    transform: none;
}

.pagination-info {
    font-weight: 600;
    color: #2c3e50;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Search Section - Clean Modern Style */
.search-section {
    margin: 30px 0 25px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.search-container {
    display: flex;
    gap: 12px;
    align-items: center;
    width: 100%;
    max-width: 600px;
}

.search-input {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #374151;
}

.search-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.search-input:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.search-button {
    background: #6366f1;
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

.search-button:hover {
    background: #5b5bd6;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
}

.clear-search {
    background: #6b7280;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.clear-search:hover {
    background: #4b5563;
}

/* Modern Category Filter Section - Purple Theme */
.category-filter-section {
    margin: 25px 0 30px 0;
    padding: 0;
    background: transparent;
    overflow: hidden;
    text-align: center;
}

.filter-scroll-container {
    position: relative;
    padding: 0;
}

.filter-tabs {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 20px;
    gap: 12px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.filter-tabs::-webkit-scrollbar {
    display: none;
}

.filter-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: #6366f1;
    border: 2px solid #6366f1;
    padding: 16px 32px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    flex-shrink: 0;
    min-width: fit-content;
    position: relative;
    letter-spacing: 0.3px;
    /* Prevent text selection on mobile */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* Improve touch responsiveness */
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.filter-tab:hover {
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
}

.filter-tab.active {
    background: #6366f1;
    border-color: #6366f1;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
}

.filter-tab.active:hover {
    background: #5b5bd6;
    border-color: #5b5bd6;
}

.filter-tab i {
    font-size: 16px;
    transition: transform 0.2s ease;
}

.filter-tab:hover i {
    transform: scale(1.05);
}

.filter-tab span {
    position: relative;
    z-index: 1;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

/* Ensure minimum height for empty grids */
.products-grid:empty {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Better grid behavior for different screen sizes */
@media (min-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1200px;
    }
}

@media (min-width: 900px) and (max-width: 1199px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 900px;
    }
}

@media (min-width: 600px) and (max-width: 899px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }
}

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

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

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

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

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

.product-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.product-placeholder i {
    font-size: 48px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.product-placeholder span {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.sale-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #e74c3c;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.best-seller-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #f39c12;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-info {
    padding: 20px;
}

.product-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
    line-height: 1.3;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.current-price {
    font-size: 20px;
    font-weight: 700;
    color: #e74c3c;
}

.original-price {
    font-size: 16px;
    text-decoration: line-through;
    color: #95a5a6;
}

.discount-percentage {
    background-color: #27ae60;
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
}

.whatsapp-btn {
    flex: 1;
    background-color: #25d366;
    color: white;
    padding: 10px 8px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
}

.whatsapp-btn:hover {
    background-color: #128c7e;
    transform: translateY(-1px);
}

.product-buttons {
    display: flex;
    gap: 8px;
    margin-top: 15px;
}

.view-details-btn {
    flex: 1;
    background-color: #e74c3c;
    color: white;
    padding: 10px 8px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
}

.view-details-btn:hover {
    background-color: #c0392b;
    transform: translateY(-1px);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #7f8c8d;
}

.about-image img {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Announcements Section */
.announcements {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.announcement-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.announcement-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
}

.announcement-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #7f8c8d;
    margin-bottom: 20px;
}

.text-full {
    white-space: pre-line;
    transition: all 0.3s ease;
}

.read-more {
    color: #e74c3c;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    cursor: pointer;
}

.read-more:hover {
    color: #c0392b;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.social-links a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: white;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.contact-info p {
    margin-bottom: 10px;
    color: #bdc3c7;
    font-size: 14px;
    line-height: 1.5;
}

.contact-info a {
    color: #e74c3c;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.payment-methods {
    display: flex;
    gap: 10px;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: #bdc3c7;
    font-size: 14px;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: white;
}

/* Social Media Icons in Footer */
.social-media-icons {
    text-align: center;
}

.social-media-icons h4 {
    color: #bdc3c7;
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 500;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #34495e;
    color: #bdc3c7;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icons a:hover {
    background-color: #e74c3c;
    color: white;
    transform: translateY(-2px);
}

.social-icons a[title="Facebook"]:hover {
    background-color: #1877f2;
}

.social-icons a[title="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icons a[title="WhatsApp"]:hover {
    background-color: #25d366;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    pointer-events: none;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Large Screen Adjustments */
@media (min-width: 1400px) {
    .hero-carousel {
        height: 45vh;
        max-height: 550px;
    }
    
    .hero-text h2 {
        font-size: 2.5rem;
    }
    
    .container {
        max-width: 1400px;
    }
}

/* Desktop styles - explicit override */
@media (min-width: 641px) {
    .nav-menu {
        position: static !important;
        top: auto !important;
        left: auto !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        padding-top: 0 !important;
        transition: none !important;
        z-index: auto !important;
    }
    
    .nav-list {
        flex-direction: row !important;
        gap: 30px !important;
        text-align: left !important;
    }
    
    .nav-list a {
        font-size: 14px !important;
    }
    
    .mobile-menu-btn {
        display: none !important;
    }
    
    .hero-content {
        flex-direction: row !important;
        text-align: left !important;
        height: 100% !important;
    }
    
    .hero-text {
        flex: 1 !important;
        padding: 40px !important;
        order: 0 !important;
    }
    
    .hero-image {
        flex: 1 !important;
        padding: 0 !important;
        order: 0 !important;
        width: 100% !important;
    }
}

/* Tablet Responsive */
@media (max-width: 968px) {
    .search-container {
        max-width: 500px;
    }
    
    .search-input {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .search-button {
        padding: 14px 20px;
        min-width: 100px;
        font-size: 15px;
    }
    
    .filter-tabs {
        padding: 0 15px;
        gap: 12px;
    }
    
    .filter-tab {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .filter-tab i {
        font-size: 15px;
    }
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .hero-carousel {
        height: 60vh;
        min-height: 400px;
        max-height: none;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        position: relative;
    }
    
    .slide {
        height: 100%;
        width: 100%;
    }
    
    .hero-content {
        flex-direction: column;
        height: 100%;
        padding: 0;
        justify-content: space-between;
        align-items: stretch;
        text-align: center;
        position: relative;
    }
    
    .hero-text {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        padding: 30px 20px;
        background: rgba(44, 62, 80, 0.85);
        z-index: 2;
        margin: 0;
    }
    
    .hero-text h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
        line-height: 1.2;
        color: white;
    }
    
    .hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 65%;
        z-index: 1;
    }
    
    .hero-image img {
        width: 100%;
        height: 65%;
        object-fit: cover;
        object-position: center;
        border-radius: 0;
    }
    
    .slider-indicators {
        bottom: 15px;
        gap: 8px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .prev-arrow,
    .next-arrow {
        display: none !important;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .nav-list a {
        font-size: 18px;
    }
    
    .mobile-menu-btn {
        display: block;
        font-size: 20px;
    }
    
    .hero-text h2 {
        font-size: 2.5rem;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        height: 100%;
        min-height: 100vh;
    }
    
    .hero-text {
        flex: none;
        padding: 20px 20px 40px 20px;
        order: 2;
        min-height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: rgba(44, 62, 80, 0.9);
        margin: 0;
        width: 100%;
    }
    
    .hero-text h2 {
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        margin-bottom: 20px;
        font-size: 1.2rem;
    }
    
    .shop-now-btn {
        display: block !important;
        margin: 20px auto 0 auto;
        padding: 12px 25px;
        font-size: 14px;
        border: none;
        cursor: pointer;
        background-color: #e74c3c !important;
        color: white !important;
        border-radius: 5px;
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        z-index: 10;
        position: relative;
    }
    
    .hero-image {
        flex: 1;
        padding: 0;
        order: 1;
        width: 100%;
    }
    
    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)) !important;
        gap: 10px;
        justify-content: center;
    }
    
    .product-card {
        margin-bottom: 15px;
    }
    
    .product-card .product-info {
        padding: 15px 10px;
    }
    
    .product-card .product-name {
        font-size: 14px;
        line-height: 1.2;
    }
    
    .product-card .current-price {
        font-size: 16px;
    }
    
    .product-card .whatsapp-btn,
    .product-card .view-details-btn {
        padding: 8px 6px;
        font-size: 10px;
        gap: 4px;
    }
    
    .product-buttons {
        gap: 6px;
        margin-top: 12px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .social-media-icons {
        order: -1;
        margin-bottom: 20px;
    }
    
    .social-icons {
        gap: 20px;
    }
    
    .social-icons a {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .search-section {
        align-items: center;
        margin: 20px 0;
    }
    
    .search-container {
        flex-direction: column;
        width: 100%;
    }
    
    .search-input {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .search-button {
        width: 100%;
        justify-content: center;
    }
    
/* Mobile Responsive */
@media (max-width: 640px) {
    .search-section {
        margin: 20px 0;
        padding: 0 15px;
    }
    
    .search-container {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .search-input {
        padding: 14px 20px;
        font-size: 16px;
        width: 100%;
    }
    
    .search-button {
        width: 100%;
        padding: 14px 20px;
        justify-content: center;
    }
    
    .category-filter-section {
        margin: 20px 0;
    }
    
    .filter-tabs {
        padding: 0 15px;
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .filter-tab {
        padding: 12px 24px;
        font-size: 14px;
        border-radius: 40px;
    }
    
    .filter-tab i {
        font-size: 14px;
    }
    
    .pagination-controls {
        flex-direction: column;
        gap: 15px;
    }
    
    .pagination-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .filter-tabs {
        padding: 0 10px;
        gap: 6px;
    }
    
    .filter-tab {
        padding: 8px 14px;
        font-size: 12px;
        border-radius: 18px;
    }
    
    .filter-tab i {
        font-size: 11px;
    }
    
    .product-placeholder {
        padding: 15px;
    }
    
    .product-placeholder i {
        font-size: 36px;
        margin-bottom: 8px;
    }
    
    .product-placeholder span {
        font-size: 12px;
    }
    
    .hero-carousel {
        height: 50vh;
        min-height: 350px;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
    
    .hero-text h2 {
        font-size: 1.6rem;
    }
    
    .hero-text {
        padding: 25px 15px;
    }
    
    .slider-indicators {
        bottom: 12px;
        gap: 6px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        justify-content: center;
    }
    
    .featured-products {
        padding: 50px 0;
    }
    
    .about-section,
    .announcements {
        padding: 50px 0;
    }
    
    .announcement-card {
        padding: 30px 20px;
    }
    
    .social-icons {
        gap: 15px;
    }
    
    .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}
