/* Product Methods Component Styles */

/* Main methods container */
.single-product-methods {
    width: 100%;
    min-width: 406px;
    max-width: 406px;
    position: sticky;
    top: 100px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

/* Method groups */
.groups {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.groups h3 {
    font-family: 'OptimaProBold', sans-serif;
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    color: #434B5E;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0px;
}

/* Method items container */
.pc_items {
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap;
}

/* Individual method item */
.pc_item {
    display: flex;
    flex-direction: row;
    gap: 16px;
    text-decoration: none;
    color: #1A21C7;
    border: 1px solid #1A21C7;
    background-color: #fff;
    padding: 8px 16px;
    border-radius: 0px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    align-items: center;
}

.pc_item:hover {
    background-color: #1A21C7;
    color: #fff;
    text-decoration: none;
}

.pc_item:hover svg {
    fill: #fff !important;
    stroke: #1A21C7 !important;
}

.pc_item svg {
    width: 20px;
    height: auto;
    stroke: #1A21C7;
}

/* Responsive Design */
@media screen and (max-width: 1280px) {
    .single-product-methods {
        max-width: 100%;
    }
}

@media screen and (max-width: 744px) {
    .single-product-methods {
        min-width: 0px;
    }
}
