/**
Theme Name: Virtue Web Solutions
Author: Virtue Web Solutions Ltd.
Author URI: https://virtuewebsolutions.co.uk
Description: Bespoke website theme by Virtue Web Solutions.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vws
Template: astra
*/

:root {
    --primary: #F07F14;
    --secondary: #98500c;
    --tertiary: #ccc;
}

html {
    overflow-y: auto;
}

.admin-bar #page {
    min-height: calc(100vh - 102px);
}

#page {
    min-height: calc(100vh - 71px);
}

.text-center {
    text-align: center;
}

.site-title, .site-title a {
    margin-top: 5px;
    font-size: 29.5px;
}

section {
    padding: 60px 0;
    width: 100%;
}

.gap-10 { height: 10px; }
.gap-20 { height: 20px; }
.gap-30 { height: 30px; }
.gap-40 { height: 40px; }
.gap-50 { height: 50px; }
.gap-60 { height: 60px; }
.gap-70 { height: 70px; }
.gap-80 { height: 80px; }
.gap-90 { height: 90px; }
.gap-100 { height: 100px; }

.orange-bold {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.category-heading {
    font-family: DINPro Regular, Helvetica, Arial, sans-serif;
    font-size: 84px;
    opacity: .1;
    position: relative;
    margin-bottom: -60px;
    z-index: 10;
}

.product-title {
    font-size: 36px;
}

.item-wrap {
    position: relative;
    overflow: hidden;
}
    .item-wrap .item {
        width: 100%;
        aspect-ratio: 1 / 1;
        background-size: cover;
        background-repeat: no-repeat;
        transition: all 0.5s ease;
    }
        .item-wrap .item:hover {
            transform: scale(1.2);
        }
.item-title {
    min-height: 90px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

.button-wrap {
    margin-top: 10px;
}
.add-cart {
    padding: 3px 15px 7px 15px;
    color: #fff;
    background-color: var(--primary);
    display: inline-block;
    border-radius: 20px;
    transition: all 0.5s ease;
}
    .add-cart:hover {
        background-color: var(--secondary);
    }

.ast-continue-shopping {
    display: none !important;
}

/* ### MEDIA ### */

@media (max-width: 767.98px) {
    
}

/* ### Scrollbar ### */

/* width */
::-webkit-scrollbar {
    width: 3px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--primary);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Animation Classes */

.fadeIn,
.fadeSlideUp,
.fadeSlideDown,
.fadeSlideFromLeft,
.fadeSlideFromRight,
.fadeZoomIn {
    opacity: 0;
}
.fadeIn.active{
    animation-name: fadeIn;
    animation-duration: 0.5s;
    animation-timing-function: ease-in;
    animation-delay: 0;
    animation-fill-mode: forwards;
}
.fadeSlideUp.active {
    animation-name: fadeSlideUp;
    animation-duration: 0.5s;
    animation-timing-function: ease-in;
    animation-delay: 0;
    animation-fill-mode: forwards;
}
.fadeSlideDown.active {
    animation-name: fadeSlideDown;
    animation-duration: 0.5s;
    animation-timing-function: ease-in;
    animation-delay: 0;
    animation-fill-mode: forwards;
}
.fadeSlideFromLeft.active {
    animation-name: fadeSlideFromLeft;
    animation-duration: 0.5s;
    animation-timing-function: ease-in;
    animation-delay: 0;
    animation-fill-mode: forwards;
}
.fadeSlideFromRight.active {
    animation-name: fadeSlideFromRight;
    animation-duration: 0.5s;
    animation-timing-function: ease-in;
    animation-delay: 0;
    animation-fill-mode: forwards;
}
.fadeZoomIn.active {
    animation-name: fadeZoomIn;
    animation-duration: 0.5s;
    animation-timing-function: ease-in;
    animation-delay: 0;
    animation-fill-mode: forwards;
}

.delay0 { animation-delay: 0; }
.delay01 { animation-delay: 0.1s; }
.delay02 { animation-delay: 0.2s; }
.delay03 { animation-delay: 0.3s; }
.delay04 { animation-delay: 0.4s; }
.delay05 { animation-delay: 0.5s; }
.delay06 { animation-delay: 0.6s; }
.delay07 { animation-delay: 0.7s; }
.delay08 { animation-delay: 0.8s; }
.delay09 { animation-delay: 0.9s; }
.delay1 { animation-delay: 1; }

/* Animation */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeSlideFromRight {
    from {
        transform: translateX(80px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeSlideFromLeft {
    from {
        transform: translateX(-80px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeSlideUp {
    from {
        transform: translateY(80px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeSlideDown {
    from {
        transform: translateY(-80px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeZoomIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}