body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #4ea171;
}

/* TOP BAR */
.topbar {
    background: #0d6efd;
    color: rgb(255, 255, 255);
    padding: 6px;
    text-align: center;
    font-size: 12px;
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: linear-gradient(90deg, #1e90ff, #00c9a7);
    color: white;
}

/* LOGO AREA */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* BIG LOGO IMAGE */
.logo img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

/* EGLT BIG TEXT */
.brand {
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 3px;
    color: white;
}

/* MOVING TAGLINE */
.tagline {
    font-size: 20px;
    color: #e1e2e9;
    overflow: hidden;
    width: 200px;
}

.tagline span {
    display: inline-block;
    padding-left: 100%;
    animation: scrollText 10s linear infinite;
}

@keyframes scrollText {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* SEARCH */
.search {
    display: flex;
    width: 40%;
}

.search input {
    width: 100%;
    padding: 8px;
    border: none;
    border-radius: 5px 0 0 5px;
}

.search button {
    padding: 8px;
    background: #ff9800;
    color: white;
    border: none;
    border-radius: 0 5px 5px 0;
}

/* NAV BAR */
.nav {
    display: flex;
    justify-content: center;
    background: #0d6efd;
    padding: 10px;
}

.nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: 0.3s;
}

.nav a:hover {
    color: #ffe066;
}

/* PRODUCT GRID */
.container {
    padding: 15px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
}

/* PRODUCT CARD */
.card {
    background: white;
    padding: 12px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

/* PRODUCT IMAGE */
.card img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
}

/* TEXT */
.card h4 {
    font-size: 13px;
}

.price {
    color: #1e90ff;
    font-weight: bold;
    font-size: 14px;
}

/* BUTTON */
button {
    padding: 6px 12px;
    font-size: 12px;
    background: #1e90ff;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

/* MAP */
.map iframe {
    width: 90%;
    height: 100px;
    border: 0;
}

/* FOOTER */
.footer {
    background: #0d6efd;
    color: rgb(55, 255, 115);
    text-align: center;
    padding: 12px;
    margin-top: 20px;
}

.brand {
    font-family: 'Orbitron', sans-serif;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 3px;

    color: rgb(255, 255, 25);
    /* FIX visibility */
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}

.brand:hover {
    text-shadow: 0 0 15px #00ffd5;
}

/* HERO SECTION */
.hero {
    background: linear-gradient(120deg, #1e90ff, #00c9a7);
    color: white;
    text-align: center;
    padding: 20px 15px;
    /* REDUCED SPACE */
}

.hero h1 {
    font-size: 20px;
    margin-bottom: 5px;
}

.hero p {
    font-size: 13px;
    margin-bottom: 10px;
}

/* CATEGORY BUTTONS */
.categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.categories a {
    background: white;
    color: #1e90ff;
    padding: 6px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    transition: 0.3s;
}

.categories a:hover {
    background: #ffe066;
}

/* HEADER FIX */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: #1e90ff;
    color: white;
}

/* SEARCH */
.search input {
    padding: 8px;
    border: none;
    border-radius: 5px;
}

.search button {
    padding: 8px;
    background: #ff9800;
    border: none;
    color: white;
    border-radius: 5px;
}