:root {
    /* Own Brand Colours */

    --colour-primary: #0663A6;
    --colour-text: #1a1a1a;
    --colour-negative: #af2525;

    /* Third Party Brand Colours */

    --colour-dairy-diary: #3ca8b3;
    --colour-oato: #f1f1e8;
    --llaeth-primary: #E4E0DC;
    --llaeth-secondary: #0B3B5B;
    --warburtons-primary: #D26B40;
    --bates-primary: #007A9E;
    --caepant-primary: #F2E7C3;
    --caepant-secondary: #3D1A11;
    --alpro-primary: #283487;
    --dairy-diary: #5EB7C0;
    --dairy-diary-secondary: #0F3C41;

    /* Other */

    --font-size-primary: 18px;
}

body, html {
    margin: 0px;
    padding: 0px;
    font-family: "Figtree", sans-serif;
    font-weight: 300;
    font-size: 18px;
    box-sizing: border-box;
    background-color: white;
    color: var(--colour-text);
    margin: 0 auto;
}

body.grey {
    background-color: #fcfcfc;
}

.limit-width {
    max-width: 1200px;
    box-sizing: border-box;
    padding: 0px 30px;
    margin: 0 auto;
}
.limit-width.ninehundred {
    max-width: 900px;
}

section {
    padding: 60px 0px;
}

h1.page-title {
    font-size: 38px;
    font-weight: 800;
    margin: 0px;
}

h2.section-title {
    font-size: 38px;
    font-weight: 600;
    margin-top: 0px;
}

h3.section-subtitle {
    font-size: 26px;
    font-weight: 200;
    margin-top: 0px;
}

h4.section-subtitle {
    font-size: 22px;
    font-weight: 400;
    margin-top: 0px;
}

p {
    line-height: 1.64;
}

/* Pop-UPS */

dialog.home-banner {
    background: transparent;
    max-width: 700px;
    border: none;
}

dialog.home-banner .banner-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

::backdrop {
  background-color: rgba(255,255,255,0.7);
  backdrop-filter: blur(5px);
}

dialog button.close {
    border: none;
}

dialog button.close:focus {
    outline: none;
}

img.banner {
    width: 100%;
    border-radius: 10px;
}

/* Buttons & Links */

a.cta-btn, form button[type="submit"], button {
    font-family: "Figtree", sans-serif;
    font-size: 16px;
    text-decoration: none;
    color: white;
    background-color: var(--colour-primary);
    box-sizing: border-box;
    padding: 16px 40px 18px 40px;
    border-radius: 50px;
    display: inline-block;
    border: none;
    cursor: pointer;
}

a.cta-btn.outline {
    border: 1px solid white;
    color: white;
    background: transparent;
}

/* Inputs, Forms */

form input, form select, form textarea {
    font-family: "Figtree", sans-serif;
    font-size: 16px;
    border: 1px solid #d2d2d2;
    border-radius: 4px;
    box-sizing: border-box;
    padding: 12px 12px;
    width: 100%;
}

form label {
    font-family: "Figtree", sans-serif;
    font-size: 16px;
    margin-bottom: 6px;
    display: inline-block;
}

form .input-group {
    margin-bottom: 16px;
}

/* Alerts */

.alert-box {
    width: 100%;
    font-size: 14px;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 20px;
    padding-left: 65px;
    background-position: 20px 50%;
    background-size: 30px 30px;
    background-repeat: no-repeat;
}

.alert-box .title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
}
.alert-box.warning {
    color: #bb8900;
    border-color: #bb8900;
    background-color: #fff5cb;
    background-image: url(../icons/general/alert-warning.svg);
}
.alert-box.success {
    color: #0a3622;
    border-color: #0a3622;
    background-color: #d1e7dd;
    background-image: url(../icons/general/alert-success.svg);
}
.alert-box.notification {
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff;
    padding: 20px;
}
.alert-box.site-alert {
    border-radius: 0px;
    font-size: 16px;
}
.alert-box.site-alert .content {
    margin: 0 auto;
    max-width: 1400px;
    text-align: center;
}
#contact_success {
    display: none;
}

/* Page Headers */

header {
    box-sizing: border-box;
    padding: 10px 0px;
    font-size: 16px;
}

.header-grid {
    display: grid;
    grid-template-columns: 220px 1fr 160px;
    column-gap: 20px;
    width: 100%;
}

.header-grid .logo a {
    width: 100%;
    height: 100%;
    display: block;
}

.header-grid .logo img {
    max-width: 100%;
    position: relative;
    top: 7px;
}

.header-grid .cart-section {
    display: flex;
    align-items: center;
}

.header-grid .nav-section {
    text-align: right;
}

header .nav-section .contact-links {
    margin: 5px 14px 8px 0px;
}

header .nav-section .contact-links .link-pair {
    display: inline-block;
    vertical-align: top;
    margin-left: 10px;
}

header .nav-section .contact-links .link-pair img {
    height: 14px;
    position: relative;
    top: 2px;
}

header .nav-section .contact-links .link-pair a {
    text-decoration: none;
    color: var(--colour-primary);
}

header .nav-section .contact-links .link-pair a.phone-num {
    font-size: 14px;
}

nav.header-nav ul.link-list {
    list-style: none;
    margin: 0px;
}

nav.header-nav ul.link-list li.link a {
    color: var(--colour-text);
    text-decoration: none;
}

nav.header-nav ul.link-list li.link {
    display: inline-block;
    vertical-align: top;
    margin-left: 10px;
    box-sizing: border-box;
    padding: 8px 14px 10px 14px;
    border-radius: 6px;
    position: relative;
}

nav.header-nav ul.link-list li.link:hover {
    background: #f7f7f7;
}

/* Sub Nav */

nav.header-nav ul.link-list li.link:hover nav.header-sub-nav {
    animation-name: subnav-anim-main;
    animation-duration: 0.2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes subnav-anim-main {
    0% {
        opacity: 0.0;
    }
    100% {
        height: 400px;
        padding-top: 12px;
        opacity: 1.0;
    }
}

nav.header-nav ul.link-list li.link:hover .padding-spacer {
    animation-name: subnav-anim;
    animation-duration: 0.2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes subnav-anim {
    0% {
        box-shadow: 0px 2px 0px #4d4d4d2b;
    }
    100% {
        box-shadow: 0px 2px 8px #4d4d4d2b;
    }
}

nav.header-sub-nav {
    height: 0px;
    opacity: 0.0;
    z-index: 999;
    overflow: hidden;
    position: absolute;
    top: 36px;
    left: -30px;
    text-align: left;
    box-sizing: border-box;
    transition: 0.2s;
    padding: 0px;
}

nav.header-sub-nav .padding-spacer {
    background-color: white;
    border-radius: 10px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    box-sizing: border-box;
    padding: 20px;
}

ul.sub-nav-link-list {
    list-style: none;
    padding: 0px;
    display: grid;
    column-gap: 10px;
    row-gap: 10px;
}

li.sub-nav-link {
    width: auto;
}

li.sub-nav-link a, nav.floating-categories li.nav-item a {
    box-sizing: border-box;
    padding: 10px;
    display: grid;
    grid-template-columns: 20px 1fr;
    column-gap: 10px;
    border-radius: 5px;
    color: var(--colour-text);
    text-decoration: none;
    font-size: 16px;
}

li.sub-nav-link a:hover, nav.floating-categories li.nav-item a:hover {
    background-color: #f7f7f7;
}

li.sub-nav-link a img, nav.floating-categories li.nav-item a img {
    width: 100%;
}

a.cta-btn.header-cart-btn {
    position: relative;
    top: 9px;
    font-size: 14px;
    padding: 12px 40px;
}

/* Mobile Nav */

.mobile-controls {
    display: none;
    justify-content: end;
}

button.mobile-nav-show, a.mobile-nav-show.cart {
    background: transparent;
    padding: 10px;
}
a.mobile-nav-show.cart {
    right: 60px;
}

a.mobile-nav-show.cart img {
    height: 32px;
    position: relative;
    bottom: -5px;
}

button.mobile-nav-show img {
    width: 40px;
}

.mob-nav {
    position: fixed;
    top: 0px;
    left: -302px;
    bottom: 0px;
    z-index: 99;
    background: white;
    width: 300px;
    overflow: hidden;
    box-sizing: border-box;
    display: none; 
    transition: 10s;
}
.mob-nav.anim-out {
    animation-name: menuOut;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}
.mob-nav.anim-in {
    animation-name: menuIn;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}


@keyframes menuIn {
    from {left: 0px;}
    to {left: -302px;}
}

@keyframes menuOut{
    from {left: -302px;}
    to {left: 0px;}
}

.mob-nav-backdrop {
    position: fixed;
    z-index: 88;
    background: rgb(0 0 0 / 13%);
    backdrop-filter: blur(8px);
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: none;
}

.mob-nav .padder {
    box-sizing: border-box;
    padding: 30px;
    
}

.mob-nav .padder img.logo {
    width: 80%;
    margin-bottom: 20px;
}

nav.mob-nav-el ul {
    list-style-type: none;
    padding-left: 0px;
}

nav.mob-nav-el ul li {
    margin-bottom: 20px;
    font-size: 18px;
}

nav.mob-nav-el ul li a {
    text-decoration: none;
    color: var(--colour-text);
}

button.mob-nav-close {
    width: 100%;
    margin-top: 30px;
    font-size: 14px;
    padding: 16px 0px;
    border-radius: 5px;
}

/* Header Overlay Type */

header.overlay {
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0 auto;
    width: 100%;
    z-index: 99;
}

header.overlay nav.header-nav ul.link-list li.link a, header.overlay .nav-section .contact-links .link-pair a {
    color: white;
}

header.overlay nav.header-nav ul.link-list li.link li.sub-nav-link a {
    color: var(--colour-text);
} 

header.overlay nav.header-nav ul.link-list li.link:hover {
    background: rgba(255,255,255,0.1);
}

/* -- END -- */

/* Footer */

footer {
    width: 100%;
    background: url(../images/general/footer-background.svg);
    background-size: cover;
    background-position: top center;
    box-sizing: border-box;
    padding: 750px 0px 30px 0px;
    color: white;
    font-size: 16px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 70px;
}

.footer-grid h4.header {
    font-size: 20px;
    font-weight: 400;
}

.footer-bottom {
    font-size: 14px;
    opacity: 0.7;
    text-align: center;
    margin-top: 40px;
}

.footer-grid img.logo {
    max-width: 200px;
} 

.footer-grid .col1 .lockup {
    margin-bottom: 10px;
}

.footer-grid .col1 a {
    color: white;
    text-decoration: none;
}

.footer-grid .col1 .lockup img {
    position: relative;
    top: 4px;
    width: 18px;
    margin-right: 5px;
}

a.footer-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
    background: url(../icons/general/link-arrow-white.svg);
    background-size: 13px;
    background-repeat: no-repeat;
    background-position: 0px 55%;
    box-sizing: border-box;
    padding-left: 20px;
    display: block;
    margin-bottom: 10px;
}

.footer-grid .col2 .subgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
}

.footer-bottom a {
    color: white;
}

/* Homepage */

.lightrope {
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    position: absolute;
    top: 0px;
    z-index: 1;
    margin: -15px 0 0 0;
    padding: 0;
    pointer-events: none;
    width: 100%;
  }
  .lightrope li {
    position: relative;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    list-style: none;
    margin: 0;
    padding: 0;
    display: block;
    width: 12px;
    height: 28px;
    border-radius: 50%;
    margin: 20px;
    display: inline-block;
    background: #fb6f24;
    box-shadow: 0px 4.6666666667px 24px 3px #fb6f24;
    -webkit-animation-name: flash-1;
            animation-name: flash-1;
    -webkit-animation-duration: 2s;
            animation-duration: 2s;
  }
  .lightrope li:nth-child(2n+1) {
    background: #fb6f24;
    box-shadow: 0px 4.6666666667px 24px 3px rgba(0, 255, 255, 0.5);
    -webkit-animation-name: flash-2;
            animation-name: flash-2;
    -webkit-animation-duration: 0.4s;
            animation-duration: 0.4s;
  }
  .lightrope li:nth-child(4n+2) {
    background: #fb6f24;
    box-shadow: 0px 4.6666666667px 24px 3px #fb6f24;
    -webkit-animation-name: flash-3;
            animation-name: flash-3;
    -webkit-animation-duration: 1.1s;
            animation-duration: 1.1s;
  }
  .lightrope li:nth-child(odd) {
    -webkit-animation-duration: 1.8s;
            animation-duration: 1.8s;
  }
  .lightrope li:nth-child(3n+1) {
    -webkit-animation-duration: 1.4s;
            animation-duration: 1.4s;
  }
  .lightrope li:before {
    content: "";
    position: absolute;
    background: #222;
    width: 10px;
    height: 9.3333333333px;
    border-radius: 3px;
    top: -4.6666666667px;
    left: 1px;
  }
  .lightrope li:after {
    content: "";
    top: -14px;
    left: 9px;
    position: absolute;
    width: 52px;
    height: 18.6666666667px;
    border-bottom: solid #222 2px;
    border-radius: 50%;
  }
  .lightrope li:last-child:after {
    content: none;
  }
  .lightrope li:first-child {
    margin-left: -40px;
  }
  
  @-webkit-keyframes flash-1 {
    0%, 100% {
      background: #fb6f24;
      box-shadow: 0px 4.6666666667px 24px 3px #fb6f24;
    }
    50% {
      background: rgba(251, 111, 36, 0.4);
      box-shadow: 0px 4.6666666667px 24px 3px rgba(251, 111, 36, 0.2);
    }
  }
  
  @keyframes flash-1 {
    0%, 100% {
        background: #fb6f24;
        box-shadow: 0px 4.6666666667px 24px 3px #fb6f24;
      }
      50% {
        background: rgba(251, 111, 36, 0.4);
        box-shadow: 0px 4.6666666667px 24px 3px rgba(251, 111, 36, 0.2);
      }
  }
  @-webkit-keyframes flash-2 {
    0%, 100% {
      background: #24d024;
      box-shadow: 0px 4.6666666667px 24px 3px #24d024;
    }
    50% {
      background: rgba(36, 208, 36, 0.4);
      box-shadow: 0px 4.6666666667px 24px 3px rgba(36, 208, 36, 0.2);
    }
  }
  @keyframes flash-2 {
    0%, 100% {
      background: #24d024;
      box-shadow: 0px 4.6666666667px 24px 3px #24d024;
    }
    50% {
      background: rgba(36, 208, 36, 0.4);
      box-shadow: 0px 4.6666666667px 24px 3px rgba(36, 208, 36, 0.2);
    }
  }
  @-webkit-keyframes flash-3 {
    0%, 100% {
      background: #f70094;
      box-shadow: 0px 4.6666666667px 24px 3px #f70094;
    }
    50% {
      background: rgba(247, 0, 148, 0.4);
      box-shadow: 0px 4.6666666667px 24px 3px rgba(247, 0, 148, 0.2);
    }
  }
  @keyframes flash-3 {
    0%, 100% {
      background: #f70094;
      box-shadow: 0px 4.6666666667px 24px 3px #f70094;
    }
    50% {
      background: rgba(247, 0, 148, 0.4);
      box-shadow: 0px 4.6666666667px 24px 3px rgba(247, 0, 148, 0.2);
    }
  }

/* Homepage Cover */

section.home-cover {
    background-image: url(../images/general/home-cover-splash.svg);
    background-position-y: 100%;
    background-size: cover;
    color: white;
    padding-bottom: 150px;
    padding-top: 80px;
    position: relative;
}

section.home-cover .content-wrap {
    max-width: 600px;
}

section.home-cover .subtitle {
    opacity: 0.8;
    margin: 5px 0px 25px 0px;
}

section.home-cover a.cta-btn {
    background-color: white;
    color: var(--colour-primary);
    font-size: 18px;
    padding: 20px 40px;
    margin-top: 30px;
    transition: 0.2s;
}

section.home-cover a.cta-btn:hover {
    transform: scale(1.05);
}

.particles-snow {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
}

/* -- END -- */

/* Homepage Introduction */

.home-introduction {
    padding-top: 0px;
}

.home-introduction .grid {
    display: grid;
    grid-template-columns: 1fr 450px;
    column-gap: 120px;
}

.home-introduction .grid img {
    width: 100%;
    border-radius: 15px;
    margin-top: 70px;
    box-shadow: 0px 0px 10px 0px #d5d5d5;
}

/* Go Green Go Glass */

section.home-go-green {
    width: 100%;
    background: linear-gradient(to right, #7daa5c, #083d12);
}

section.home-go-green .grid img {
    width: 100%;
    position: relative;
    bottom: 4px;
}

section.home-go-green .grid {
    display: grid;
    grid-template-columns: 250px 1fr 250px;
    column-gap: 70px;
}

section.home-go-green .grid .text {
    text-align: center;
    color: white;
    font-size: 16px;
    line-height: 1.6;
    position: relative;
    box-sizing: border-box;
    padding: 0px 60px;
}

section.home-go-green .grid .text::before, section.home-go-green .grid .text::after {
    content: "\0201C";
    font-size: 90px;
    line-height: 0px;
    opacity: 0.2;
    position: absolute;
}

section.home-go-green .grid .text::before {
    top: 20px;
    left: 0px;
}

section.home-go-green .grid .text::after {
    content: "\0201D";
    bottom: 0px;
    right: 0px;
}

section.home-go-green .grid a.cta-btn {
    border-radius: 5px;
    line-height: 1.5;
}

section.home-go-green .grid a.cta-btn:hover {
    background: white;
    color: #083d12;
}

/* Home Dairy Diary */

section.home-dairy-diary {
    padding-top: 60px;
}

section.home-dairy-diary .grid {
    display: grid;
    grid-template-columns: 600px 1fr;
    column-gap: 100px;
}

section.home-dairy-diary .grid img.diaries {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0px 0px 10px 0px #d5d5d5;
}

section.home-dairy-diary img.dairy-diary-logo {
    width: 200px;
}

section.home-dairy-diary .grid a.cta-btn {
    border: 1px solid var(--colour-dairy-diary);
    color: var(--colour-dairy-diary);
    margin-top: 20px;
}

/* Home History Banner */

section.home-history-banner {
    background-color: var(--colour-primary);
    color: white;
}

section.home-history-banner .grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    column-gap: 100px;
    box-sizing: border-box;
}

.home-stat-box-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.home-stat-box-wrapper .stat .val {
    font-size: 40px;
}

.home-stat-box-wrapper .stat .title {
    opacity: 0.8;
}

section.home-history-banner .text {
    line-height: 1.6;
    font-size: 16px;
    position: relative;
}

section.home-warburtons .grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    column-gap: 80px;
}

section.home-warburtons h2 {
    margin-top: 0px;
}

.home-warburtons img {
    max-width: 100%;
    border-radius: 10px;
}

.home-warburtons a.cta-btn {
    background-color: #d1441d;
    margin-top: 15px;
}

/* Home Products */

section.home-products {
    text-align: center;
}

section.home-products .product-grid {
    margin-top: 40px;
}

section.home-products .product-grid .grid-item {
    display: inline-block;
    vertical-align: top;
    margin: 0px 20px 20px 0px;
    box-shadow: 1px 3px 11px 0px #e7e7e7;
    height: 170px;
    width: 170px;
    box-sizing: border-box;
    padding: 30px 20px 20px 20px;
    border-radius: 10px;
    color: black;
    text-decoration: none;
    transition: 0.3s;
}
section.home-products .product-grid .grid-item:hover {
    box-shadow: 1px 3px 20px 5px #e7e7e7;
}

section.home-products .product-grid .grid-item img {
    height: 60%;
    margin-bottom: 25px;
}

section.home-products .product-grid .grid-item .title {
    font-size: 14px;
}

/* Home Oato */

section.home-oato {
    background: var(--colour-oato);
    color: black;
}

section.home-oato img.oato-logo {
    max-width: 100px;
}

section.home-oato img.oato-crated {
    border-radius: 50%;
    width: 280px;
    float: right;
    padding-left: 80px;
}

section.home-oato img.oato-oats-icon { 
    width: 60px;
}

section.home-oato .subtitle {
    font-size: 20px;
    opacity: 0.7;
    margin-top: 8px;
    margin-bottom: 25px;
}

section.home-oato p {
    max-width: 600px;
}

section.home-oato a.cta-btn {
    border-color: black;
    color: black;
    margin-top: 20px;
    transition: 0.2s;
}
section.home-oato a.cta-btn:hover {
    background: black;
    color: var(--colour-oato);
}

/* Home Contact Pre-Footer */

section.contact-pre-footer .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

section.contact-pre-footer .contact-form {
    box-sizing: border-box;
    padding-right: 60px;
    border-right: 1px solid #d2d2d2;
}

section.contact-pre-footer .delivery-contact-informations {
    box-sizing: border-box;
    padding-left: 60px;
}

.delivery-area-tag {
    box-sizing: border-box;
    padding: 10px 16px 10px 32px;
    border: 1px solid #d2d2d2;
    border-radius: 8px;
    display: inline-block;
    vertical-align: top;
    margin: 0px 15px 15px 0px;
    font-size: 16px;
    background: url(../icons/general/map-pin-text-colour.svg);
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: 10px 50%;
}

.address-contact-subsection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 60px;
    border-top: 1px solid #d2d2d2;
    margin-top: 30px;
    box-sizing: border-box;
    padding-top: 30px;
}

form.pre-footer-contact button[type="submit"] {
    border: 1px solid var(--colour-primary);
    color: var(--colour-primary);
    background: transparent;
    float: right;
    margin-top: 30px;
    transition: 0.3s;
}
form.pre-footer-contact button[type="submit"]:hover {
    background-color: var(--colour-primary);
    color: white;
}

.address-contact-subsection p {
    line-height: 1.8;
}

.address-contact-subsection .lockup {
    margin-bottom: 10px;
}

.address-contact-subsection a {
    color: var(--colour-text);
    text-decoration: none;
}

.address-contact-subsection img {
    position: relative;
    top: 4px;
    width: 18px;
    margin-right: 5px;
}

/* About Root */

section.about-cover {
    background-image: url(../images/general/home-cover-splash.svg);
    background-position-y: 100%;
    background-size: cover;
    color: white;
    padding-bottom: 240px;
}

section.about-cover .content-wrap {
    max-width: 600px;
}

/* About Intro */

section.about-intro {
    padding-top: 0px;
}

section.about-intro .grid {
    position: relative;
    display: grid;
    grid-template-columns: 400px 1fr;
    column-gap: 120px;
    z-index: 99;
}

section.about-intro .grid .right {
    padding-top: 100px;
}

section.about-intro .grid .right h3 {
    color: #1E4489;
    font-size: 28px;
    margin-top: 0px;
    margin-bottom: 10px;
}

section.about-intro .grid .right img.red-tractor-logo {
    float: left;
    width: 150px;
    margin: 0px 30px 30px 0px;
}

section.about-intro .grid .right a.cta-btn {
    background: #1E4489;
    margin-top: 10px;
}

section.about-intro .churns {
    max-width: 100%;
    height: 370px;
    background-image: url(../images/about/churns.jpg);
    background-position: bottom;
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: -100px;
}

/* About Ethos */

section.about-ethos {
    text-align: center;
    padding-top: 0px;
}

section.about-ethos p.intro {
    max-width: 750px;
    margin: 0 auto;
}

.ethos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 20px;
    margin-top: 40px;
}

.ethos-grid .item {
    background: #f2f2f2;
    border-radius: 15px;
    box-sizing: border-box;
    padding: 45px;
    text-align: left;
    position: relative;
}

.ethos-grid .item .title {
    font-weight: 600;
    font-size: 24px;
}

/* About Proud */

section.about-proud {
    background-color: #f2f2f2;
    text-align: center;
}

.proud-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 20px;
}

.proud-grid .item {
    border-radius: 15px;
    padding: 45px;
    background: white;
    text-align: center;
}

.proud-grid .item .text-wrap {
    text-align: left;
}

.proud-grid .item img {
    height: 50px;
    margin-bottom: 15px;
}

.proud-grid .item .title {
    font-size: 22px;
    font-weight: 600;
}

/* About Brand Boxes */

.about-brand-box-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
    row-gap: 30px;
}

.brand-box {
    background: url(../images/about/llaeth-brand-box-bg.jpg);
    background-size: cover;
    border-radius: 25px;
    text-align: center;
}

.brand-box.warburtons {background: url(../images/about/warburtons-brand-box-bg.jpg);}
.brand-box.bates {background: url(../images/about/bates-brand-box-bg.jpg);}
.brand-box.caepant {background: url(../images/about/cae-pant-brand-box-bg.jpg);}
.brand-box.alpro {background: url(../images/about/alpro-brand-box-bg.webp);}
.brand-box.oato {background: url(../images/about/oato-brand-box-bg.jpg);}

.brand-box .filter-overlay {
    height: 100%;
    width: 100%;
    background: rgba(11,59,91,0.7);
    backdrop-filter: blur(2px);
    border-radius: 25px;
    box-sizing: border-box;
    padding: 40px 60px;
}

.brand-box.warburtons .filter-overlay {background: rgba(208,75,46,0.7);}
.brand-box.bates .filter-overlay {background: rgba(0, 122, 158, 0.7);}
.brand-box.caepant .filter-overlay {background: rgba(200,161,107,0.7);}
.brand-box.alpro .filter-overlay {background: rgba(237,237,237,0.7);}
.brand-box.oato .filter-overlay {background: rgba(255,253,245,0.7);}

.brand-box img {
    height: 70px;
    margin-bottom: 25px;
}

.brand-box .title {
    color: white;
    font-size: 30px;
    margin-bottom: 30px;
}

.brand-box.llaeth .title, .brand-box.llaeth p {color: var(--llaeth-primary);}
.brand-box.caepant .title, .brand-box.caepant p {color: var(--caepant-secondary);}
.brand-box.alpro .title, .brand-box.alpro p {color: var(--alpro-primary);}
.brand-box.oato .title, .brand-box.oato p {color: black;}

.brand-box .title span {
    font-weight: 600;
}

.brand-box p {
    color: white;
}

.brand-box a.cta-btn.outline {
    margin-top: 30px;
}

.brand-box.llaeth a.cta-btn.outline {
    border-color: var(--llaeth-primary);
    color: var(--llaeth-primary);
}
.brand-box.caepant a.cta-btn.outline {
    border-color: var(--caepant-secondary);
    color: var(--caepant-secondary);
}
.brand-box.alpro a.cta-btn.outline {
    border-color: var(--alpro-primary);
    color: var(--alpro-primary);
}
.brand-box.oato a.cta-btn.outline {
    border-color: black;
    color: black;
}

/* About Team */

section.about-team {
    background-color: #f8f8f8;
    text-align: center;
}

section.about-team p.section-subtext {
    max-width: 500px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
    row-gap: 30px;
    margin-top: 50px;
}

.team-grid .team-member {
    border-radius: 10px;
    background-color: white;
    box-sizing: border-box;
    padding: 30px;
    box-shadow: 0px 0px 8px 0px #e9e9e9;
    display: grid;
    grid-template-columns: 150px 1fr;
    column-gap: 40px;
    text-align: left;
}

.team-member img.profile-img {
    border-radius: 50%;
    max-width: 100%;
}

.team-member .name {
    font-size: 20px;
    font-weight: 600;
}

.team-member .tagline {
    font-size: 16px;
    opacity: 0.7;
    margin-top: 6px;
}

.team-member p {
    margin-bottom: 0px;
}

/* Go Green Cover */

section.gogreen-cover {
    background: linear-gradient(to bottom, rgba(8,61,18,1.0), rgba(8,61,18,0.2)), url(../images/go-green/go-green-cover.jpg);
    background-size: cover;
    background-position: bottom;
    color: white;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 88%);
}

section.gogreen-cover img {
    max-width: 300px;
}

section.gogreen-cover p {
    max-width: 600px;
    padding-bottom: 40px;
}

/* Go Green Content */

section.gogreen-content {
    padding-top: 20px;
}

.gogreen-columns {
    display: grid;
    grid-template-columns: 1fr 440px;
    column-gap: 80px;
}

.gogreen-right-col img.bottles {
    max-width: 100%;
    margin-top: -200px;
    margin-bottom: 30px;
    z-index: 99;
    position: relative;
    border: 3px solid white;
    border-radius: 30px;
}

.gogreen-columns hr.sep {
    border: none;
    border-top: 1px solid #d5d5d5;
    margin: 40px 0px;
}

.gogreen-triangle {
    margin-top: 50px;
    width: 100%;
    border-radius: 15px;
    background: linear-gradient(to bottom, rgba(8,61,18,1.0), rgba(125,170,92,1.0));
    box-sizing: border-box;
    padding: 30px;
    color: white;
    text-align: center;
}

.gogreen-triangle .title {
    font-size: 30px;
    font-weight: 700;
}

.gogreen-triangle .section {
    box-sizing: border-box;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    width: 100%;
    margin-top: 30px;
    text-align: left;
}

.gogreen-triangle .section img {
    display: inline-block;
    vertical-align: top;
    height: 30px;
    position: relative;
}

.gogreen-triangle .section .section-title {
    display: inline-block;
    vertical-align: top;
    font-size: 22px;
    margin-left: 15px;
    font-weight: 300;
}

.gogreen-triangle .section p {
    margin-bottom: 0px;
    font-size: 14px;
}

.gogreen-calc form .grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 20px;
}

.gogreen-calc form button[type="submit"] { 
    margin-top: 20px;
}

#_pint_calculator_output {
    float: right;
    width: auto;
    margin-top: 20px;
}

.gogreen-fact-boxes .box {
    background: #f4f4f4;
    box-sizing: border-box;
    padding: 20px 40px;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: center;
    column-gap: 30px;
    margin-bottom: 30px;
}

.gogreen-fact-boxes .box .fig {
    font-size: 60px;
    font-weight: 600;
}

.gogreen-fact-boxes .box .fig-descriptor {
    font-size: 16px;
}

img.gogreen-micro {
    max-width: 100%;
    border-radius: 15px;
    margin-top: 20px;
}

/* Payments */

section.payments-header {
    position: relative;
    background-color: var(--colour-primary);
    clip-path: polygon(0 0, 100% 0%, 100% 84%, 0% 100%);
}

section.payments-header h1.page-title {
    color: white;
}

section.payments-header p {
    color: white;
    max-width: 500px;
}

section.payments-header img.money-stack {
    position: absolute;
    right: 100px;
    top: -100px;
    filter: invert(1);
    opacity: 0.1;
}

section.payments-content {
    text-align: center;
    padding-top: 30px;
}

hr.payments-divider {
    border: none;
    border-top: 1px solid #dedede;
    max-width: 500px;
    margin: 50px auto;
}

.payment-method {
    display: grid;
    grid-template-columns: 120px 1fr;
    column-gap: 60px;
    margin-bottom: 40px;
}

.payment-method .text-content {
    text-align: left;
}

.payment-method h3, .payments-email-invoicing h3 {
    font-size: 26px;
    font-weight: 400;
    margin: 0px 0px 15px 0px;
}

.payment-method img {
    width: 100%;
    padding-top: 30px;
}

.payments-email-invoicing {
    background-color: #f5f5f5;
    position: relative;
    border-radius: 15px;
    border: 1px dashed #dedede;
    padding: 40px;
    margin-top: 50px;
}

.payments-email-invoicing img.arrow {
    position: absolute;
    top: -70px;
    left: -300px;
    transform: rotate(15deg);
    opacity: 0.05;
}

/* Holidays */

section.holidays-header {
    position: relative;
    padding: 60px 0px 100px 0px;
    background-color: var(--colour-primary);
    clip-path: ellipse(90% 50% at 50% 40%);
}

section.holidays-header h1.page-title {
    color: white;
}

section.holidays-header p {
    color: white;
    max-width: 500px;
}

section.holidays-header img.plane {
    position: absolute;
    right: 100px;
    top: -150px;
    filter: invert(1);
    opacity: 0.1;
}

section.holiday-form {
    text-align: center;
    margin-top: -40px;
}

form.holidays {
    text-align: left;
    margin: 80px 0px;
}

form.holidays .field-row {
    display: grid;
    column-gap: 30px;
    row-gap: 30px;
    margin-bottom: 30px;
}
form.holidays .field-row.one {
    grid-template-columns: 1fr 2fr;
}
form.holidays .field-row.two {
    grid-template-columns: 1fr 1fr 2fr;
}
form.holidays .field-row.three {
    grid-template-columns: 1fr 1fr 2fr;
}
form.holidays .field-row.four {
    grid-template-columns: 2fr 1fr;
}

form.holidays textarea {
    height: 100px;
}

form.holidays button[type="submit"] {
    align-self: end;
    margin-bottom: 10px;
}

form.holidays .confirmation-text {
    width: 100%;
    text-align: center;
    font-size: 16px;
    box-sizing: border-box;
    padding: 20px;
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
    border-radius: 10px;
    align-self: flex-end;
}

.holiday-arrangement {
    box-sizing: border-box;
    padding: 30px;
    border: 1px dashed #dedede;
    display: grid;
    grid-template-columns: 75px 1fr;
    column-gap: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    background-color: white;
    text-align: left;
}

.holiday-arrangement img {
    max-width: 100%;
}

.holiday-arrangement .title {
    font-size: 22px;
    font-weight: 600;
}

/* Contact */

section.contact-header {
    position: relative;
    padding: 60px 0px 100px 0px;
    background-color: var(--colour-primary);
    clip-path: ellipse(90% 50% at 50% 40%);
    color: white;
}

section.contact-header h1.page-title {
    color: white;
}

.contact-outer-grid {
    margin-top: 60px;
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    column-gap: 120px;
}

/* Product Root */

section.product-root-header {
    padding-bottom: 0px;
    text-align: center;
    border-top: 1px solid #ececec;
}

/* Product Category */

section.product-category-header {
    width: 100%;
    box-sizing: border-box;
    color: white;
    padding-bottom: 50px;
    background-size: cover;
    background-position: 10%;
}

section.product-category-header.milk {
    background-image: linear-gradient(to right, rgba(0, 56, 140, 1.0), rgb(0 56 140 / 77%)), url(../images/product-category-backgrounds/milk_bg.jpg);
}

section.product-category-header.organic-milk {
    background-image: linear-gradient(to right, rgba(0, 67, 2, 1.0), rgb(0 67 2 / 81%)), url(../images/product-category-backgrounds/milk_bg.jpg);
}

section.product-category-header.plant-milks {
    background-image: linear-gradient(to right, rgb(27 104 126), rgb(15 103 120 / 75%)), url(../images/product-category-backgrounds/milk-alternative-category.jpg)
}

section.product-category-header.bakery {
    background-image: linear-gradient(to right, rgb(189 70 0), rgb(187 70 0 / 52%)), url(../images/product-category-backgrounds/bakery_bg.jpg);
}

section.product-category-header.juice {
    background-image: linear-gradient(to right, rgba(145, 64, 0, 1.0), rgb(197 114 58 / 80%)), url(../images/product-category-backgrounds/juice_bg.jpg);
}

section.product-category-header.butter {
    background-image: linear-gradient(to right, rgba(147, 111, 35, 1.0), rgb(255 172 0 / 67%)), url(../images/product-category-backgrounds/butter_bg.jpg);
}

section.product-category-header.misc-milks {
    background-color: #d29fbc;
}

section.product-category-header.cream {
    background-image: linear-gradient(to right, rgb(0 0 0), rgb(0 0 0 / 0%)), url(../images/product-category-backgrounds/cream-bg.jpg);
}

section.product-category-header.yogurt {
    background-image: linear-gradient(to right, rgb(6 68 100), rgb(6 68 100 / 76%)), url(../images/product-category-backgrounds/yoghurt-category.jpg);
}

section.product-category-header.longley {
    background-image: linear-gradient(to right, rgb(6 68 100), rgb(6 68 100 / 73%)), url(../images/product-category-backgrounds/longley-yog-category.jpg);
}

section.product-category-header.pro-biotic {
    background-image: url(../images/product-category-backgrounds/yakult-bg.jpg);
}

section.product-category-header.pro-biotic h1, section.product-category-header.pro-biotic p, section.product-category-header.pro-biotic .item-count {
    color: rgb(225 11 50);
}

section.product-category-header.eggs {
    background-image: linear-gradient(to right, rgb(88 33 4 / 50%), rgb(87 32 1)), url(../images/product-category-backgrounds/egg-category.jpg);
}

section.product-category-header.cheese {
    background: var(--colour-primary);
}
section.product-category-header.dairy-diary {
    background-image: linear-gradient(to right, var(--dairy-diary-secondary), #27272786), url(../images/dairy-diary-2026/dairy-diary-front.webp);
}

section.product-category-header p {
    max-width: 700px;
}

section.product-category-header .spacer {
    padding-left: 350px;
}

.category-page-title-lockup img {
    height: 50px;
    float: left;
    margin-right: 20px;
}

.product-category-header .item-count {
    font-size: 16px;
    opacity: 0.8;
}

.product-category-page-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    column-gap: 20px;
    width: 100%;
}

nav.floating-categories {
    width: 100%;
    background-color: white;
    border-radius: 20px;
    border: 1px solid #F0F0F0;
    margin-top: -250px;
    padding-top: 10px;
    box-sizing: border-box;
    padding: 25px;
    padding-top: 10px;
    align-self: start;
}

nav.floating-categories .nav-group {
    border-bottom: 1px solid #F0F0F0;
    margin-top: 20px;
}

nav.floating-categories li.nav-item a {
    font-size: 16px;
}

nav.floating-categories .nav-group:last-of-type {
    border-bottom: none;
}

nav.floating-categories .nav-group .nav-group-title {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.7;
    text-transform: uppercase;
    margin-left: 10px;
}

nav.floating-categories .nav-group ul {
    padding-left: 0px;
    list-style: none;
}

section.product-category-results {
    padding-top: 20px;
}

.product-results-grid .result {
    border: 1px solid #f0f0f0;
    border-radius: 15px;
    box-sizing: border-box;
    padding: 20px;
    width: 255px;
    text-align: center;
    display: inline-block;
    margin: 0px 20px 20px 0px;
    vertical-align: top;
    background-color: white;
}

.product-results-grid .result img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
}

button.product-add-cart {
    font-family: 'Figtree', sans-serif;
    font-weight: 400;
    background-color: var(--colour-primary);
    color: white;
    border: none;
    width: 100%;
    padding: 16px 0px;
    text-transform: uppercase;
    font-size: 12px;
    transition: 0.2s;
    cursor: pointer;
}

button.product-add-cart.remove {
    background-color: var(--colour-negative);
}

button.product-add-cart:hover {
    transform: scale(1.05);
    
}

.product-results-grid .result a {
    text-decoration: none;
    color: var(--colour-text);
}
.product-results-grid .result a:hover .product-title {
    color: var(--colour-primary);
    transition: 0.2s;
}

.product-results-grid .result .product-title {
    font-size: 16px;
    line-height: 1.5;
    min-height: 75px;
    font-weight: 600;
}

.product-results-grid .result .price {
    margin-bottom: 20px;
    font-size: 16px;
}

/* Product View Page */

section.product-view {
    background-color: var(--colour-primary);
    padding-bottom: 300px;
    padding-top: 30px;
    position: relative;
}

section.product-view .breadcrumb-container a.breadcrumb {
    font-size: 14px;
    color: white;
    opacity: 0.7;
    text-decoration: none;
}

section.product-view .breadcrumb-container img.arrow {
    width: 20px;
    position: relative;
    top: 5px;
    opacity: 0.7;
}

.product-view-overflow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

section.product-offset-container {
    margin-top: -290px;
    padding-top: 20px;
}

.product-pane {
    background-color: white;
    z-index: 1;
    position: relative;
    border-radius: 20px;
    box-sizing: border-box;
    padding: 40px;
    box-shadow: 0px 2px 8px #4d4d4d2b;
}

.product-pane .top-row-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    column-gap: 40px;
}

.product-pane .top-row-grid img.product-img {
    width: 100%;
    border-radius: 15px;
}

.product-pane h3.product-title {
    font-size: 30px;
    margin: 0px 0px 10px 0px;
    font-weight: 600;
}

.product-flag-wrapper {
    display: grid;
    row-gap: 10px;
}

.product-detail-container .product-price {
    font-size: 22px;
    font-weight: 400;
}

.product-detail-container .btn-wrapper {
    max-width: 200px;
    margin-top: 30px;
}

.product-pane .detail-row-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.product-ingredient-pane, .product-nutritional-pane {
    box-sizing: border-box;
    padding: 20px;
    background-color: #f7f7f7;
    border-radius: 15px;
    width: 100%;
}

.product-ingredient-pane small.disclaimer, .product-nutritional-pane small.disclaimer {
    font-size: 13px;
    opacity: 0.7;
    line-height: 1.1;
}

.product-ingredient-pane p {
    font-size: 16px;
}

table.product-nutrition {
    text-align: left;
    font-size: 16px;
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

table.product-nutrition th, table.product-nutrition td {
    border-bottom: 1px solid #e7e7e7;
    box-sizing: border-box;
    padding: 10px 0px;
}

table.product-nutrition tr.last-row th,  table.product-nutrition tr.last-row td{
    border: none;
}

section.similar-products {
    padding-top: 0px;
    text-align: center;
}

/* Dairy Dictionary */

section.dictionary-cover {
    background: #0C2E48;
    color: white;
    text-align: center;
}

section.dictionary-cover p {
    max-width: 500px;
    margin: 30px auto 0px auto;
}

section.dictionary-cover .header-footnote {
    font-size: 16px;
    opacity: 0.8;
    margin-top: 6px;
}

section.dictionary-milk-types {
    text-align: center;
}

section.dictionary-milk-types h2 {
    margin-bottom: 6px;
}

section.dictionary-milk-types h3 {
    opacity: 0.8;
    margin-bottom: 40px;
}

.dict-milk-type {
    box-sizing: border-box;
    padding: 30px;
    border-radius: 15px;
    background-color: #f7f7f7;
    width: 100%;
    margin-top: 30px;
    display: grid;
    grid-template-columns: 360px 1fr;
    column-gap: 60px;
    text-align: left;
}

.dict-milk-type .milk-top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 15px;
}

.dict-milk-type .milk-top-grid .milk-top {
    text-align: center;
}

.dict-milk-type .milk-top-grid .milk-top img {
    width: 100%;
}

.dict-milk-type .milk-top-grid .milk-top .descriptor {
    font-size: 14px;
    margin-top: 10px;
}

.dict-milk-type .type-info .title {
    font-size: 26px;
}

.dict-milk-type .type-info .fat-content {
    color: #cca43d;
    font-size: 14px;
}

section.dict-uht {
    background: #fbfbfb;
}

section.dict-uht  img {
    max-width: 300px;
    border-radius: 10px;
    float: right;
    margin: 0px 0px 30px 30px;
}

section.dict-plant {
    text-align: center;
}

section.dict-plant h2 {
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
}

section.dict-plant h2:before, section.dict-plant h2:after {
    content: '';
    background-image: url(../images/dictionary/leaf.svg);
    background-size: contain;
    height: 40px;
    width: 40px;
    display: block;
    position: absolute;
    top: 5px;
}

section.dict-plant h2:before {
    left: -60px;
}

section.dict-plant h2:after {
    right: -60px;
    transform: rotateZ('180deg');
}

section.dict-plant h2 span {
    color: #47a23c;
}

section.dict-plant h3 {
    opacity: 0.8;
    margin-bottom: 40px;
}

.dict-plant-milk {
    box-sizing: border-box;
    padding: 30px 0px;
    text-align: left;
    display: grid;
    grid-template-columns: 150px 1fr;
    column-gap: 60px;
}

.dict-plant-milk img.icon {
    max-width: 100%;
}

.dict-plant-milk .info .title {
    font-size: 28px;
}

.dict-plant-milk .nutrition-pill {
    border-radius: 50px;
    background: #f3f3f3;
    font-size: 13px;
    box-sizing: border-box;
    padding: 8px 16px;
    display: inline-block;
    margin-right: 15px;
}

section.dict-homogen {
    border-top: 1px solid #f3f3f3;
}

.homogen-standard-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    column-gap: 60px;
}

.homogen-standard-grid h4 {
    font-size: 36px;
    margin-top: 0px;
    font-weight: 400;
}

/* Order page */

section.order-page-header {
    position: relative;
    padding-top: 80px;
    background-color: var(--colour-primary);
    color: white;
}

section.order-table {
    background-color: white;
}

section.order-table h2 {
    margin-bottom: 0px;
}

.order-table-container {
    width: 100%;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

table.order {
    width: 100%;
    text-align: left;
    border-collapse: collapse;
    overflow-x: scroll;
}

table.order th, table.order td {
    border-bottom: 1px solid #dedede;
    box-sizing: border-box;
    padding: 12px;
}

button.order-table-remove-item {
    background-color: transparent;
    border: none;
    cursor: pointer;
}

button.order-table-remove-item svg {
    fill: #dedede;
    transition: 0.3s;
}
button.order-table-remove-item svg:hover {
    fill: red;
}

input.order-table-qty-adjust {
    font-family: "Figtree", sans-serif;
    font-size: 14px;
    box-sizing: border-box;
    padding: 6px;
    border: 1px solid #dedede;
    border-radius: 5px;
}

.order-table-summary-container {
    box-sizing: border-box;
    padding: 20px 20px 20px 0px;
    text-align: right;
}

.order-table-summary-container .value {
    font-size: 30px;
}

form.order-form {
    display: grid;
    grid-template-columns: 400px 1fr;
    column-gap: 80px;
}

form.order-form button {
    float: right;
}

.order-form-radio-group {
    box-sizing: border-box;
    padding: 20px;
    background-color: white;
    border: 1px solid #d2d2d2;
    border-radius: 3px;
}

.input-group.radio-group .label {
    font-size: 16px;
    margin-bottom: 6px;
}

.order-form-radio-group .radio-row input {
    display: inline-block;
    width: auto;
}

.order-form-radio-group .radio-row label {
    display: inline-block;
    width: auto;
}

/* Home 40th Anniversary */

section.anniversary-home {
    padding-top: 0px;
}

section.anniversary-home .container {
    border-top: 1px solid #ccc;
    box-sizing: border-box;
    padding-top: 50px;
    display: grid;
    grid-template-columns: 300px 1fr;
    column-gap: 60px;
}

section.anniversary-home .container img {
    max-width: 100%;
    border-radius: 10px;
}

section.anniversary-home .container h2 {
    font-size: 36px;
    color: var(--colour-primary);
    margin-top: 0px;
}

/* Dairy Diary 2026 */

section.dairy-diary-2026 {
    background: url(../images/dairy-diary-2026/one-pan-cookbook-front.webp);
    background-size: cover;
    background-attachment: fixed;
    background-position: 50% 50%;
}

section.dairy-diary-2026 .container {
    max-width: 800px;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(8px);
    box-sizing: border-box;
    padding: 60px;
    border-radius: 10px;
}

section.dairy-diary-2026 .container h2 {
    color: #EB761B;
    margin-top: 0px;
    font-size: 36px;
}

section.dairy-diary-2026 a {
    background: #EB761B;
    color: white;
    font-weight: 600;
    display: inline-block;
    box-sizing: border-box;
    padding: 18px 36px;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 5px;
    font-size: 14px;
    margin-top: 20px;
}

section.dd-cover {
    border-top: 1px solid #ccc;
}

section.dd-cover .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 60px;
}

section.dd-cover h1 {
    color: #EB761B;
    margin: 0px;
}

.dd-subtitle {
    text-transform: uppercase;
    color: #EB761B;
    font-weight: 400;
    font-size: 14px;
    margin-top: 6px;
}

section.dd-cover img {
    width: 100%;
    border-radius: 10px;
}

section.dd-features {
    background-color: #eee;
}

section.dd-features .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 50px;
}

section.dd-features .img-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    row-gap: 20px;
}

section.dd-features .img-content img {
    width: 100%;
    border-radius: 10px;
}

section.dd-features .feature-group h4 {
    margin: 0px;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 10px;
}

section.dd-features .feature-group {
    box-sizing: border-box;
    padding: 20px 0px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
}

section.dd-features .feature-group:last-child {
    margin-bottom: 0px;
    border-bottom: none;
}

section.dd-cookbook {
    background: url(../images/dairy-diary-2026/one-pan-cookbook-front.webp);
    background-size: cover;
    background-position: 0% 50%;
}

section.dd-cookbook .box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(8px);
    box-sizing: border-box;
    padding: 60px;
    border-radius: 10px;
}

.dd-price {
    font-weight: 600;
}

a.dd {
    background: #EB761B;
    color: white;
    font-weight: 600;
    display: inline-block;
    box-sizing: border-box;
    padding: 18px 36px;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 5px;
    font-size: 14px;
    margin-top: 20px;
}

section.dd-cover.pds {
    background: #f8ede5;
    margin-bottom: 60px;
}

@media screen and (max-width: 1300px) 
{
    section.home-history-banner .grid {
        padding: 0px 80px;
    }

    .product-category-page-grid {
        grid-template-columns: 1fr;
    }

    nav.floating-categories {
        display: none;
    }

    section.product-category-header .spacer {
        padding-left: 0px;
    }
}

@media screen and (max-width:2400px) {
    footer {padding-top: 650px;}
}

@media screen and (max-width:1920px)
{
    section.about-cover {
        padding-bottom: 150px;
    }
    footer {
        padding-top: 550px;
    }
}

@media screen and (max-width:1250px)
{
    section.home-go-green {
        text-align: center;
    }
    section.home-go-green .grid {
        grid-template-columns: 1fr;
        row-gap: 30px;
    }
    section.home-go-green .grid img {
        max-width: 200px;
        margin: 0 auto;
    }
    section.home-go-green .grid .text {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media screen and (max-width:1200px)
{
    .header-grid .nav-section {
        display: none;
    }
    .header-grid .cart-section {
        display: none;
    }
    .header-grid {
        grid-template-columns: 250px 1fr;
    }
    .header-grid .logo {
        max-width: 220px;
        padding-bottom: 4px;
    }

    .mobile-controls {display: flex;}

    .home-introduction .grid {
        column-gap: 60px;
    }

    .address-contact-subsection {
        grid-template-columns: 1fr;
        row-gap: 30px;
    }

    section.gogreen-cover p {
        max-width: 500px;
    }

    form.order-form {
        grid-template-columns: 1fr;
        row-gap: 30px;
    }

    section.pocket-set-intro .grid {
        grid-template-columns: 400px 1fr;
    }

    section.pocket-set-intro .grid .box {
        padding-left: 140px;
    }
}

@media screen and (max-width:1100px)
{
    footer {
        text-align: center;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid .col1 p {
        max-width: 300px;
        margin: 30px auto;
    }
    .footer-grid .col2, .footer-grid .col3 {
        display: none;
    }

    section.dairy-diary-header .grid {
        column-gap: 60px;
    }
}

@media screen and (max-width:1000px)
{
    .home-introduction .grid {
        grid-template-columns: 1fr 275px;
    }

    section.home-history-banner .grid {
        grid-template-columns: 200px 1fr;
    }

    .home-stat-box-wrapper {
        grid-template-columns: 1fr;
        row-gap: 30px;
    }

    section.about-intro .grid {
        grid-template-columns: 1fr;
        row-gap: 20px;
    }

    section.about-intro .grid .right {
        padding-top: 40px;
        border-top: 1px solid #d2d2d2;
    }

    section.about-intro .grid .right img.red-tractor-logo {
        width: 130px;
    }

    section.about-intro .grid .right a.cta-btn {
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
    }

    section.about-intro .churns {
        margin-top: -80px;
    }

    .ethos-grid, .proud-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 20px;
    }

    .team-grid .team-member {
        grid-template-columns: 1fr;
        row-gap: 30px;
    }

    .team-member img.profile-img {
        width: 150px;
    }

    .homogen-standard-grid {
        grid-template-columns: 1fr;
        row-gap: 30px;
    }

    .gogreen-right-col img.bottles {
        margin-top: 0px;
    }

    section.pocket-set-intro .price {
        float: none;
        margin-bottom: 20px;
    }

    section.cookbook-header {
        grid-template-columns: 500px 1fr;
    }
}

@media screen and (max-width:900px)
{
    section.home-warburtons .grid {
        grid-template-columns: 1fr;
        row-gap: 30px;
    }

    .home-warburtons img {
        max-width: 300px;
    }

    .product-pane .top-row-grid, .product-pane .detail-row-grid {
        grid-template-columns: 1fr;
        row-gap: 20px;
    }

    .product-pane .top-row-grid img.product-img {
        max-width: 250px;
    }

    .brand-box img {
        max-width: 100%;
        max-height: 100px;
    }

    .brand-box .filter-overlay {
        padding: 30px;
    }

    .dict-milk-type {
        grid-template-columns: 240px 1fr;
    }

    .dict-milk-type .milk-top-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 20px;
    }

    .gogreen-columns {
        grid-template-columns: 1fr;
        row-gap: 30px;
    }

    .gogreen-right-col img.bottles {
        max-width: 250px;
    }

    form.holidays .field-row.two {
        grid-template-columns: 1fr 1fr;
    }

    section.dairy-diary-intro .grid {
        grid-template-columns: 300px 1fr;
    }

    .dairy-diary-cta-banner {
        grid-template-columns: 1fr;
    }

    .dairy-diary-cta-banner img {
        max-width: 400px;
        margin-bottom: 30px;
    }

    section.diary-set-second .grid-top, section.diary-set-second .grid-bottom {
        grid-template-columns: 1fr;
    }

    section.diary-set-second img, section.diary-set img {
        max-width: 400px;
        margin-bottom: 30px;
    }

    section.pocket-set-intro .grid {
        grid-template-columns: 1fr;
    }

    section.pocket-set-intro .grid img {
        max-width: 400px;
    }

    section.pocket-set-intro .grid .box {
        padding-left: 30px;
    }

    section.cookbook-intro .grid {
        grid-template-columns: 1fr;
    }

    section.cookbook-intro img.cookbook {
        max-width: 400px;
    }

    section.cookbook-intro .grid .features {
        padding-left: 20px;
        margin-top: 15px;
    }
}

@media screen and (max-width:800px)
{
    .home-introduction .grid {
        grid-template-columns: 1fr;
    }

    .home-introduction .grid img {
        max-width: 500px;
        margin-top: 20px;
    }

    section.home-history-banner .grid {
        grid-template-columns: 1fr;
        row-gap: 30px;
        padding: 0px;
    }

    .home-stat-box-wrapper {
        grid-template-columns: 1fr 1fr;
        column-gap: 40px;
    }

    section.home-oato img.oato-crated {
        display: none;
    }

    section.contact-pre-footer .grid, .contact-outer-grid {
        grid-template-columns: 1fr;
        row-gap: 30px;
    }

    form.pre-footer-contact button[type="submit"] {
        width: 100%;
    }

    section.contact-pre-footer .contact-form {
        border: none;
        padding: 0px;
    }

    section.contact-pre-footer .delivery-contact-informations {
        padding: 0px;
    }

    section.dairy-diary-header .grid {
        grid-template-columns: 1fr;
    }

    section.dairy-diary-header .grid .img-wrapper {
        display: none;
    }

    section.dairy-diary-home .dairy-diary-logo {
        display: none;
    }
}

@media screen and (max-width:700px)
{
    .about-brand-box-grid {
        grid-template-columns: 1fr;
    }

    .ethos-grid, .proud-grid {
        grid-template-columns: 1fr;
    }

    .dict-plant-milk {
        grid-template-columns: 70px 1fr;
        column-gap: 20px;
    }

    section.anniversary-home .container {
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    section.anniversary-home .container img {max-width: 300px;}

    section.dairy-diary-intro .grid {
        grid-template-columns: 1fr;
    }

    section.dairy-diary-intro .grid img {
        max-width: 400px;
    }

    section.dairy-diary-features .grid {
        grid-template-columns: 1fr;
    }

    section.dairy-diary-features .feature img {
        max-width: 400px;
    }

    section.diary-set .grid {
        grid-template-columns: 1fr;
    }

    section.diary-set .grid .left {
        border-radius: 20px;
    }

    section.diary-set .grid .right {
        display: none;
    }

    section.cookbook-sample-recipes .recipe {
        grid-template-columns: 1fr;
    }

    section.dairy-diary-home a.cta-btn.ghost {
        margin: 20px 0px 0px 0px;
    }
}

@media screen and (max-width:650px)
{
    .dict-milk-type {
        grid-template-columns: 1fr;
        row-gap: 20px;
    }

    .dict-milk-type .type-info {
        border-top: 1px solid #d2d2d2;
        padding-top: 20px;
    }

    .dict-milk-type .milk-top-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media screen and (max-width:600px)
{
    .product-pane {
        padding: 20px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    form.holidays .field-row.two, form.holidays .field-row.one, form.holidays .field-row.four  { 
        grid-template-columns: 1fr;
    }

    form.holidays button[type="submit"] {
        display: block;
    }

    section.pocket-images .images {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
        row-gap: 30px;
    }
}