h1, h2, h3, h4, h5, h6{
    margin-bottom: 0;
}

/* body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fff;
} */

/* Top Header Bar */
.top-header {
    background: #1e3a8a;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-header a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.top-header a:hover {
    color: #f59e0b;
}

.top-header .phone {
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-icons a {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
    margin: 0;
}

.social-icons .facebook {
    background: #1877f2;
}

.social-icons .instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icons .yelp {
    background: #d32323;
}

.social-icons .google {
    background: #4285f4;
}

.social-icons a:hover {
    transform: scale(1.1);
}

/* Main Header */
.main-header {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    font-weight: 900;
    color: #1e3a8a;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: #1e3a8a;
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
}

.logo-text .tagline {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.search-container {
    position: relative;
    max-width: 400px;
}

.search-input {
    width: 100%;
    padding: 12px 50px 12px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    outline: none;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: #1e3a8a;
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #1e3a8a;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: #1d4ed8;
}

.cart-icon {
    position: relative;
    color: #1e3a8a;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cart-icon:hover {
    color: #1d4ed8;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Green Banner */
.green-banner {
    background: #15803d;
    color: white;
    padding: 10px 0;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
}

.green-banner a {
    color: white;
    text-decoration: underline;
}

/* Main Content Placeholder */
.main-content {
    min-height: 800px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 18px;
}

/* Footer */
.footer {
    background: #1e3a8a;
    color: white;
    padding: 60px 0 30px;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
    margin: 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    grid-column: 1 / 3;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-logo-icon {
    width: 60px;
    height: 60px;
    background: white;
    color: #1e3a8a;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
}

.footer-logo-text {
    font-size: 32px;
    font-weight: 900;
}

.shop-save-btn {
    background: #FFC94D;
    color: #1e3a8a;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    margin-bottom: 30px;
}

.shop-save-btn:hover {
    background: #FBB042;
    transform: translateY(-2px);
    color: #1e3a8a;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    transition: all 0.3s ease;
}

.footer-social .facebook {
    background: #1877f2;
}

.footer-social .twitter {
    background: #1da1f2;
}

.footer-social .linkedin {
    background: #0077b5;
}

.footer-social .instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.footer-social a:hover {
    transform: translateY(-3px);
}

.footer-links h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-contact {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-item i {
    font-size: 18px;
    width: 20px;
    color: #fbbf24;
}

.contact-item a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.contact-item a:hover {
    color: #fbbf24;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    opacity: 0.8;
}

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

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

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

    .floating-card {
        display: none;
    }

    .newsletter-form {
        flex-direction: column;
        background: none;
        padding: 0;
    }

    .newsletter-input {
        background: rgba(255, 255, 255, 0.1);
        margin-bottom: 1rem;
    }

    .top-header {
        text-align: center;
    }

    .top-header .d-flex {
        justify-content: center !important;
        flex-wrap: wrap;
        gap: 10px;
    }

    .social-icons {
        margin-top: 10px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand {
        grid-column: 1;
    }

    .footer-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

@media (max-width: 576px) {
    .section {
        padding: 3rem 0;
    }

    .payment-card {
        padding: 1.5rem;
    }
}