.product-gpsr-toggle-title {
    cursor: pointer;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    font-size: 12px;
    font-weight: 600;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 15px;
    text-transform: uppercase;
    padding: 9px 0px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: brandon-grotesque, sans-serif;
    font-weight: bold;
    letter-spacing: 2.5px;
    }

    .toggle-gpsr-btn-icon {
    width: 15px;
    height: 15px;
    margin-right: 5px;
    }

    .product-gpsr-toggle.open .toggle-gpsr-btn-icon {
    transform: rotate(180deg);
    }

    .product-gpsr-toggle-content {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.1s ease, opacity 0.1s ease;
    opacity: 0;
    padding-top: 10px;
    }

    .product-gpsr-toggle.open .product-gpsr-toggle-content {
    max-height: 500px;
    opacity: 1;
    }

    .product-gpsr-toggle {
    margin-top: 25px;
    margin-bottom: 5px;
    }

    .product-gpsr-toggle.open .product-gpsr-toggle-content {
    border-bottom: 1px solid var(--trans-border-color);
    }