/**
    widget-shannon-wc-items Style
 */
.w-shannon-wc-items [aria-hidden=true] {display: none; visibility: hidden;}

.w-shannon-wc-items-slider {
    position: relative;
    padding: 24px;
}

.w-shannon-wc-items-slider .slick-next,
.w-shannon-wc-items-slider .slick-prev {
    border-top: 2px solid #00ACC8;
    border-right: 2px solid #00ACC8;
}

.w-shannon-wc-items-slider .slick-next {
    right: 10px;
    transform: rotate(45deg);
}

.w-shannon-wc-items-slider .slick-prev {
    left: 10px;
    transform: rotate(-135deg);
}

.w-shannon-wc-items-slider .slick-arrow.slick-disabled {
    opacity: 0.4;
}

.w-shannon-wc-items-slider .slick-arrow::before {
    content: none !important;
    display: none !important;
}

.w-shannon-wc-items-slider .slick-track {
    display: flex;
}

.w-shannon-wc-items-slider .w-shannon-wc-item {
    margin: 12px;
    height: unset;
}

.w-shannon-wc-items-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 24px;
}

.w-shannon-wc-item {
    display: flex !important;
    flex-flow: column wrap;
    position: relative;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .15);
    transition: .25s;
}

.w-shannon-wc-item-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 12px;
    row-gap: 12px;
    text-align: center;
}

.w-shannon-wc-item-tag {
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1;
    background-color: #00ACC8;
    padding: 4px 8px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.w-shannon-wc-item-title {
    font-size: 16px;
    font-family: "Playfair Display", serif;
}

.w-shannon-wc-item-price {
    font-weight: bold;
    font-size: 14px;
    color: #00ACC8;
}

.w-shannon-wc-item-date {
    font-weight: bold;
    font-size: 14px;
    color: rgba(0, 0, 0, .4);
}


.w-shannon-wc-item-btn-wrap {
    margin-top: auto;
}

.w-shannon-wc-item-btn {
    display: inline-block;
    padding: 6px 12px 6px 12px;
    border-radius: 4px;
    background: #00ACC8;
    color: #fff !important;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
}

.w-shannon-wc-item-image {
    display: block;
    padding-top: 100%;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    transition: .25s;
}

.w-shannon-wc-item:hover .w-shannon-wc-item-image {filter: brightness(1.15);}

.w-shannon-wc-item:hover .w-shannon-wc-item-title {color: #00ACC8;}

.w-shannon-wc-item-box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-gap: 24px;
}

.w-shannon-wc-item-box-header {
    text-align: center;
    grid-column: span 5;
}

.w-shannon-wc-item-box-image {
    grid-column: span 2;
}

.w-shannon-wc-item-box-description {
    grid-column: span 3;
}

.w-shannon-wc-item-box-footer {
    grid-column: span 5;
}

.w-shannon-wc-item-box-image img {
    width: 100%;
}


.w-shannon-wc-item-box-footer {
    grid-column: span 3;
}

.w-shannon-wc-item-box-form .stock,
.w-shannon-wc-item-box-form .product_meta {display: none;}

.w-shannon-wc-item-box-form .price {
    font-size: 30px;
    font-weight: bold;
}

.w-shannon-wc-item-box-form input[type=text],
.w-shannon-wc-item-box-form textarea {
    display: block;
    width: 100%;
    padding: 4px 10px;
    font-size: 16px;
    border: 1px solid #000;
    border-radius: 4px;
}

.w-shannon-wc-item-box-form .quantity {
    display: inline-block;
}

.w-shannon-wc-item-box-form button[type=submit] {
    display: inline-block;
    line-height: 1;
    font-size: 16px;
    text-transform: uppercase;
    color: #FFF;
    font-weight: bold;
    padding: 4px 10px;
    border: 1px solid #00ACC8;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    background: #00ACC8;
    height: 30px;
}

.w-shannon-wc-item-box-form .quantity input[type=number] {
    display: inline-block;
    border: 1px solid #000;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    padding: 4px 10px;
    font-size: 16px;
    line-height: 1;
    height: 30px;
}

@media (max-width: 992px) {
    .w-shannon-wc-items-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .w-shannon-wc-items-grid {
        grid-template-columns: 1fr 1fr;
        grid-gap: 12px;
    }

    .w-shannon-wc-item-title {
        font-size: 12px;
    }

    .w-shannon-wc-item-price {
        font-size: 12px;
    }

    .w-shannon-wc-item-btn {
        font-size: 10px;
    }


    .w-shannon-wc-item-box {
        grid-gap: 12px;
    }

    .w-shannon-wc-item-box-header,
    .w-shannon-wc-item-box-image,
    .w-shannon-wc-item-box-description,
    .w-shannon-wc-item-box-footer {
        grid-column: span 5;
    }
}