body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #e5e5e5;
}

/* Header */
.header {
    background-color: #b3001b;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 2px;
}

.logo img {
    height: 70px;
}

.nav a {
    text-decoration: none;
    color: white;
    border: 2px solid white;
    padding: 8px 18px;
    border-radius: 20px;
    margin-left: 10px;
    transition: 0.3s;
}

.nav a:hover {
    background: white;
    color: #b3001b;
}

/* Main Card */
.container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.card {
    background: white;
    border: 3px solid #b3001b;
    border-radius: 25px;
    padding: 30px;
    width: 80%;
    max-width: 900px;
    text-align: center;
}

/* Title */
.brand {
    font-size: 36px;
    color: #b3001b;
    font-weight: bold;
}

.title {
    font-size: 48px;
    color: #b3001b;
    margin: 20px 0;
}

/* Grid Images */
.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.grid img {
    width: 100%;
    border-radius: 15px;
}

/* Button */
.btn {
    padding: 12px 30px;
    border: 2px solid #b3001b;
    color: #b3001b;
    background: transparent;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 16px;
}

.btn:hover {
    background: #b3001b;
    color: white;
}


/* City Box */
.city-box {
    border: 2px solid #b3001b;
    border-radius: 40px;
    padding: 15px 20px;
    margin-bottom: 15px;
}

/* City Text */
.city-text {
    color: #b3001b;
    font-size: 16px;
    text-align: left;
    max-width: 70%;
}

/* Button */
.shop-btn {
    border: 2px solid #b3001b;
    padding: 6px 18px;
    border-radius: 20px;
    color: #b3001b;
    text-decoration: none;
    transition: 0.3s;
    font-weight: bold;
}

.shop-btn:hover {
    background: #b3001b;
    color: white;
}

/* 🔥 Responsive */
@media (max-width: 768px) {

    .logo img {
        height: 40px;
    }

    .city-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .city-text {
        max-width: 100%;
        font-size: 14px;
    }

    .title {
        font-size: 28px;
    }
}

/* Main Card */
.main-card {
    background: #fff;
    border: 3px solid #b3001b;
    border-radius: 30px;
    padding: 30px 20px;
}

/* Brand */
.brand-logo {
    width: 150px;
    margin-bottom: 10px;
}