@charset "UTF-8";
/***!  /templates/yootheme_wgm/css/custom.css?4.5.12  !***/

/* Add custom CSS here Created for YOOTHEME_WGM child theme */

/* Reduce margin on ZOO category heading */
.uk-hr, hr {
    overflow: hidden;
    text-align: inherit;
    margin: 0 0 10px 0;
    border: 0;
    border-top: 1px solid #ededed;
}

/* Add margin to elements following ZOO category heading */
*+.uk-hr, *+hr {
    margin-top: 3px;
    color: red;
}

/* Add red ">" before unordered list */
.uk-list ul li::marker {
    content: "> ";
    font-family: inherit;
    line-height: inherit;
    font-size: 1.125em;
    font-weight: 800;
    display: inline-block;
    color: #db0720;
    margin-right: 0.375rem;
    top: 1px;
    position: relative;
}

/* Applies basic styling to all elements with the uk-card class */
.uk-card {
    position: relative;
    box-sizing: border-box;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
    transition: transform .2s ease-out;
}

/* Applies additional styling to elements with the uk-card class when they are hovered over */
.uk-card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0,0,0,.3);
}

/* Applies default styling to elements with the uk-card-default class */
.uk-card-default {
    background-color: #fff;
    color: #444;
    box-shadow: 2px 5px 10px rgba(0,0,0,.02);
}

/* Applies padding to the content of elements with the uk-card-body class */
.uk-card-body {
    padding: 20px;
}

/* ============================================
   Newsletter Signup Form Styling
   ============================================ */

.rsform-newsletter-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
    padding: 10px 0;
}

/* Input fields styling */
.rsform-newsletter-wrapper input[type="text"],
.rsform-newsletter-wrapper input.rsform-input,
.rsform-newsletter-wrapper input.rsform-input-box,
.rsform-newsletter-wrapper .rsform-input-box {
    padding: 8px 12px !important;
    border: 1px solid #ccc !important;
    border-radius: 4px !important;
    min-width: 180px;
    background: #fff !important;
    font-size: 14px !important;
    height: auto !important;
    line-height: 1.4 !important;
    box-sizing: border-box !important;
}

/* Subscribe button styling */
.rsform-newsletter-wrapper button,
.rsform-newsletter-wrapper button.rsform-btn,
.rsform-newsletter-wrapper button.rsform-submit-button,
.rsform-newsletter-wrapper .rsform-submit-button,
.rsform-newsletter-wrapper input[type="submit"] {
    background-color: #666 !important;
    color: #fff !important;
    border: none !important;
    padding: 8px 20px !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    height: auto !important;
    line-height: 1.4 !important;
}

.rsform-newsletter-wrapper button:hover,
.rsform-newsletter-wrapper button.rsform-btn:hover,
.rsform-newsletter-wrapper button.rsform-submit-button:hover,
.rsform-newsletter-wrapper .rsform-submit-button:hover,
.rsform-newsletter-wrapper input[type="submit"]:hover {
    background-color: #555 !important;
}

/* Hide honeypot field */
.rsform-hp-field {
    position: absolute !important;
    left: -9999px !important;
}

/* ============================================
   Mobile UX: Sheetfed colours in 2 columns
   ============================================ */
@media (max-width: 639px) {
    /* Target the Sheetfed list (first column) on press page */
    .product-uikit3-press .uk-grid > div:first-child > .uk-list {
        column-count: 2;
        column-gap: 15px;
    }
    
    /* Prevent items from breaking across columns */
    .product-uikit3-press .uk-grid > div:first-child > .uk-list li {
        break-inside: avoid;
        -webkit-column-break-inside: avoid;
    }
}

