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

:root {
    --primary-orange: #F7931E;
    --primary-navy: #1E3A5F;
    --light-gray: #f5f5f5;
    --dark-gray: #333;
    --white: #ffffff;
    --success-green: #10b981;
    --danger-red: #ef4444;
}

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

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

/* Header Styles */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 2rem;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: 2px solid var(--primary-navy);
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-navy);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.mobile-menu-btn:hover {
    background-color: var(--primary-navy);
    color: var(--white);
}

.menu-icon {
    display: block;
    line-height: 1;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text h1 {
    font-size: 1.5rem;
    color: var(--primary-navy);
    font-weight: 700;
}

.logo-text p {
    font-size: 0.75rem;
    color: var(--primary-orange);
}

.search-bar {
    flex: 1;
    max-width: 500px;
    display: flex;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 0.75rem 3rem 0.75rem 1rem;
    border: 2px solid var(--primary-navy);
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.search-bar input:focus {
    border-color: var(--primary-orange);
}

.search-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.2s;
}

.search-btn:hover {
    transform: translateY(-50%) scale(1.1);
}

.mobile-search {
    display: none;
    padding-bottom: 1rem;
    position: relative;
}

.mobile-search input {
    width: 100%;
    padding: 0.75rem 3rem 0.75rem 1rem;
    border: 2px solid var(--primary-navy);
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.3s;
    position: relative;
}

.icon-btn:hover {
    background-color: var(--light-gray);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--danger-red);
    color: var(--white);
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
    border-radius: 50%;
    min-width: 20px;
    text-align: center;
    display: none;
}

.cart-badge.active {
    display: block;
}

/* Categories Menu Navigation (Header) */
.categories-menu {
    background-color: var(--light-gray);
    border-top: 1px solid #e5e5e5;
}

.categories-scroll {
    display: flex;
    gap: 0.5rem;
    padding: 1rem 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.categories-scroll::-webkit-scrollbar {
    display: none;
}

.category-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--white);
    border: 2px solid var(--primary-navy);
    color: var(--primary-navy);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: all 0.3s;
}

.category-btn:hover {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    color: var(--white);
    transform: translateY(-2px);
}

.category-btn.active {
    background-color: var(--primary-navy);
    color: var(--white);
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-orange) 100%);
}

.slider-container {
    position: relative;
    height: 500px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
}

.slide-text {
    flex: 1;
    color: var(--white);
    max-width: 600px;
}

.slide-text h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: slideInLeft 0.8s ease-out;
    padding: 0 5rem;
}

.slide-text p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: slideInLeft 0.8s ease-out 0.2s backwards;
    padding: 0 5rem;
}

.slide-btn {
    background-color: var(--white);
    color: var(--primary-navy);
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s;
    animation: slideInLeft 0.8s ease-out 0.4s backwards;
}

.slide-btn:hover {
    transform: scale(1.05);
}

.slide-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-showcase {
    position: relative;
    animation: slideInRight 0.8s ease-out;
}

.showcase-icon {
    font-size: 15rem;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.showcase-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

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

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.1;
    }
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
    border: none;
    font-size: 1rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s;
    z-index: 10;
}

.slider-nav:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.slider-nav.prev {
    left: 20px;
    border-radius: 10px 0 0 10px;
}

.slider-nav.next {
    right: 20px;
    border-radius: 0 10px 10px 0;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

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

.dot.active {
    background-color: var(--white);
}

/* Featured Products Slider */
.featured-section {
    padding: 4rem 0;
    background-color: var(--white);
}

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

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

.section-title p {
    font-size: 1.2rem;
    color: #666;
}

.featured-slider {
    position: relative;
}

.featured-products {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scrollbar-width: none;
}

.featured-products::-webkit-scrollbar {
    display: none;
}

.featured-card {
    min-width: 300px;
    background-color: var(--light-gray);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.featured-card:hover {
    transform: translateY(-10px);
}

.featured-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-orange);
    color: var(--white);
    border: none;
    font-size: 2rem;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s;
    z-index: 10;
}

.featured-nav:hover {
    background-color: var(--primary-navy);
}

.featured-nav.prev {
    left: -20px;
}

.featured-nav.next {
    right: -20px;
}

/* Categories Slider Section */
.categories-slider-section {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.categories-slider {
    position: relative;
}

.categories-showcase {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scrollbar-width: none;
}

.categories-showcase::-webkit-scrollbar {
    display: none;
}

.category-card {
    min-width: 250px;
    background-color: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 3px solid transparent;
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.category-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-orange) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon {
    font-size: 4rem;
}

.category-card h3 {
    font-size: 1.3rem;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.category-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Categories Slider Navigation Buttons */
.categories-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-orange);
    color: var(--white);
    border: none;
    font-size: 2rem;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s;
    z-index: 10;
}

.categories-slider-nav:hover {
    background-color: var(--primary-navy);
}

.categories-slider-nav.prev {
    left: -20px;
}

.categories-slider-nav.next {
    right: -20px;
}

/* Main Content */
.main-content {
    padding: 2rem 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
}

/* Products Section */
.section-header {
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.section-header p {
    color: #666;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

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

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

.product-image {
    background: linear-gradient(135deg, #fff5e6 0%, #ffe4b3 100%);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

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

.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--white);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.wishlist-btn:hover {
    background-color: #ffebee;
    transform: scale(1.1);
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.product-rating span {
    color: #666;
    font-size: 0.9rem;
}

.product-category {
    color: var(--primary-orange);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--success-green);
}

.add-to-cart-btn {
    background-color: var(--primary-navy);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.add-to-cart-btn:hover {
    background-color: var(--primary-orange);
}

/* Cart Sidebar */
.cart-sidebar {
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
}

.cart-header h3 {
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 1rem;
    max-height: 400px;
}

.empty-cart {
    text-align: center;
    color: #999;
    padding: 3rem 0;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.cart-item-image {
    background: linear-gradient(135deg, #fff5e6 0%, #ffe4b3 100%);
    width: 70px;
    height: 70px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.25rem;
}

.cart-item-price {
    color: var(--success-green);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    background-color: var(--light-gray);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 700;
    transition: background-color 0.3s;
}

.quantity-btn:hover {
    background-color: var(--primary-orange);
    color: var(--white);
}

.quantity-controls span {
    font-weight: 700;
    min-width: 30px;
    text-align: center;
}

.remove-btn {
    background: none;
    border: none;
    color: var(--danger-red);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.cart-footer {
    border-top: 2px solid #e5e5e5;
    padding-top: 1rem;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.total-amount {
    color: var(--success-green);
}

.checkout-btn {
    width: 100%;
    background-color: var(--success-green);
    color: var(--white);
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

.checkout-btn:hover {
    background-color: #059669;
}

/* Footer */
.footer {
    background-color: var(--primary-navy);
    color: var(--white);
    margin-top: 4rem;
    padding: 3rem 0 1rem;
}

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

.footer-col h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-orange);
}

.footer-col h5 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-col p {
    color: #ccc;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
    color: #ccc;
    cursor: pointer;
    transition: color 0.3s;
}

.footer-col ul li:hover {
    color: var(--primary-orange);
}

.footer-col ul li a {
    margin-bottom: 0.5rem;
    color: #ccc;
    cursor: pointer;
    transition: color 0.3s;
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: var(--primary-orange);
}

/* Footer Divider */
.footer-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    margin: 2rem 0 1.5rem 0;
}

.footer-bottom {
    text-align: center;
    color: #ccc;
}

.footer-bottom p {
    margin: 0;
    line-height: 1.6;
}

.footer-bottom a {
    color: chocolate;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: var(--primary-orange);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .cart-sidebar {
        position: relative;
        top: 0;
        max-height: none;
    }

    .slide-text h2 {
        font-size: 2.5rem;
    }

    .showcase-icon {
        font-size: 10rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .search-bar {
        display: none;
    }

    .mobile-search {
        display: block;
    }

    .slide-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .slide-text {
        max-width: 100%;
    }

    .slide-text h2 {
        font-size: 2rem;
    }

    .slide-text p {
        font-size: 1.2rem;
    }

    .showcase-icon {
        font-size: 8rem;
    }

    .slider-container {
        height: 600px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .featured-nav, .categories-slider-nav {
        display: none;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .logo-img {
        height: 40px;
    }

    .slide-text h2 {
        font-size: 1.5rem;
    }

    .showcase-icon {
        font-size: 6rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    animation: pulse-whatsapp 2s infinite;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .cart-sidebar {
        position: relative;
        top: 0;
        max-height: none;
    }

    .slide-text h2 {
        font-size: 2.5rem;
    }

    .showcase-icon {
        font-size: 10rem;
    }
}