*, *::after *::before {
    box-sizing: border-box;
}

:root {
    --siteHeaderMaxHeight: 200px;
}


html {

    background: #818997;
    margin: 0;
    padding: 0;
    font-size: 100%;
}


body {
    margin: 0;
    /* background: rgba(255,255,255,0.4); */
    font-family: 'Rubik';
    min-height: 100vh;
    height: auto;
    
}

.hide {
    display: none;
}

/*======== INDEX PAGE =================*/

    h1 { font-family: Rubik, sans-serif;
            font-weight: 900;
            font-size: 4.5vw;
            text-transform: uppercase;
            line-height: 4.5vw;
            margin-bottom: 16px;
            
    }


   h1.page-title, h2 {
        font-family: Merriweather, Georgia, serif;
        font-weight: 300;
        font-size: 2.125rem;
        margin-bottom: 16px;
        color: #333;
    
     }

     h2.product-name {
        font-weight: 700;
        font-size: 2.25rem;
     }


     h3 {
        font-family: Rubik;
        font-weight: 700;
        font-size: 2.5rem;
        line-height: 1em;
        margin: 0;
        margin-bottom: 16px;
     }


     p {

        font-size: 1.75rem;
     }

     ul,ol {
        font-size: 1.5em;
     }

     ul {
        margin: revert;
        margin: unset;
     }

     li {
        line-height: 1.125em;
        margin-bottom: 12px;
        margin-left: 16px;
     }

     #promo {
        width: 90%;
        margin: 0 auto;
        padding: 16px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
        grid-template-areas: 'intro promo-box''address address';
    }
    
    .intro-grid {
        grid-area: intro;
        display: grid;
        grid-template-columns: 1fr;
        align-content: start;
    }


    .promo-text {
        font-family: Merriweather, serif;
        font-size: 2.5em;
        font-weight: 300;
    }

    .promo-text strong {
        font-weight: 700;
    }

    .intro, .options {
        padding: 16px;
    }


    .options h3 {
        font-family: Rubik, sans-serif;
    }


    #promo ul {
        margin: 0 auto;
        font-family: Rubik, sans-serif;
        font-weight: 600;
        text-transform: uppercase;
        margin-left: 0;
        padding-left: 0;

    }

    .promo-box {
        grid-area: promo-box;
        background-color: rgba(255,255,255,0.3);
        padding: 8px;
        margin: 0 auto;
        position: relative;
        width: 100%;
        
    }

    .promo-grid {
        display: grid;
        gap: 16px;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        margin-bottom: 16px;
        padding: 8px;

    
    }

    .promo-box h2 {
        font-weight: 900;
        font-size: 2em;
        flex: 0 1 78%;
        margin-top: 0;
    }

    .promo-box h3 {
        font-weight: 900;
        font-size: 1.5em;
        flex: 1 1 100%;
        margin: 0 8px;
    }

    .promo-box p {
        margin-left: 8px;
        margin-right: 8px;
    }

    #frontpagePromo {
        background: #fff;
        padding: 16px;
    }

    .fp-promo-banner {
        
        /* background-image: url('/images/homes/winchester/Winchester_black.jpg'); */
        background: linear-gradient( to right, rgba(0,0,0,0.8), rgba(0,0,0,0)), url('/images/homes/winchester/Winchester_black.jpg');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 50% 50%;
        aspect-ratio: 1000 / 667; 
        /* width: 100%; */
        position: relative;
        overflow: hidden;
        min-height: 300px;
        padding: 0 0 16px 0;
    }




    .fp-promo-banner::after,
    .featured-img::after
    /* .shed-card .card-img-main::after,
    .nook-card .card-img-main::after   */
    { 
        content: 'Sale';
        background: #7f1f1f;
        display: block;
        color: #fff;
        padding: 8px 0;
        width: 200px;
        transform: rotate(45deg);
        text-align: center;
        position: absolute;
        right: -60px;
        top: 26px;
}


/* TURN THIS ON OR OFF IF THERE IS A SALE */
.featured-shed .featured-img::after,
.featured-home .featured-img::after {
    display: none;
}



    .fp-promo-content {
        color: #fff;
        position: absolute;
        left: 0; 
        top: 0;
        width: 100%;
        padding: 16px;
        height: 100%;
    }

    .fp-promo-content h2 {
        color: white;
        font-weight: 900;
        font-family: 'Rubik';
    }

    .fp-promo-content span {
        display: flex;
        flex-flow: row wrap;
        font-size: clamp(1.5em, -0.875rem + 8.333vw, 2.25rem);
        margin-right: 16px;
        margin-bottom: 4px;
        text-shadow: 2px 2px rgba(0,0,0,0.4);
    }

    #frontpagePromo p {
        font-size: 1.5em !important;
    }

   .featured-item {
        margin: 0;
        padding: 8px;
        height: auto;
        background: rgba(255,255,255,0.5);

        .msrp { 
            font-size: .8em;
            margin: 8px 8px 0;
        }

        .our-price {
            font-size: 1em;
            margin: 0 8px;
        }

        .sale-price {
            font-size: 1.25em;
            margin: 0 8px;
        }
    }

    .featured-item a {
        text-decoration: none;
        color: #333;
        font-size: 1.25em;
        margin-top:8px;
    }

    .featured-item:hover {
        background: rgba(255,255,255,0.9);
        transition: all 300ms linear;
    }
    
    .featured-img,
    .megafeatured-img {
        min-height: 0;
        max-height: 416px;
        overflow: hidden;
        margin-bottom: 8px;
        position: relative;
    }

    .featured-item img {
        width: 100%;
        object-fit: fill;
    }

    #featured-bismark-b {
        outline: 4px solid green;
        background: #fff;
    }

    .featured-description ul {
        font-size: .9em;
        font-weight: normal !important;
        text-transform: none !important;
    }


    .btn-wrap {
        margin: 8px;
    }

    .btn-center {
        margin: 8px auto;
        text-align: center;
        width: 100%;
    }

    .btn-see-all {

        background: #216149;
        color: #fff;
        font-size: 2em;
        margin: 16px auto;
        padding: 8px 16px;
        border-radius: 4px;
        text-align: center;
        text-decoration: none;
    }

.btn-see-all:hover {
    background: #0d3124;
    transition: all 300ms linear;
}


.btn-ready-to-buy
     {
        background: #216149;
        color: #fff;
        font-size: 2em;
        margin: 48px auto;
        padding: 8px 16px;
        border-radius: 4px;
        text-align: center;
        text-decoration: none;
        line-height: 80px;
    }

.btn-readyto-buy:hover {
    background: #0d3124;
    transition: all 300ms linear;
}


.pagination {
    width: calc(100% - 64px);
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    margin: 20px auto 0;
    padding: 8px;
}


.btn-next {
    margin-left: auto;
}

.btn-previous,
.btn-next {

        background: #216149;
        color: #fff;
        font-size: 1.25em;
        padding: 8px 16px;
        border-radius: 4px;
        text-align: center;
        text-decoration: none;
    }

.btn-previous:hover,
.btn-next:hover
{
    background: #0d3124;
    transition: all 300ms linear;
}


    address {
        grid-area: address;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        border-top: solid 2px hsl(175, 9%, 52%);
        font-style: normal;
        font-family: Merriweather, Georgia, serif;
        margin-top: 0;
        padding: 16px;

    }

    

    .address-txt {
        
        font-size: 5vw;
        line-height: 5vw;
    }


    address p {
        padding-left: 16px;
    }

    address a {
        text-decoration: none;
        font-size: 1em;
        
    } 

    .highlight {
        background: #ffff007a;
        font-weight: 700; 
    }


    


    .promo-cabin {
        clear: both;
        flex: 1 0 100%;
        width: 100%;
        }

    .promo-cabin img {
        aspect-ratio: 16 / 9;
        width: 100%;
    }



/*=========================*/


.faux-header {
    height: calc(280px - 20vw);
    min-height: 86px;
    padding: 8px;
    width: 100%;
    margin: 0;
}

#siteHeader {
    background-color: #fff;
    box-shadow: 2px 2px 5px rgb(0 0 0/0.3);
    margin: 0 0 16px 0;
    padding: 8px 16px 8px 16px;
    min-height: 60px;
    max-height:200px;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    

    @media (max-width: 926px) {
        padding: 8px 0;
    }

}


header h1 {
    padding: 8px 0;
    margin: 0;
    line-height: initial;
}

.page-header {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    width: 90%;
    max-width: 1390px; 
    margin: 0 auto;
}

.page-header #saleburst-2 {
    right: 32px;
}

#brandName {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: clamp(280px, 25%, 20%);

    @media screen and (max-width: 1222px) {
        margin: 0 auto;
         width: clamp(200px, 25%, 20%);
    }
}

#brandName a {
     width: 100%;
     height: 100%;
}

#brandName a:hover {
       }

#brandName a img {
    width: 80%;
}

header a {
    color: black;
    text-decoration: none;
    
}

#siteNav {
    margin: 8px 0;
    padding: 0;
     @media (max-width: 1222px) {
        margin: 0 auto;
        width: 90%;
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
    }
}

#siteNav a {
    font-size: clamp(1em, 2vw, 1.5em);
    padding: 8px;
    margin: 1px;
    
}

#siteNav a:hover { 
    background: #2c313a;
    border-radius: 4px;
    color: #f0f0f0;
    transition: all 300ms linear; 
    cursor: pointer;
}

.nav-phone {
    font-weight: 700;
    font-size: 1.25em !important;
}

#siteNav .nav-phone:hover {
    background: rgb(0 0 0/0.4) !important;
}

.active {
    background: #2c313a;
    border-radius: 4px;
    color: #f0f0f0;
}

.link160 {
    font-weight: bold;
    color: #112d40;
    outline: solid 4px transparent;
}

.link160:hover {
    background: #112d40 !important;
    outline: solid 4px #112d40;
}

.active.link160 {
    outline: solid 4px #112d40;
    background: none;
    
} 


h3 {
    font-family: Merriweather;
    font-weight: 900;
}


h4, h5, h6 {
    font-family: Rubik;
    font-weight: 900;
}

h4 {
    font-size: 1.25em;
}

h1 {
    font-size: 2em;
}

h1.page-title {
    color: #2c313a;
    font-size: 2.5em;
    font-weight: 900;
    margin: 8px 16px;
    width: calc(100% - 150px);
}

p, span, div, section, body {
    
    font-size: 1em;
}


.product-grid {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    padding: 16px;
    grid-auto-rows: 1fr;
    width: 90%;
    max-width: 1390px; 
    margin: 0 auto;

}

.faq-grid {
    display: flex;
    flex-flow: column nowrap;
    padding: 16px;
    width: 90%;
    max-width: 1390px;
    min-width: 300px;
    margin: auto;

    p {
        font-size: 1.5em;
        margin: 8px 35px 16px;
    }

   
}

.faq-grid details {
    margin: 0 4px 0 0;
}

.faq-grid details summary {
    font-size: 1.75em; 
    font-weight: 600;
}

.faq-grid h2 {
    font-weight: 700;
}


.card {
    background: rgba(255,255,255,0.6);
    border: none; 
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    padding: 0;
    height: 100%;
    position: relative;
    overflow: hidden;
    transform: scale(1);
    
    

    .our-price {
        font-size: 1.25em;
    }

    .custom-sale {
        font-size: 1.5em;
    }
}

.card h3 {
    background-color: #231F20;
    color: rgba(255,255,255,0.7);
    font-size: 1.5em;
    margin: 0;
    padding: 8px;
    text-align: left;
    align-content: flex-start;
    display: flex;
    align-items: center;
}

.smoothRemove {
    
    transform: scale(0);
    max-height: 0;
    transition: all 500ms ease-in-out;
    display: none;
}


.product-cabins .card h3 {
    background-color: #3a2c2c;
}

.product-yard-nooks .card h3 {
    background-color: #c93045;
}

.product-yard-nooks .card {
    background: rgba(255,255,255,0.8);
}

.card-img-main {
    background-size: cover;
    aspect-ratio: 16 / 9;
    margin: 0; 
    padding: 0;
    position: relative; 
    /* overflow: clip; */
}


.card-img-main .sale-ribbon{
    position: absolute;
    top: 0px;
    right: -60px;
    width: 250px;
}


.card img {
    border: solid 0 rgba(0,0,0,0);
    width: 100%;
}


.card:hover {
    background: rgba(255,255,255,0.8);
    transition: all 300ms linear;
    /* cursor: pointer; */
}


.card:hover > h3 {
    color: rgba(255,255,255,0.9);
    transition: all 300ms linear;
} 

.card-link {
    text-decoration: none;
    color: #333;
}

.featured-item .icons,
.featured-description .icons,
.card .icons {
    display: flex;
    flex-flow: row wrap;
    margin: 0;
    padding: 0;

    > span {
        grid-template-rows: auto auto;
    }

    .icon-wrap {
        flex: 0 1 auto;
    }

    .icon-wrap img {
        height: 40px;
        width: 40px
    }
}


.featured-shed:has(.sale-price.addSaleTxt)  .featured-img::after  { 
        content: 'Sale';
        background: #7f1f1f;
        display: block;
        color: #fff;
        padding: 8px 0;
        width: 200px;
        transform: rotate(45deg);
        text-align: center;
        position: absolute;
        right: -60px;
        top: 26px;
}


.price-wrapper {
    margin: 16px 0 0 0;
    grid-area: price;
}

.price-wrapper .our-price, 
.price-wrapper .msrp {
    margin-left: 0;
}

.price {
    font-size: 1.3em;
    font-weight: 400;
    color: green;
    margin: 8px 8px;
}

.price::before {
    content: 'Price: ';
    
}

.sale-price
 {
    font-size: 1.65em;
    font-weight: 700;
    color: rgb(141, 35, 35);
    margin: 0;
}


.addSaleTxt::before,
.custom-sale::before {
    content: 'Sale: ';
    font-weight: 700;
}

.addSaleTxt,
.custom-sale  {
    font-size: 1.75em;
    font-weight: 700;
    color: rgb(141, 35, 35);
    margin: 0 8px;
}


.product-info-page .custom-sale {
    margin-left: 0;
}

.our-price {
    font-size: 1.5em;
    font-weight: 500;
    color: green;
    margin-left: 8px;
} 
.msrp {
    margin: 8px 8px 0 8px;
}

.our-price::before{
    content: "Price: ";
}

.msrp::before {
    content: "MSRP: ";
    font-weight: bold;
}


.footage, 
.dimensions {
    font-size: 1.4em;
    margin: 12px 8px 4px 12px;
}


.dimensions-feet {
    
    font-size: 18px;
     margin: 0 12px 12px;
}

.model {
    font-size: 1em;
    margin: 4px 8px;
}


.disclaimer {
    margin-top: 16px;
    font-size: .875em;
}

.select-wrapper {
    margin: 0 auto;
    width: 100%;
    
    @media (max-width: 610px) {
        width: calc(100% - 32px);
    }
}


.sortSelect,
.product-select
#productSort {
    height: 48px;
    font-size: 1.5em;
    margin: 8px 0;
    width: 100%;
}

#pageSort {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 300px));
    grid-template-areas: 'select bedrooms bathrooms';
    gap: 16px;
    padding: 16px;
    width: 90%;
    max-width: 1390px; 
    margin: auto;

    @media screen and (max-width: 610px) {
        grid-template-columns: 100%;
        grid-template-areas: 'select' 'bedrooms' 'bathrooms';
        gap: 0;
    }
}

#pageSort.garage-sort {
        grid-template-areas: 'select info info';
        
        @media screen and (max-width: 610px) {
        grid-template-columns: 100%;
        grid-template-areas: 'select' 'info';
        gap: 0;
    }
    }

#pageSort #productSort {
    grid-area: select;
}

#bedroomSort {
    grid-area: bedrooms;
    background: rgb(255 255 255/0.6);
    border-radius: 8px;
    margin: 0 0 4px;
    padding: 8px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    flex-flow: row wrap;
    width: 100%;
    box-sizing: border-box;
    
    @media (max-width: 610px ){
        margin: 8px auto;
        width: calc(100% - 32px);
    }
}


#bathroomSort {
    grid-area: bathrooms;
    background: rgb(255 255 255/0.6);
    border-radius: 8px;
    margin: 0 0 4px;
    padding: 8px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    flex-flow: row wrap;
    width: 100%;
    box-sizing: border-box;
    
    @media (max-width: 610px ){
        margin: 8px auto;
        width: calc(100% - 32px);
    }
}

#bedroomSort h4 {
    margin: 0;
    flex: 1 0 100%;
}

#bedroomSort label,
#bathroomSort label {
    flex: 1 1 auto;
    background-color: rgb(255 255 255/0.5);
    display: flex;
    align-items: center;
    padding: 8px 8px 8px 6px;
    margin: 2px;
    border: none;
    border-radius: 4px;
}

#bedroomSort label:hover,
#bathroomSort label:hover {
    cursor: pointer; 
}

.form--control {
    font-family: system-ui, sans-serif;
    font-size: 1.125rem;
    font-weight: bold;
    line-height: 1.1;
    display: grid;
    grid-template-columns: 1em auto;
    gap: 0.5em;
  }

  input[type="checkbox"] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  /* Remove most all native input styles */
  appearance: none;
  /* For iOS < 15 */
  background-color: var(--form-background);
  /* Not removed via appearance */
  margin: 0;

  font: inherit;
  color: currentColor;
  width: 1.15em;
  height: 1.15em;
  border: 0.15em solid currentColor;
  border-radius: 0.15em;
  transform: translateY(-0.075em);

  display: grid;
  place-content: center;
}

input[type="checkbox"]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transform: scale(0);
  transform-origin: bottom left;
  transition: 120ms transform ease-in-out;
  /* box-shadow: inset 1em 1em var(--form-control-color); */
  /* Windows High Contrast Mode */
  background-color: CanvasText;
}

input[type="checkbox"]:hover {
    cursor: pointer;
}

input[type="checkbox"]:checked::before {
  transform: scale(1);
}

input[type="checkbox"]:focus {
   outline: max(2px, 0.15em) solid #fff;
  background: rgb(255 255 255);
  
}

input[type="checkbox"]:disabled {
  --form-control-color: var(--form-control-disabled);

  color: var(--form-control-disabled);
  cursor: not-allowed;
}


.btn-reset {
    grid-area: reset;
    background-color: white;
    border-radius: 8px;
    color: blue;
    font-size: .875em;
    display: flex; 
    align-items: center;
    margin: 0 0 0 auto;
    padding: 8px;
    width: 90px;
        
    &:hover {
        background-color: #333;
        color: white;
        cursor: pointer;
        transition: all 300ms linear;
    }

    img {
        margin: 0 0 0 10px;
        width: 15px;
    
    }

    &:hover img {
        filter:invert(1);
        transition: all 300ms linear;
    }

    @media (max-width: 610px) {
        margin-right: 16px;
    }
}




/*********** Baseline, reset styles ***********/
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  cursor: pointer;
  width: 25rem;
}

/* Removes default focus */
input[type="range"]:focus {
  outline: none;
}

/******** Chrome, Safari, Opera and Edge Chromium styles ********/
/* slider track */
input[type="range"]::-webkit-slider-runnable-track {
  background-color: #86c934;
  border-radius: 0.5rem;
  height: 0.5rem;
}

/* slider thumb */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  margin-top: -12px; /* Centers thumb on the track */
  background-color: #fff;
  border-radius: 1rem;
  height: 2rem;
  width: 2rem;
}

input[type="range"]:focus::-webkit-slider-thumb {
  outline: 3px solid #fff;
  outline-offset: 0.125rem;
}

/*********** Firefox styles ***********/
/* slider track */
input[type="range"]::-moz-range-track {
  background-color: #86c934;
  border-radius: 0.5rem;
  height: 0.5rem;
}

/* slider thumb */
input[type="range"]::-moz-range-thumb {
  background-color: #fff;
  border: none; /*Removes extra border that FF applies*/
  border-radius: 1rem;
  height: 2rem;
  width: 2rem;
}

input[type="range"]:focus::-moz-range-thumb{
  outline: 3px solid #757575;
  outline-offset: 0.125rem;
}



.range-slider {
    background-color: rgb(255 255 255/0.8);
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas: 
        "minInput maxInput" 
        "minVal maxVal"; 
    gap: 16px;
    border: none;
    border-radius: 8px;
    padding: 8px;
    width: 100%;
    display: none;

}

#min-price::before, 
#max-price::before {
    content: '$';
    position: absolute;
    left: 48px;
    top: 0;
    background: yellow;
    width: 48px;
    height: 48px;
    display: block;
}

#min-price {
    grid-area: minInput;
    width: 100%;
    height: 48px;
    font-size: 1.5em;
    padding: 0 8px;
}

#max-price {
    grid-area: maxInput;
    height: 48px;
    width: 100%;
    font-size: 1.5em;
    padding: 0 8px;
}

#min-val {
    grid-area: minVal;
    width: 100%;
}

#max-val {
    grid-area: maxVal;
    width: 100%;
}








/*=============  PRODUCT INFO PAGE ============== */

.product-info-page {

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr ));
    gap: 16px;
    padding: 0 16px;
}


.feature-img {
    position: relative;
    width: 100%;
    height: auto;
    overflow: clip;
   
}

.sale-ribbon {

    background: rgb(141, 35, 35);
    color: #fff;
    position: absolute;
    top: 25px;
    right: -60px;
    padding: 8px;
    width: 200px;
    font-size: 1.25em;
    z-index: 100;
    transform: rotate(45deg);
    text-align: center;
}

/* [data-fslightbox] {
} */


.sale-ribbon:empty 
 {
  display: none;
}

.feature-img img {
    
   
    z-index: 1;
}

.promo-blitz {
    color: #000;
    font-size: .975em !important;
}

.product-info-cabins {

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr ));
    grid-template-areas: 
    'gallery info'
    'kit-includes .' ;
    gap: 16px;
    padding: 0 16px;

}



.product-info-cabins p,
.product-info-garages p {
    font-size:1.75em;
}


.garages-header  {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
}

.required-siding {
    grid-area: info;
    background: rgba(255,255,255,0.5);
    border-radius: 8px;
    padding: 0 8px;
    margin: 8px auto;
    width: calc(100% - 16px);
}

#addOns .required-siding {
    display: none;
}

#garageInfo #addOns .required-siding {
    display: block;
    padding: 8px;
}


.product-info-garages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr ));
    grid-template-areas: 
    'gallery info'
    'kit-includes .'
    'garage-deductions .' ;
    gap: 16px;
    padding: 0 16px;
   }

.product-imgs img {
    width: 100%;
}

.siding-kits {
    grid-area: siding-kits;
}

.kit-includes {
    grid-area: kit-includes;
}


.info {
    background: rgba(255,255,255,0.4);
    padding: 16px; 
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: 
    'name name'
    'sqft model-type'
    'dimensions dimensions'
    'price price'
    'sale sale'
    'icons icons'
    'tech-specs tech-specs'
    'details details'
    'addons addons';
    align-content: start;
}

.info h3 {
    font-size: 3em;
    margin: 0;
    line-height: 1em;
}



.info .product-name {
    grid-area: name;
    margin: unset;
    padding: unset;
    margin-bottom: 16px !important;
    
}

.info .footage {
    grid-area: sqft;
    margin: unset;
    padding: unset;
}

.info .modeltype {
    grid-area: model-type;
}


.info .dimensions-feet {
    grid-area: dimensions;
    margin: 8px 0;
}

.info .price {
    grid-area: price;
    font-size: 2em;
    padding: unset;
    margin: unset;
    margin-top: 32px;
}

.info .sale-price {
    grid-area: sale;
    font-size: 2.5em;
    padding: unset;
    margin:unset;
}

.info .tech-specs {
    grid-area: tech-specs;
    margin: 48px 0 48px 0;
    
}

.info .tech-drawings {
    font-size: 1.25em;
    margin: 8px 0;
}


.product-info-garages .garage-deductions {
    grid-area: garage-deductions; 
}


#productPagekitchener-3-40 .main-img,
.flip-x {
    transform: scale(-1,1);
}


.gallery img {
    width: 100%;
}

.window-triple-glazed, 
.window-pvc {
    width: 250px;
}

.window-triple-glazed img, 
.window-pvc img {
    width:100%;
}

.img-right {
    float: right;
    margin: 0 0 0 16px;
}

.img-left {
    float: left;
    margin: 0 32px 0 0;
}

.icons {
    grid-area: icons;
    display: flex;
    flex-flow: row wrap;
    margin: 0px 16px 0 16px;
}




.or-centered {
    
    display: flex;
    justify-content: center;
    margin: 0 auto;
    font-weight: 900;    
    
}

.icons > span {
    display: grid;
    grid-template-rows: 80px auto;
    justify-items: center;
    margin: 12px;
    text-align: center;
}

.icons img {
    height: 80px;
}

.icons span span {
    display: block;
}


/* ===== WINDOWS ===== */

.window-options {
    border-top: solid 1px #333;
    padding: 16px 0;
}

.window-options > div {
    display: flow-root;
    
}


/* =========== ADD ONS ========= */

#addOns {
    grid-area: addons;
    margin-top: 0px;
    padding: 8px;
   
}

.add-on {
     background: rgba(255,255,255,0.2);
     padding: 8px;
     margin: 8px 0;

     ul {
        list-style-type: none;
        margin-top: 8px;
        margin-left: 0;
        padding-left: 0; 
  
        }

        li {
        position: relative; /* Essential for positioning the custom bullet */
        margin-left: 0;
        padding-left: 14px; /* Adjust this value to control the gap */
        font-size: .875em;
        }

        li::before {
        content: "•"; 
        position: absolute; 
        left: 0; 
       
        }
}


#addOns h3 {
    font-size: 2em;
}


#addOns h4,
.explainer h4 {
    font-size: 1.35em;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    margin: 0 14px;
}


#addOns p,
.options p
 {
    font-size: 1.25em;
    margin: 8px 14px;
}


#addOns ol,
#addOns details p, 
details summary  {
    font-size: 1.125em;
}

details {
    border: solid 1px rgba(0,0,0,0.1);
    background: rgba(255,255,255,0.3);
    padding: 8px;
    margin: 4px;
    cursor: pointer;
}


details:hover {
    background: rgba(255,255,255,0.6);
    transition: all 300ms linear;
}


/* ========== 160 SHEDS ========= */

#shed160Page .card .product-name {
    background: #112d40;
}



/* ========= YARD NOOKS ========= */

.yardnook-header > #saleburst-2  {
 position: absolute;
 top: 100px;
 z-index: 1000;
}

#shed160Page .banner {
    
    padding: 8px;
    width: calc(100% - 64px);
    margin: 16px auto;
    display: grid;
    /* grid-template-areas: 
    "explainer img-1 img-2" 
    "explainer img-3 img-4"; */
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 8px;
    height: auto;
    background-color: rgb(255 255 255/0.7);
   
}

#shed160Page .explainer ul {
    font-size: 1.25em;
    margin-left: 0;
    padding-left: 0;

    li {
        margin-left: 0;
        padding-left: 0;
    }
}

#shed160Page .explainer h3 {
    font-size: 2em;
    margin-top: 32px;
    margin-bottom: 8px;
}

#shed160Page .explainer a {
    color: #112d40;
    font-weight: bold;
    transition: all 300ms linear;

    &:hover {
        color: green;
    }
}

#yardNookPage .banner {
    background: #fff;
    background-image: url(/images/cutie-sheds/lisa-forkner-oZY8d8Qinig-unsplash.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 8px;
    width: calc(100% - 64px);
    margin: 16px auto;
    display: grid;
    /* grid-template-areas: 
    "explainer img-1 img-2" 
    "explainer img-3 img-4"; */
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 8px;
    height: auto;
    box-shadow: inset 0 0 1000px rgba(255,255,255,0.5);
   
}

#yardNookPage .banner .explainer {
    background: rgba(255,255,255,0.8);
    border-radius: 8px; 
    padding: 16px;
    align-self: start;

}


 h2#yardNookTitle {
    font-family: Modak;
    color: #ac273a;
    /* text-shadow: 0px 0px 10px rgba(0,0,0,0.5); */
    -webkit-text-stroke: 2px #fff; 
    text-align: left;
    margin: 16px 32px 0 32px;
    line-height: 1.75em;
}

.active.active-yard-nooks {
    background-color:#ac273a;
}

.pagination-yard-nooks .btn-next,
.pagination-yard-nooks .btn-previous {
    background-color:#ac273a;
}
.pagination-yard-nooks .btn-next:hover, 
.pagination-yard-nooks .btn-previous:hover {
    background-color: #971d2e;
}

.pagination-160 {
    .btn-next, 
    .btn-previous {
        background-color: #112d40;
        
        &:hover {
            background-color: #23506d 
        }
    }

}

.word-diy {
    font-size: 3em;
}

.word-yard {
    font-size: 2.75em;
}

.word-nooks {
    font-size: 2.75em;
}


#explainer,
#yardNooks {
    scroll-margin-top: 160px;
    transition: all 1000ms linear;
}

.explainer h4 {
    margin-bottom: 0;
    padding-top: 8px;
}

.explainer .add-on {
    background: rgba(255,255,255,0.6);
    border-radius: 0 8px 0 8px;
}

.explainer p {
    font-size: 1.25em;
    margin-top: 0;
}

.explainer a {
    width: 100%;
}

.explainer a img {
    width: 100%;
}

.call-out {
    font-size: 1.75em !important;
    font-family: Merriweather;
    width: 80%;
    margin: 16px auto;
    padding: 28px;
    background: white;
    border: double 6px #333;
    border-radius: 24px;
    corner-shape: notch;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.call-out p {
    margin: 0;
}

.call-us {
    font-size: 1.75em !important;
    
}

.call-us a {
    text-decoration: none;
}

.smaller {
    font-size: smaller;
    font-style: italic;
    font-weight: 500;
}

.size-in-inches {
    font-size: .8em;
}

footer {
    background: #3a1e0c;
    min-height: 300px;
    margin-top: 32px;
    padding: 16px 0;
    width: 100%;
    
}


.copyright {
    font-size: 1em;
    color: rgba(255,255,255,0.5);
    margin: 50px auto 0 auto;
    text-align: center;
    line-height: auto;
}

.footer-ad {
    padding: 0;
}

.footer-ad a {
    display: block;
    width: 100%;
    height: 100%;
}

.footer-ad a:hover {
    color:#dc3545 !important;
    border-color: #FFF;
    transition: all 300ms linear;
    background-color: rgba(0 0 0 / 0.2);
    transition: all 300ms linear;
}

#footerAds {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin: 32px auto;
    width: 80%;
}

#tayValleyFooterAd {
    background: linear-gradient(rgba(0,0,0,0.2),rgba(0,0,0,0.2) ), url('../images/common/built-by-marlane-contracting.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom right;
    border: solid 4px #000;
    position: relative;
    min-height: 300px;
}

#tayValleyFooterAd h3 {
    position: absolute;
    top: 0px;
    left: 20px;
    right: 20px;
    z-index: 100;
    font-weight: bold;
    font-size: 2em;
    color: white !important;
    margin: 16px;
    text-shadow: 2px 2px rgba(0,0,0,0.3);
}

#marlaneGardensFooterAd {
    background: linear-gradient(rgba(0,0,0,0.2),rgba(0,0,0,0.2) ), url('../images/common/MarLane-Gardens-Ads.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top right;
    border: solid 4px #000;
    min-height: 300px;
    position: relative;
}

#marlaneGardensFooterAd h3 {
    position: absolute;
    top: 0px;
    left: 20px;
    right: 20px;
    z-index: 100;
    font-weight: bold;
    font-size: 2em;
    color: white !important;
    margin: 16px;
    text-shadow: 2px 2px rgba(0,0,0,0.3);
}


.footer-ad svg {
    width: 24px;
    fill: #fff;
}




/* === CONTACT PAGE === */

#contactPage {
    width: 90%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin: 0 auto;
}


/* #contactPage .contact-page-content {

} */

#contactPage .address-info {
   margin: 0 16px;
} 


#contactPage address {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: "contact" "address";
}


#contactPage  .contact {
    grid-area: contact;
    font-size: clamp(1.5em, 2vw, 2em);
    font-weight: 700;
}

#contactPage .contact a {
    text-decoration: none;
}

#contactPage address .adr {
    grid-area: address;
    font-size: 3em;
    font-weight: 900;
}


.p-tel, .email {
    padding: 4px 8px;
    background-color: #2c313a;
    color: #f0f0f0;
    
}

#paymentInfo {
    background: rgba(255 255 255/0.4);
    padding: 16px;
    
}

#paymentInfo h3, 
#paymentInfo .make-green {
    color: darkgreen;
}

#paymentInfo p {
    font-size: 1.5em;
}



/* === STARBURST ====*/

.starburst {
  font: 2.5em/1 'Merriweather', georgia, serif;
  background: #7f1f1f;  
  width: 2.5em;
  height: 2.5em;
  text-align: center;
  color: #fff;
  
  }

.starburst,
.starburst span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.starburst span {
  width: 100%;
  height: 100%;
  background: inherit;
  transform: rotate(45deg);
}

.starburst:before,
.starburst:after ,
.starburst span:before,
.starburst span:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  z-index: -1;
  transform: rotate(30deg);
}

.starburst:after {
  transform: rotate(-30deg);
}

.starburst span:after {
  transform: rotate(30deg);
}
.starburst span:before {
  transform: rotate(-30deg);
}

.saleburst {
  position: absolute;
  top: -10px;  

}

#saleburst-2 {
  right: -20px;
  transform: rotate(0deg);
  display: none;
}

.jump-link {
    visibility: hidden;
    height: 0;

            }


#pageHeader #saleburst-2 {
    display: none;
    right:20px;
}


/*===== Assembly-Insulating PAGE === */

#assemblyInsulationContent {
    width: 80%;
    margin: auto;
}

.EZ-Log-Seal {
    width: 200px;
    float: left;
    margin: 0 32px 0 0;
    background: #fff;
    padding: 0;
    clip-path: circle(38%);
}

.EZ-Log-Seal img {
    width: 100%;
    
}

/* ==== MEDIA QUERIES ===*/
@media screen and (max-width: 1100px){

        #promo {
       
        grid-template-columns: 1fr;
        grid-template-areas: 'intro' 'promo-box'  'address';
        
    }

    .fp-promo-banner {
        aspect-ratio: unset; 
        min-height: 400px;
       
    }

    .product-info-cabins {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr ));
        grid-template-areas: 
        'gallery' 'info' 'kit-includes' '.' ;
        gap: 16px;
        padding: 0 16px;

}


    .product-info-garages {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr ));
        grid-template-areas: 
        'gallery' 
        'info'
        'kit-includes'
        'garage-deductions' ;
        gap: 16px;
        padding: 0 16px;
    }


    }


    @media screen and (max-width: 692px){

        .yard-nooks {
            order: 1;
        }

        .explainer {
            order: 2;
        }


        .jump-link {
        
            background-color: #333;
            border-radius: 8px;
            color: white;
            font-size: 2em;
            margin: 32px;
            padding: 8px;
            text-decoration: none;
            visibility: visible;    
        }



    }
    

    @media screen and (max-width: 480px){
        #promo {
            padding-left: 0px;
            padding-right: 0px;
            
            margin:0 auto;

        }

        .promo-box .featured-item {
            flex: 1 0 80%;
        }

        address a {font-size:.75em;}

        address p {
        padding-left: 0;
        }

    }


/* ==== SWIPER ==== */


.swiper {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-flow: nowrap;
}


.swiper-slide {
    width: 100%;
    height: 100%;
    
}