* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #16181d;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    padding: 0;
    overflow-y: scroll;
}

body::-webkit-scrollbar {
    display: none;
}

body {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.header {
    text-align: center;
    padding: 40px 20px 20px;
}

.header img {
    max-width: 300px;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.category {
    margin-bottom: 60px;
}

h2 {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 30px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
}

.item {
    position: relative;
    background: #1f2127;
    padding: 20px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.item-name {
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    text-align: center;
}

.item img {
    width: 100%;
    height: 120px;
    object-fit: contain;
}

.brand-color {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.color-value {
    font-weight: 700;
    font-size: 24px;
    color: #7c3aed;
}

.footer {
    background: #16181d;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 60px auto 0;
    font-size: 12px;
    line-height: 1.6;
    color: #999;
    font-weight: 700;
}

.footer p {
    margin-bottom: 15px;
}
