/*
 * Guybro WooCommerce Single Product
 * Figma node: 17:942
 */

.guybro-product-page {
    width: 100%;
    background: #fff;
    overflow: hidden;
}

.guybro-product-page .guybro-shop-container {
    width: 1240px;
    max-width: calc(100% - 40px);
    margin: 0 auto;
}

.guybro-product-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 1240px;
    max-width: 100%;
    min-height: 23px;
    padding-top: 40px;
    margin-bottom: 60px;
    color: #000;
    font: 300 18px/1 "Poppins", sans-serif;
    letter-spacing: -.36px;
}

.guybro-product-breadcrumbs a {
    color: inherit;
    text-decoration: none;
}

.guybro-product-breadcrumbs .current {
    font-weight: 700;
}

/*
 * Figma desktop:
 * 230px category sidebar + 60px gap + 950px product area.
 */
.guybro-product-layout {
    display: grid;
    grid-template-columns: 230px 950px;
    column-gap: 60px;
    width: 1240px;
    max-width: 100%;
    align-items: start;
    padding-bottom: 80px;
}

.guybro-product-sidebar {
    width: 230px;
    grid-column: 1;
    position: sticky;
    top: 20px;
}

.guybro-product-content {
    width: 950px;
    max-width: 100%;
    grid-column: 2;
    min-width: 0;
}

.guybro-product-title {
    width: 950px;
    max-width: 100%;
    margin: 0 0 30px !important;
    color: #b71939 !important;
    font: 700 55px/75px "Raleway", sans-serif !important;
    letter-spacing: -1.1px !important;
}

/*
 * Main Figma composition:
 * ALL text/content = left 595px
 * Product image = right 325px
 * Gap = 30px
 */
.guybro-product-main {
    width: 950px;
    max-width: 100%;
    display: grid;
    grid-template-columns: 595px 325px;
    column-gap: 30px;
    align-items: start;
}

.guybro-product-copy {
    width: 595px;
    max-width: 100%;
    grid-column: 1;
    grid-row: 1;
    color: #404040;
    text-align: left;
}

.guybro-product-tagline {
    width: 405px;
    max-width: 100%;
    margin: 0 0 30px;
    color: #000;
    font: 700 24px/1.12 "Raleway", sans-serif;
    letter-spacing: -.48px;
}

.guybro-product-description {
    width: 595px;
    max-width: 100%;
    color: #404040;
    font: 300 14px/1.35 "Poppins", sans-serif;
    letter-spacing: -.28px;
}

.guybro-product-description p {
    margin: 0 0 15px;
}

.guybro-product-description ul,
.guybro-product-description ol {
    margin: 5px 0 15px 20px;
    padding: 0;
}

.guybro-product-description li {
    margin: 0;
}

.guybro-product-detail-block {
    margin-bottom: 15px;
    color: #404040;
    font: 300 14px/1.35 "Poppins", sans-serif;
    letter-spacing: -.28px;
}

.guybro-product-detail-block .label {
    display: block;
    margin-bottom: 4px;
    color: #9d231f;
    font-weight: 700;
}

.guybro-product-detail-block ul {
    margin: 5px 0 0 20px;
    padding: 0;
}

.guybro-product-detail-block li {
    margin: 0;
}

.guybro-product-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    padding: 15px;
    border: 1px solid #9d231f;
    border-radius: 70px;
    background: #9d231f;
    color: #fff;
    text-decoration: none;
    font: 300 14px/1 "Poppins", sans-serif;
    letter-spacing: -.28px;
}

.guybro-product-button:hover {
    background: #7f1b18;
    color: #fff;
}

/* Right-hand product image panel */
.guybro-product-image-panel {
    width: 325px;
    height: 385px;
    min-height: 385px;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;
}

.guybro-product-image-panel img {
    width: 269px;
    height: 385px;
    max-width: 100%;
    display: block;
    object-fit: contain;
}

/*
 * IMPORTANT:
 * If Bootscore wraps this page in its standard content/sidebar layout,
 * remove those wrappers visually. The Figma template owns the page width.
 */
body.single-product #sidebar,
body.single-product .sidebar,
body.single-product .widget-area,
body.single-product .right-sidebar,
body.single-product .blog-sidebar,
body.single-product .main-sidebar,
body.single-product .woocommerce-sidebar {
    display: none !important;
}

body.single-product .content-area,
body.single-product .site-main {
    width: 100% !important;
    max-width: none !important;
    flex: 0 0 100% !important;
    margin: 0 !important;
}

body.single-product .guybro-product-page {
    width: 100% !important;
    max-width: none !important;
}

/* Tablet */
@media (max-width: 1199.98px) {
    .guybro-product-page .guybro-shop-container {
        width: calc(100% - 40px);
    }

    .guybro-product-layout {
        width: 100%;
        grid-template-columns: 230px minmax(0, 1fr);
        column-gap: 35px;
    }

    .guybro-product-content,
    .guybro-product-title,
    .guybro-product-main {
        width: 100%;
    }

    .guybro-product-main {
        grid-template-columns: minmax(0, 1fr) minmax(260px, 325px);
    }

    .guybro-product-copy {
        width: 100%;
    }
}

/* Mobile */
@media (max-width: 991.98px) {
    .guybro-product-breadcrumbs {
        margin-bottom: 35px;
    }

    .guybro-product-layout {
        display: block;
        width: 100%;
    }

    .guybro-product-sidebar {
        width: 100%;
        position: static;
        margin-bottom: 35px;
    }

    .guybro-product-content {
        width: 100%;
    }

    .guybro-product-title {
        width: 100%;
        font-size: 46px !important;
        line-height: 1.1 !important;
    }

    .guybro-product-main {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .guybro-product-copy {
        width: 100%;
        grid-column: 1;
        grid-row: 1;
    }

    .guybro-product-tagline,
    .guybro-product-description {
        width: 100%;
    }

    .guybro-product-image-panel {
        width: 100%;
        height: 350px;
        min-height: 350px;
        grid-column: 1;
        grid-row: 2;
        justify-self: stretch;
    }
}

@media (max-width: 575.98px) {
    .guybro-product-page .guybro-shop-container {
        width: calc(100% - 30px);
        max-width: none;
    }

    .guybro-product-title {
        font-size: 38px !important;
    }

    .guybro-product-image-panel {
        height: 300px;
        min-height: 300px;
    }

    .guybro-product-image-panel img {
        width: 220px;
        height: 315px;
    }
}
