/* Fonts & Base Styles for this section */
@import url("https://fonts.googleapis.com/css?family=Montserrat:400,400i,700");
@import url('https://fonts.googleapis.com/css2?family=Edu+AU+VIC+WA+NT+Guides:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playwrite+DE+Grund:wght@100..400&display=swap');

:root {
    --bk2-main-color: var(--clr-text-light);
    --bk2-secondary-color: var(--clr-primary);
    --bk2-bg-1: var(--clr-accent);
    --bk2-bg-2: var(--clr-primary-light);
    --bk2-bg-3: var(--clr-off-white);
    --bk2-color-2: var(--clr-primary);
    --bk2-font-family: var(--font-heading);
    --bk2-font-family-2: var(--font-body);
}

.bk2-main-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px;
}

.bk2-hero {
    max-height: 450px;
    overflow: hidden;
    display: flex;
    align-items: center;
    flex-direction: row;
    border-radius: 32px;
    background: var(--clr-off-white);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.bk2-hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bk2-hero .bk2-text {
    position: absolute;
    left: 0;
    font-size: 150%;
    background: rgba(255, 255, 255, 0.56);
    top: 0;
    width: 100%;
    height: 100%;
    padding: 64px;
    display: flex;
    align-content: center;
    box-sizing: border-box;
    z-index: 5;
}

.bk2-hero .bk2-left {
    position: relative;
    z-index: 10;
    max-width: 50%;
    font-size: 2vw;
    line-height: 3.5vw;
}

.bk2-hero h1,
.bk2-hero h5 {
    font-family: var(--bk2-font-family);
    font-weight: 700;
    color: var(--bk2-color-2);
    margin: 24px 0;
}

.bk2-hero h1 {
    font-size: 3rem;
}

.bk2-hero h5 {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--bk2-main-color);
}

.bk2-hero .bk2-right {
    display: flex;
    background: var(--clr-white);
    position: absolute;
    right: -10%;
    top: 85px;
    width: 618px;
    height: 400px;
    border-radius: 32px;
    justify-content: center;
    z-index: 3;

    transform: rotate(10deg) !important;
    transform-origin: center !important;
    transition: none !important;
    animation: none !important;
}

.bk2-hero .bk2-img-container {
    border-radius: 32px;
    overflow: hidden;
    max-width: 300px;
    border: 8px solid var(--clr-white);
    display: flex;
    justify-content: center;
    margin: 0 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.bk2-hero .bk2-img-container img {
    height: 100%;
    width: auto;
    object-fit: cover;
}

.bk2-callto {
    font-size: 18px;
    font-family: var(--bk2-font-family-2);
    padding: 16px 24px;
    border-radius: 39px;
    color: var(--clr-white);
    font-weight: 900;
    cursor: pointer;
    max-width: 250px;
    border: 4px solid var(--clr-white);
    background: var(--bk2-color-2);
    transition: transform 0.3s ease;
    text-transform: capitalize;
    display: inline-block;
}

.bk2-callto:hover {
    transform: scale(1.05);
}

/* Products Section */
.bk2-products-title {
    text-align: center;
    font-family: var(--bk2-font-family);
    font-weight: 700;
    color: var(--bk2-color-2);
    margin: 48px 0;
    font-size: 2.5rem;
}

.bk2-products-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.bk2-single-product {
    flex: 0 1 calc(33.333% - 14px);
    overflow: hidden;
    display: inline-flex;
    flex-direction: column;
    position: relative;
    background: #fff;
    border-radius: 32px;
    padding-bottom: 20px;
    border: 2px solid var(--bk2-bg-1);
}

.bk2-single-product .bk2-img-container {
    min-height: 300px;
    max-height: 300px;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    place-content: center;
    position: relative;
}

.bk2-single-product img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.bk2-single-product h2 {
    color: var(--bk2-color-2);
    margin: 15px 0 5px;
    font-weight: 900;
    font-family: var(--bk2-font-family);
    padding: 0 15px;
    font-size: 1.5rem;
}

.bk2-single-product p {
    font-family: var(--bk2-font-family-2);
    color: var(--bk2-main-color);
    padding: 0 15px;
    margin-bottom: 15px;
}

.bk2-single-product .bk2-badge {
    position: absolute;
    background: var(--bk2-bg-3);
    top: 12px;
    left: 12px;
    border-radius: 24px;
    padding: 8px 15px;
    font-size: 80%;
    z-index: 2;
    font-family: var(--bk2-font-family-2);
}

.bk2-price-tag {
    position: absolute;
    left: 12px;
    bottom: 12px;
    background: var(--clr-white);
    padding: 8px;
    border-radius: 24px;
    min-width: 150px;
    font-size: 70%;
    box-sizing: border-box;
    display: flex;
    place-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-family: var(--bk2-font-family-2);
}

.bk2-price-tag * {
    margin: 0 4px;
}

.bk2-minus,
.bk2-plus {
    cursor: pointer;
    background: var(--bk2-bg-1);
    width: 24px;
    display: inline-block;
    text-align: center;
    border-radius: 100%;
    height: 24px;
    line-height: 24px;
    color: var(--clr-success);
    font-weight: bold;
    user-select: none;
}

.bk2-button-container {
    border-radius: 100% 0 100% 100%;
    margin: -91px -3px 12px auto;
    background: var(--clr-white);
    padding: 12px;
    box-sizing: border-box;
    position: relative;
    z-index: 5;
}

.bk2-add-to-cart {
    background: var(--bk2-bg-2);
    color: white;
    box-shadow: none;
    border: 0;
    border-radius: 100% 32px 100% 100%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.bk2-add-to-cart:hover {
    transform: scale(1.1);
}

.bk2-add-to-cart .material-symbols-outlined {
    font-size: 30px;
}

.bk2-tags {
    padding: 0 15px;
    display: flex;
    gap: 5px;
}

.bk2-tags span {
    background: var(--bk2-bg-1);
    border-radius: 4px;
    text-align: center;
    font-size: 12px;
    line-height: 12px;
    padding: 4px 8px;
    font-family: var(--bk2-font-family-2);
}

@media(max-width: 950px) {
    .bk2-single-product {
        flex: 0 1 calc(50% - 10px);
    }

    .bk2-hero .bk2-text {
        padding: 32px;
        background: rgba(255, 255, 255, 0.7);
    }

    .bk2-hero .bk2-right {
        display: none;
    }

    .bk2-hero .bk2-left {
        max-width: 100%;
        font-size: 3.5vw;
    }

    .bk2-hero h1 {
        font-size: 2rem;
    }
}

@media(max-width: 600px) {
    .bk2-single-product {
        flex: 0 1 100%;
    }
}