/*
Theme Name: ADG Theme
Author: Arizona Defense Group
Version: 1.0
*/

/* ==============================
   Base
================================*/

html, body {
    background:#000;
    color:white;
    margin:0;
}

body{
    font-family: 'Oswald', sans-serif;
}

main {
    background:#000;
}

h1,h2,h3,h4,h5,h6 {
    color:white;
}

body a{
    color:white;
    text-decoration:none;
}

body a:visited{
    color:white;
}

body a:hover,
body a:focus{
    color:#c00;
}

.top-notice-bar{
    background:#7fa5df;
    padding:12px 20px;
    text-align:center;
}

.top-notice-bar p{
    margin:0;
    color:white;
    font-size:17px;
    line-height:1.4;
}

.top-notice-bar strong{
    color:white;
}

/* ==============================
   Header
================================*/

.site-header{
    background:#000;
}


.header-inner{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    padding:12px 20px;
}

.main-nav{
    margin-left:18px;
    flex:1;
}

main{
    max-width:1200px;
    margin:auto;
    padding:40px 20px;
}

/* Logo */

.logo img{
    height:60px;
}

.logo a{
    text-decoration:none;
}

/* Navigation */

.main-nav ul{
    list-style:none;
    display:flex;
    gap:28px;
    margin:0;
    padding:0;
    align-items:center;
    justify-content:flex-start;
}

.main-nav a{
    color:white;
    text-decoration:none;
    font-weight:600;
    display:block;
}

.main-nav a:hover{
    color:#c00;
}

.main-nav .menu-item-has-children{
    position:relative;
}

.main-nav .menu-item-has-children > a::after{
    content:'\25BE';
    margin-left:8px;
    font-size:12px;
    vertical-align:middle;
}

.main-nav .sub-menu{
    position:absolute;
    top:100%;
    left:0;
    min-width:220px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding:12px 0;
    margin-top:0;
    background:#111;
    border:1px solid #2d2d2d;
    z-index:50;
}

.main-nav .sub-menu li{
    width:100%;
    position:relative;
}

.main-nav .sub-menu a{
    padding:12px 18px;
    white-space:nowrap;
}

.main-nav .sub-menu .menu-item-has-children > a::after{
    content:'\203A';
    float:right;
    font-size:18px;
    line-height:1;
}

.main-nav .sub-menu .sub-menu{
    top:-13px;
    left:100%;
    margin-top:0;
    display:none;
}

.main-nav > ul > .menu-item-has-children:hover > .sub-menu,
.main-nav > ul > .menu-item-has-children:focus-within > .sub-menu{
    display:flex;
}

.main-nav .sub-menu > .menu-item-has-children:hover > .sub-menu,
.main-nav .sub-menu > .menu-item-has-children:focus-within > .sub-menu{
    display:flex;
}

/* Cart */

.header-cart{
    margin-left:0;
}

.header-cart a{
    color:white;
    text-decoration:none;
    font-weight:bold;
}

.header-cart a:hover{
    color:#c00;
}

/* ==============================
   Hero Banner
================================*/

.hero{
    position:relative;
    height:640px;
    color:white;
    overflow:hidden;
    margin-bottom:50px;
}

.hero-slider-track{
    position:relative;
    height:100%;
}

.hero-slide{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    background-size:cover;
    background-position:center;
    opacity:0;
    visibility:hidden;
    transition:opacity .45s ease;
}

.hero-slide.is-active{
    opacity:1;
    visibility:visible;
}

.hero-slide-overlay{
    position:absolute;
    inset:18px 30px 88px;
    background:rgba(15, 15, 15, 0.34);
    pointer-events:none;
}

.hero-content{
    position:relative;
    z-index:1;
    width:100%;
    max-width:980px;
    margin:0 auto;
    padding:48px 64px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.hero-eyebrow{
    margin:0 0 14px;
    font-size:18px;
    letter-spacing:2px;
    text-transform:uppercase;
}

.hero-logo{
    display:block;
    width:100%;
    max-width:520px;
    max-height:170px;
    object-fit:contain;
    margin:0 auto 18px;
}

.hero-title{
    margin:0 0 14px;
    font-size:88px;
    line-height:.95;
    text-transform:uppercase;
}

.hero-subtext{
    font-size:24px;
    letter-spacing:1px;
    margin:0 0 18px;
    color:white;
    max-width:760px;
}

.hero-button{
    display:inline-block;
    background:#c00;
    color:white;
    padding:14px 30px;
    text-decoration:none;
    font-weight:bold;
    letter-spacing:1px;
}

.hero-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:64px;
    height:64px;
    border-radius:50%;
    border:2px solid rgba(255,255,255,.65);
    background:rgba(0,0,0,.28);
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:2;
}

.hero-arrow span{
    font-size:52px;
    line-height:1;
    margin-top:-6px;
}

.hero-arrow-prev{
    left:18px;
}

.hero-arrow-next{
    right:18px;
}

.hero-arrow:hover{
    border-color:#d8ff4d;
    color:#d8ff4d;
}

.hero-pagination{
    position:absolute;
    left:50%;
    bottom:22px;
    transform:translateX(-50%);
    display:flex;
    gap:18px;
    z-index:2;
}

.hero-dot{
    width:146px;
    height:8px;
    border:none;
    background:rgba(255,255,255,.3);
    cursor:pointer;
    padding:0;
}

.hero-dot.is-active{
    background:white;
}

/* ==============================
   Category Cards
================================*/

.category-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    max-width:1200px;
    margin:60px auto;
}

.category-card{
    position:relative;
    overflow:hidden;
    text-decoration:none;
    color:white;
}

.category-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    transition:transform .3s ease;
}

.category-card span{
    position:absolute;
    bottom:20px;
    left:20px;
    font-size:20px;
    font-weight:bold;
    background:rgba(0,0,0,.6);
    padding:8px 12px;
}

.category-card:hover img{
    transform:scale(1.08);
}

/* ==============================
   Product Grid
================================*/

.product-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    max-width:1200px;
    margin:60px auto;
}

.product-card{
    background:#111;
    padding:18px;
    text-align:center;
    transition:transform .2s ease;
    display:flex;
    flex-direction:column;
    height:100%;
}

.product-card:hover{
    transform:translateY(-5px);
}

.product-card__link{
    display:flex;
    flex-direction:column;
    flex:1;
    color:white;
    text-decoration:none;
}

.product-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.product-card h3{
    margin-top:12px;
    font-size:15px;
    letter-spacing:1px;
    line-height:1.35;
    min-height:5.4em;
}

.product-card p{
    font-size:16px;
    font-weight:bold;
    margin:8px 0;
    min-height:1.5em;
}

.product-card .button{
    display:inline-block;
    margin-top:auto;
    background:#c00;
    color:white;
    padding:10px 20px;
    text-decoration:none;
    font-weight:bold;
}

.product-card .button:hover{
    background:#900;
}

.header-search input{
    padding:6px 10px;
    border:none;
    border-radius:3px;
}

.header-search input[type="submit"]{
    background:#c00;
    color:white;
    border:none;
    padding:6px 12px;
    cursor:pointer;
}

.site-search{
    background:#111;
    padding:14px 20px 18px;
}

.site-search-form{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    display:flex;
    align-items:center;
    position:relative;
}

.site-search-input{
    width:100%;
    height:56px;
    padding:0 64px 0 18px;
    border:2px solid #4a4a4a;
    border-radius:9px;
    background:#151515;
    color:white;
    font-size:18px;
    font-family:'Oswald', sans-serif;
    letter-spacing:.5px;
    box-sizing:border-box;
}

.site-search-input::placeholder{
    color:#8d8d8d;
}

.site-search-input:focus{
    outline:none;
    border-color:#777;
}

.site-search-button{
    position:absolute;
    right:18px;
    top:50%;
    transform:translateY(-50%);
    background:transparent;
    border:none;
    color:#f1f1f1;
    font-size:26px;
    cursor:pointer;
    padding:0;
    line-height:1;
}

.site-search-button:hover{
    color:#c00;
}

.shop-layout{
    display:flex;
    max-width:1200px;
    margin:auto;
    gap:40px;
}

.shop-sidebar{
    width:250px;
}

.shop-products{
    flex:1;
}

.shop-sidebar,
.shop-sidebar h1,
.shop-sidebar h2,
.shop-sidebar h3,
.shop-sidebar h4,
.shop-sidebar p,
.shop-sidebar li,
.shop-sidebar label,
.woocommerce-breadcrumb,
.woocommerce-breadcrumb a,
.woocommerce-result-count,
.woocommerce-tabs,
.woocommerce-tabs p,
.woocommerce-product-details__short-description,
.woocommerce-product-details__short-description p,
.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce div.product .stock{
    color:white;
}

.shop-sidebar ul{
    list-style:none;
    margin:0;
    padding:0;
}

.shop-widget{
    margin-bottom:16px;
    background:#0f0f0f;
    border:1px solid #2a2a2a;
}

.shop-widget a:visited{
    color:white;
}

.shop-widget > h3{
    margin:0;
    padding:18px 54px 18px 18px;
    position:relative;
    background:#dedede;
    color:#222;
    font-size:22px;
    letter-spacing:1px;
    text-transform:uppercase;
}

.shop-widget:nth-of-type(even) > h3{
    background:#3e3e3e;
    color:white;
}

.shop-widget > h3::after{
    content:'⌄';
    position:absolute;
    right:18px;
    top:50%;
    transform:translateY(-50%);
    font-size:28px;
    line-height:1;
}

.shop-widget > *:not(h3){
    padding-left:18px;
    padding-right:18px;
}

.shop-widget ul{
    margin:0;
    padding:16px 18px 18px;
}

.shop-widget li{
    padding:8px 0;
    border-bottom:1px solid #232323;
}

.shop-widget li:last-child{
    border-bottom:none;
}

.shop-widget .woocommerce-widget-layered-nav-list__item a,
.shop-widget .woocommerce-widget-layered-nav-dropdown__submit,
.shop-widget .woocommerce-widget-layered-nav-list__item span,
.shop-widget .count{
    color:white;
}

.shop-widget .price_slider_wrapper{
    padding:18px;
}

.shop-widget .price_slider{
    margin:18px 8px 12px;
}

.shop-widget .ui-slider .ui-slider-range{
    background:#4d73d9;
}

.shop-widget .ui-slider .ui-slider-handle{
    width:18px;
    height:18px;
    border-radius:50%;
    background:#4d73d9;
    border:none;
    top:-6px;
}

.shop-widget .price_label{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:14px;
    color:white;
    font-size:18px;
}

.shop-widget button,
.shop-widget input[type="submit"]{
    min-height:44px;
    padding:0 18px;
    border:none;
    background:#c00;
    color:white;
    font-family:'Oswald', sans-serif;
    font-size:18px;
    cursor:pointer;
}

/* ==============================
   WooCommerce Single Product
================================*/

.woocommerce div.product .product_title,
.woocommerce div.product .woocommerce-product-details__short-description,
.woocommerce div.product .woocommerce-product-details__short-description p,
.woocommerce div.product .stock,
.woocommerce div.product .product_meta,
.woocommerce div.product .product_meta span,
.woocommerce div.product .product_meta a,
.woocommerce div.product .price,
.woocommerce div.product .price *,
.woocommerce div.product .woocommerce-breadcrumb,
.woocommerce div.product .woocommerce-breadcrumb a,
.woocommerce div.product .woocommerce-tabs,
.woocommerce div.product .woocommerce-tabs p,
.woocommerce div.product .woocommerce-tabs li,
.woocommerce div.product .woocommerce-tabs li a,
.woocommerce div.product .woocommerce-Tabs-panel,
.woocommerce div.product .woocommerce-Tabs-panel p,
.woocommerce div.product .woocommerce-Reviews,
.woocommerce div.product .woocommerce-Reviews p,
.woocommerce div.product .woocommerce-Reviews a{
    color:white !important;
}

.woocommerce div.product .woocommerce-breadcrumb a:hover,
.woocommerce div.product .product_meta a:hover,
.woocommerce div.product .woocommerce-tabs li a:hover,
.woocommerce div.product .woocommerce-Reviews a:hover{
    color:#c00 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before{
    border-bottom-color:#333;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li{
    background:#111;
    border-color:#333;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a,
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a{
    color:white !important;
}

.header-social{
    display:flex;
    gap:12px;
    align-items:center;
}

.header-social a{
    color:white;
    text-decoration:none;
    font-weight:600;
    font-size:14px;
}

.header-social a:hover{
    color:#c00;
}

.header-social{
    display:flex;
    gap:14px;
    align-items:center;
}

.header-social i{
    font-size:18px;
    color:white;
}

.header-social i:hover{
    color:#c00;
}

.product-card a{
    text-decoration:none;
    color:white;
}

.product-card a:hover{
    color:#c00;
}

.product-card .price{
    color:#ddd;
    font-weight:bold;
    text-decoration:none;
}

.product-card a:visited{
    color:white;
}

.product-card h3{
    font-size:16px;
    line-height:1.4;
    margin-top:10px;
    min-height:5.6em;
}

/* ==============================
   WooCommerce Archive Pages
================================*/

.shop-products ul.products{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    list-style:none;
    margin:0;
    padding:0;
}

.shop-products ul.products li.product{
    background:#111;
    padding:20px;
    text-align:center;
    list-style:none;
    margin:0;
    width:100%;
}

.shop-products ul.products li.product::before{
    content:none !important;
    display:none !important;
}

.shop-products ul.products li.product a{
    color:white;
    text-decoration:none;
}

.shop-products ul.products li.product a:visited{
    color:white;
    text-decoration:none;
}

.shop-products ul.products li.product img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
    margin-bottom:15px;
}

.shop-products ul.products li.product .woocommerce-loop-product__title,
.shop-products ul.products li.product h2{
    color:white;
    font-size:18px;
    line-height:1.4;
    margin:10px 0;
    text-decoration:none;
}

.shop-products ul.products li.product .price,
.shop-products ul.products li.product .price *{
    color:#ddd;
    font-weight:bold;
    text-decoration:none;
}

.shop-products ul.products li.product .button{
    display:inline-block;
    margin-top:12px;
    background:#c00;
    color:white;
    padding:10px 20px;
    text-decoration:none;
    font-weight:bold;
    border:none;
}

.shop-products ul.products li.product .button:hover{
    background:#900;
    color:white;
}

.shop-products .woocommerce-result-count,
.shop-products .woocommerce-ordering,
.shop-products .woocommerce-products-header h1{
    color:white;
}

.shop-products .woocommerce-result-count{
    margin:0 0 18px;
    font-size:18px;
}

.shop-products .woocommerce-ordering{
    margin:0 0 34px;
}

.shop-products .woocommerce-ordering select{
    min-width:340px;
    padding:12px 44px 12px 16px;
    border:2px solid #444;
    border-radius:10px;
    background:#141414;
    color:white;
    font-family:'Oswald', sans-serif;
    font-size:18px;
    line-height:1.2;
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
    background-image:linear-gradient(45deg, transparent 50%, #cfcfcf 50%), linear-gradient(135deg, #cfcfcf 50%, transparent 50%);
    background-position:calc(100% - 24px) calc(50% - 3px), calc(100% - 16px) calc(50% - 3px);
    background-size:8px 8px, 8px 8px;
    background-repeat:no-repeat;
}

.shop-products .woocommerce-ordering select:focus{
    outline:none;
    border-color:#c00;
}

.shop-products .star-rating,
.shop-products .added_to_cart{
    display:none;
}

.shop-products ul.products{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    list-style:none;
    margin:0;
    padding:0;
}

.shop-products ul.products li.product{
    background:#111;
    padding:20px;
    text-align:center;
    list-style:none;
    margin:0;
    width:100%;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.shop-products ul.products li.product a:first-child{
    display:flex;
    flex-direction:column;
    height:100%;
}

.shop-products ul.products li.product .woocommerce-loop-product__title,
.shop-products ul.products li.product h2{
    min-height:120px;
}

.shop-products ul.products li.product .price{
    margin-top:auto;
}

.shop-products ul.products li.product .button{
    align-self:center;
}

.home-info{
    margin-top:80px;
    padding:56px 0 28px;
    border-top:1px solid #1f1f1f;
}

.home-info-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:48px;
    margin-bottom:60px;
}

.home-info-column h3{
    margin:0 0 22px;
    font-size:20px;
    letter-spacing:3px;
    text-transform:uppercase;
}

.home-info-column p,
.home-info-column li,
.home-info-column a{
    color:#a9a9a9;
    font-size:18px;
    line-height:1.55;
}

.home-info-column a{
    color:white;
}

.home-info-column a:hover{
    color:#c00;
}

.home-info-column ul{
    list-style:none;
    margin:0;
    padding:0;
}

.home-info-column li + li{
    margin-top:12px;
}

.home-newsletter{
    max-width:760px;
    margin:0 auto;
}

.home-newsletter-intro{
    margin:0 0 14px;
    color:#9c9c9c;
    font-size:16px;
    line-height:1.5;
}

.home-newsletter-form{
    display:flex;
    gap:16px;
    align-items:stretch;
}

.home-newsletter-form input[type="email"]{
    flex:1;
    min-height:56px;
    padding:0 16px;
    border:2px solid #444;
    border-radius:10px;
    background:#151515;
    color:white;
    font-family:'Oswald', sans-serif;
    font-size:17px;
}

.home-newsletter-form input[type="email"]::placeholder{
    color:#757575;
}

.home-newsletter-form button{
    min-width:145px;
    border:none;
    border-radius:8px;
    background:#c00;
    color:white;
    font-family:'Oswald', sans-serif;
    font-size:20px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    cursor:pointer;
}

.home-newsletter-form button:hover{
    background:#900;
}

.home-newsletter-message{
    margin:0 0 16px;
    color:#f4f4f4;
}

.home-newsletter-message.is-success{
    color:#9ee37d;
}

.home-newsletter-message.is-error{
    color:#ff8e8e;
}

.adg-stock-notice-box{
    margin-top:24px;
    padding:16px 18px;
    background:#111;
    border:1px solid #2a2a2a;
    max-width:760px;
}

.adg-stock-notice-box h3{
    margin:0 0 8px;
    font-size:22px;
}

.adg-stock-notice-box p{
    margin:0 0 12px;
    color:#ddd;
    font-size:16px;
    line-height:1.45;
}

.adg-stock-notice-form{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.adg-stock-notice-form input[type="email"]{
    flex:1 1 280px;
    min-height:46px;
    padding:0 14px;
    border:1px solid #3a3a3a;
    background:#0b0b0b;
    color:white;
    font-family:'Oswald', sans-serif;
    font-size:16px;
}

.adg-stock-notice-form button{
    min-height:46px;
    padding:0 18px;
    border:none;
    background:#c00;
    color:white;
    font-family:'Oswald', sans-serif;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
}

.adg-stock-notice-form button:hover{
    background:#900;
}

.adg-stock-notice-message{
    margin-bottom:14px;
    color:#f4f4f4;
}

.adg-stock-notice-message.is-success{
    color:#9ee37d;
}

.adg-stock-notice-message.is-error{
    color:#ff8e8e;
}

.related.products{
    margin-top:96px;
    padding-top:32px;
    border-top:1px solid #1f1f1f;
}

.related.products > h2{
    margin:0 0 28px;
    font-size:34px;
}

.related.products ul.products{
    display:grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:30px;
    list-style:none;
    margin:0;
    padding:0;
}

.related.products ul.products li.product{
    background:#111;
    padding:20px;
    margin:0;
    list-style:none;
    display:flex;
    flex-direction:column;
    text-align:center;
}

.related.products ul.products li.product::before{
    content:none !important;
    display:none !important;
}

.related.products ul.products li.product a{
    color:white;
    text-decoration:none;
}

.related.products ul.products li.product a:first-child{
    display:flex;
    flex-direction:column;
    height:100%;
}

.related.products ul.products li.product img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
    margin-bottom:16px;
}

.related.products ul.products li.product h2,
.related.products ul.products li.product .woocommerce-loop-product__title{
    min-height:120px;
    margin:0 0 12px;
    font-size:18px;
    line-height:1.35;
    color:white;
}

.related.products ul.products li.product .price{
    margin-top:auto;
    color:#ddd;
    font-weight:bold;
}

.related.products ul.products li.product .price *{
    color:#ddd;
}

.related.products ul.products li.product .button{
    align-self:center;
    margin-top:14px;
    padding:10px 20px;
    background:#c00;
    color:white;
    text-decoration:none;
    font-weight:bold;
    border:none;
}

.related.products ul.products li.product .button:hover{
    background:#900;
}

.page-content{
    max-width:1200px;
    margin:0 auto;
    padding:40px 20px 80px;
}

.site-page-header{
    margin-bottom:26px;
}

.site-page-header h1{
    margin:0;
    font-size:56px;
}

.site-page-body,
.site-page-body p,
.site-page-body li,
.site-page-body label,
.site-page-body th,
.site-page-body td{
    color:white;
}

.site-page-body a{
    color:white;
}

.site-page-body .button,
.site-page-body button,
.site-page-body input[type="submit"],
.site-page-body .checkout-button,
.site-page-body .wc-block-components-checkout-place-order-button,
.site-page-body .wc-block-cart__submit-button,
.site-page-body .wc-block-components-button{
    background:#c00 !important;
    color:white !important;
    border:none !important;
    font-family:'Oswald', sans-serif;
}

.site-page-body .button:hover,
.site-page-body button:hover,
.site-page-body input[type="submit"]:hover,
.site-page-body .checkout-button:hover,
.site-page-body .wc-block-components-checkout-place-order-button:hover,
.site-page-body .wc-block-cart__submit-button:hover,
.site-page-body .wc-block-components-button:hover{
    background:#900 !important;
    color:white !important;
}

.wc-block-components-button:not(.is-link),
.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button{
    background:#c00 !important;
    color:white !important;
    border:none !important;
}

.wc-block-components-button:not(.is-link):hover,
.wc-block-cart__submit-button:hover,
.wc-block-components-checkout-place-order-button:hover{
    background:#900 !important;
    color:white !important;
}

.site-page-body input,
.site-page-body select,
.site-page-body textarea{
    background:#111;
    color:white;
    border:1px solid #333;
    font-size:15px;
}

.field-notes-page,
.field-notes-single{
    max-width:1200px;
    margin:0 auto;
    padding:48px 20px 90px;
}

.field-notes-hero{
    margin-bottom:44px;
}

.field-notes-kicker,
.field-notes-article__kicker{
    margin:0 0 12px;
    color:#9d9d9d;
    font-size:18px;
    letter-spacing:3px;
    text-transform:uppercase;
}

.field-notes-hero h1,
.field-notes-article__header h1{
    margin:0 0 16px;
    font-size:72px;
    line-height:.95;
}

.field-notes-intro,
.field-notes-article__meta{
    max-width:800px;
    color:#c4c4c4;
    font-size:22px;
    line-height:1.5;
}

.field-notes-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:30px;
}

.field-notes-card{
    background:#111;
    border:1px solid #222;
    display:flex;
    flex-direction:column;
}

.field-notes-card__media,
.field-notes-card__media img{
    display:block;
    width:100%;
}

.field-notes-card__media img{
    height:260px;
    object-fit:cover;
}

.field-notes-card__placeholder{
    height:260px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg, #151515, #232323);
    color:#6f6f6f;
    font-size:34px;
    letter-spacing:2px;
    text-transform:uppercase;
}

.field-notes-card__body{
    padding:22px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.field-notes-card__meta{
    margin:0 0 12px;
    color:#8e8e8e;
    font-size:16px;
    letter-spacing:1px;
    text-transform:uppercase;
}

.field-notes-card h2{
    margin:0 0 14px;
    font-size:34px;
    line-height:1;
}

.field-notes-card h2 a{
    color:white;
    text-decoration:none;
}

.field-notes-card p{
    color:#bdbdbd;
    font-size:18px;
    line-height:1.5;
}

.field-notes-card__button{
    align-self:flex-start;
    margin-top:auto;
    padding:12px 20px;
    background:#c00;
    color:white;
    text-decoration:none;
    font-weight:bold;
    letter-spacing:1px;
}

.field-notes-card__button:hover{
    background:#900;
}

.field-notes-pagination{
    display:flex;
    justify-content:space-between;
    gap:20px;
    margin-top:40px;
}

.field-notes-pagination a,
.field-notes-article__footer a{
    color:white;
    text-decoration:none;
}

.field-notes-empty{
    background:#111;
    border:1px solid #222;
    padding:28px;
}

.field-notes-empty h2{
    margin:0 0 12px;
    font-size:38px;
}

.field-notes-empty p{
    margin:0;
    color:#c4c4c4;
    font-size:20px;
    line-height:1.5;
}

.field-notes-article{
    max-width:900px;
}

.field-notes-article__header{
    margin-bottom:28px;
}

.field-notes-article__image{
    margin-bottom:30px;
}

.field-notes-article__image img{
    display:block;
    width:100%;
    height:auto;
}

.field-notes-article__body,
.field-notes-article__body p,
.field-notes-article__body li,
.field-notes-article__body blockquote{
    color:white;
    font-size:20px;
    line-height:1.7;
}

.field-notes-article__body h2,
.field-notes-article__body h3,
.field-notes-article__body h4{
    margin-top:34px;
    margin-bottom:16px;
}

.field-notes-article__body a{
    color:white;
    text-decoration:underline;
}

.field-notes-article__footer{
    margin-top:40px;
    padding-top:22px;
    border-top:1px solid #222;
}

.about-page{
    max-width:980px;
}

.about-page__header{
    margin-bottom:34px;
}

.about-page__kicker{
    margin:0 0 12px;
    color:#9a9a9a;
    font-size:18px;
    letter-spacing:3px;
    text-transform:uppercase;
}

.about-page__intro{
    max-width:760px;
    color:#c8c8c8;
    font-size:22px;
    line-height:1.5;
}

.about-page__section{
    margin-top:28px;
    padding:26px 28px;
    background:#101010;
    border:1px solid #232323;
}

.about-page__section h2{
    margin:0 0 16px;
    font-size:34px;
}

.about-page__section p,
.about-page__section li{
    margin:0 0 14px;
    color:#dadada;
    font-size:19px;
    line-height:1.65;
}

.about-page__section p:last-child{
    margin-bottom:0;
}

.about-page__details p{
    margin-bottom:10px;
}

.adg-checkout-acknowledgment{
    margin:20px 0 14px;
    padding:14px 16px;
    background:#111;
    border:1px solid #2a2a2a;
}

.adg-checkout-acknowledgment__title{
    margin:0 0 8px;
    color:white;
    font-size:18px;
}

.adg-checkout-acknowledgment .woocommerce-form__label-for-checkbox{
    display:flex;
    align-items:flex-start;
    gap:10px;
    color:#d8d8d8;
    line-height:1.4;
    font-size:14px;
}

.adg-checkout-acknowledgment input[type="checkbox"]{
    margin-top:3px;
    transform:scale(1);
}

.contact-page{
    max-width:1200px;
}

.contact-page__header{
    margin-bottom:34px;
}

.contact-page__kicker{
    margin:0 0 12px;
    color:#9a9a9a;
    font-size:18px;
    letter-spacing:3px;
    text-transform:uppercase;
}

.contact-page__intro{
    max-width:860px;
    color:#c8c8c8;
    font-size:22px;
    line-height:1.5;
}

.contact-page__message{
    margin:0 0 18px;
    font-size:18px;
}

.contact-page__message.is-success{
    color:#9ee37d;
}

.contact-page__message.is-error{
    color:#ff8e8e;
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.contact-form__grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:18px 22px;
}

.contact-form__field{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.contact-form__field label{
    color:white;
    font-size:16px;
}

.contact-form__field input,
.contact-form__field textarea{
    width:100%;
    min-height:48px;
    padding:0 14px;
    border:2px solid #444;
    border-radius:10px;
    background:#151515;
    color:white;
    font-family:'Oswald', sans-serif;
    font-size:15px;
    box-sizing:border-box;
}

.contact-form__field textarea{
    min-height:168px;
    padding:12px 14px;
    resize:vertical;
}

.contact-form__field--full{
    gap:10px;
}

.contact-form__actions button{
    min-width:112px;
    min-height:34px;
    padding:0 12px;
    border:none;
    border-radius:8px;
    background:#c00;
    color:white;
    font-family:'Oswald', sans-serif;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    cursor:pointer;
}

.contact-form__actions button:hover{
    background:#900;
}

.contact-form__honeypot{
    position:absolute;
    left:-9999px;
    opacity:0;
    pointer-events:none;
}

body.age-gate-open{
    overflow:hidden;
}

.age-gate{
    position:fixed;
    inset:0;
    z-index:9999;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
}

.age-gate.is-hidden{
    display:none;
}

.age-gate__backdrop{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.84);
}

.age-gate__dialog{
    position:relative;
    z-index:1;
    width:100%;
    max-width:560px;
    padding:34px 30px;
    background:#101010;
    border:1px solid #2d2d2d;
    text-align:center;
}

.age-gate__kicker{
    margin:0 0 10px;
    color:#a2a2a2;
    font-size:18px;
    letter-spacing:3px;
    text-transform:uppercase;
}

.age-gate__dialog h2{
    margin:0 0 16px;
    color:white;
    font-size:44px;
    line-height:1;
}

.age-gate__text{
    margin:0 0 24px;
    color:#d0d0d0;
    font-size:20px;
    line-height:1.5;
}

.age-gate__actions{
    display:flex;
    justify-content:center;
    gap:14px;
    flex-wrap:wrap;
}

.age-gate__button{
    min-width:180px;
    min-height:54px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:0 22px;
    border:none;
    text-decoration:none;
    font-family:'Oswald', sans-serif;
    font-size:22px;
    cursor:pointer;
}

.age-gate__button--confirm{
    background:#c00;
    color:white;
}

.age-gate__button--confirm:hover{
    background:#900;
}

.age-gate__button--exit{
    background:#232323;
    color:white;
}

.age-gate__button--exit:hover{
    background:#343434;
}

@media (max-width: 900px){
    .home-info-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }

    .home-newsletter-form{
        flex-direction:column;
    }

    .home-newsletter-form button{
        min-height:62px;
    }

    .related.products ul.products{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }

    .field-notes-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }

    .contact-form__grid{
        grid-template-columns:1fr;
    }
}

@media (max-width: 640px){
    .home-info-grid{
        grid-template-columns:1fr;
        gap:32px;
    }

    .age-gate__dialog{
        padding:28px 22px;
    }

    .age-gate__dialog h2{
        font-size:34px;
    }

    .age-gate__text{
        font-size:18px;
    }

    .related.products ul.products{
        grid-template-columns:1fr;
    }

    .field-notes-grid{
        grid-template-columns:1fr;
    }

    .field-notes-hero h1,
    .field-notes-article__header h1{
        font-size:52px;
    }
}

