* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
}

/* Top Bar */
.top-bar {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #ff0000;
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff0000;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #ff0000;
}

/* Main Navigation */
.navbar {
    background-color: #000000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #ff0000;
}

.logo h1 {
    color: #ff0000;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.search-bar {
    display: flex;
    align-items: center;
    background: #1a1a1a;
    border: 1px solid #ff0000;
    border-radius: 4px;
    padding: 0.5rem;
    width: 40%;
}

.search-bar input {
    border: none;
    outline: none;
    width: 100%;
    padding: 0.5rem;
    background: #1a1a1a;
    color: #ffffff;
}

.search-bar input::placeholder {
    color: #666666;
}

.search-bar button {
    background: none;
    border: none;
    color: #ff0000;
    cursor: pointer;
    padding: 0.5rem;
}

.cart-icon {
    color: #ff0000;
    font-size: 1.5rem;
    position: relative;
    cursor: pointer;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff0000;
    color: white;
    font-size: 0.8rem;
    padding: 0.2rem 0.5rem;
    border-radius: 50%;
}

/* Category Navigation */
.category-nav {
    background-color: #1a1a1a;
    padding: 0.5rem 2rem;
    border-bottom: 2px solid #ff0000;
}

.category-links {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 2rem;
}

.category-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-links a:hover {
    color: #ff0000;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1a1a1a;
    min-width: 200px;
    box-shadow: 0 2px 5px rgba(255,0,0,0.2);
    border-radius: 4px;
    padding: 0.5rem 0;
    z-index: 1000;
    border: 1px solid #ff0000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    color: #ffffff;
    padding: 0.5rem 1rem;
    display: block;
}

.dropdown-menu a:hover {
    background-color: #ff0000;
    color: #ffffff;
}


/* --- ABOUT US PAGE STYLES --- */
/* Banner Section */
.about-banner {
    position: relative;
    height: 700px;
    background: url('IMAGES/banner/19-min.png') no-repeat top center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-banner h1 {
    color: #ffffff;
    font-size: 3.5em;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-section {
    padding: 60px 20px 40px 20px;
    background: #000;
    color: #fff;
   
}

.about-section.black-bg {
    background: #111;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.about-title {
    color: #ff0000;
    font-size: 2.2em;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.about-text {
    font-size: 1.15em;
    line-height: 1.7;
    color: #eee;
    margin-bottom: 10px;
}

/* Features Section */
.about-features .features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.feature-box {
    background: #181818;
    border-radius: 12px;
    padding: 32px 24px 24px 24px;
    width: 230px;
    box-shadow: 0 2px 12px rgba(255,0,0,0.08);
    color: #fff;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-box i {
    color: #ff0000;
    margin-bottom: 12px;
}

.feature-box h4 {
    color: #ff0000;
    margin-bottom: 10px;
    font-size: 1.1em;
    font-weight: bold;
}

.feature-box p {
    color: #ccc;
    font-size: 1em;
}

.feature-box:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 6px 24px rgba(255,0,0,0.13);
}

/* Team Section */
.about-team .team-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.team-card {
    background: #181818;
    border-radius: 12px;
    padding: 28px 20px 20px 20px;
    width: 210px;
    box-shadow: 0 2px 12px rgba(255,0,0,0.08);
    color: #fff;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.team-card:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 6px 24px rgba(255,0,0,0.13);
}

.team-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 14px;
    border: 3px solid #ff0000;
}

.team-card h4 {
    color: #ff0000;
    margin-bottom: 6px;
    font-size: 1.1em;
    font-weight: bold;
}

.team-card p {
    color: #ccc;
    font-size: 0.98em;
}

@media (max-width: 900px) {
    .about-features .features, .about-team .team-row {
        gap: 20px;
    }
    .feature-box, .team-card {
        width: 170px;
        padding: 18px 10px 14px 10px;
    }
}

@media (max-width: 600px) {
    .about-features .features, .about-team .team-row {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }
    .about-section {
        padding: 30px 5px 20px 5px;
    }
    .about-title {
        font-size: 1.3em;
    }
}

/* Delivery Partners Section */
.about-partners .partners-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.partner-card {
    background: #181818;
    border-radius: 12px;
    padding: 28px 20px 20px 20px;
    width: 250px;
    box-shadow: 0 2px 12px rgba(255,0,0,0.08);
    color: #fff;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.partner-card:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 6px 24px rgba(255,0,0,0.13);
}

.partner-img {
    width: 120px;
    height: auto;
    margin-bottom: 14px;
    filter: brightness(0) invert(1);
}

.partner-card h4 {
    color: #ff0000;
    margin-bottom: 6px;
    font-size: 1.1em;
    font-weight: bold;
}

.partner-card p {
    color: #ccc;
    font-size: 0.98em;
}

@media (max-width: 900px) {
    .about-banner {
        height: 200px;
    }
    
    .about-banner h1 {
        font-size: 2.5em;
    }

    .about-partners .partners-row {
        gap: 20px;
    }
    
    .partner-card {
        width: 200px;
        padding: 20px 15px;
    }
    
    .partner-img {
        width: 100px;
    }
}

@media (max-width: 600px) {
    .about-banner {
        height: 150px;
    }
    
    .about-banner h1 {
        font-size: 2em;
    }

    .about-partners .partners-row {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }
    
    .partner-card {
        width: 90%;
        max-width: 280px;
    }
}
.site-footer {
    background: #000;
    color: white;
    padding: 50px 20px 20px;
    font-size: 14px;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-left {
    flex: 1 1 250px;
  }
  .footer-logo {
    width: 150px;
    margin-bottom: 10px;
  }
  .footer-left p {
    margin-bottom: 10px;
    color: #ddd;
  }
  .social-icons span {
    margin-right: 10px;
    font-size: 20px;
    cursor: pointer;
  }
  .footer-col {
    flex: 1 1 200px;
  }
  .footer-col h4 {
    margin-bottom: 15px;
    color: white;
  }
  .footer-col ul {
    list-style: none;
    padding: 0;
  }
  .footer-col ul li {
    margin-bottom: 8px;
    color: #ccc;
  }
  .footer-col ul li a {
    color: #ccc;
    text-decoration: none;
  }
  .footer-col ul li a:hover {
    color: red;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
    color: #999;
    border-top: 1px solid #222;
    padding-top: 15px;
  }

/* Blog Coming Soon Styles */
.blog-coming-soon {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    padding: 80px 0 100px 0;
}
.blog-soon-title {
    color: #ff0000;
    font-size: 3.2em;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 24px;
    text-align: center;
    text-shadow: 2px 2px 8px #111, 0 0 10px #ff0000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}
.blog-soon-title i {
    color: #ff0000;
    font-size: 1.1em;
    margin: 0 8px;
    animation: pulse 1.2s infinite alternate;
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.15); opacity: 0.7; }
}
.blog-soon-text {
    color: #fff;
    font-size: 1.3em;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.5px;
}