@import url(https://fonts.googleapis.com/css2?family=Encode+Sans+SC&family=Encode+Sans+Semi+Expanded&display=swap);

:root {
  --bodyBG: #1d1d1d;
  --redBG: #70061b;
  --appRed: #670404;
  --headerBG: #013220;
  --headerFG: #ffff96;
  --accentBG: #f92b2b;
  --accentFG: #f92b2b;
  --contentBG: #111111;
  --contentDarkShadow: rgb(8, 8, 8);
  --contentFG: #ffffff;
  --white: #ffffff;
  --black: #000000;
  --orange: #f96a2b;
  --green: #0bf31e;
  --red: #f92b2b;
  --linkFG: #c4c4c4;
  --linkAccent: var(--orange);

  --headingFG: #ffff96;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--contentBG);
}

/********************************************************************************************************************/
/* HEADER ***********************************************************************************************************/

.header {
  position: absolute;
  top: 0;
  left: 0;
  height: 180px;
  width: 100%;
  background-color: var(--redBG);
}

.header-logo {
  margin: -10 auto 0 auto;
  width: 200px;
}

.header-logo img {
  width: 100%;
  height: auto;
}

/********************************************************************************************************************/
/* FOOTER ***********************************************************************************************************/

.footer {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100px;
  width: 100%;
  background-color: var(--bodyBG);
}

/********************************************************************************************************************/
/* PRODUCT **********************************************************************************************************/

.product {
  z-index: 1;
  top: 180px;
  position: absolute;
  margin: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 300px);
  overflow: auto;
  display: flex;
  justify-content: center;
}

.product-info-box {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100px;
  width: 100%;
  background-color: var(--contentBG);
}

.product-info {
  margin: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  background-color: var(--contentDarkShadow);
  border-radius: 5px;
}

.product-cat {
  padding-top: 2px;
  padding-left: 10px;
  color: var(--headerFG);
  font-family: 'Encode Sans Semi Expanded', sans-serif;
  font-weight: 100;
  font-size: 10pt;
}

.product-id {
  padding-top: 2px;
  padding-left: 10px;
  color: var(--accentFG);
  font-family: 'Encode Sans Semi Expanded', sans-serif;
  font-weight: 100;
  font-size: 10pt;
}

.product-name {
  display: flex;
  padding-top: 10px;
  padding-left: 10px;
  color: var(--headerFG);
  font-family: 'Encode Sans SC', sans-serif;
  font-weight: 400;
  font-size: 16pt;
}

.product-price {
  display: flex;
  float: inline-end;
  padding-top: 10px;
  padding-right: 15px;
  color: var(--headerFG);
  font-family: 'Encode Sans SC', sans-serif;
  font-size: 16pt;
}

/************************************************/
/** Product Image *******************************/

div.gallery {
  border: 1px solid var(--appRed);
}

div.gallery:hover {
  border: 1px solid var(--accentBG);
}

div.gallery img {
  width: 100%;
  height: auto;
}


div.desc {
  padding: 15px;
  text-align: center;
}

* {
  box-sizing: border-box;
}

.responsive {
  padding: 0 6px;
  float: left;
  width: 24.99999%;
}

.contacts {
  z-index: 1;
  top: 280px;
  position: absolute;
  padding: 20px;
  width: calc(100% - 0px);
  height: calc(100% - 340px);
  overflow: auto;
  background-color: var(--contentBG);  
}

.contactLink {
  margin: 5% 5%;
  padding: 0 6px;
  float: left;
  width: 14.99999%;
}

div.contactLink img {  
  width: 100%;
  height: auto;    
}

.contact-caption {        
  width: 100%;  
  color: var(--headerFG);
  text-align: center;  
  font-family: 'Encode Sans SC', sans-serif;
  font-weight: 400;
  font-size: 12pt;
  margin-top:  -10px;
}

@media only screen and (max-width: 700px) {
  .responsive {
    width: 49.99999%;
    margin: 6px 0;
  }

  .contactLink {
    width: 49.99999%;
    margin: 6px 0;
  }

  .contact-caption {        
    margin-top: -20px;
  }
}

@media only screen and (max-width: 500px) {
  .responsive {
    width: 100%;
  }

  .contactLink {
    width: 49.99999%;
    margin: 6px 0;
  }

  .contact-caption {        
    margin-top: -15px;
  }
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/* SCROLL BAR ******************************************************************************************************************/

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: rgb(17, 17, 17);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--redBG);
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: green;
}

/********************************************************************************************************************/

.landing-body {
  margin: 0;
  padding: 0;
  background-color: var(--redBG);
  align-content: middle;
}

.landing-container {
  width: 300px;
  margin: 0 auto 0 auto;
}

.landing-logo {
  width: 100%;
  height: auto;
}

.landing-logo a img {
  width: 100%;
  height: auto;
}

.landing-footer {  
  position: absolute;
  padding-top: 15px;
  bottom: 0;
  left: 0;
  height: 60px;
  width: 100%;
  background-color: var(--redBG);  
  color: var(--headerFG);
  text-align: center;  
  font-family: 'Encode Sans SC', sans-serif;
  font-weight: 400;
  font-size: 12pt;
}