* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.announcement-bar {
    background-color: #fff;
    text-align: center;
    padding: 8px;
    font-size: 14px;
}

.announcement-bar a {
    color: #d31334;
    text-decoration: underline;
}

.top-bar {
    background-color: #fafafa;
    padding: 8px 0;
    font-size: 12px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar .container {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.top-bar a {
    color: #000;
    text-decoration: none;
}

.wn-section {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    position: relative;
}

.wn-title {
    font-size: 42px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
}

.wn-carousel {
    display: flex;
    gap: 20px;
    position: relative;
}

.wn-item {
    flex: 0 0 calc(25% - 15px);
    text-decoration: none;
    color: #000;
}

.wn-image {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    margin-bottom: 16px;
    background-color: #f5f5f5;
}

.wn-product-name {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.wn-price {
    font-size: 16px;
    color: #666;
}

.wn-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: 1px solid #e5e5e5;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 2;
}

.wn-prev {
    left: -22px;
}

.wn-next {
    right: -22px;
}

.wn-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.wn-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d8d8d8;
    border: none;
    padding: 0;
    cursor: pointer;
}

.wn-dot.active {
    background: #666;
}

.wn-shop-button {
    display: block;
    width: fit-content;
    margin: 40px auto 0;
    padding: 16px 32px;
    border: 1px solid #000;
    background: none;
    font-size: 16px;
    text-decoration: none;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s, color 0.3s;
}

.wn-shop-button:hover {
    background-color: #000;
    color: #fff;
}

.promo-grid {
    max-width: 1200px;
    margin: 60px auto;
    position: relative;
}

.promo-card {
    position: relative;
    width: 100%;
    background-color: #f5f5f5;
    overflow: hidden;
}

.promo-split-image {
    width: 100%;
    height: auto;
    display: block;
}

.promo-content {
    padding: 40px;
    color: #000;
    width: 100%;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.9));
}

.promo-logo {
    width: 120px;
    margin-bottom: 20px;
    filter: brightness(0);
}

.promo-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 16px;
}

.promo-text {
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 1.5;
}

.promo-button {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid #000;
    background: white;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
    color: #000;
    transition: background-color 0.3s, color 0.3s;
}

.promo-button:hover {
    background-color: #000;
    color: white;
}

.wn-section {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.wn-title {
    font-size: 55px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
}

.wn-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.wn-item {
    text-decoration: none;
    color: #000;
}

.wn-image {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    margin-bottom: 16px;
    background-color: #f5f5f5;
}

.wn-product-name {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.wn-price-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

.wn-original-price {
    font-size: 14px;
    color: #666;
    text-decoration: line-through;
}

.wn-current-price {
    font-size: 16px;
    font-weight: bold;
    color: #d31334;
}

.wn-shop-button {
    display: block;
    width: fit-content;
    margin: 40px auto 0;
    padding: 16px 32px;
    border: 1px solid #000;
    background: none;
    font-size: 16px;
    text-decoration: none;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s, color 0.3s;
}

.wn-shop-button:hover {
    background-color: #000;
    color: #fff;
}

@media screen and (max-width:1100px) {
    .navt{
        display: none;
    }
    .wn-title{
        font-size: 20px;
        margin-bottom: 20px;
    }
    .wn-section{
        margin: 20px auto;
    }
    .wn-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .container{
        padding: 0;
    }
}