    body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 20px;
        background-color: #f8f8f8;
        color: #333;
    }

    .container {
        max-width: 1300px;
        margin: 0 auto;
    }

    .section-header {
        text-align: center;
        background-color: #ffffff;
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 2em;
        font-weight: bold;
        background-color: #ffcf00;
        color: #333;
    }

    .tabs {
        text-align: center;
        margin-bottom: 20px;
    }

    .tabs span {
        margin: 0 15px;
        padding-bottom: 5px;
        font-size: 1.1em;
        cursor: pointer;
        font-weight: normal;
    }

    .tabs .active {
        font-weight: bold;
        border-bottom: 3px solid #ffcf00;
    }

    .product-grid {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        margin-top: 20px;
    }

    .product-card {
        background-color: white;
        border: 2px solid #ddd;
        padding: 15px;
        width: 25%;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        position: relative;
        text-align: center;
    }

    .product-logo img {
        max-width: 18%;
        height: auto;
        margin-bottom: 10px;
    }

    .product-image img {
        max-width: 100%;
        height: auto;
        margin-bottom: 10px;
    }

    .product-info {
        text-align: left;
        padding-top: 10px;
    }

    .product-stats {
        font-size: 0.8em;
        color: #777;
        margin-bottom: 5px;
    }

    .product-name {
        font-weight: bold;
        margin-bottom: 5px;
        height: 40px;
        overflow: hidden;
    }

    .product-price {
        font-weight: bold;
        margin-bottom: 15px;
        font-size: 1.1em;
    }

    .add-to-cart {
        width: 100%;
        padding: 10px;
        background-color: #ffcf00;
        border: 1px solid #ba9800;
        cursor: pointer;
        font-weight: bold;
        font-size: 1em;
        text-transform: uppercase;
    }

    .heart-icon {
        position: absolute;
        top: 10px;
        left: 10px;
        font-size: 1.5em;
        color: #ccc;
        cursor: pointer;
    }

    .new-tag {
        position: absolute;
        top: 0;
        right: 0;
        background-color: #ffcf00;
        padding: 5px 10px;
        font-size: 0.8em;
        font-weight: bold;
    }

    .navigation-arrows {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        gap: 10px;
    }

    .arrow {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        border: 1px solid #ccc;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2em;
        cursor: pointer;
        background-color: white;
    }

    .arrow:last-child {
        border: 2px solid black;
    }