* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', Arial, sans-serif; 
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: #fff;
    color: #000;
    overflow-x: hidden;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 118px;
    height: 94px;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.05em; 
}

.menu a {
    text-decoration: none;
    color: #000;
    margin: 0 14px;
    font-weight: 700;
    font-size: 13.6px;
}

.icons {
    display: flex;
    gap: 20px;
    font-size: 18px;
}

.banner {
    display: flex;
    align-items: center;
    padding: 60px 117px;
    justify-content: space-between;
}

.banner-content {
    flex: 1;
}

.banner-content h1 {
    font-size: 70.8px; 
    font-weight: 900;
    line-height: 0.95; 
    margin-bottom: 13px;
    letter-spacing: -0.02em;
}

.banner-content p {
    color: #818181;
    font-size: 19.3px;
    margin-bottom: 28px;
    font-weight: 600;
}

.btn-main {
    width: 482px;
    height: 107px;
    background: #fff;
    border: 1.5px solid #000;
    font-size: 47px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
}

.banner-image {
    flex: 1;
    text-align: right;
}

.banner-image img {
    width: 581px;
    max-width: 100%;
}

.section-container {
    text-align: center;
    margin-top: 48px;
    padding: 0 117px;
}

.title {
    font-size: 22.8px;
    font-weight: 800;
    margin-bottom: 31px;
}

.category-grid {
    display: flex;
    justify-content: center;
    gap: 33.5px;
}

.category-card {
    background: #d9d9d9;
    width: 375px;
    padding: 30px;
    border-radius: 18.7px;
}

.category-card p {
    font-weight: 900;
    font-size: 17.8px;
    margin-bottom: 18.5px;
}

.white-box {
    background: #fff;
    height: 141.7px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.white-box img {
    height: 98px;
}

.product-grid {
    display: flex;
    justify-content: center;
    gap: 23px;
    margin-top: 25px;
    margin-bottom: 58px;
}

.product-item {
    background: #f1f1f1;
    width: 311px;
    height: 168px;
    padding: 34px 25px;
    border-radius: 17.4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.product-top {
    display: flex;
    align-items: center;
    width: 100%;
}

.product-top img {
    width: 107px;
    margin-right: 11px;
}

.product-text {
    text-align: left;
}

.p-name {
    font-weight: 800;
    font-size: 15.3px;
    line-height: 1.2;
}

.p-price {
    font-weight: 600;
    font-size: 12.8px;
}

.black-dot {
    width: 25.5px;
    height: 25.5px;
    background: #1c1c1c;
    border-radius: 50%;
    position: absolute;
    bottom: 11px;
    left: 142px;
}

.footer {
    background: #d8d8d8;
    padding: 40px 117px;
    text-align: center;
    position: relative;
    height: 139px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-center p {
    font-weight: 700;
    margin: 2px 0;
    font-size: 14.7px;
}

.footer-right {
    position: absolute;
    right: 47px;
    bottom: 17px;
    font-weight: 800;
    font-size: 14px;
}