/* Single Product Page - Stage 1 */

.lh-single-product-page {
    width: 100%;
    background: #f3f3f3;
}

.lh-single-product-inner {
    max-width: var(--lh-content-width);
    margin: 0 auto;
    padding: 60px var(--lh-site-padding) 80px;
    box-sizing: border-box;
}

.lh-single-product-main {
    display: grid;
    grid-template-columns: minmax(0, 60%) minmax(260px, 30%);
    gap: 10%;
    align-items: start;
}

.lh-single-product-gallery {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.lh-single-product-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lh-single-product-thumb {
    display: block;
    width: 82px;
    height: 82px;
    padding: 0;
    border: 1px solid transparent;
    background: var(--lh-white);
    cursor: pointer;
}

.lh-single-product-thumb.is-active {
    border-color: var(--lh-pink);
}

.lh-single-product-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lh-single-product-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--lh-white);
    overflow: hidden;
    cursor: zoom-in;
}

.lh-single-product-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .2s ease;
    transform-origin: center center;
}

.lh-single-product-summary {
    align-self: start;
}

.lh-single-product-title {
    margin: 0 0 16px;
    color: var(--lh-black);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lh-single-product-price {
    margin-bottom: 22px;
    color: var(--lh-black);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.4;
}

.lh-single-product-price .price,
.lh-single-product-price .amount {
    color: var(--lh-black);
}

.lh-single-product-short-description {
    margin-bottom: 28px;
    color: var(--lh-black);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
}

.lh-single-product-short-description p {
    margin: 0 0 14px;
}

.lh-single-product-cart {
    margin-bottom: 12px;
}

.lh-single-product-cart table.variations {
    width: 100%;
    margin: 0 0 18px;
}

.lh-single-product-cart table.variations th,
.lh-single-product-cart table.variations td {
    display: block;
    padding: 0;
    text-align: left;
}

.lh-single-product-cart table.variations label {
    display: block;
    margin-bottom: 8px;
    color: var(--lh-black);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lh-single-product-cart table.variations select {
    width: 100%;
    min-height: 42px;
    padding: 8px 12px;
    border: 1px solid #bbb;
    border-radius: 0;
    background: var(--lh-white);
    color: var(--lh-black);
}

.lh-single-product-cart .quantity {
    width: 100%;
    margin: 0 0 12px;
}

.lh-single-product-cart .quantity input {
    width: 100%;
    min-height: 42px;
    border-radius: 0;
}

.lh-single-product-cart .single_add_to_cart_button {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--lh-pink);
    background: transparent;
    color: var(--lh-pink);
    border-radius: 0;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lh-single-product-cart .single_add_to_cart_button:hover {
    background: var(--lh-pink);
    color: var(--lh-white);
}

.lh-single-product-buy-now {
    display: block;
    width: 100%;
    min-height: 44px;
    padding: 14px 18px;
    background: var(--lh-pink);
    color: var(--lh-white);
    border: 1px solid var(--lh-pink);
    border-radius: 0;
    box-sizing: border-box;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}

.lh-single-product-buy-now:hover {
    background: var(--lh-black);
    border-color: var(--lh-black);
    color: var(--lh-white);
}

.lh-single-product-buy-now-disabled {
    cursor: not-allowed;
    opacity: 0.65;
}

@media (max-width: 768px) {

    .lh-single-product-inner {
        padding: 40px 20px 60px;
    }

    .lh-single-product-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lh-single-product-gallery {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .lh-single-product-thumbnails {
        flex-direction: row;
        order: 2;
        overflow-x: auto;
    }

    .lh-single-product-image-wrap {
        order: 1;
    }

    .lh-single-product-title,
    .lh-single-product-price,
    .lh-single-product-short-description {
        text-align: center;
    }
}


/* Product Purchase Controls - Refined */

.lh-single-product-cart {
    margin-bottom: 12px;
}

.lh-single-product-cart form.cart {
    margin: 0;
}

.lh-single-product-cart table.variations {
    width: 100%;
    margin: 0 0 12px;
    border: 0;
}

.lh-single-product-cart table.variations tbody,
.lh-single-product-cart table.variations tr,
.lh-single-product-cart table.variations th,
.lh-single-product-cart table.variations td {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
}

.lh-single-product-cart table.variations label {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.lh-single-product-cart table.variations select {
    display: block;
    width: 100%;
    height: 44px;
    min-height: 44px;
    margin: 0;
    padding: 0 18px;
    border: 1px solid var(--lh-pink);
    border-radius: 0;
    background-color: var(--lh-white);
    color: var(--lh-pink);
    box-sizing: border-box;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 44px;
    text-transform: uppercase;
}

.lh-single-product-cart table.variations select:focus {
    outline: none;
    border-color: var(--lh-pink);
}

.lh-single-product-cart table.variations .reset_variations {
    display: inline-block;
    margin-top: 8px;
    color: var(--lh-pink);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Hide quantity field for cleaner handbag product layout */

.lh-single-product-cart .quantity {
    display: none !important;
}

.lh-single-product-cart .single_variation_wrap,
.lh-single-product-cart .woocommerce-variation-add-to-cart {
    margin: 0;
}

.lh-single-product-cart .woocommerce-variation {
    margin: 0 0 12px;
}

.lh-single-product-cart .single_add_to_cart_button {
    display: block;
    width: 100%;
    height: 44px;
    min-height: 44px;
    margin: 0 0 12px;
    padding: 0 18px;
    border: 1px solid var(--lh-pink);
    border-radius: 0;
    background: transparent;
    color: var(--lh-pink);
    box-sizing: border-box;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 42px;
    text-align: center;
    text-transform: uppercase;
}

.lh-single-product-cart .single_add_to_cart_button:hover,
.lh-single-product-cart .single_add_to_cart_button:focus {
    background: var(--lh-pink);
    color: var(--lh-white);
}

.lh-single-product-cart .single_add_to_cart_button.disabled,
.lh-single-product-cart .single_add_to_cart_button:disabled,
.lh-single-product-cart .single_add_to_cart_button[disabled] {
    opacity: 1;
    border-color: var(--lh-pink);
    background: transparent;
    color: var(--lh-pink);
    cursor: not-allowed;
}

.lh-single-product-buy-now {
    display: block;
    width: 100%;
    height: 44px;
    min-height: 44px;
    margin: 0;
    padding: 0 18px;
    border: 1px solid var(--lh-pink);
    border-radius: 0;
    background: var(--lh-pink);
    color: var(--lh-white);
    box-sizing: border-box;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 42px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}

.lh-single-product-buy-now:hover,
.lh-single-product-buy-now:focus {
    border-color: var(--lh-black);
    background: var(--lh-black);
    color: var(--lh-white);
}

.lh-single-product-buy-now-disabled {
    opacity: 1;
    cursor: not-allowed;
}


/* Product Purchase Controls - Final Tight Layout */

.lh-single-product-cart,
.lh-single-product-cart form.cart,
.lh-single-product-cart .variations_form {
    margin: 0;
    padding: 0;
}

.lh-single-product-cart table.variations {
    display: block !important;
    width: 100% !important;
    margin: 0 0 12px !important;
    padding: 0 !important;
    border: 0 !important;
    border-collapse: collapse !important;
    background: transparent !important;
}

.lh-single-product-cart table.variations tbody,
.lh-single-product-cart table.variations tr,
.lh-single-product-cart table.variations th,
.lh-single-product-cart table.variations td {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
}

.lh-single-product-cart table.variations th.label {
    display: none !important;
}

.lh-single-product-cart table.variations label {
    display: none !important;
}

.lh-single-product-cart table.variations select {
    display: block !important;
    width: 100% !important;
    height: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
    margin: 0 !important;
    padding: 0 18px !important;
    border: 1px solid var(--lh-pink) !important;
    border-radius: 0 !important;
    background-color: var(--lh-white) !important;
    color: var(--lh-pink) !important;
    box-sizing: border-box !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    letter-spacing: 0.08em !important;
    line-height: 44px !important;
    text-transform: uppercase !important;
}

.lh-single-product-cart table.variations select:focus {
    outline: none !important;
    border-color: var(--lh-pink) !important;
}

.lh-single-product-cart table.variations .reset_variations {
    display: none !important;
}

.lh-single-product-cart .single_variation_wrap {
    margin: 0 !important;
    padding: 0 !important;
}

.lh-single-product-cart .woocommerce-variation {
    margin: 0 !important;
    padding: 0 !important;
}

.lh-single-product-cart .woocommerce-variation-add-to-cart {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

.lh-single-product-cart .quantity {
    display: none !important;
}

.lh-single-product-cart .single_add_to_cart_button,
.lh-single-product-buy-now {
    display: block !important;
    width: 100% !important;
    height: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
    margin: 0 0 12px !important;
    padding: 0 18px !important;
    box-sizing: border-box !important;
    border-radius: 0 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    letter-spacing: 0.08em !important;
    line-height: 42px !important;
    text-align: center !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
}

.lh-single-product-cart .single_add_to_cart_button {
    border: 1px solid var(--lh-pink) !important;
    background: transparent !important;
    color: var(--lh-pink) !important;
}

.lh-single-product-cart .single_add_to_cart_button:hover,
.lh-single-product-cart .single_add_to_cart_button:focus {
    background: var(--lh-pink) !important;
    color: var(--lh-white) !important;
}

.lh-single-product-buy-now {
    border: 1px solid var(--lh-pink) !important;
    background: var(--lh-pink) !important;
    color: var(--lh-white) !important;
}

.lh-single-product-buy-now:hover,
.lh-single-product-buy-now:focus {
    border-color: var(--lh-black) !important;
    background: var(--lh-black) !important;
    color: var(--lh-white) !important;
}


/* Remove rounded corners from variation selector */

.lh-single-product-cart table.variations select,
.lh-single-product-cart table.variations .select2-selection,
.lh-single-product-cart .select2-container--default .select2-selection--single {
    border-radius: 0 !important;
}


/* Final variation selector square style */

.lh-single-product-cart table.variations select,
.lh-single-product-cart table.variations select:focus,
.lh-single-product-cart table.variations select:hover {
    display: block !important;
    width: 100% !important;
    height: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
    margin: 0 !important;
    padding: 0 44px 0 44px !important;
    border: 1px solid var(--lh-pink) !important;
    border-radius: 0 !important;
    background-color: var(--lh-white) !important;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--lh-pink) 50%),
        linear-gradient(135deg, var(--lh-pink) 50%, transparent 50%) !important;
    background-position:
        calc(100% - 22px) 18px,
        calc(100% - 16px) 18px !important;
    background-size:
        6px 6px,
        6px 6px !important;
    background-repeat: no-repeat !important;
    color: var(--lh-pink) !important;
    box-sizing: border-box !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    letter-spacing: 0.08em !important;
    line-height: 42px !important;
    text-align: center !important;
    text-align-last: center !important;
    text-transform: uppercase !important;
    outline: none !important;
    box-shadow: none !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
}

.lh-single-product-cart table.variations select option {
    color: var(--lh-black);
    background: var(--lh-white);
    text-align: center;
}

.lh-single-product-cart table.variations select option:first-child {
    color: var(--lh-pink);
    text-transform: uppercase;
}

.lh-single-product-cart table.variations select::-ms-expand {
    display: none;
}

.lh-single-product-cart table.variations .select2-selection,
.lh-single-product-cart .select2-container--default .select2-selection--single,
.lh-single-product-cart .select2-container .select2-selection--single {
    height: 44px !important;
    min-height: 44px !important;
    border: 1px solid var(--lh-pink) !important;
    border-radius: 0 !important;
    background: var(--lh-white) !important;
    box-shadow: none !important;
}

.lh-single-product-cart .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--lh-pink) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    letter-spacing: 0.08em !important;
    line-height: 42px !important;
    text-align: center !important;
    text-transform: uppercase !important;
}

.lh-single-product-cart .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 42px !important;
}




/* Product Pre-Description Links */

.lh-single-product-pre-description-links {
    width: 60%;
    margin: 54px 0 0;
}

.lh-single-product-scroll-link,
.lh-single-product-shipping-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 22px 0;
    border: 0;
    background: transparent;
    color: #777;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.5;
    text-align: left;
    text-decoration: none;
    text-transform: none;
    cursor: pointer;
}

.lh-single-product-scroll-link:hover,
.lh-single-product-scroll-link:focus,
.lh-single-product-shipping-toggle:hover,
.lh-single-product-shipping-toggle:focus {
    background: transparent;
    color: #777;
}

.lh-single-product-scroll-link span:first-child,
.lh-single-product-shipping-toggle span:first-child {
    flex: 1;
    text-align: left;
}

.lh-single-product-scroll-link span:last-child,
.lh-single-product-shipping-icon {
    flex-shrink: 0;
    margin-left: 20px;
    color: #777;
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
}

.lh-single-product-shipping-panel {
    display: none;
    padding: 0 0 30px;
    color: #777;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
}

.lh-single-product-shipping-panel.is-open {
    display: block;
}

.lh-single-product-shipping-panel p {
    margin: 0 0 18px;
}

@media (max-width: 768px) {

    .lh-single-product-pre-description-links {
        width: 100%;
        margin-top: 40px;
    }

    .lh-single-product-scroll-link,
    .lh-single-product-shipping-toggle {
        padding: 18px 0;
    }
}

/* Product Description */

.lh-single-product-description {
    width: 100%;
    padding: 70px 0;
}

.lh-single-product-description-title {
    margin: 0 0 30px;
    color: var(--lh-black);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lh-single-product-description-content {
    width: 100%;
    color: var(--lh-black);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
}

.lh-single-product-description-content p {
    margin: 0 0 24px;
}

.lh-single-product-divider {
    width: 100%;
    height: 1px;
    background: rgba(0,0,0,.15);
}

@media (max-width: 768px) {

    .lh-single-product-description {
        padding: 50px 0;
    }

    .lh-single-product-description-title,
    .lh-single-product-description-content {
        text-align: center;
    }
}




/* Product FAQs */

.lh-single-product-faqs {
    width: 60%;
    margin: 0 auto;
    padding: 60px 0 20px;
}

.lh-single-product-faq-intro {
    max-width: 100%;
    margin: 0 0 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0,0,0,.15);
    color: var(--lh-black);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    text-align: center;
}

.lh-single-product-faq-list {
    width: 100%;
}

.lh-single-product-faq-item {
    width: 100%;
}

.lh-single-product-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 22px 0;
    border: 0;
    background: transparent;
    color: #777;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.5;
    text-align: left;
    text-transform: none;
    cursor: pointer;
}

.lh-single-product-faq-question:hover,
.lh-single-product-faq-question:focus {
    background: transparent;
    color: #777;
}

.lh-single-product-faq-question span:first-child {
    flex: 1;
    text-align: left;
}

.lh-single-product-faq-icon {
    flex-shrink: 0;
    margin-left: 20px;
    color: #777;
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
}

.lh-single-product-faq-answer {
    display: none;
    padding: 0 0 30px;
    color: #777;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
}

.lh-single-product-faq-answer.is-open {
    display: block;
}

.lh-single-product-faq-answer p {
    margin: 0 0 18px;
}

@media (max-width: 768px) {

    .lh-single-product-faqs {
        width: 100%;
        padding-top: 50px;
    }

    .lh-single-product-faq-intro {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .lh-single-product-faq-question {
        padding: 18px 0;
    }
}


/* Final FAQ centring override */

.lh-single-product-faqs {
    display: block !important;
    width: 60% !important;
    max-width: 60% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
}

.lh-single-product-faq-list,
.lh-single-product-faq-item,
.lh-single-product-faq-question,
.lh-single-product-faq-answer {
    width: 100% !important;
    box-sizing: border-box !important;
}

.lh-single-product-faq-intro {
    max-width: 100% !important;
    text-align: center !important;
}

@media (max-width: 768px) {

    .lh-single-product-faqs {
        width: 100% !important;
        max-width: 100% !important;
    }
}


/* Final forced unified styling for Product Details, Shipping & Returns and FAQs */

.lh-single-product-pre-description-links .lh-single-product-scroll-link,
.lh-single-product-pre-description-links .lh-single-product-shipping-toggle,
.lh-single-product-faqs .lh-single-product-faq-question {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    padding: 22px 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: #777 !important;
    font-family: inherit !important;
    font-size: 15px !important;
    font-weight: 300 !important;
    line-height: 1.5 !important;
    letter-spacing: normal !important;
    text-align: left !important;
    text-decoration: none !important;
    text-transform: none !important;
    cursor: pointer !important;
}

.lh-single-product-pre-description-links .lh-single-product-scroll-link:hover,
.lh-single-product-pre-description-links .lh-single-product-scroll-link:focus,
.lh-single-product-pre-description-links .lh-single-product-shipping-toggle:hover,
.lh-single-product-pre-description-links .lh-single-product-shipping-toggle:focus,
.lh-single-product-faqs .lh-single-product-faq-question:hover,
.lh-single-product-faqs .lh-single-product-faq-question:focus {
    background: transparent !important;
    color: #777 !important;
}

.lh-single-product-pre-description-links .lh-single-product-scroll-link span:first-child,
.lh-single-product-pre-description-links .lh-single-product-shipping-toggle span:first-child,
.lh-single-product-faqs .lh-single-product-faq-question span:first-child {
    flex: 1 !important;
    color: #777 !important;
    font-family: inherit !important;
    font-size: 15px !important;
    font-weight: 300 !important;
    line-height: 1.5 !important;
    letter-spacing: normal !important;
    text-align: left !important;
    text-transform: none !important;
}

.lh-single-product-pre-description-links .lh-single-product-scroll-link span:last-child,
.lh-single-product-pre-description-links .lh-single-product-shipping-icon,
.lh-single-product-faqs .lh-single-product-faq-icon {
    flex-shrink: 0 !important;
    margin-left: 20px !important;
    color: #777 !important;
    font-family: inherit !important;
    font-size: 20px !important;
    font-weight: 300 !important;
    line-height: 1 !important;
    letter-spacing: normal !important;
    text-align: right !important;
}

.lh-single-product-pre-description-links .lh-single-product-shipping-panel,
.lh-single-product-pre-description-links .lh-single-product-shipping-panel p,
.lh-single-product-faqs .lh-single-product-faq-answer,
.lh-single-product-faqs .lh-single-product-faq-answer p {
    color: #777 !important;
    font-family: inherit !important;
    font-size: 15px !important;
    font-weight: 300 !important;
    line-height: 1.8 !important;
    letter-spacing: normal !important;
    text-transform: none !important;
}

@media (max-width: 768px) {

    .lh-single-product-pre-description-links .lh-single-product-scroll-link,
    .lh-single-product-pre-description-links .lh-single-product-shipping-toggle,
    .lh-single-product-faqs .lh-single-product-faq-question {
        padding: 18px 0 !important;
    }
}


/* Reviews accordion within product links block */

.lh-single-product-reviews-panel {
    display: none;
    padding: 0 0 34px;
    color: #777;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
}

.lh-single-product-reviews-panel.is-open {
    display: block;
}

.lh-single-product-reviews-panel #reviews,
.lh-single-product-reviews-panel #comments,
.lh-single-product-reviews-panel #review_form_wrapper {
    margin: 0;
    padding: 0;
    max-width: 100%;
}

.lh-single-product-reviews-panel h2,
.lh-single-product-reviews-panel h3,
.lh-single-product-reviews-panel .comment-reply-title {
    color: #777;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: normal;
    text-transform: none;
}

.lh-single-product-reviews-panel label,
.lh-single-product-reviews-panel p,
.lh-single-product-reviews-panel .comment-text {
    color: #777;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
}

.lh-single-product-reviews-panel input[type="text"],
.lh-single-product-reviews-panel input[type="email"],
.lh-single-product-reviews-panel textarea {
    width: 100%;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 0;
    background: var(--lh-white);
    color: var(--lh-black);
}

.lh-single-product-reviews-panel input[type="submit"],
.lh-single-product-reviews-panel .submit {
    border: 1px solid var(--lh-pink);
    border-radius: 0;
    background: var(--lh-pink);
    color: var(--lh-white);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Final forced unified styling for Product Details, Shipping & Returns, Reviews and FAQs */

.lh-single-product-pre-description-links .lh-single-product-scroll-link,
.lh-single-product-pre-description-links .lh-single-product-shipping-toggle,
.lh-single-product-pre-description-links .lh-single-product-reviews-toggle,
.lh-single-product-faqs .lh-single-product-faq-question {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    padding: 22px 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: #777 !important;
    font-family: inherit !important;
    font-size: 15px !important;
    font-weight: 300 !important;
    line-height: 1.5 !important;
    letter-spacing: normal !important;
    text-align: left !important;
    text-decoration: none !important;
    text-transform: none !important;
    cursor: pointer !important;
}

.lh-single-product-pre-description-links .lh-single-product-scroll-link:hover,
.lh-single-product-pre-description-links .lh-single-product-scroll-link:focus,
.lh-single-product-pre-description-links .lh-single-product-shipping-toggle:hover,
.lh-single-product-pre-description-links .lh-single-product-shipping-toggle:focus,
.lh-single-product-pre-description-links .lh-single-product-reviews-toggle:hover,
.lh-single-product-pre-description-links .lh-single-product-reviews-toggle:focus,
.lh-single-product-faqs .lh-single-product-faq-question:hover,
.lh-single-product-faqs .lh-single-product-faq-question:focus {
    background: transparent !important;
    color: #777 !important;
}

.lh-single-product-pre-description-links .lh-single-product-scroll-link span:first-child,
.lh-single-product-pre-description-links .lh-single-product-shipping-toggle span:first-child,
.lh-single-product-pre-description-links .lh-single-product-reviews-toggle span:first-child,
.lh-single-product-faqs .lh-single-product-faq-question span:first-child {
    flex: 1 !important;
    color: #777 !important;
    font-family: inherit !important;
    font-size: 15px !important;
    font-weight: 300 !important;
    line-height: 1.5 !important;
    letter-spacing: normal !important;
    text-align: left !important;
    text-transform: none !important;
}

.lh-single-product-pre-description-links .lh-single-product-scroll-link span:last-child,
.lh-single-product-pre-description-links .lh-single-product-shipping-icon,
.lh-single-product-pre-description-links .lh-single-product-reviews-icon,
.lh-single-product-faqs .lh-single-product-faq-icon {
    flex-shrink: 0 !important;
    margin-left: 20px !important;
    color: #777 !important;
    font-family: inherit !important;
    font-size: 20px !important;
    font-weight: 300 !important;
    line-height: 1 !important;
    letter-spacing: normal !important;
    text-align: right !important;
}

@media (max-width: 768px) {

    .lh-single-product-pre-description-links .lh-single-product-scroll-link,
    .lh-single-product-pre-description-links .lh-single-product-shipping-toggle,
    .lh-single-product-pre-description-links .lh-single-product-reviews-toggle,
    .lh-single-product-faqs .lh-single-product-faq-question {
        padding: 18px 0 !important;
    }
}
