/*
* Skeleton V2.0.4
* Copyright 2014, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 12/29/2014
*/


/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- Grid
- Base Styles
- Typography
- Links
- Buttons
- Forms
- Lists
- Code
- Tables
- Spacing
- Utilities
- Clearing
- Media Queries
*/


/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box; }
.column,
.columns {
  width: 100%;
  float: left;
  box-sizing: border-box; }

/* For devices larger than 400px */
@media (min-width: 400px) {
  .container {
    width: 85%;
    padding: 0; }
}

/* For devices larger than 550px */
@media (min-width: 550px) {
  .container {
    width: 80%; }
  .column,
  .columns {
    margin-left: 4%; }
  .column:first-child,
  .columns:first-child {
    margin-left: 0; }

  .one.column,
  .one.columns                    { width: 4.66666666667%; }
  .two.columns                    { width: 13.3333333333%; }
  .three.columns                  { width: 22%;            }
  .four.columns                   { width: 30.6666666667%; }
  .five.columns                   { width: 39.3333333333%; }
  .six.columns                    { width: 48%;            }
  .seven.columns                  { width: 56.6666666667%; }
  .eight.columns                  { width: 65.3333333333%; }
  .nine.columns                   { width: 74.0%;          }
  .ten.columns                    { width: 82.6666666667%; }
  .eleven.columns                 { width: 91.3333333333%; }
  .twelve.columns                 { width: 100%; margin-left: 0; }

  .one-third.column               { width: 30.6666666667%; }
  .two-thirds.column              { width: 65.3333333333%; }

  .one-half.column                { width: 48%; }

  /* Offsets */
  .offset-by-one.column,
  .offset-by-one.columns          { margin-left: 8.66666666667%; }
  .offset-by-two.column,
  .offset-by-two.columns          { margin-left: 17.3333333333%; }
  .offset-by-three.column,
  .offset-by-three.columns        { margin-left: 26%;            }
  .offset-by-four.column,
  .offset-by-four.columns         { margin-left: 34.6666666667%; }
  .offset-by-five.column,
  .offset-by-five.columns         { margin-left: 43.3333333333%; }
  .offset-by-six.column,
  .offset-by-six.columns          { margin-left: 52%;            }
  .offset-by-seven.column,
  .offset-by-seven.columns        { margin-left: 60.6666666667%; }
  .offset-by-eight.column,
  .offset-by-eight.columns        { margin-left: 69.3333333333%; }
  .offset-by-nine.column,
  .offset-by-nine.columns         { margin-left: 78.0%;          }
  .offset-by-ten.column,
  .offset-by-ten.columns          { margin-left: 86.6666666667%; }
  .offset-by-eleven.column,
  .offset-by-eleven.columns       { margin-left: 95.3333333333%; }

  .offset-by-one-third.column,
  .offset-by-one-third.columns    { margin-left: 34.6666666667%; }
  .offset-by-two-thirds.column,
  .offset-by-two-thirds.columns   { margin-left: 69.3333333333%; }

  .offset-by-one-half.column,
  .offset-by-one-half.columns     { margin-left: 52%; }

}


/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */
html {
  font-size: 62.5%; }
body {
  font-size: 1.5em; /* currently ems cause chrome bug misinterpreting rems on body element */
  line-height: 1.6;
  font-weight: 400;
  font-family: "Jost", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  background-color: #0d0d0d;
  color: #F0EDE6; }


/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 300; }
h1 { font-size: 4.0rem; line-height: 1.2;  letter-spacing: -.1rem;}
h2 { font-size: 3.6rem; line-height: 1.25; letter-spacing: -.1rem; }
h3 { font-size: 3.0rem; line-height: 1.3;  letter-spacing: -.1rem; }
h4 { font-size: 2.4rem; line-height: 1.35; letter-spacing: -.08rem; }
h5 { font-size: 1.8rem; line-height: 1.5;  letter-spacing: -.05rem; }
h6 { font-size: 1.5rem; line-height: 1.6;  letter-spacing: 0; }

/* Larger than phablet */
@media (min-width: 550px) {
  h1 { font-size: 5.0rem; }
  h2 { font-size: 4.2rem; }
  h3 { font-size: 3.6rem; }
  h4 { font-size: 3.0rem; }
  h5 { font-size: 2.4rem; }
  h6 { font-size: 1.5rem; }
}

p {
  margin-top: 0; }
  
.eyebrow-rule {
    display: inline-block;
    width: 32px;
    height: 0.5px;
    background: #C8A96E;
    vertical-align: middle;
    margin-right: 14px;
    margin-bottom: 4px;
}

/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
  color: #C8A96E; }
  a:visited {
  color: #C8A96E; }
a:hover {
  color: #F0EDE6; }


/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"],
.button-variable-items-wrapper li {
  display: inline-block;
  height: 45px;
  padding: 0 20px;
  color: #C8A96E;
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  line-height: 45px;
  letter-spacing: .1rem;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  /*border-radius: 4px;*/
  border: 1px solid #C8A96E;
  cursor: pointer;
  box-sizing: border-box; }
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus,
.button-variable-items-wrapper li:hover {
  color: #333;
  border-color: #888;
  outline: 0; }
.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
  color: #FFF;
  background-color: #33C3F0;
  border-color: #33C3F0; }
.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
  color: #FFF;
  
  background-color: #1EAEDB;
  border-color: #1EAEDB; }


/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  height: 38px;
  padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
  background-color: #fff;
  border: 1px solid #D1D1D1;
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box; }
/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
textarea {
  min-height: 65px;
  padding-top: 6px;
  padding-bottom: 6px; }
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 1px solid #33C3F0;
  outline: 0; }
label,
legend {
  display: block;
  margin-bottom: .5rem;
  font-weight: 600; }
fieldset {
  padding: 0;
  border-width: 0; }
input[type="checkbox"],
input[type="radio"] {
  display: inline; }
label > .label-body {
  display: inline-block;
  margin-left: .5rem;
  font-weight: normal; }


/* Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul {
  list-style: circle inside; }
ol {
  list-style: decimal inside; }
ol, ul {
  padding-left: 0;
  margin-top: 0; }
ul ul,
ul ol,
ol ol,
ol ul {
  margin: 1.5rem 0 1.5rem 3rem;
  font-size: 90%; }
li {
  margin-bottom: 1rem; }


/* Code
–––––––––––––––––––––––––––––––––––––––––––––––––– */
code {
  padding: .2rem .5rem;
  margin: 0 .2rem;
  font-size: 90%;
  white-space: nowrap;
  background: #F1F1F1;
  border: 1px solid #E1E1E1;
  border-radius: 4px; }
pre > code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre; }


/* Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #E1E1E1; }
th:first-child,
td:first-child {
  padding-left: 0; }
th:last-child,
td:last-child {
  padding-right: 0; }


/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
  margin-bottom: 1rem; }
input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem; }
pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
  margin-bottom: 2.5rem; }


/* Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width {
  width: 100%;
  box-sizing: border-box; }
.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box; }
.u-pull-right {
  float: right; }
.u-pull-left {
  float: left; }

.text-left{
	text-align: left;
}

.text-center{
	text-align: center;
}

.text-right{
	text-align: right;
}

/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #E1E1E1; }

.rule{
	border: none;
    width: 48px;
    height: 0.5px;
    background: #C8A96E;
    margin: 56px 0;
}

hr.rule-full{
	border: none;
    height: 1px;
    background: #1f1f1e;
    margin: 56px 0;
}

/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Self Clearing Goodness */
.container:after,
.row:after,
.u-cf {
  content: "";
  display: table;
  clear: both; }



/* Woocommerce
–––––––––––––––––––––––––––––––––––––––––––––––––– */
	 
/* Hide unneccessary items */
.woocommerce-result-count, .woocommerce-ordering, .orderby, .count{
	display: none;
}

/* Media Queries
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*
Note: The best way to structure the use of media queries is to create the queries
near the relevant code. For example, if you wanted to change the styles for buttons
on small devices, paste the mobile query code up in the buttons section and style it
there.
*/

/* ––––––––––––––– HEADER ––––––––––––––– */

.site-header{
	border-bottom: 1px solid #1f1f1e;
	background-color: #0d0d0d;
	padding-top: 1.5em;
	font-size: 1.5em;
}

.site-branding{
	float: none;
	text-align: center;
}

.main-navigation{
	margin-bottom: 1em;
}

.menu-item{
	text-align: center;
}

.site-title{
	color: #FFF;
	text-transform: uppercase;
}

.site-title a {
	color: #FFF !important;
	text-decoration: none;
	letter-spacing: 0.12em;
}

.site-title a .gold{
	color: #C8A96E !important;
}

button.menu-toggle{
	border: none;
	padding: 0;
	text-align: center;
	margin: 0 auto;
}

button.menu-toggle:hover{
	color: #C8A96E;
}

.toggled button.menu-toggle{
	color: #FFF;
}

.main-navigation{
	margin-bottom: 1em;
}

.main-navigation ul{
	text-transform: uppercase;
}

.main-navigation a {
  color: #8a8885 }
.main-navigation a:visited {
  color: #8a8885; }
.main-navigation a:hover {
  color: #FFF; }
.main-navigation .current-menu-item a{
	color: #C8A96E;
}

.main-navigation ul.sub-menu {
	text-transform: capitalize;
}

/* ––––––––––––––– PAGES ––––––––––––––– */

.site{
	background: #080604;
}

.site-main{
	margin: 3em 0;
	overflow: hidden;
}

h4.page-subtitle{
	color: #C8A96E;
	font-size: 1em;
	width: 100%;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}
h4.page-subtitle:after{
	content: ' ';
	border-bottom: 0.75px solid #C8A96E;
	width: 3em;
	margin-top: 1em;
	display: block;
}

.page-template-default .entry-header{
	display: none;
}

.site-main h2, h1.page-title{
	font-size: 6rem;
}

.site-main h3, .term-description p{
	font-size: 1.75rem;
	letter-spacing: 0.05em;
	font-weight: 200;
	color: #bbb;
}

.page-description, .woocommerce-products-header{
	margin-bottom: 4em;
}

.site-main .products{
	background-color: #0e0e0e;
}

.site-main .products li{
	width: 100%;
	padding: 2em;
}

ul.products.columns-3 li.product{
	background-color: #0d0d0d;
	border-bottom: 1px solid #1f1f1e;
}
ul.products.columns-3 li.product.first{
	border-top: 1px solid #C8A96E;
}
ul.products.columns-3 li.product.last{
	border-bottom: none;
}

ul.products li.product.product-category img {
	display: none !important;
}

ul.products li.product a{
	text-decoration: none;
	color: #FFFFFF;
}

ul.products li.product a.button{
	color: #C8A96E;
	text-align: left;
}

ul.products li.product a h2{
	font-size: 2em;
}

.type-product .attachment-woocommerce_thumbnail{
	margin-bottom: 1.5em;
}

.tax-product_cat .type-product h2.woocommerce-loop-product__title{
	font-size: 1.5em;
}

.type-product .price{
	color: #C8A96E;
	font-size: 1.5em;
	margin-bottom: 2em;
	display: block;
}

.type-product .woocommerce-product-details__short-description{
	color: #bbb;
	margin-bottom: 1em;
}

.entry-summary{
	width: 100%;
	margin-top: 3em;
}

.woocommerce-breadcrumb{
	width: 100%;
	text-align: right;
	margin-bottom: 1em;
}

.woocommerce-breadcrumb a{
	width: 100%;
	text-transform: uppercase;
	text-decoration: none;
	color: #bbb;
	transition: color 0.2s;
	letter-spacing: 0.12em;
	font-size: .75em;
	
}

.woocommerce-breadcrumb a:hover{
	color: #C8A96E;
}

.woocommerce-breadcrumb a span{
	font-size: .75em;
	letter-spacing: 0.2em;
	padding-right: 4px;
}

h4.product-category-byline{
	color: #C8A96E;
	font-size: .75em;
	width: 100%;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	text-align: center;
	display: block !important;
}

.type-product .product_title{
	font-size: 2.26em;
	letter-spacing: -0.005em;
	font-weight: 300;
	text-align: center;
	line-height: 1.1;
}

.product-byline{
	font-size: 1.13em;
	font-style: italic;
	color: #bbb;
	text-align: center;
	max-width: 500px;
	margin: 0 auto;
	line-height: 1.45;
}

.wcgs-woocommerce-product-gallery{
	margin: 30px auto;
}

.wcgs-gallery-preloader {
	background-color: #000 !important;
	background-image: url("../images/spinner.svg") !important;
	background-repeat: no-repeat;
  	background-position: center center;
  	background-size: 50px 50px;
}

blockquote.product-quote{
	border-left: 1px solid #C8A96E;
	overflow: hidden;
	padding-left: 2em;
	max-width: 652px;
}
blockquote.product-quote p{
	color: #bbb;
	font-style: italic;
	font-size: 1.13em;
}
blockquote.product-quote cite{
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 0.75em;
}

.product-description h4, .type-product h4{
    display: flex;
    align-items: center;
    gap: 14px;
}

.product-description h4, .type-product h4{
	font-weight: 400;
    letter-spacing: 0.24em;
    font-size: 0.75em;
    text-transform: uppercase;
    color: #C8A96E;
}

.product-description h4:after, .type-product h4:after {
    content: '';
    flex: 1;
    max-width: 60px;
    height: 0.5px;
    background: #C8A96E;
}

.product-description p{
	font-size: 1.13em;
	font-weight: 300;
	line-height: 1.75;
}

.product-description ul, .product-description ol{
	margin: 0;
	margin-left: 3.2em !important;
    list-style-position: outside;
}

.product-description ol{
    padding: 0;
    border-top: 1px solid #1f1f1e;
	list-style-type: decimal-leading-zero;
}

.product-description ol li {
    padding: 18px 0;
    border-bottom: 1px solid #1f1f1e;
    font-size: 1.07em;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 0;
}

.product-description ol li::marker{
	color: #C8A96E;
	letter-spacing: 0.18em;
	font-size: 0.75em;
	font-weight: 400;
	word-spacing: 1.5em;
}

.product-description ul li{
    padding: 12px 0 12px 0;
    font-size: 1.06em;
    font-weight: 300;
    line-height: 1.65;
    position: relative;
   
    margin-bottom: 0;
}
.product-description ul li::marker{
	content: "⎯ ";
	color: #C8A96E;
	letter-spacing: 0.18em;
	font-size: 0.75em;
	font-weight: 400;
	word-spacing: 1.5em;
}

p.grey{
	font-size: 0.866em;
    color: #555;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 24px;
    font-weight: 400;
}

.contributors{
	background: #1A1A1A;
	border-left: 0.5px solid #C8A96E;
	padding: 32px 36px;
	margin-bottom: 2em;
}

.contributors h4:after{
	content: '';
	display: none;
}

.contributors-more{
	display: block;
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #bbb;
	margin-top: 18px;
}

.reviews{
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.reviews li{
	background-color: #0d0d0d;
	margin: 0;
	padding: 2em;
	border-top: 0.5px solid #C8A96E;
}

.reviews li blockquote, .reviews li blockquote p{
	margin: 0;
}

.reviews li blockquote p{
	line-height: 1.7;
	font-style: italic;
	margin-bottom: 1.5em;
}

.reviews li blockquote cite{
	text-transform: uppercase;
	font-style: normal;
	letter-spacing: 0.14em;
	font-weight: 400;
	font-size: 0.75em;
}

.nkflogo{
	background: url('../images/nkf_guitars_logo.png') no-repeat;
	background-size: 160px 90px;
	width: 100%;
	height: 90px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}

.price-block{
	border: 1px solid #C0392B;
	background: radial-gradient(ellipse at 50% 0%, rgba(192,57,43,0.18) 0%, transparent 70%), #1A1414;
	padding: 56px 40px;
	text-align: center;
	position: relative;
	box-shadow: 0 0 0 1px rgba(192,57,43,0.15), 0 24px 48px rgba(0,0,0,0.5);
	max-width: 700px;
	margin: 0 auto;
}

.price-block .product_title{
	font-size: 0.75em !important;
	font-weight: 400;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: #C0392B;;
	margin-bottom: 20px;
}

.price-block .price{
	font-family: 'Jost', sans-serif;
	font-size: 84px;
	font-weight: 300;
	color: #F0EDE6;
	line-height: 1;
	margin-bottom: 14px;
	letter-spacing: -0.02em;
}

.price-block .before-buy-button-text{
	font-size: 0.86em;
	font-weight: 300;
	color: #aaa;
	margin-bottom: 2em;
	letter-spacing: 0.04em;
}

.price-block .single_add_to_cart_button{
	display: inline-block;
	font-family: 'Jost', sans-serif;
	font-size: 0.93em;
	font-weight: 400;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	border: 1px solid #C0392B;
	color: #F0EDE6;
	background: #C0392B;
	cursor: pointer;
	text-decoration: none;
	transition: background 0.22s, transform 0.15s, box-shadow 0.22s;
	box-shadow: 0 8px 24px rgba(192,57,43,0.35);
}
.price-block .single_add_to_cart_button:hover {
	background: #D14535;
	color: #F0EDE6;
	text-decoration: none;
	transform: translateY(-1px);
	box-shadow: 0 12px 32px rgba(192,57,43,0.45);
}

.price-block .after-buy-button-text{
	font-size: 0.75em;
	font-weight: 400;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #aaa;
	margin-top: 28px;
}

.price-block .buy-box-final-text{
	font-size: 0.93em;
	font-weight: 300;
	color: #ccc;
	font-style: italic;
	line-height: 1.65;
	margin-top: 28px;
	max-width: 460px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0;
	padding-top: 24px;
	border-top: 1px solid #1f1f1e;
}
.price-block .buy-box-final-text i{
	color: #ccc;
}

.woocommerce-notices-wrapper{
	transition: all 0.4s;
	
}

.woocommerce-message, .woocommerce-info, .woocommerce-error, .woocommerce-noreviews, p.no-comments {
	border-left: 2px solid #0f834d;
	background-color: #0d0d0d !important;
	list-style-type: none;
	flex-direction: column-reverse !important;
	text-align: center !important;
	margin-bottom: 3em;
}

.woocommerce-error{
	border-left: 2px solid #e2401c;
	background-color: #0d0d0d !important;
}

.woocommerce-notices-wrapper li, .woocommerce-message{
	padding: 1em 1.5em;
	display: block;
	overflow: hidden;
}

.woocommerce-notices-wrapper li a.button, .woocommerce-notices-wrapper .woocommerce-message a.button{
	margin: 1em auto 0 auto;
	display: block !important;
	max-width: 150px;
	text-align: center;
}

.wc-block-components-order-summary .wc-block-components-order-summary-item__quantity{
	background: #333;
}

.wc-block-cart__empty-cart__title.with-empty-cart-icon:before{
	display: none;
}

.tools .top-section, .tools .top-section h4.product-category-byline, .tools .top-section .product_title{
	text-align: left;
}

.tools .top-section .price span{
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #C8A96E;
}

.tools .top-section .price .amount, .tools .top-section .price .woocommerce-Price-currencySymbol{
	margin-bottom: 0;
	font-size: 36px;
	font-weight: 300;
	color: #FFF;
	letter-spacing: -0.01em;
	line-height: 1;
	text-transform: capitalize;
}

.tools .top-section .rule-full{
	margin: 2em 0;
}

.tools ul{
	list-style: none;
	padding: 0;
	border-top: 1px solid #1f1f1e;
	margin-left: 0 !important;
}

.tools ul li{
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 24px;
	padding: 18px 0;
	border-bottom: 1px solid #1f1f1e;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.5;
}

.tools ul li .spec-label{
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #C8A96E;
	padding-top: 4px;
}

.tools ul li .spec-value{
	color: #FFF;
}

.price-block .stock{
	display: block;
}

.stock{
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #CCC;
	display: flex;
	align-items: center;
	gap: 10px;
}

.stock-dot {
	width: 7px;
	height: 7px;
	background: #6FA67D;
	border-radius: 50%;
	display: inline-block;
	box-shadow: 0 0 8px rgba(111,166,125,0.5);
}

.outofstock .stock-dot {
	background: #e2401c;
}

.variations{
	margin-bottom: 0;
}

.variations th.label, .variations td.woo-variation-items-wrapper{
	width: 100%;
	display: inline-block;
	border: none;
	text-align: center;
	padding: 0;
}
.variations th.label{
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #CCC;
	margin-bottom: 14px;
	font-weight: 300;
}
.variations th.label label{
	font-weight: 300;
}

ul.button-variable-items-wrapper{
	border-top: none !important;
	text-align: center;
}

.button-variable-items-wrapper li{
	display: inline-block !important;

	border: 1px solid rgba(200, 169, 110, 0.3);
	border-bottom: 1px solid rgba(200, 169, 110, 0.3) !important;
    gap: 0;
    padding: 0;
	font-size: 0.8em !important;
    font-weight: 400;
    letter-spacing: 0.18em;
    padding: 14px 28px !important;
    transition: all 0.2s;
}

.button-variable-items-wrapper li.selected:hover{
	color: #0E0E0E;
}

.button-variable-items-wrapper li:hover{
	color: #FFF;
}

.button-variable-items-wrapper li:hover{
	border-color: rgba(200, 169, 110, 0.3) !important;
}

.button-variable-items-wrapper li.selected{
	background-color: #C8A96E;
	color: #0E0E0E;
}



.button-variable-items-wrapper li .variable-item-contents{
	
}

.reset_variations{
	display: none !important;
}

/* ––––––––––––––– FOOTER ––––––––––––––– */

.site-footer{
	color: #4d4c4a;
	border-top: 1px solid #1f1f1e;
	background-color: #0d0d0d;
	letter-spacing: 0.12em;
}

.site-footer .site-info{
	margin: 1.5em auto 1.5em auto;
	padding-bottom: 1.5em;
}

/* Larger than mobile */
@media (min-width: 550px) {

	.nkflogo{
		background: url('../images/nkf_guitars_logo.png') no-repeat;
		background-size: 100% auto;
	}

}

/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 768px) {

	.site-main .products li{
		width: 100% !important;
		padding: 2em;
	}

	.wcgs-woocommerce-product-gallery{
		align-items: center;
	}
	
	.wcgs-woocommerce-product-gallery .gallery-navigation-carousel-wrapper, .wcgs-woocommerce-product-gallery .wcgs-carousel{
		max-width: 600px !important;
	}

}

/* Larger than tablet */
@media (min-width: 830px) {

	
	/* ––––––––––––––– HEADER ––––––––––––––– */

	.site-header{
		width: 100%;
		font-size: 1em;
		padding: 0;
	}
	
	.site-branding{
		float: left;
		margin-top: 1.5em;
	}
	
	.main-navigation{
		float: right;
		width: auto;
		margin-right: -50px;
		margin-bottom: 0;
	}
	.main-navigation ul li{
		margin-bottom: 0;
	}
	.main-navigation ul li a{
		padding: 1.5em 1em;
		transition: all 0.4s;
	}
	.main-navigation ul.sub-menu {
		display: block;
		padding-top: 3px;
	}
	.main-navigation ul.sub-menu li{
		display: inline-block;
		border-left: 1px solid #C8A96E;
		border-right: 1px solid #2b2b2a;
		border-bottom: 1px solid #2b2b2a;
		background: #1a1a1a;
		margin: 0;
	}
	.main-navigation ul.sub-menu li a{
		color: #8f8e8a;
		position: relative;
	}
	.main-navigation li.menu-item-has-children a:after{
		font-family: 'Material Symbols Sharp';
		content: 'arrow_drop_down';
		text-transform: capitalize;
		margin-left: 5px;
		position: absolute;
		transition: transform 0.2s;
	}
	.main-navigation li.menu-item-has-children:hover a:after{
		transform: rotate(180deg);
	}
	.main-navigation li.menu-item-has-children ul.sub-menu a:after{
		content: '';
	}
	.main-navigation ul.sub-menu li:hover{
		background: #181818;
	}
	.main-navigation ul.sub-menu li:hover a{
		color: #C8A96E;
	}
	.main-navigation ul.sub-menu li.current-menu-item a{
		color: #C8A96E;
	}
	
	.menu-item{
		text-align: left;
	}
	
	/* ––––––––––––––– PAGES ––––––––––––––– */
	
	.site-main{
		margin: 5em 0;
	}
	.site-main .products{
		display: flex;
	}
		
	ul.products.columns-3 li.product{
		border-top: 1px solid #C8A96E;
		width: 33.33% !important;
		margin-right: 0;
		display: grid;
	}
	
	ul.products.columns-3 li.product{
		border-bottom: none !important;
		border-right: 1px solid #1f1f1e;;
	}
	ul.products.columns-3 li.product.last{
		border-right: none;
	}
	
	ul.products li.product a.button, button, .button{
		transition: all 0.2s;
	}
	
	ul.products li.product a.button:hover, .button:hover, button:hover, input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover, .button:focus, button:focus, input[type="submit"]:focus, input[type="reset"]:focus, input[type="button"]:focus{
		color: #EEE;
	}
	
	ul.products li.product{
		margin-bottom: 0 !important;
		position: relative;
	}
	
	ul.products li.product .button{
		bottom: 0px;
    	position: relative;
    	align-self: end;
    }

	.type-product .product_title{
		font-size: 3.46em;
	}

	.product-byline{
		font-size: 1.46em;
	}

	blockquote.product-quote{
		width: 652px;
		margin: 0 auto;
	}
	
	.reviews li{
		float: left;
		width: 50%;
	}
	.reviews li:nth-child(odd){
		border-right: 1px solid #1f1f1e;;
	}

	/* ––––––––––––––– FOOTER ––––––––––––––– */
	
	.site-footer .column:nth-child(2){
		text-align: right;
	}
	
}

/* Larger than desktop */
@media (min-width: 1000px) {
	.main-navigation ul li a{
		padding: 1.5em;
	}
	.nkflogo{
		height: 150px;
	}
}

/* Larger than Desktop HD */
@media (min-width: 1200px) {}

/**** FAQs ****/

/* ── SCOPED LUTHIER SHOP PAGE STYLES ── */
.luthier-page,
.luthier-page * { box-sizing: border-box; }
.luthier-page {
  --lp-bg:         #0E0E0E;
  --lp-surface:    #1A1A1A;
  --lp-fg:         #F0EDE6;
  --lp-fg-muted:   rgba(240,237,230,0.60);
  --lp-fg-faint:   rgba(240,237,230,0.30);
  --lp-amber:      #C8A96E;
  --lp-amber-dim:  rgba(200,169,110,0.30);
  --lp-border:     rgba(240,237,230,0.08);

 
  color: var(--lp-fg);
  font-family: 'Jost', 'ITC Avant Garde Gothic', sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  padding: 0; margin: 0;
}
.luthier-page a { color: inherit; }
.luthier-page p, .luthier-page ul, .luthier-page h1 { margin: 0; padding: 0; }
.luthier-page hr { margin: 0; padding: 0; border: 0; }

/* HERO */
.luthier-page .sp-hero {
  margin: 0 auto;
  padding: 0 32px 32px;
  text-align: left;
}
@media (max-width: 700px) {
  .luthier-page .sp-hero { padding: 64px 24px 24px; }
}
.luthier-page .sp-eyebrow {
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--lp-amber);
  margin-bottom: 22px;
  display: flex; align-items: center;
}
.luthier-page .sp-eyebrow-rule {
  display: inline-block; width: 32px; height: 0.5px;
  background: var(--lp-amber); vertical-align: middle;
  margin-right: 14px;
}
.luthier-page .sp-headline {
  font-family: 'Jost', sans-serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 300; line-height: 1.05;
  color: var(--lp-fg);
  margin-bottom: 14px;
  letter-spacing: -0.005em;
}
.luthier-page .sp-headline-sub {
  font-family: 'Jost', sans-serif;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 300; font-style: italic;
  color: var(--lp-fg-muted);
  line-height: 1.5;
}

/* INDEX */
.luthier-page .sp-toc {
  margin: 48px auto 0;
  padding: 0;
}
.luthier-page .sp-toc-inner {
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
  padding: 24px 0;
  display: flex; flex-wrap: wrap;
  gap: 6px 28px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.luthier-page .sp-toc-label {
  color: var(--lp-fg-faint);
  margin-right: 12px;
}
.luthier-page .sp-toc-inner a {
  color: var(--lp-fg-muted);
  text-decoration: none;
  transition: color 0.18s;
}
.luthier-page .sp-toc-inner a:hover { color: var(--lp-amber); }
@media (max-width: 700px) {
  .luthier-page .sp-toc { padding: 0 24px; }
}

/* WRAP */
.luthier-page .sp-wrap {
  margin: 0 auto;
  padding: 56px 0 96px;
}
@media (max-width: 700px) {
  .luthier-page .sp-wrap { padding: 40px 24px 64px; }
}

/* SECTION */
.luthier-page .sp-section {
  margin-bottom: 64px;
  scroll-margin-top: 32px;
}
.luthier-page .sp-section:last-of-type { margin-bottom: 0; }
.luthier-page .sp-section-label {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--lp-amber);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 14px;
}
.luthier-page .sp-section-label::after {
  content: '';
  flex: 1; max-width: 72px;
  height: 0.5px; background: var(--lp-amber-dim);
}

/* Q/A ITEM */
.luthier-page .sp-faq-item {
  border-bottom: 1px solid var(--lp-border);
  position: relative;
}
.luthier-page .sp-faq-item:first-child { border-top: 1px solid var(--lp-border); }

.luthier-page .sp-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 36px 22px 0;
  position: relative;
  font-family: 'Jost', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--lp-fg);
  line-height: 1.45;
  transition: color 0.2s;
}
.luthier-page .sp-faq-item summary::-webkit-details-marker { display: none; }
.luthier-page .sp-faq-item summary:hover { color: var(--lp-amber); }
.luthier-page .sp-faq-item summary::after {
  content: '';
  position: absolute;
  right: 4px; top: 32px;
  width: 12px; height: 0.5px;
  background: var(--lp-amber);
}
.luthier-page .sp-faq-item summary::before {
  content: '';
  position: absolute;
  right: 4px; top: 32px;
  width: 12px; height: 0.5px;
  background: var(--lp-amber);
  transform: rotate(90deg);
  transition: transform 0.25s, opacity 0.2s;
}
.luthier-page .sp-faq-item[open] summary::before {
  transform: rotate(0deg);
  opacity: 0;
}

.luthier-page .sp-faq-answer {
  padding: 4px 0 28px;
  font-size: 16px;
  font-weight: 300;
  color: var(--lp-fg-muted);
  line-height: 1.75;
  max-width: 680px;
}
.luthier-page .sp-faq-answer p { margin-bottom: 14px; }
.luthier-page .sp-faq-answer p:last-child { margin-bottom: 0; }
.luthier-page .sp-faq-answer ul {
  list-style: none;
  padding: 0;
  margin: 14px 0;
}
.luthier-page .sp-faq-answer ul li {
  padding: 6px 0 6px 22px;
  position: relative;
  color: var(--lp-fg);
}
.luthier-page .sp-faq-answer ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 17px;
  width: 12px; height: 0.5px;
  background: var(--lp-amber);
}
.luthier-page .sp-faq-answer ul.group-list { margin: 18px 0; }
.luthier-page .sp-faq-answer .group-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lp-amber);
  margin-top: 20px;
  margin-bottom: 6px;
  display: block;
}
.luthier-page .sp-faq-answer .group-label:first-of-type { margin-top: 8px; }

/* CLOSING */
.luthier-page .sp-closing {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px 96px;
  text-align: center;
}
@media (max-width: 700px) { .luthier-page .sp-closing { padding: 0 24px 64px; } }
.luthier-page .sp-closing-text {
  font-family: 'Jost', sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  color: var(--lp-amber);
  letter-spacing: 0.02em;
  padding: 36px 0 0;
  border-top: 0.5px solid var(--lp-amber);
  display: inline-block;
  min-width: 60%;
}

table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-metadata, .wc-block-components-product-metadata {
  display: none;
}


/* FILTER BAR */
.luthier-page .sp-filter-wrap {

  margin: 32px auto 0;
  padding: 32px 0 32px;
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
}
@media (max-width: 700px) { .luthier-page .sp-filter-wrap { padding: 24px; } }
.luthier-page .sp-filter-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
  flex-wrap: wrap; gap: 12px;
}
.luthier-page .sp-filter-label {
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--lp-amber);
}
.luthier-page .sp-filter-count {
  font-size: 12px; font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--lp-fg-muted);
}
.luthier-page .sp-filter-clear {
  background: none; border: none;
  font-family: 'Jost', sans-serif;
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--lp-fg-faint);
  cursor: pointer;
  padding: 4px 0;
  transition: color 0.2s;
  border-bottom: 0.5px solid transparent;
}
.luthier-page .sp-filter-clear:hover {
  color: var(--lp-amber); border-bottom-color: var(--lp-amber);
}
.luthier-page .sp-filter-clear[hidden] { display: none; }

.luthier-page .sp-tag-list {
  display: flex; flex-wrap: wrap;
  gap: 8px;
}
.luthier-page .sp-tag {
  font-family: 'Jost', sans-serif;
  font-size: 12px; font-weight: 400;
  letter-spacing: 0.08em;
 
  border: 1px solid var(--lp-border);
  color: var(--lp-fg-muted);
  background: transparent;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  user-select: none;
}
.luthier-page .sp-tag:hover {
  border-color: var(--lp-amber-dim);
  color: var(--lp-fg);
}
.luthier-page .sp-tag[aria-pressed="true"] {
  background: var(--lp-amber);
  color: var(--lp-bg);
  border-color: var(--lp-amber);
}

/* POSTS GRID */
.luthier-page .sp-posts {

  margin: 0 auto;
  padding: 48px 0 96px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1px;
  background: var(--lp-border);
}
@media (max-width: 700px) {
  .luthier-page .sp-posts { padding: 32px 0 64px; }
}

.luthier-page .sp-post {
  background: var(--lp-bg);
  display: flex; flex-direction: column;
  transition: background 0.22s;
  cursor: pointer;
}
.luthier-page .sp-post:hover { background: var(--lp-surface); }
.luthier-page .sp-post:hover .sp-post-title { color: var(--lp-amber); }
.luthier-page .sp-post[hidden] { display: none; }

.luthier-page .sp-post-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--lp-surface2);
  border-top: 0.5px solid var(--lp-amber);
  overflow: hidden;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.luthier-page .sp-post-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.luthier-page .sp-post-thumb-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lp-fg-faint);
}
.luthier-page .sp-post-thumb-play {
  position: absolute;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(192,57,43,0.92);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
  transition: transform 0.2s;
}
.luthier-page .sp-post:hover .sp-post-thumb-play { transform: scale(1.08); }
.luthier-page .sp-post-thumb-play::after {
  content: '';
  width: 0; height: 0;
  border-left: 14px solid #fff;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 4px;
}

.luthier-page .sp-post-body {
  padding: 24px 28px 28px;
  display: flex; flex-direction: column;
  flex: 1;
}
.luthier-page .sp-post-title {
  font-family: 'Jost', sans-serif;
  font-size: 19px; font-weight: 400;
  color: var(--lp-fg);
  line-height: 1.3;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.luthier-page .sp-post-excerpt {
  font-size: 14px; font-weight: 300;
  color: var(--lp-fg-muted);
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
}
.luthier-page .sp-post-tags {
  display: flex; flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}
.luthier-page .sp-post-tag {
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--lp-amber);
  padding: 4px 10px;
  border: 0.5px solid var(--lp-amber-dim);
  background: var(--lp-amber-bg);
}

.luthier-page .sp-empty {
  grid-column: 1 / -1;
  background: var(--lp-bg);
  padding: 96px 32px;
  text-align: center;
  font-size: 15px; font-weight: 300;
  color: var(--lp-fg-muted);
  font-style: italic;
}
.luthier-page .sp-empty[hidden] { display: none; }