
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .pv-components-wrapper {
        max-width: 1400px;
        margin: 0 auto;
        font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
        line-height: 1.45;
        color: #1a3a3a;
    }

    .pv-section {
        background: #ffffff;
        border-radius: 28px;
        box-shadow: 0 12px 28px rgba(0, 80, 70, 0.08);
        margin-bottom: 3rem;
        overflow-x: auto;
    }

    .pv-section-title {
        font-size: 1.75rem;
        font-weight: 600;
        padding: 1.4rem 1.8rem 0.6rem 1.8rem;
        color: #1f6e6b;
        border-bottom: 3px solid #2c9c97;
        display: inline-block;
        margin: 0 0 0 1.8rem;
        letter-spacing: -0.2px;
    }

    .pv-table-wrapper {
        padding: 1.2rem 1.8rem 2rem 1.8rem;
    }

    .pv-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 0.95rem;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 1px 2px rgba(0,0,0,0.03);
    }

    .pv-table th {
        background-color: #e0f2f0;
        color: #115e5b;
        font-weight: 600;
        padding: 1rem 1rem;
        border-bottom: 2px solid #b9dfdb;
        text-align: left;
        font-size: 0.9rem;
        letter-spacing: 0.3px;
    }

    .pv-table td {
        padding: 1rem 1rem;
        border-bottom: 1px solid #d9ece9;
        vertical-align: middle;
        background-color: #ffffff;
        color: #1f4e4c;
    }

    .pv-table tr:last-child td {
        border-bottom: none;
    }

    .product-image {
        width: auto;
        height: 80px;
        max-width: 120px;
        object-fit: contain;
        border-radius: 12px;
        display: block;
        margin: 0 auto;
        box-shadow: 0 2px 6px rgba(0,0,0,0.08);
        transition: transform 0.2s ease;
    }

    .product-image:hover {
        transform: scale(1.02);
    }

    .pv-note-meta {
        margin-top: 0.5rem;
        font-size: 0.75rem;
        color: #5f9c97;
        text-align: right;
        padding: 0 1.8rem 1.5rem 1.8rem;
    }

    .pv-additional-info {
        background: #eefbf9;
        margin-top: 1rem;
        border-radius: 20px;
        padding: 0.8rem 1.8rem;
        font-size: 0.85rem;
        color: #1f6e6b;
        display: inline-block;
        width: auto;
    }

    .product-code {
        font-family: monospace;
        font-size: 0.8rem;
        background: #f0f7f5;
        display: inline-block;
        padding: 0.2rem 0.4rem;
        border-radius: 8px;
        color: #146b66;
    }

    @media (max-width: 780px) {
        .pv-table-wrapper {
            padding: 0.8rem 1rem 1.5rem 1rem;
        }
        .pv-table th, .pv-table td {
            padding: 0.75rem 0.6rem;
            font-size: 0.85rem;
        }
        .product-image {
            height: 60px;
        }
        .pv-section-title {
            font-size: 1.45rem;
            margin-left: 1rem;
            padding-left: 0;
        }
    }

    @media (max-width: 550px) {
        .product-image {
            height: 50px;
        }
    }
