/*
Theme Name: Porto Child
Theme URI: https://www.portotheme.com/wordpress/porto
Author: P-THEMES
Author URI: https://www.portotheme.com/
Description: Porto Responsive WordPress + eCommerce Theme.
Version: 1.1
Template: porto
License: Commercial
License URI: http://themeforest.net/licenses/regular_extended
Tags: woocommerce, corporate, ecommerce, responsive, blue, black, green, white, light, dark, red, two-columns, three-columns, four-columns, left-sidebar, right-sidebar, fixed-layout, responsive-layout, custom-menu, editor-style, featured-images, flexible-header, full-width-template, microformats, post-formats, rtl-language-support, sticky-post, theme-options, translation-ready, accessibility-ready
*/

/*************** ADD YOUR CUSTOM CSS HERE  ***************/

:root {
            --primary-navy: #0f172a;
            --secondary-blue: #1e40af;
            --accent-teal: #0d9488;
            --light-teal: #f0fdfa;
            --warm-gray: #78716c;
            --light-gray: #f8fafc;
            --white: #ffffff;
            --success-green: #065f46;
            --warning-amber: #d97706;
            --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e40af 50%, #0d9488 100%);
            --gradient-card: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            --shadow-subtle: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
            --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --border-radius: 12px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            /*font-family: 'Source Serif Pro', serif;*/
            line-height: 1.7;
            color: var(--primary-navy);
            background: var(--white);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Hero Section */
        .hero {
            background: var(--gradient-hero);
            color: white;
            padding: 100px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #ffffff 0%, #f0fdfa 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-subtitle {
            font-size: 1.4rem;
            font-weight: 400;
            margin-bottom: 32px;
            opacity: 0.9;
            font-family: 'Inter', sans-serif;
        }

        .hero-description {
            font-size: 1.1rem;
            opacity: 0.8;
            line-height: 1.8;
        }

        /* Navigation */
        .sticky-nav {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #e2e8f0;
            position: sticky;
            top: 0;
            z-index: 100;
            transition: var(--transition);
        }

        .nav-container {
            display: flex;
            justify-content: center;
            gap: 0;
            padding: 0;
        }

        .nav-item {
            padding: 20px 32px;
            font-family: 'Inter', sans-serif;
            font-weight: 500;
            color: var(--warm-gray);
            text-decoration: none;
            border-bottom: 3px solid transparent;
            transition: var(--transition);
            cursor: pointer;
            background: none;
            border: none;
            font-size: 15px;
        }

        .nav-item:hover {
            color: var(--secondary-blue);
            background: var(--light-teal);
        }

        .nav-item.active {
            color: var(--accent-teal);
            border-bottom-color: var(--accent-teal);
            background: var(--light-teal);
        }

        /* Content Sections */
        .section {
            padding: 80px 0;
            display: none;
        }

        .section.active {
            display: block;
            animation: fadeInUp 0.6s ease-out;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--primary-navy);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .section-intro {
            font-size: 1.2rem;
            color: var(--warm-gray);
            line-height: 1.7;
            font-family: 'Inter', sans-serif;
        }

        /* Peptide Cards */
        .peptides-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 32px;
            margin: 60px 0;
        }

        .peptide-card {
            background: var(--gradient-card);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-medium);
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid #f1f5f9;
            position: relative;
        }

        .peptide-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-large);
        }

        .peptide-header {
            background: linear-gradient(135deg, var(--accent-teal) 0%, var(--secondary-blue) 100%);
            color: white;
            padding: 32px;
            text-align: left;
            position: relative;
        }

        .peptide-header::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
        }

        .brand-names {
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            opacity: 0.8;
            margin-bottom: 12px;
            font-weight: 400;
        }

        .peptide-name {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .peptide-class {
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            opacity: 0.9;
            font-weight: 500;
        }

        .peptide-body {
            padding: 32px;
        }

        .research-section {
            margin-bottom: 28px;
        }

        .research-section h4 {
            color: var(--secondary-blue);
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 16px;
            font-family: 'Inter', sans-serif;
        }

        .research-list {
            list-style: none;
            space-y: 8px;
        }

        .research-list li {
            padding: 12px 0;
            border-bottom: 1px solid #f1f5f9;
            position: relative;
            padding-left: 24px;
            color: var(--warm-gray);
            font-size: 1rem;
        }

        .research-list li:last-child {
            border-bottom: none;
        }

        .research-list li::before {
            content: '→';
            color: var(--accent-teal);
            position: absolute;
            left: 0;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .mechanism-highlight {
            background: var(--light-teal);
            border: 1px solid #ccfbf1;
            border-radius: 8px;
            padding: 24px;
            margin-top: 24px;
        }

        .mechanism-highlight h5 {
            color: var(--success-green);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 12px;
            font-family: 'Inter', sans-serif;
        }

        .mechanism-highlight p {
            color: var(--success-green);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Research Applications Grid */
        .applications-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 28px;
            margin: 50px 0;
        }

        .application-card {
            background: var(--white);
            border: 1px solid #e2e8f0;
            border-radius: var(--border-radius);
            padding: 32px;
            transition: var(--transition);
            position: relative;
        }

        .application-card:hover {
            border-color: var(--accent-teal);
            box-shadow: var(--shadow-medium);
            transform: translateY(-4px);
        }

        .application-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--accent-teal), var(--secondary-blue));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: white;
        }

        .application-card h4 {
            color: var(--primary-navy);
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 16px;
            font-family: 'Inter', sans-serif;
        }

        .application-card p {
            color: var(--warm-gray);
            line-height: 1.7;
            font-size: 1rem;
        }

        /* Comparison Table */
        .comparison-section {
            background: var(--light-gray);
            border-radius: var(--border-radius);
            padding: 40px;
            margin: 60px 0;
        }

        .comparison-title {
            text-align: center;
            color: var(--primary-navy);
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 32px;
            font-family: 'Inter', sans-serif;
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-subtle);
        }

        .comparison-table th {
            background: linear-gradient(135deg, var(--primary-navy), var(--secondary-blue));
            color: white;
            padding: 20px 16px;
            text-align: left;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
        }

        .comparison-table td {
            padding: 16px;
            border-bottom: 1px solid #f1f5f9;
            color: var(--warm-gray);
            vertical-align: top;
        }

        .comparison-table tr:last-child td {
            border-bottom: none;
        }

        .comparison-table tr:hover {
            background: #f8fafc;
        }

        /* Research Protocols */
        .protocols-section {
            background: var(--white);
            margin: 60px 0;
        }

        .protocol-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin-top: 40px;
        }

        .protocol-box {
            border: 2px solid #e2e8f0;
            border-radius: var(--border-radius);
            padding: 28px;
            background: var(--gradient-card);
            transition: var(--transition);
        }

        .protocol-box:hover {
            border-color: var(--accent-teal);
        }

        .protocol-box h4 {
            color: var(--secondary-blue);
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 16px;
            font-family: 'Inter', sans-serif;
        }

        .protocol-box ul {
            list-style: none;
            space-y: 8px;
        }

        .protocol-box li {
            color: var(--warm-gray);
            padding: 6px 0;
            padding-left: 20px;
            position: relative;
            font-size: 0.95rem;
        }

        .protocol-box li::before {
            content: '•';
            color: var(--accent-teal);
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        /* Disclaimer */
        .disclaimer {
            background: linear-gradient(135deg, #fef3c7, #fde68a);
            border: 2px solid var(--warning-amber);
            border-radius: var(--border-radius);
            padding: 40px;
            margin: 80px 0 40px;
            text-align: center;
        }

        .disclaimer h3 {
            color: #92400e;
            font-size: 1.6rem;
            font-weight: 600;
            margin-bottom: 16px;
            font-family: 'Inter', sans-serif;
        }

        .disclaimer p {
            color: #92400e;
            font-size: 1rem;
            font-weight: 500;
            line-height: 1.7;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .nav-container {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .nav-item {
                padding: 16px 20px;
                font-size: 14px;
            }
            
            .peptides-grid {
                grid-template-columns: 1fr;
            }
            
            .comparison-table {
                font-size: 14px;
            }
            
            .comparison-table th,
            .comparison-table td {
                padding: 12px 8px;
            }
        }

        @media (max-width: 640px) {
            .container {
                padding: 0 16px;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .hero {
                padding: 80px 0 60px;
            }
        }

/* =========== Globals - start =========== */
.mb-0.elementor-widget-text-editor, .mb-0.elementor-widget-text-editor p, .mb-0 p {
    margin-bottom: 0 !important;
}
span.cstm-txt-hover:hover {
    /* color: #D85A10; */
    cursor: pointer;
}
.pepsci-product-form {
    position: relative;
}
.pepsci-product-form.loading:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #ffffffb8;
    z-index: 1;
}
.pepsci-purchase-options span.buy_two_orig_price,
.pepsci-purchase-options span.buy_three_orig_price{
    text-decoration: line-through;
}
.pepsci-purchase-options span.pepsci-price {
    text-align: right;
}
.pepsci-purchase-options span.price-display .amount {
    font-weight: bold;
}
.custom-price {
    color: #000000;
}
.custom-price .woocommerce-Price-amount.amount {
    font-size: 22px !important;
    font-weight: 600;
}
/* =========== Globals - end =========== */

/* =========== Header - start =========== */
/* body:has(.aww-header) #main {
    margin-top: 20px;
} */
.aww-header .header-search-wrap {
    width: 100%;
    /* max-width: 909px; */
}
.header-search-wrap .e-search-form {
    position: relative;
}
.header-search-wrap .e-search-form .e-search-submit {
    position: absolute;
    right: 10px;
    top: 20%;
}
.header-search-wrap .e-search-input-wrapper {
    width: 100%;
}
.aww-header .main-header-col.right {
    max-width: 425px;
}
.aww-header .main-header-col.right .elementor-widget-button {
    width: 100%;
    max-width: 234px;
}

/* =========== Header - end =========== */

/*
Add this class "banner-no-breadcrumbs" on the banner section
to hide breadcrumbs on the site
*/
body:has(.banner-no-breadcrumbs) .page-top {
    display: none;
}
body:has(.banner-no-breadcrumbs) .main-content {
    padding-top: 20px;
}
body:has(.banner-no-breadcrumbs) #main {
    margin-top: 0 !important;
}

/* =========== Header pop up form - start =========== */
.header-popup-form .select-caret-down-wrapper {
    display: none;
}
/* =========== Header pop up form - end =========== */

/* =========== Home banner slider - start =========== */
.aww-home-banner-slider .swiper-slide > .elementor-element {
    min-height: unset;
    aspect-ratio: 16 / 5;
}
/* =========== Home banner slider - end =========== */

/* =========== Home category cars - start =========== */
.aww-cat-card img {
    aspect-ratio: 16/9;
    object-fit: cover;
}
.aww-cat-card .elementor-icon-wrapper {
    display: flex;
}
.aww-cat-card .shop-now a {
    text-underline-offset: 5px;
}
/* =========== Home category cars - end =========== */

/* =========== Footer - start =========== */
.main-footer .elementor-form .elementor-field {
    height: 100%;
}
/* =========== Footer - end =========== */

/* =========== Shop page - start =========== */
.woocommerce-shop .left-sidebar {
    display: none;
}
.woocommerce-shop .main-content.col-lg-9 {
    width: 100%;
}
/* =========== Shop page - end =========== */

/* =========== Product Category Archive page - start =========== */
.aww-prod-cat-items .icons-wrapper {
    top: 16px !important;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    transform: unset !important;
}
.aww-prod-cat-items .icons-wrapper .porto-tb-woo-link {
    margin: 0;
}
.archive.tax-product_cat #main > .container, .archive.woocommerce-shop #main > .container {
    max-width: 1920px;
    padding-left: 64px;
    padding-right: 64px;
}
.aww-prod-cat-items .porto-tb-item {
    margin-bottom: 30px;
}
.prod-cat-arc-sidebar .sidebar-inner {
    max-width: 260px;
}
.archive.tax-product_cat .mobile-sidebar .sidebar-toggle, .archive.woocommerce-shop .mobile-sidebar .sidebar-toggle {
    display: none !important;
}
.prod-cat-arc-sidebar .widget-title {
    font-size: 16px;
    font-weight: 500;
    text-transform: none;
}
.prod-cat-arc-sidebar .product-categories .cat-item {
    font-size: 14px;
}
.prod-cat-arc-sidebar .product-categories .cat-item:not(:last-child) {
    margin-bottom: 5px;
}
.prod-cat-arc-sidebar .woocommerce-widget-layered-nav-list__item {
    font-size: 14px;
}
.prod-cat-arc-sidebar .product-categories .cat-item a {
    padding-left: 32px;
    position: relative;
}
.prod-cat-arc-sidebar .product-categories .cat-item a:before {
    content: "";
    border: 2px solid #0C2230;
    border-radius: 2px;
    aspect-ratio: 1/1;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.prod-cat-arc-sidebar .product-categories .cat-item.current-cat a:before {
    content: "✔";
    font-size: 15px;
    background: #0C2230;
    color: #fff;
}
/* =========== Product Category Archive page - end =========== */

/* =========== Prod Cat Archive sidebar color filter - start =========== */
.prod-cat-arc-sidebar .filter-item-list .filter-color {
    margin-right: 20px;
    margin-bottom: 20px;
    border: 2px solid #000 !important;
    border-radius: 99999px;
    width: 30px;
    height: 30px;
}
.prod-cat-arc-sidebar .filter-item-list .filter-color span {
    display: block !important;
    justify-content: center;
    position: absolute;
    padding: 2px 4px;
    text-indent: 0;
    width: 80px !important;
    max-width: 80px;
    color: #000;
    background: #fff;
    box-shadow: 0 0 4px 0 rgba(0,0,0, 0.2);
    top: calc(-100% - 6px);
    transform: translateX(-50%);
    left: 50%;
    right: 0;
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
}
.prod-cat-arc-sidebar .filter-item-list .filter-color:hover span {
    opacity: 1;
}
.prod-cat-arc-sidebar .filter-item-list .chosen .filter-color:before {
    border: none;
}
.prod-cat-arc-sidebar .filter-item-list .filter-color.current-color:before {
    content: "";
    position: absolute;
    left: -5px;
    top: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid;
    border-color: inherit;
    border-radius: 50%;
}
/* =========== Prod Cat Archive sidebar color filter - end =========== */

/* =========== Single Product page - start =========== */
.woocommerce.single-product #main{
    margin-top: 0;
}
.woocommerce.single-product .main-content{
    padding-top:0;
}

.filter-item-list li a {
    padding: 10px 20px !important;
}
.single-product .single_variation_wrap {
    display: none !important;
}
.workwear-add-to-cart-form-wrapper .size-label {
    font-size: 1em;
    color: #000;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}
.workwear-add-to-cart-form-wrapper .qty-selector button {
    background-color: #fff;
    border: 0;
}
.workwear-add-to-cart-form-wrapper .qty-selector input {
    border: 0;
}
.workwear-add-to-cart-form-wrapper {
    border-bottom: 1px solid #c3c3c3;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.workwear-add-to-cart {
    background-color: #0c2230;
    border-color: #0c2230;
    padding: 10px 30px;
}
/* .single-product .woocommerce-product-rating .star-rating,
.single-product .woocommerce-product-rating .review-link, */
.single-product .woocommerce-product-rating::after {
    display: none;
}
.single-product .variations_form .variations tr:has(ul[data-name="attribute_size"]) {
    display: none;
}
/* .product-images.images .owl-stage, */
.product-images.images .zoomWindowContainer,
.product-images.images .zoomContainer,
.product-images.images .owl-stage.active,
.product-images.images.zoomContainer {
    width: 100% !important;
}
.summary-before.col-md-5 {
    width: 55% !important;
    padding: 0px;
}
.summary.entry-summary.col-md-7 {
    width: 45% !important;
    padding-left: 60px;
}
.total-price-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0 0;
}
.total-price-wrapper h3,
.total-price-wrapper h4 {
    margin: 0;
}
.total-price-wrapper h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
}
.total-price-wrapper h4 {
    font-size: 20px;
    color: #D85A10;
    text-decoration: none !important;
}
span.original-price {
    color: #aaa;
    font-size: 16px;
    font-weight: 300;
    text-decoration: line-through;
    margin-right: 10px;
}
.summary.entry-summary.col-md-7 button.button.alt.workwear-add-to-cart {
    width: 100%;
}
.global-product-info {
    margin: 20px 0px;
}
.shipping-delivery-info {
    display: flex;
    margin-bottom: 10px;
}
.shipping-delivery-info h4 {
    font-size: 16px;
    margin-left: 10px;
    margin-bottom: 0px
}
.shipping-delivery-info svg {
    height: 26px;
    width: 26px;
}
.abw-accordion {
    border-top: 1px solid #e6e1db;
    margin-top: 20px;
}
.abw-accordion-item {
    border-bottom: 1px solid #e6e1db;
}
.abw-accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 12px;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
}
.abw-accordion-header:focus {
    outline: 2px solid #c8bfb5;
    outline-offset: 2px;
}
.abw-accordion-panel {
    padding: 0 12px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .28s ease;
    padding-bottom: 0;
}
.abw-accordion-panel.open {
    padding-bottom: 18px;
}
.abw-accordion-panel p {
    margin: 12px 0;
    color: #333;
    font-size: 15px;
}
.abw-chevron {
    transition: transform .25s ease-in-out;
    background: #ccc;
    height: 26px;
    width: 26px;
    border-radius: 50%;
}

.abw-accordion-header[aria-expanded="true"] .abw-chevron {
    transform: rotate(45deg);
}
.boxed-info-wrap {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.boxed-info-wrap .box-info {
    flex: 1 1 0;
    border: 1px solid #e6e1db;
    border-radius: 1px;
    padding: 20px;
    background: #fff;
    box-shadow: none;
    /* min-height: 120px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.boxed-info-wrap .box-info.review {
    text-align: center;
}
.boxed-info-wrap .box-info.review p {
    margin: 0 0 10px 0;
    font-weight: 500;
    color: #222;
}
.boxed-info-wrap .box-info.review img {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: inline-block;
    margin-top: 6px;
}
.boxed-info-wrap .box-info.contact p {
    margin: 0;
    font-size: 12px;
    color: #555;
}
.boxed-info-wrap .box-info.contact b a {
    font-size: 12px;
    display: inline-block;
    color: #111;
    text-decoration: underline;
}
.summary.entry-summary.col-md-7 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start !important;
    gap: 0px;
    height: fit-content;
}
.summary.entry-summary.col-md-7 .woocommerce-product-rating,
.summary.entry-summary.col-md-7 .product_meta,
.summary.entry-summary.col-md-7 .workwear-add-to-cart-form-wrapper {
    width: 100%
}
.summary.entry-summary.col-md-7 * {
    order: 1;
}
.summary.entry-summary.col-md-7 > * {
    margin-bottom: 0;
}
.summary.entry-summary.col-md-7 .description.woocommerce-product-details__short-description {
    margin-top: 20px;
}
.summary.entry-summary.col-md-7 .product-share,
.single-product .product-summary-wrap .yith-wcwl-add-to-wishlist,
.summary.entry-summary.col-md-7 a.compare.yith-compare.button {
    order: 2;
}
.summary.entry-summary.col-md-7 .global-product-info {
    order: 3;
    width: 100%;
}
.summary.entry-summary.col-md-7 span.abw-chevron svg {
    color: #000;
    height: auto;
    width: 20px;
}
/* =========== Single Product page - end =========== */

#custom-login-register .col-md-6.mx-auto.mb-4 {
    width: 100% !important;
}
#custom-login-register #user-registration-form-5859 {
    padding: 0;
    box-shadow: none;
}
#custom-login-register .ur-submit-button.submit {
    background: #000000;
    color: #ffffff;
    width: 100% !important;
    height: 60px;
    border-radius: 0;
}
#custom-login-register .ur-button-container {
    width: 100% !important;
    margin-top: 51px;
}
.logged-in #custom-login-register .elementor-element.elementor-element-f245945 {
    width: 100%;
}
.user-registration.ur-frontend-form input {
    border-radius: 4px;
    max-height: 50px !important;
    line-height: 50px !important;
}
.user-registration .form-row {
    margin: 0;
}
.user-registration .form-row label {margin-bottom: 6px !important;}

/* Archive Support styles */
body:has(.support-banner-row) .porto-block:has(.elementor-widget-porto_page_header) {
    display: none;
}
body:has(.support-banner-row) #main {
    margin-top: 0;
}
body:has(.support-banner-row) #main > .container {
    max-width: 100%;
    padding: 0;
}
body:has(.support-banner-row) #main > .container .main-content {
    padding-top: 0;
    padding-bottom: 0;
}
.support-home-cards-loop-item .elementor-image-box-img {
    display: flex !important;
    justify-content: center;
}
body:has(.support-banner-row) .sidebar {
    display: none;
}
body:has(.support-banner-row).single-post #main > .container .main-content {
    width: 100%;
}
/* Custom Search - Starts */
.custom-search-filter {
    position: relative;
}
.custom-search-filter .search-results {
    position: absolute;
    background-color: #ffffff;
    z-index: 1;
    width: 100%;
    border-radius: 0 0 3px 3px;
    border: 1px solid #CBD6E2;
    border-top: 0px;
}
.custom-search-filter .item-wrap {
    padding: 20px;
}
.custom-search-filter .item-wrap a {
    color: #33475b;
}
.custom-search-filter .item-wrap:hover {
    background: #2d3e501a;
}
.custom-search-filter .item-wrap .title {
    font-size: 16px;
}
.custom-search-filter .item-wrap  .excerpt {
    font-size: 14px;
}
.custom-search-filter .search-content {
    position: relative;
}
.custom-search-filter .search-close {
    position: absolute;
    right: 10px;
    z-index: 1;
    top: 7px;
    cursor: pointer;
}
.custom-search-filter .search-icon-wrap {
    position: absolute;
    top: 18%;
    left: 18px;
}
.custom-search-filter .search-close i,
.custom-search-filter .search-icon-wrap i {
    font-size: 14px;
    color: #7c98b6;
    fill: #7c98b6;
}
.custom-search-filter .custom-search-input {
    padding: 12px 45px;
    height: 50px;
    font-size: 16px;
    color: #7c98b6;
    border-radius: 3px;
    border-color: transparent;
    width: 100%;
}
.custom-search-filter .custom-search-input:focus {
    border-color: #CBD6E2;
    outline: none;
    border-radius: 3px 3px 0 0;
}

/* New Homepage */
body:has(.home-banner) .page-top {
    display: none !important;
}

/* New Homepage category cards */
.cat-card-btn-wrap .elementor-icon-box-content {
    width: auto;
    flex: unset;
}
.cat-card-btn-wrap .elementor-icon-box-wrapper {
    justify-content: center;
}
.new-cat-card .cat-card-btn-wrap {
    background: radial-gradient(circle, #231f20 60%, #231f20cd 80%) !important;
}
.aww-cat-card.new-cat-card:hover .elementor-icon-box-title {
    color: #d85a10 !important;
}
.aww-cat-card.new-cat-card .elementor-icon-box-title {
    transition: all 0.3s ease;
}
.aww-cat-card.new-cat-card .cat-image {
    background-image: url('/wp-content/uploads/2026/02/AW-favicon-gray.png');
    background-position: center;
    background-size: 90%;
    background-repeat: no-repeat;
    background-color: #E6E6E6;
}

/* Home Below Banner logos - on responsive only */
.below-banner-carousel .swiper-wrapper {
    transition-timing-function: linear !important;
}

/* ====================== Responsive ====================== */
@media screen and (max-width: 1024px) {
    .archive.tax-product_cat #main > .container, .archive.woocommerce-shop #main > .container {
        padding-left: 30px;
        padding-right: 30px;
    }
    .boxed-info-wrap {
        flex-direction: column;
    }
    .summary.entry-summary.col-md-7 {
        padding-left: 40px;
    }
}
@media (max-width: 768px) {
    .product-summary-wrap .row {
        flex-direction: column;
    }
    .boxed-info-wrap .box-info {
        width: 100%;
    }
    .summary-before.col-md-5 {
        width: 100% !important;
    }
    .summary.entry-summary.col-md-7 {
        width: 100% !important;
        padding-left: 0px;
    }
    .summary.entry-summary.col-md-7 button.button.alt.workwear-add-to-cart {
        width: auto;
    }
}
@media screen and (max-width: 767px) {
    .archive.tax-product_cat #main > .container, .archive.woocommerce-shop #main > .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .prod-cat-arc-sidebar .sidebar-inner {
        max-width: 500px;
        margin: 0 auto;
    }
    .aww-cat-card.new-cat-card .elementor-widget-image {
        aspect-ratio: 16/9;
        height: auto;
        width: 100%;
    }
    .aww-cat-card.new-cat-card .elementor-icon-box-icon {
        display: none;
    }
    .aww-cat-card.new-cat-card {
        flex-wrap: nowrap;
    }
    .aww-cat-card.new-cat-card .cat-card-btn-wrap {
        height: 100%;
        justify-content: center;
        padding: 8px 12px;
    }
    span.hide-mobile {
        display: none;
    }
}
@media screen and (max-width: 425px) {
    .summary.entry-summary.col-md-7 button.button.alt.workwear-add-to-cart {
        width: 100%;
    }
}

/* New Styles for Peptide Sciences */

/* Header */
.aww-header .hfe-search-form__container {
    min-height: 42px !important;
}

.products-grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    align-items: stretch;
}
.product-tabs{
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    cursor: pointer;
    gap: 12px;
    padding: 0px;
    overflow-x: auto;
}
ul.product-tabs li.active,
ul.product-tabs li:hover {
    padding: 8px 14px;
    list-style-type: none;
    background: #172331;
    color: #FFFFFF;
    font-size: 16px;
}
ul.product-tabs li {
    padding: 8px 14px;
    list-style-type: none;
    background: #FFFFFF;
    color: #172331;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #172331;
    text-wrap: nowrap;
}
.product-item .elementor-7200.e-loop-item {
    height: 100%;
}
.products-loading{
    text-align:center;
    padding:60px;
    font-size:18px;
}
.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #172331;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} 
.products-grid .elementor-element.elementor-element-b755145.e-con-full.e-flex.e-con.e-parent {
    width: 100%;
    margin: 0 !important;
}

/* Help & Support Page */
.archive.category .no-breadcrumbs .main-content {
    padding-top: 0px !important;
}
.peptide-hns-search .elementor-shortcode {
    display: flex;
    justify-content: center;
    align-items: center;
}
.custom-search-bar {
    width: 100%;
    max-width: 600px;
}
.custom-search-bar form {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 50px;
    padding: 6px;
}
.custom-search-bar input[type="search"] {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 16px;
    font-size: 16px;
    outline: none;
}
.custom-search-bar button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #172331;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    position: absolute;
    right: 6px;
}
.custom-search-bar button:hover {
    opacity: 0.9;
}

/* Taxonomy Children */
.taxonomy-children-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}
.taxonomy-children-wrapper .child-cat-link {
    height: 100%;
}

/* Each item box */
.taxonomy-child-box {
    text-align: center; /* center everything */
    padding: 20px;
    border-bottom: 1px solid #000000;
    background: #f6f0e6;
    transition: all 0.3s ease;
    height: 100%;
}

/* Hover effect */
.taxonomy-child-box:hover {
    box-shadow: 0 8px 22px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

/* Thumbnail image */
.taxonomy-child-box .child-thumb img,
.taxonomy-child-box .child-acf-logo img {
    width: 120px; /* adjust size */
    height: auto;
    margin-bottom: 15px;
    display: inline-block;
}

/* Title */
.taxonomy-child-box .child-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.taxonomy-child-box .child-title a {
    text-decoration: none;
    color: #333;
}

.taxonomy-child-box .child-title a:hover {
    color: #0073aa;
}

/* Slug */
.child-slug {
    font-size: 0.9rem;
    color: #777;
}

/* Description */
.child-desc {
    margin: 10px 0;
    font-size: 0.95rem;
    color: #555;
}

/* Post count */
.child-count {
    margin-top: 10px;
    font-weight: 600;
    color: #444;
}


/* Custom Search - Starts */
.custom-search-filter.hs-cat .search-results {
    position: absolute;
    background-color: #ffffff;
    z-index: 1;
    width: 100%;
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-top: 5px;
}
.custom-search-filter.hs-cat .search-no-results {
    padding: 10px;
    text-align: center;
    color: #333;
}
/* Custom Search - Ends */

/* ========= Custom login & register page - start ========= */
.pepsci-custom-login .elementor-field-type-text:first-child:before {
    content: '\f2bd';
    font-family: "Font Awesome 6 Free";
    z-index: 999;
    display: block;
    position: absolute;
    left: 12px;
    bottom: 10px;
    font-size: 22px;
}
.pepsci-custom-login .elementor-field-type-text input[type="text"] {
    padding-left: 42px;
}
.pepsci-custom-login .elementor-field-type-text:first-child {
    position: relative;
}
.pepsci-custom-login .elementor-field-type-text input {
    line-height: 1.5;
    height: auto;
}
.pepsci-custom-login .elementor-field-type-checkbox label {
    padding-bottom: 0 !important;
}
.pepsci-custom-login .elementor-field-type-submit .elementor-button {
    margin-bottom: 20px;
}
.pepsci-custom-login .register-link {
    background-color: #172331;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5em;
    border-radius: 8px 8px 8px 8px;
    padding: 12px 18px 12px 18px;
    width: 100%;
    text-align: center;
    color: #fff !important;
}
.pepsci-custom-login .elementor-lost-password {
    font-family: 'Fira Sans';
    font-size: 15px;
}
.pepsci-custom-pass-reset.elementor-widget-shortcode {
    font-family: "Fira Sans", sans-serif;
}
.pepsci-custom-pass-reset form label {
    font-weight: 400 !important;
}
.pepsci-custom-pass-reset .woocommerce-Button.button {
    background: #172331;
    width: 100%;
    font-size: 16px;
    border-radius: 4px;
    font-weight: 400;
}
.pepsci-custom-pass-reset .lost_reset_password input {
    background-color: #ffffff;
    border-color: #777;
    border-radius: 4px;
}
.pepsci-custom-pass-reset .col-lg-8.col-xl-6.mx-auto {
    width: 100%;
}
.pepsci-custom-pass-reset .featured-box.featured-box-primary {
    border: none;
    box-shadow: none;
}
.pepsci-custom-pass-reset .featured-box-primary .box-content {
    border: none;
    padding: 0px;
}
/* ========= Custom login & register page - end ========= */

/* VAT toggle - Start */
.include-vat-tax-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.toggle {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    gap: 10px;
}
.toggle input {
    display: none;
}
.toggle-slider {
    position: relative;
    width: 44px;
    height: 24px;
    background: #ccc;
    border-radius: 999px;
    transition: background 0.3s ease;
}
.toggle-slider::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.toggle input:checked + .toggle-slider {
    background: #172331; 
}
.toggle input:checked + .toggle-slider::before {
    transform: translateX(20px);
}
.toggle-label {
    font-size: 14px;
    user-select: none;
}
label.toggle:hover {
    color: #000;
    transition: color .3s ease;
}
/* VAT toggle - End */

/* Single Help & Support Post */
.single-post-breadcrumbs .page-top > .container {
    margin-left: 0;
}
.single-post .elementor-widget-theme-post-content h2, .single-post .elementor-widget-theme-post-content h3,
.single-post .elementor-widget-theme-post-content h4, .single-post .elementor-widget-theme-post-content h5,
.single-post .elementor-widget-theme-post-content h6 {
    margin-bottom: 6px;
}
.single-post .elementor-author-box__bio {
    margin-bottom: 0;
    width: fit-content;
    padding: 4px 8px;
    display: block;
    background: rgba(0,0,0,0.075);
}
.copy-post-link {
    cursor: pointer;
}
.copy-post-link .elementor-icon-wrapper {
    display: flex;
}

/* Single Product Add to Cart Form */
.pepsci-product-form {
  width: 100%;
}
.pepsci-product-form .pepsci-section-title {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 24px;
}
.pepsci-product-form .pepsci-grams-options {
  display: flex;
  gap: 10px;
}
.pepsci-product-form .pepsci-grams {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid #172331;
  background: transparent;
  cursor: pointer;
  transition: 0.2s;
}
.pepsci-product-form .pepsci-grams.is-active {
  background: #172331;
  color: #fff;
}
.pepsci-product-form .pepsci-purchase-options {
  margin-top: 15px;
}
.pepsci-product-form .pepsci-option {
  border: 2px solid #ccc;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: 0.2s;
  position: relative;
}
.pepsci-product-form .pepsci-option input[type="radio"] {
  display: none;
}
.pepsci-product-form .pepsci-option-checkbox {
  width: 18px;
  height: 18px;
  border: 2px solid #172331;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}
.pepsci-product-form .pepsci-option input[type="radio"]:checked + .pepsci-option-checkbox::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 10px;
  height: 10px;
  background: #172331;
  border-radius: 50%;
}
.pepsci-product-form .pepsci-purchase-options h4 {
    text-align: center;
    font-size: 24px;
}
label.pepsci-option.pepsci-option--subscribe .pepsci-option-checkbox {
    background: #eee;
    border-color: #fff;
    display: block;
    position: absolute;
    margin-top: 3px;   
}
span.pepsci-option-label {
    width: 100%;
    color: #172331;
}
label.pepsci-option.pepsci-option--subscribe .pepsci-option-label {
    margin-left: 30px;
}
.pepsci-product-form .pepsci-option.is-selected {
  border-color: #172331;
  color: #172331;
}
.pepsci-product-form .pepsci-option--subscribe {
  display: block;
  background: #172331;
  color: #fff;
}
.pepsci-product-form .pepsci-option--subscribe .pepsci-price-wrap {
  float: right;
  color: #fff;
}
.pepsci-product-form .pepsci-old-price {
  text-decoration: line-through;
  margin-right: 8px;
  opacity: 0.7;
}
.pepsci-product-form .pepsci-new-price {
  font-weight: bold;
}
.pepsci-product-form .last-option-content {
  display: none;
  flex-direction: column;
  margin-top: 10px;
  width: 100%;
}
.pepsci-product-form .pepsci-option input[type="radio"]:checked ~ .last-option-content {
  display: flex;
}
.pepsci-product-form .pepsci-subscription-box {
  background: #fff;
  color: #333;
  padding: 10px;
  border-radius: 6px;
  margin: 10px 0;
  display: flex;
  justify-content: space-between;
}
.pepsci-product-form .pepsci-benefits {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-top: 10px;
}
.pepsci-product-form .pepsci-bottom {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
.pepsci-product-form .pepsci-add-to-cart {
  flex: 1;
  background: #172331;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px;
  cursor: pointer;
  font-weight: 600;
}
.pepsci-product-form .pepsci-subscription-select {
  width: 100%;
  color: #333;
  padding: 10px;
  border-radius: 6px;
  border: none;
  appearance: none;
  cursor: pointer;
}
.pepsci-review-stars .woocommerce-product-rating {
  margin: 0;
}
.pepsci-product-form .pepsci-option--subscribe span.pepsci-option-label,
.pepsci-product-form div.pepsci-benefits {
    color: #fff;
}
/* Single Product Add to Cart Form */

/*  */
.shipping-delivery-info-new {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 30px 50px 30px;
    border-radius: 16px;
    background: #eee;
    justify-content: space-around;
}
.shipping-delivery-info-new h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}
.product-thumbs-slider.owl-carousel .owl-item.selected .img-thumbnail, html:not(.touch) .product-thumbs-slider .owl-item:hover .img-thumbnail {
    border-radius: 8px;
    overflow: hidden;
}
.product-images .img-thumbnail .inner {
    border: 2px solid #333;
    border-radius: 16px;
}

/* Product Specifications */
.product-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 2rem; /* vertical 0, horizontal gap in middle */
}
.product-specs-grid .spec-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid #e5e5e5;
}
.product-specs-grid .specs-label {
    background: #f7f7f7;
    color: #555;
    padding: .75rem 1rem;
    border-right: 1px solid #e5e5e5;
}
.product-specs-grid .specs-value {
    padding: .75rem 1rem;
}
.product-specs-grid,
.product-coa-container {
    font-size: 15px;
}

/* Main Header - Start */
.pepsci-header-icons .elementor-icon-wrapper {
    display: flex !important;
}
.pepsci-wpcs .elementor-shortcode {
    height: 36px;
}
.elementor-element.pepsci-wpcs {
    min-width: 100px;
}
.pepsci-wpcs .elementor-shortcode .selectron23 {
    z-index: 999 !important;
    min-width: 100px;
}
.pepsci-header-menu ul.sub-menu {
    padding: 16px 0px;
}
.pepsci-header-menu ul.sub-menu li a.hfe-sub-menu-item:hover {
    text-decoration: underline;
}
.pepsci-header-menu ul.hfe-nav-menu {
    flex-wrap: nowrap !important;
}
.pepsci-header-menu ul li a.hfe-menu-item {
    text-wrap: nowrap !important;
}
/* default (hidden state) */
.pepsci-header-menu ul.sub-menu {
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(5px) !important;
  transition: all 0s linear .3s;
}
.pepsci-header-menu li:hover > ul.sub-menu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  transition-delay: 0s !important;
}
/* Main Header - End */

/* Elementor */
.elementor-widget-loop-grid .elementor-grid .e-loop-item .e-parent {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
    width: 100%;
}

/* Tech Blogs */
.pepsci-custom-tabs {
    background:#fff;
}
.pepsci-custom-tabs .tab-nav {
    display:flex;
    list-style:none;
    padding:0;
    margin:0 0 15px 0;
    border-bottom:1px solid #ddd;
    justify-content: space-between;
}
.pepsci-custom-tabs .tab-nav li {
    margin-right:20px;
    cursor:pointer;
    padding-bottom:5px;
    width: 100%;
    text-align: center;
}
.pepsci-custom-tabs .tab-nav li.active {
    border-bottom:2px solid #172331;
    font-weight:bold;
    color: #172331;
}
.pepsci-custom-tabs .tab-panel {
    display:none;
}
.pepsci-custom-tabs .tab-panel.active {
    display:block;
}
.pepsci-custom-tabs .tab-item {
    margin-bottom:15px;
}
.pepsci-custom-tabs .tab-item .comments-count {
    font-size: 14px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pepsci-custom-tabs .tab-item {
    display:flex;
    justify-content:space-between;
}
.pepsci-custom-tabs .tab-item {
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.pepsci-custom-tabs .tab-item .meta {
    display:flex;
    flex-direction:column;
}
.pepsci-custom-tabs .tab-item .meta a {
    font-size: 16px;
    color: #101010;
    font-weight: 500;
}
.pepsci-custom-tabs .tab-item .meta span {
    font-size: 14px;
    color:#888;
}
.pepsci-tech-loop-img-con-sm img {
    min-width: 70px;
}
.pepsci-tech-loop-img-con-lg img {
    min-width: 125px;
}
.pepsci-custom-tabs .wpp-list {
    padding: 0;
}
/* clock icon */
/* .pepsci-custom-tabs .tab-panel#popular .tab-item .meta span::before,
.pepsci-custom-tabs .tab-panel#trending .tab-item .meta span::before
 {
    content: "\f017";
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
    margin-right: 6px;
} */
/* comment icon */
/* .pepsci-custom-tabs .tab-panel#trending .tab-item .comments-count::before,
.pepsci-custom-tabs .tab-panel#popular .tab-item .comments-count::before
 {
    content: "\f27a"; 
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
    margin-right: 6px;
} */

/* Contact */
.pepsci-contact-main-wrap .cf-left-con .elementor-icon {
    border-color: #ccc !important;
}

/* Read More Toggle - Start */
.pepsci-readmore-text {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s ease;
}
.pepsci-readmore-wrapper.expanded .pepsci-readmore-text {
  -webkit-line-clamp: unset;
  overflow: visible;
}
.pepsci-readmore-btn {
  display: inline-block;
  margin-top: 5px;
  color: #172331;
  cursor: pointer;
  font-weight: 500;
}
/* Read More Toggle - End */

/* Product Reviews - START */
.pepsci-product-review-con #reviews .woocommerce-Reviews-title {
  font-family: 'Lexend';
  margin-bottom: 1.5rem;
  font-size: 1.625rem;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1.2;
}

.pepsci-product-review-con #reviews .comment-respond {
  margin-top: 3.4rem;
}

.pepsci-product-review-con .woocommerce-Reviews {
  display: flex;
  flex-wrap: wrap;
}

.pepsci-product-review-con .woocommerce-Reviews > div:not(.clear) {
  width: 100%;
}

.pepsci-product-review-con #reviews .cr-summaryBox-wrap {
  display: block;
  background: #fff;
}

.pepsci-product-review-con #reviews .cr-summaryBox-wrap .cr-overall-rating-wrap {
  display: block;
}

.pepsci-product-review-con #reviews .cr-summaryBox-wrap .ivole-summaryBox,
.pepsci-product-review-con #reviews .cr-summaryBox-wrap .cr-overall-rating-wrap {
  padding-left: 0;
  padding-right: 0;
}

.pepsci-product-review-con #reviews .cr-summaryBox-wrap .cr-average-rating {
  font-size: 40px;
  font-weight: 600;
}

.pepsci-product-review-con #reviews .commentlist {
  margin-right: 40px;
}

.pepsci-product-review-con #reviews .commentlist .img-thumbnail img {
  max-width: 65px;
  border-radius: 50%;
}

.pepsci-product-review-con #reviews .comment-notes {
  margin-bottom: 1.5rem;
}

.pepsci-product-review-con #reviews .comment-form {
  padding: 0;
  background: #fff;
}

.pepsci-product-review-con #reviews .comment-form label {
  margin-bottom: 7px;
  font-weight: 400;
  color: #777;
}

.pepsci-product-review-con #reviews .comment-form .comment-form-rating {
  margin-bottom: 0.8rem;
}

.pepsci-product-review-con #reviews .comment-form textarea,
.pepsci-product-review-con #reviews .comment-form input:not(.submit):not(#wp-comment-cookies-consent) {
  background-color: #F4F4F4;
  border-color: #F4F4F4;
}

.pepsci-product-review-con #reviews #wp-comment-cookies-consent {
  width: 20px;
  height: 20px;
  border-radius: 0;
  border-color: #C2C0CA;
}

.pepsci-product-review-con #ivole-histogramTable {
  margin-left: 0;
}

.pepsci-product-review-con .ivole-meter {
  height: 10px;
  background: #F3F3F3;
  box-shadow: none;
  border-radius: 5px;
}

.pepsci-product-review-con .ivole-meter .ivole-meter-bar {
  box-shadow: none;
  border-radius: 5px;
  background: #D8D8D8;
}

.pepsci-product-review-con #review_form_wrapper .comment-reply-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -.01em;
  color: #222529;
  text-transform: uppercase;
}

.pepsci-product-review-con #reviews #comments .cr-summaryBox-wrap .crstar-rating,
.pepsci-product-review-con #reviews span.required,
.pepsci-product-review-con #reviews #comments .star-rating span:before {
  color: #FF5B5B;
}

.pepsci-product-review-con #review_form {
  position: sticky;
  top: 10px;
}

.pepsci-product-review-con #reviews .comment-form-cookies-consent {
  margin-bottom: 2rem;
}

.pepsci-product-review-con #reviews .form-submit .submit {
  font-weight: 600;
  text-transform: uppercase;
  padding: 1em 3.45em;
  background-color: var(--porto-color-dark);
  border-color: var(--porto-color-dark);
  border-radius: 3rem;
}

.pepsci-product-review-con #reviews .comment-form input[type=text],
.pepsci-product-review-con #reviews .comment-form input[type=email] {
  line-height: 2;
}

.pepsci-product-review-con #reviews .commentlist li {
  padding-left: 85px;
}

.pepsci-product-review-con .commentlist li .comment-text p {
  font-size: 14px;
  line-height: 27px;
}

.pepsci-product-review-con #reviews .commentlist .comment-text {
  display: flex;
  flex-direction: column;
  padding: 0;
  background: #fff;
}

.pepsci-product-review-con #reviews .commentlist .comment-text:before {
  content: none;
}

.pepsci-product-review-con #reviews .commentlist .star-rating {
  float: unset;
  margin-bottom: 7px;
}

.pepsci-product-review-con .commentlist li .comment-text .meta {
  order: -1;
  margin-bottom: 10px;
}

.pepsci-product-review-con .commentlist li .comment-text .meta strong {
  color: #222529;
}

/* Product Category Archives - START */
.pcasc-wrap .peptide-filter {
    padding-top: 50px;
}
.pcasc-wrap .peptide-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}
.pcasc-wrap .peptide-filter ul {
    list-style: none;
    padding: 0;
}
.pcasc-wrap .peptide-filter li {
    margin-bottom: 15px;
}
.pcasc-wrap .peptide-filter h3 {
    font-size: 24px;
}
.pcasc-wrap .peptide-filter a {
    text-decoration: none;
    color: #000;
    cursor: pointer;
    font-size: 16px;
}
.pcasc-wrap .peptide-filter a.active {
    font-weight: bold;
}
.pcasc-wrap .peptide-products {
    width: 100%;
}
.pcasc-wrap .products-grid-inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}
.pcasc-wrap .toggle-vt-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}
@media screen and (max-width: 1440px) {
    .pcasc-wrap .peptide-layout {
        gap: 20px;
    }
    .pcasc-wrap .products-grid-inner {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}
@media screen and (max-width: 1024px) {
    .pcasc-wrap .peptide-layout {
        grid-template-columns: 200px 1fr;
    }
    .pcasc-wrap .products-grid-inner {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}
@media screen and (max-width: 768px) {
    .pcasc-wrap .products-grid-inner {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media screen and (max-width: 450px) {
    .pcasc-wrap .peptide-layout {
        display: flex;
        flex-direction: column;
    }
    .pcasc-wrap .toggle-vt-wrapper {
        justify-content: center;
    }
}
/* Product Category Archives - END */

/* Product Navigation Search - Starts */
.peptide-nav-search .ajax-product-search {
    position: relative;
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    font-size: 14px;
}
.peptide-nav-search input.product-search-input {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ccc;
    background: #fff;
    color: #101010;
}
.peptide-nav-search .product-search-results {
    width: 100%;
    background: #fff;
    margin-top: 6px;
    max-height: 440px; /* scroll trigger */
    overflow-y: auto;
    z-index: 999;
}
.peptide-nav-search .search-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.peptide-nav-search .search-list li {
    padding: 8px;
    cursor: pointer;
    color: #101010;
    border-radius: 8px;
}
.peptide-nav-search .search-list li:hover {
    background: #eee;
}
.peptide-nav-search .no-results {
    padding: 12px;
    color: #101010;
}
.peptide-nav-search .results-count {
    color: #555;
    margin: 0px;
    font-size: 12px;
}
/* Product Navigation Search - Ends */

.woocommerce-cart td.product-quantity span.bundle-qty {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    width: 44px;
    height: 44px;
    border: 1px solid #e7e7e7;
}
.cart-item-wrapper {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px;
}
.cart-item-bundle, .small-sp-bundle {
    font-size: 13px;
    font-weight: 400;
    color: #444;
    line-height: 1 !important;
}
.ps-responsive-menu ul.e-n-menu-heading {
    flex-direction: column;
    gap: 15px;
}

/* Registration */
.pepsci-registration-sc .user-registration.ur-frontend-form {
    padding: 40px 0px
}
.pepsci-registration-sc form input {
    border: 1px solid #222222 !important;
    border-radius: 8px 8px 8px 8px !important;
}
.pepsci-registration-sc form button.btn.button.ur-submit-button.submit {
    background-color: #172331;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5em;
    border-radius: 8px 8px 8px 8px;
    padding: 12px 18px 12px 18px;
    width: 100%;
}
.pepsci-registration-sc .ur-button-container {
    width: 100% !important;
}


@media (max-width: 1366px) {
    .peptide-nav-search .product-search-results {
        max-height: 350px;
    }
    .ps-responsive-menu .e-n-menu-content.e-active {
        width: fit-content !important;
    }
}

@media (min-width: 768px) {
  .pepsci-product-review-con .woocommerce-Reviews {
    flex-wrap: nowrap;
  }
}

@media (max-width: 991px) {
  .pepsci-product-review-con #reviews .woocommerce-Reviews-title {
    margin-bottom: 0.9rem;
    font-size: 1.4rem;
  }
}

@media (max-width: 767px) {
  .pepsci-product-review-con #review_form_wrapper .comment-reply-title {
    margin-bottom: 1.6rem;
  }

  .pepsci-product-review-con #reviews .commentlist li {
    margin-bottom: 0;
  }

  .pepsci-product-review-con #reviews .comment-respond {
    margin-top: 0.6rem;
  }

  .pepsci-product-review-con #reviews .form-submit .submit {
    font-size: 11px;
  }

  .pepsci-s-product-img img.woocommerce-main-image.wp-post-image {
    height: 300px;
    object-fit: contain;
  }
  .pepsci-product-title-sp {
    display: flex;
    align-items: center;
    height: 30px;
  }
}

@media (max-width: 575px) {
  .pepsci-product-review-con .commentlist li .comment_container {
    background: #fff;
  }

  .pepsci-product-review-con #reviews .commentlist {
    margin-right: 0;
  }

  .pepsci-product-review-con #reviews .commentlist li {
    padding-left: 0;
  }
}
/* Product Reviews - END */

@media (max-width: 1024px) {
    .product-specs-grid {
        overflow-x: scroll;
    }
    .specs-value,
    .specs-label {
        min-width: 180px
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns:repeat(2,1fr);
    }
    .taxonomy-children-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .elementor-element.pepsci-wpcs,
    .pepsci-wpcs .elementor-shortcode .selectron23 {
        min-width: 100px;
    }
    .pepsci-custom-pass-reset .woocommerce-Button.button,
    .pepsci-custom-login .register-link {
        font-size: 15px;
    }
    .no-breadcrumbs .main-content {
        padding-top: 0;
    }
    .pepsci-product-form .pepsci-purchase-options h4,
    .pepsci-product-form .pepsci-section-title {
        font-size: 20px;
    }
    .boxed-info-wrap .box-info.review img {
        height: 100px;
        object-fit: cover;
    }
}
@media screen and (max-width: 500px) {
    .selectron23-container[data-opened="0"] > span,
    .selectron23-container[data-opened="1"] > span {
        display: none;
    }
    .elementor-element.pepsci-wpcs {
        min-width: 80px;
    }
    .pepsci-wpcs .elementor-shortcode .selectron23 {
        z-index: 999 !important;
        min-width: 80px;
    }
    .pepsci-wpcs .elementor-shortcode .selectron23-option {
        padding: 9px !important;
    }
}
@media screen and (max-width: 450px) {
    .taxonomy-children-wrapper {
        grid-template-columns:1fr;
    }
    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px 12px;
    }
    .product-tabs {
        margin-bottom: 16px;
    }
}


