* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

.navbar {
    display: flex;
    align-items: center;
    height: 60px;
    padding: 0 16px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
}

.navbar h1 {
    font-size: 22px;
    font-weight: 600;
}

.navbar .search {
    margin-left: auto;
}

.navbar .search input {
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 50px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 50px;
}

.card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.card-image {
    position: relative;
    width: 100%;
    padding-top: 125.5%;
    overflow: hidden;
}

.card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.card-content {
    padding: 12px 16px;
    flex: 1;
}

.card-content h2 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.card-content p {
    font-size: 14px;
    color: #777;
    margin-bottom: 12px;
}

.card-footer {
    padding: 8px 16px;
    border-top: 1px solid #eee;
    font-size: 13px;
    color: #999;
}

@media (max-width: 600px) {
    .navbar h1 {
        font-size: 18px;
        align-items: left;
        justify-content: left;
        text-align: left;
    }
    .navbar p {
        font-size: 18px;
        align-items: left;
        justify-content: left;
        text-align: left;
    }

    .grid {
        grid-template-columns: 1fr;
    }
}

.hero {
    position: relative;
    height: 30vh;
    min-height: 300px;
    background: url("../images/header.jpg") center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.availability {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.availability-text {
    font-weight: 500;
    color: #993a8e;
}

.description {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: #555;
}

.status-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.status-label {
    font-size: 14px;
    color: #777;
}

.verified-container {
    display: flex;
    align-items: center;
}

.verified-text {
    font-weight: bold;
    color: #3c3c3c;
    font-size: 14px;
}

.btn-seller {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #993a8e;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s ease;
    box-sizing: border-box;
}

.btn-seller:hover {
    background-color: #823278;
}

.single-card-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    padding: 20px;
}

.single-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    width: 600px;
    max-width: 90%;
    text-align: center;
    padding: 20px;
}


.single-card-image img {
    max-width: 100%;
    border-radius: 6px;
    margin-bottom: 20px;
}


.single-card-info h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.single-card-info p {
    font-size: 16px;
    color: #666;
}