.awcf_container {
    display: flex;
    min-height: 480px;
    height: 480px;
    width: 100%;
    align-items: center;
}

.awcf_slider-item-title {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    font-size: 0.8em;
    line-height: 1.2em;
}

.awcf_left-section {
    flex: 0 0 70%;
    width: 70%;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    padding: 0 14px;
    background-color: transparent;
    align-items: stretch;
    height: 468px;
    margin-top: 0;
}

.awcf_product-details {
    flex: 0 0 50%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}

.awcf_product-details .awcf_product-title {
    font-size: 2em;
    margin-bottom: 10px;
    transition: opacity 0.3s ease;
    color: #1C2526;
}

.awcf_product-details p {
    margin: 0;
    color: #555;
    transition: opacity 0.3s ease;
    flex-grow: 1;
}

.awcf_price {
    font-size: 1.1em;
    font-weight: bold;
    color: #A10115;
    margin-bottom: 15px;
}

.awcf_button-group {
    display: flex;
    gap: 10px;
    margin-top: auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    width: 64%;
}

.awcf_read-more {
    background-color: #006C67;
    color: white;
}

.awcf_read-more:hover {
    background-color: #004C47;
}

.awcf_add-to-cart,
.awcf_button-group a,
.awcf_button-group button,
.awcf_button-group .awcf_read-more {
    text-decoration: none;
    padding: 8px 10px 8px 20px;
    cursor: pointer;
    border-radius: 30px;
    font-size: 1em;
    box-shadow: 0px 10px 30px -8px rgba(0, 0, 0, 0.16);
    transition: background-color 0.3s ease;

    display: flex;
    position: relative;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.awcf_add-to-cart,
.awcf_button-group a {
    background-color: #E63F78;
    border: 1px solid #E63F78;
    color: #ffffff;
}

.awcf_button-group .awcf_read-more {
    background-color: #29588A;
    border: 1px solid #29588A;
    color: #ffffff;
}

.awcf_add-to-cart:hover,
.awcf_button-group a:hover {
    background-color: #ffffff;
    color: #E63F78;
    border: 1px solid #E63F78;
}

.awcf_button-group .awcf_read-more:hover {
    background-color: #ffffff;
    color: #29588A;
    border: 1px solid #29588A;
}

.awcf_button-group a span {
    display: flex;
    height: 100%;
    position: relative;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.awcf_button-group a svg,
.awcf_button-group button svg,
.awcf_button-group .awcf_read-more span svg {
    fill: #ffffff;
}

.awcf_button-group a:hover svg {
    fill: #E63F78;
}

.awcf_button-group .awcf_read-more:hover span svg {
    fill: #29588A;
}

.awcf_product-image {
    flex: 0 0 50%;
    padding: 0;
    display: flex;
    align-items: stretch;
    justify-content: space-evenly;
    position: relative;
}

.awcf_product-image img {
    width: 100%;
    max-height: 100%;
    border-radius: 0;
    object-fit: contain;
}

.awcf_right-section {
    flex: 0 0 30%;
    width: 30%;
    box-sizing: border-box;
    background-color: #fff;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url('https://via.placeholder.com/400?text=Sweetgrass+Weave') repeat;
    background-size: 50px;
}

.awcf_vertical-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;

}

.awcf_vertical-slider {
    width: 100%;
    height: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.awcf_slider-item {
    margin: 0;
    cursor: pointer;
    flex: 1;
    display: flex !important;
    align-items: center;
    padding: 5px 0;
    min-height: 150px;
}

.awcf_slider-item img {
    width: 100%;
    object-fit: contain;
    border-radius: 0;
    border: none;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.awcf_custom-arrow {
    background: #E63F78;
    color: #ffffff;
    border: 1px solid #E63F78;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-size: 16px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    transition: background 0.3s ease, color 0.3s ease;
    box-shadow: 0px 10px 30px -8px rgba(0, 0, 0, 0.16);
}

.awcf_custom-arrow svg {
    fill: #ffffff;
}

.awcf_custom-prev {
    top: -12px;
}

.awcf_custom-next {
    bottom: -14px;
}

.awcf_custom-arrow:hover {
    background: #ffffff;
    color: #E63F78;
}

.awcf_custom-prev:hover svg,
.awcf_custom-next:hover svg {
    fill: #E63F78;
}

.awcf_vertical-slider .slick-track {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

.awcf_vertical-slider .slick-slide {
    height: auto !important;
    flex: 1 !important;
    display: flex !important;
    align-items: stretch !important;
    min-height: 160px !important;
    overflow: hidden !important;
    padding: 5px !important;
    box-sizing: border-box !important;
    position: relative !important;
}

.awcf_vertical-slider .slick-slide .awcf_slider-item-overlay,
.awcf_slider-item-overlay {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: block;
    font-size: 1em;
    font-weight: bold;
    color: #ffffff;
}

.awcf_vertical-slider .slick-slide img {
    outline: 2px solid transparent;
    outline-offset: 2px;
    transition: all 0.3s ease;
}

.awcf_vertical-slider .slick-slide.slick-current img,
.awcf_vertical-slider .slick-slide:hover img {
    outline: 2px solid #E63F78;
    outline-offset: 2px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

/* Transition for content update */
.awcf_fade {
    opacity: 0;
}

.awcf_fade-in {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .awcf_container {
        flex-direction: column;
        min-height: auto;
        height: auto;
        max-height: 100%;
        overflow-x: visible;
    }

    .awcf_left-section {
        flex: 1 0 auto;
        flex-direction: column;
        order: 1;
        width: 100%;
        overflow-x: auto;
        height: 100%;
    }

    .awcf_right-section {
        flex: 1 0 auto;
        width: 100%;
        min-width: 100%;
        margin-bottom: 50px;
    }

    .awcf_product-image {
        flex: 1 0 auto;
        display: flex;
        flex-direction: row;
        gap: 10px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        height: 100%;
        padding: 15px;
    }

    .awcf_product-image img {
        flex: 0 0 auto;
        width: 80%;
        max-width: 300px;
        height: auto;
        scroll-snap-align: start;
        object-fit: contain;
    }

    .awcf_product-details {
        flex: 1 0 auto;
        padding: 15px;
    }

    .awcf_custom-prev {
        margin-top: -10px;
    }

    .awcf_custom-next {
        margin-bottom: -10px;
    }
}


/* Tablet responsiveness */
@media (min-width: 769px) and (max-width: 1024px) {
    .awcf_container {
        min-height: 500px;
    }

    .awcf_product-details .awcf_product-title {
        font-size: 1.8em;
    }
}