* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

/* Main Header Wrapper */
.main-header {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Top Banner */
.top-banner {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.top-banner p {
    margin: 0;
}

/* Header Section */
.header {
    background: transparent;
    padding: 18px 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    gap: 40px;
}

/* Header Left - Logo */
.header-left {
    flex: 0 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 700;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo i {
    font-size: 28px;
    color: #000;
    font-weight: 700;
}

.logo span {
    letter-spacing: 0.5px;
}

/* Header Middle - Shop Info */
.header-middle {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}

.shop-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.shop-time,
.shop-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.shop-time i {
    font-size: 14px;
    color: #333;
    width: 16px;
    text-align: center;
    opacity: 0.7;
}

.shop-phone i {
    font-size: 14px;
    color: #333;
    width: 16px;
    text-align: center;
    opacity: 0.7;
}

/* Header Right - Icons */
.header-right {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-end;
}

.icon-group {
    display: flex;
    gap: 15px;
    align-items: center;
}

.icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: white;
    font-size: 16px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #02a863 0%, #02a863 100%);
    box-shadow: 0 2px 6px rgba(39, 174, 96, 0.3);
    font-weight: 700;
    position: relative;
}

.icon-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.4);
    background: linear-gradient(135deg, #017a52 0%, #02a863 100%);
}

.icon-link:active {
    transform: translateY(-1px);
}

.badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff8c00;
    color: white;
    font-size: 11px;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border: 2px solid white;
}

/* Navigation Bar */
.navbar {
    background: linear-gradient(90deg, #02a863 0%, #02a863 100%);
    padding: 0;
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.15);
    border-top: none;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 50px;
    gap: 40px;
}

/* Menu Items */
.menu-items {
    display: flex;
    list-style: none;
    gap: 5px;
    flex: 1;
    align-items: center;
}

.menu-item-dropdown {
    position: relative;
}

.menu-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 6px;
}

.menu-link i {
    font-size: 11px;
    transition: transform 0.3s ease;
    color: white;
}

.menu-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.15);
}

.menu-link:hover i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    list-style: none;
    min-width: 210px;
    padding: 8px 0;
    border-radius: 10px;
    margin-top: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 100;
    border: 1px solid #e8e9ea;
}

.menu-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    color: #333;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    display: block;
    padding: 11px 20px;
    transition: all 0.3s ease;
    letter-spacing: 0.2px;
}

.dropdown-link:hover {
    background: #f0f8f4;
    color: #02a863;
    padding-left: 26px;
}

/* Search Bar */
.search-bar {
    display: flex;
    align-items: center;
    background: white;
    border: none;
    border-radius: 50px;
    padding: 5px 8px 5px 16px;
    transition: all 0.3s ease;
    width: 380px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    gap: 8px;
}

.search-bar:hover,
.search-bar:focus-within {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.search-input {
    background: none;
    border: none;
    outline: none;
    color: #333;
    font-size: 13px;
    width: 100%;
    padding: 0 0 0 12px;
    font-weight: 500;
    caret-color: #333;
}

.search-input::placeholder {
    color: #999;
    font-weight: 600;
}

.search-input:not(:focus) {
    caret-color: transparent;
}

.search-bar:focus-within .search-input {
    color: #333;
    caret-color: #333;
}

.search-bar:focus-within .search-input::placeholder {
    color: #999;
}

.search-btn {
    background: linear-gradient(135deg, #02a863 0%, #02a863 100%);
    border: none;
    color: white;
    font-size: 15px;
    cursor: pointer;
    padding: 10px 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    font-weight: 700;
    width: 40px;
    height: 40px;
}

.search-btn:hover {
    background: linear-gradient(135deg, #017a52 0%, #02a863 100%);
    transform: scale(1.1);
}

.search-bar:focus-within .search-btn {
    color: white;
}

/* Carousel Section */
.carousel-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}

.carousel-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.carousel-slide {
    display: none;
    flex-direction: row;
    align-items: center;
    gap: 60px;
    padding: 0 50px;
    animation: fadeIn 0.8s ease-in-out;
}

.carousel-slide.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeFromTop {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-content {
    flex: 1;
}

.carousel-image {
    flex: 1;
}

.carousel-slide:nth-child(2) .carousel-image {
    order: -1;
}

.image-placeholder {
    width: 100%;
    max-width: 500px;
    height: 400px;
    border-radius: 15px;
    background: linear-gradient(135deg, #f0f8f4 0%, #e8f5e9 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 2px solid #d4f1e4;
}

.image-placeholder i {
    font-size: 80px;
    color: #02a863;
    opacity: 0.8;
}

.image-placeholder p {
    font-size: 18px;
    font-weight: 600;
    color: #02a863;
}

.carousel-image:hover .image-placeholder {
    transform: scale(1.05);
}

.carousel-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.carousel-image:hover img {
    transform: scale(1.05);
}

.slide-text {
    opacity: 0;
}

.carousel-slide.active .slide-text {
    opacity: 1;
}

.slide-title {
    font-size: 36px;
    font-weight: 800;
    color: #000;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    animation: fadeFromTop 0.8s ease-out 0.3s both;
}

.slide-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #02a863;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
    animation: fadeFromTop 0.8s ease-out 0.4s both;
}

.slide-description {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 500px;
    animation: fadeFromTop 0.8s ease-out 0.5s both;
}

.slide-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.feature {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: fadeFromTop 0.8s ease-out;
}

.feature:nth-child(1) {
    animation-delay: 0.6s;
}

.feature:nth-child(2) {
    animation-delay: 0.7s;
}

.feature:nth-child(3) {
    animation-delay: 0.8s;
}

.carousel-slide.active .feature {
    animation-fill-mode: both;
}

.carousel-slide:not(.active) .feature {
    opacity: 0;
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    letter-spacing: 0.5px;
    animation: fadeFromTop 0.8s ease-out 0.9s both;
}

.btn-primary {
    background: linear-gradient(135deg, #02a863 0%, #02a863 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(2, 168, 99, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(2, 168, 99, 0.4);
    background: linear-gradient(135deg, #017a52 0%, #02a863 100%);
}

.btn-primary:active {
    transform: translateY(-1px);
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    padding: 0 50px;
}

.carousel-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e0e0e0;
    color: #02a863;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: #02a863;
    color: white;
    border-color: #02a863;
    transform: scale(1.1);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d0d0d0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    user-select: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.dot:focus {
    outline: none;
    box-shadow: none;
}

.dot:active {
    outline: none;
}

.dot.active {
    background: #02a863;
    width: 32px;
    border-radius: 6px;
}

.dot:hover {
    background: #02a863;
}

/* Responsive Design Carousel */
@media (max-width: 1024px) {
    .carousel-slide {
        gap: 40px;
        padding: 0 30px;
    }

    .slide-title {
        font-size: 28px;
    }

    .slide-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .carousel-slide {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }

    .carousel-slide:nth-child(2) .carousel-image {
        order: 0;
    }

    .slide-title {
        font-size: 24px;
    }

    .slide-subtitle {
        font-size: 14px;
    }

    .slide-description {
        font-size: 14px;
    }

    .carousel-controls {
        padding: 0 20px;
        gap: 20px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 30px;
        gap: 20px;
    }

    .navbar-container {
        padding: 12px 30px;
        gap: 20px;
    }

    .search-bar {
        width: 280px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        padding: 0 20px;
        gap: 15px;
    }

    .header-middle {
        order: 2;
        flex: auto;
        padding: 0;
    }

    .header-left {
        order: 1;
        flex: auto;
    }

    .header-right {
        order: 3;
        justify-content: center;
        width: 100%;
    }

    .logo {
        font-size: 18px;
    }

    .logo i {
        font-size: 24px;
    }

    .shop-time,
    .shop-phone {
        font-size: 12px;
    }

    .navbar-container {
        flex-direction: column;
        padding: 12px 20px;
        gap: 12px;
    }

    .menu-items {
        flex-direction: column;
        gap: 8px;
        width: 100%;
        text-align: center;
    }

    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        margin-top: 0;
        border-radius: 0;
        box-shadow: none;
        border: none;
    }

    .menu-item-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
    }

    .search-bar {
        width: 100%;
    }

    .search-input {
        width: 100%;
    }
}

/* Section Container */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #000;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 16px;
    color: #666;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Featured Menu Section */
.featured-menu {
    background: white;
    padding: 70px 0;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.menu-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: #02a863;
}

.menu-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #f0f8f4 0%, #e8f5e9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.menu-image i {
    font-size: 70px;
    color: #02a863;
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.menu-card:hover .menu-image i {
    transform: scale(1.1);
}

.price-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #02a863 0%, #02a863 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(2, 168, 99, 0.3);
}

.menu-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.menu-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.menu-info p {
    font-size: 13px;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.6;
}

.rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
    font-size: 13px;
}

.rating i {
    color: #ffc107;
    font-size: 12px;
}

.rating span {
    color: #999;
    margin-left: 4px;
}

.btn-secondary {
    background: linear-gradient(135deg, #02a863 0%, #02a863 100%);
    color: white;
    width: 100%;
    padding: 12px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(2, 168, 99, 0.3);
    background: linear-gradient(135deg, #017a52 0%, #02a863 100%);
}

.section-footer {
    text-align: center;
}

/* Popular Categories Section */
.popular-categories {
    background: white;
    padding: 70px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.category-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e8e9ea;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
    border-color: #02a863;
    background: linear-gradient(135deg, #f0f8f4 0%, #f8f9fa 100%);
}

.category-icon {
    font-size: 48px;
    color: #02a863;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.2) rotate(10deg);
}

.category-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 6px;
    letter-spacing: -0.2px;
}

.category-card p {
    font-size: 13px;
    color: #999;
    margin-bottom: 14px;
}

.category-link {
    display: inline-block;
    color: #02a863;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border: 1px solid #02a863;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.category-card:hover .category-link {
    background: #02a863;
    color: white;
    transform: translateX(4px);
}

/* Trending Items Section */
.trending-items {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 70px 0;
}

.trending-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    text-align: left !important;
}

.trending-header div {
    flex: 1;
}

.trending-header .btn {
    white-space: nowrap;
    animation: none;
    flex-shrink: 0;
    margin-left: 20px;
}

.trending-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.trending-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
}

.trending-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: #02a863;
}

.trending-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #02a863 0%, #02a863 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(2, 168, 99, 0.3);
}

.trending-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #f0f8f4 0%, #e8f5e9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.trending-image i {
    font-size: 60px;
    color: #02a863;
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.trending-card:hover .trending-image i {
    transform: scale(1.15);
}

.trending-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: #000;
    padding: 16px 16px 6px;
    letter-spacing: -0.2px;
}

.trending-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 16px;
    margin-bottom: 6px;
    font-size: 12px;
}

.trending-rating i {
    color: #ffc107;
    font-size: 13px;
}

.trending-rating span {
    color: #555;
    font-weight: 600;
}

.trending-orders {
    font-size: 11px;
    color: #999;
    padding: 0 16px;
    margin-bottom: 12px;
}

.trending-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px 16px;
}

.trending-footer .price {
    font-size: 16px;
    font-weight: 700;
    color: #02a863;
}

.quick-add {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #02a863 0%, #02a863 100%);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: 700;
}

.quick-add:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(2, 168, 99, 0.3);
}

/* Special Products Banners Section */
.special-banners {
    background: white;
    padding: 60px 0;
}

.banners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.banner-card {
    background: linear-gradient(135deg, #f0f8f4 0%, #e8f5e9 100%);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #d4f1e4;
    overflow: hidden;
    position: relative;
}

.banner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(2, 168, 99, 0.15);
    border-color: #02a863;
}

.banner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(2, 168, 99, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.banner-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

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

.banner-image i {
    font-size: 60px;
    color: #02a863;
    opacity: 0.9;
}

.banner-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.banner-label {
    font-size: 11px;
    font-weight: 700;
    color: #02a863;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin: 0 0 8px 0;
}

.banner-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: #000;
    margin: 0 0 8px 0;
    letter-spacing: -0.3px;
}

.banner-price {
    font-size: 20px;
    font-weight: 700;
    color: #02a863;
    margin: 0 0 6px 0;
}

.banner-desc {
    font-size: 13px;
    color: #666;
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.banner-card .btn {
    padding: 11px 24px;
    font-size: 13px;
    animation: none;
}

/* Flash Sale Section */
.flash-sale {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 70px 0;
}

.sale-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.sale-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #000;
    margin: 0 0 6px 0;
    letter-spacing: -0.5px;
}

.sale-header p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.sale-timer {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.time-box {
    background: linear-gradient(135deg, #02a863 0%, #02a863 100%);
    color: white;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    min-width: 45px;
    text-align: center;
}

.time-label {
    font-size: 11px;
    color: #666;
    font-weight: 600;
    margin-right: 8px;
}

.sale-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.sale-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    padding: 16px;
}

.sale-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: #02a863;
}

.sale-discount {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ff5733 0%, #ff5733 100%);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 87, 51, 0.3);
}

.sale-image {
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, #f0f8f4 0%, #e8f5e9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}

.sale-image i {
    font-size: 56px;
    color: #02a863;
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.sale-card:hover .sale-image i {
    transform: scale(1.2);
}

.sale-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
    letter-spacing: -0.2px;
}

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

.original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    font-weight: 500;
}

.sale-price-tag {
    font-size: 18px;
    font-weight: 700;
    color: #ff5733;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, #02a863 0%, #02a863 100%);
    padding: 60px 0;
    text-align: center;
    color: white;
}

.newsletter .section-container {
    max-width: 600px;
}

.newsletter h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.newsletter p {
    font-size: 16px;
    margin-bottom: 28px;
    opacity: 0.95;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    background: white;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.newsletter-form .btn-primary {
    background: white;
    color: #02a863;
    white-space: nowrap;
    animation: none;
}

.newsletter-form .btn-primary:hover {
    background: #f0f8f4;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 60px 0 0;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 50px 0;
    border-bottom: 1px solid #333;
}

.footer-column h3 {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 18px;
    letter-spacing: -0.2px;
}

.footer-column p {
    font-size: 13px;
    color: #aaa;
    line-height: 1.8;
    margin: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a,
.footer-links li span {
    font-size: 13px;
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links li a:hover {
    color: #02a863;
    transform: translateX(4px);
}

.footer-links li i {
    font-size: 12px;
    color: #02a863;
}

.footer-column:last-child .footer-links {
    display: flex;
    flex-direction: row;
    gap: 25px;
    flex-wrap: wrap;
    align-items: center;
}

.footer-column:last-child .footer-links li {
    margin-bottom: 0;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(2, 168, 99, 0.1);
    border: 1px solid #02a863;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #02a863;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-links a:hover {
    background: #02a863;
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 13px;
    color: #999;
    margin: 0;
}

.payment-methods {
    display: flex;
    gap: 12px;
    font-size: 24px;
    color: #02a863;
}

.payment-methods i {
    opacity: 0.7;
    transition: all 0.3s ease;
}

.payment-methods i:hover {
    opacity: 1;
    transform: translateY(-3px);
}

/* Responsive Design - Medium Screens */
@media (max-width: 1024px) {
    .section-container {
        padding: 0 30px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .footer-content {
        gap: 30px;
        padding: 40px 0;
    }

    .footer-container {
        padding: 0 30px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form .btn-primary {
        width: 100%;
    }

    .footer-column:last-child .footer-links {
        gap: 15px;
    }

    .sale-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .sale-timer {
        width: 100%;
        justify-content: flex-start;
    }

    .trending-header {
        flex-wrap: wrap;
        gap: 20px;
    }

    .trending-header .btn {
        margin-left: 0;
    }

    .banners-grid {
        gap: 18px;
    }

    .banner-card {
        padding: 20px;
        gap: 16px;
    }

    .banner-image {
        width: 100px;
        height: 100px;
    }

    .banner-image i {
        font-size: 48px;
    }

    .banner-card h3 {
        font-size: 18px;
    }

    .banner-price {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .section-container {
        padding: 0 20px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .section-header p {
        font-size: 14px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .category-card {
        padding: 20px 16px;
    }

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

    .trending-card h3 {
        font-size: 14px;
        padding: 12px 12px 4px;
    }

    .trending-orders {
        padding: 0 12px;
    }

    .trending-footer {
        padding: 8px 12px 12px;
    }

    .sale-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .sale-card {
        padding: 12px;
    }

    .sale-image {
        height: 140px;
        margin-bottom: 10px;
    }

    .sale-card h3 {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-container {
        padding: 0 20px;
    }

    .newsletter h2 {
        font-size: 24px;
    }

    .section-header {
        margin-bottom: 35px;
    }

    .featured-menu,
    .popular-categories,
    .trending-items,
    .flash-sale,
    .newsletter {
        padding: 50px 0;
    }

    .sale-header h2 {
        font-size: 24px;
    }

    .time-box {
        padding: 8px 10px;
        font-size: 16px;
        min-width: 40px;
    }

    .time-label {
        font-size: 10px;
        margin-right: 4px;
    }

    .special-banners {
        padding: 40px 0;
    }

    .banners-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .banner-card {
        padding: 16px;
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }

    .banner-image {
        width: 90px;
        height: 90px;
    }

    .banner-image i {
        font-size: 42px;
    }

    .banner-card h3 {
        font-size: 16px;
    }

    .banner-price {
        font-size: 14px;
    }

    .banner-desc {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .trending-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .trending-header .btn {
        width: 100%;
        margin-left: 0;
    }

    .footer-column:last-child .footer-links {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .footer-column:last-child .footer-links li {
        white-space: normal;
    }
}
