   /* Color Variables */
   :root {
    --main-turquoise: turquoise;
    --main-gray: gray;
    --navigation-bg-color: white;
    --navigation-here-bg-color: white;
    --nav-hover-color: turquoise;
    --nav-hover-light: #f7f7f7;
    --main-border: hsl(29, 35%, 35%);
    --navigation-border: black;
    }

body {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    margin: 0;
}

h1.info,
h2 {
    font-family: 'Caveat', serif;
}

/* header */

header {
    width: 100%;
}

.logo {
    padding-left: 3%;
}

.logo > h3 {
    margin-top: 0;
}

.wordmark {
    display: block;
    height: 120px;
    width: 150px;
    text-indent: -3000px;
    margin-left: 2%;
    margin-top: .2em;
    background-color: transparent;
    /* background-position: center center; */
    background-repeat: no-repeat;
    background-image: url(../images/logo/Elegant-Cat-Silhouette.svg);
    background-size: contain;
}

header > .container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
 }

a:link {
    color: gray;
}

a:visited {
    color: violet;
}

a:hover {
    background-color: turquoise;
    text-decoration: none;
    color: white;
}

a:active {
    background-color: orange;
    color: white;
}

#dropdown1 a,
#dropdown1 a:link,
#dropdown1 a:visited,
#dropdown1 a:active,
#dropdown1 a:hover {
    color: var(--main-gray);
    text-decoration: none;
    /* border-bottom: 5px solid var(--navigation-bg-color); */
}

#dropdown1 a:hover {
    background-color: var(--nav-hover-light);
    color: var(--nav-hover-color);
    border-bottom: 5px solid var(--nav-hover-light);
}

#dropdown1 > li.active_link > a,
#dropdown1 > li.active_link > a:link,
#dropdown1 > li.active_link > a:visited,
#dropdown1 > li.active_link > a:active,
#dropdown1 > li.active_link > a:hover {
    color: black;
    background-color: var(--navigation-here-bg-color);
    border-bottom: 5px solid var(--navigation-border);
    cursor: default;
}

#dropdown1 > li.active_link > ul > li.active_link a,
#dropdown1 > li.active_link > ul > li.active_link a:link,
#dropdown1 > li.active_link > ul > li.active_link a:visited,
#dropdown1 > li.active_link > ul > li.active_link a:active,
#dropdown1 > li.active_link > ul > li.active_link a:hover {
    border-bottom-style: none;
    cursor: default;
    background-color: var(--main-turquoise);
    color: var(--navigation-here-bg-color);
    border-bottom-color: var(--main-white);
}

/* button */

#hp_product_recs > article > button,
#cat_product_recs > article > button,
#pdp_recs > article > button {
    display: block;
    margin-left: 24%;
    padding: 3px;
    border: 0;
    color: white;
    background-color: #336399;
    height: 30px;
    width: 100px;
}

/* nav */

#desktop-nav-container {
    padding-top: 5%;
    width: 77%;
    max-width: 600px;
}

nav.primary ul li {
    font-size: 16px;
    font-weight: 500;
    list-style-type: none;
    display: inline-block;
    /* padding: 0 0.2em 0 0.5em; 
    border-left: 2px solid #000; */
 }
 
 nav.primary ul li:first-child {
    border-style: none;
 }

 nav.secondary ul li {
    font-size: 15px;
    list-style-type: none;
    display: inline-block;
    padding: 0 .8em;
 }

 .secondary {
    text-align: right;
    padding-right: 5%;
}

.primary {
   text-align: right;
   padding-left: 29%;
}

ul#dropdown1 {
    padding: 0;
    margin: 0;
    position: absolute;
    list-style: none;
    z-index: 1000;
   }

 #dropdown1 li {
   float: left;
   /* position: relative; */
   /* width: 10em; */
   font-weight: bold;
   width: 8em;
   padding: 0 4px 1px ;
   background-color: white;
   line-height: 1.8em;
   }
   #dropdown1 li ul {
   display: none;
   top: 1em;
   left: 0;
   padding: 0;
   margin: 0;
  }
   #dropdown1 li:hover ul { 
       display: block; 
       z-index: 3;
   }

/* main */

main {
    width: 100%;
}

.hero-image {
    width: 100%;
    height: auto;
    max-width: 2000px;
}

.hero-image img {
    width: 100%;
}

h2 {
    display: block;
    text-align: center;
}

#hp_product_recs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 5%;
}

/* articles */

.product_rec {
    padding-bottom: 10px;
    display: inline-block;
    max-width: 200px;
}

article.product_rec ul {
    list-style-type: none;

}

.product_text {
    padding: 0;
    line-height: 1.8rem;
    text-align: center;
}


/* footer */

footer {
    /* display: flex;
    flex-wrap: wrap; */
    margin: 2% 0 0;
}

footer > p {
    display: block;
    padding-left: 40px;
}

.contactplus ul li {
    list-style-type: none;
    display: inline-block;
}

.contactplus ul li::after {
    content: "|";
}

.contactplus ul li:nth-child(3)::after {
    content: "";
}

.privacyplus ul li {
    list-style-type: none;
    display: inline-block;
}

.privacyplus ul li::after {
    content: "|";
}

.privacyplus ul li:nth-child(4)::after {
    content: "";
}


/* ******* category pages ******** */

#cat_product_recs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 5% 15%;
    max-width: 999px;
}

.category-banner {
    width: 100%;
    height: auto;
    max-width: 1800px;
    padding-left: 1%;
    padding-right: 1%;
}

.banner {
    background-image: url(../images/banners/SeeScoutSleep-Banner-Cats-CatCollars-1.jpg); 
    background-repeat: no-repeat; 
    background-size: cover; 
    height: 150px;
    background-position-y: -180px;
}

.category-banner img {
    width: 100%;
}

/* ******* product pages ******** */

#product_feature {
    margin: 2% 5%;
    width: 100%;
}

.product {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 10px;
}

.column {
    width: 50%;
    max-width: 575px;
    display: inline-block;
}

.product_detail_text {
    text-align: left;
    padding: 0;
}

.product_gallery {
    width: 400px;
    display: flex;
    /* flex-wrap: wrap; */
    padding-bottom: 10px;
    flex-basis: 1em;
    margin: 5%;
}
/*button styles for product page*/
#product_feature > article > div:nth-child(2) > form > button {
    margin-left: 0;
    display: inline-block;
    padding: 3px;
    border: 0;
    color: white;
    background-color: #336399;
    height: 30px;
    width: 120px;
}

select[name="Quantity"] {
    height: 30px;
}

#product_feature > article > div:nth-child(2) > ul > li {
    list-style-type: none;
}

li.height {
    margin:0 0 10px 0;   
 }

.product_detail_img {
    margin-left: 5%;
}

.text_width {
    width: 400px;
}

#pdp_recs  {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin: 5%;
    }

/* media queries */

@media screen and (max-width: 700px) {
    
.primary {
    text-align: right;
    padding: 0 0 5%;
 }

 .column {
    width: 100%;
    max-width: 575px;
    display: block;
}

}