@charset "utf-8";
/*****************
* @this - Styles for objects found throughout the whole site.
* @mobile.css - Must be defined first, styles to use for mobile devices
*****************/

:root {
  --orangeColor: #fc5d35;
  --greyColor: #606060;
  --cyanColor: #5f9ea0;
  --yellowColor: #fcaf35;
  --blueColor: #7797d0;
  --unipakDarkBlue: #2B63A0;
  --greenColor: #009900;
}

/* Elements
----------------------------------------------------------------------------------------------------*/
#container-header {
  padding: 0px;
}

#site_title {
  padding-top: 5px;
  padding-left: 10px;
  padding-bottom: 5px;
  display: flex;
  gap: 10px;
}

#container-menu {
   flex-basis: 100%;
   margin-top: 5px;
}

#menuContainer {
  position: initial;
  height: auto;
  width: 100%;
}

#companyPhone {
  float: right; 
  height: 50px; 
  margin-top: 5px; 
  margin-right: 10px;
  font-weight: bold;
  font-size: x-large;
}

.container-outter {
  padding-top: 0px;
}

.lightBlueBG {
  background-color: #f0f8ff;
}

.companyLogoContainer {
  min-height: 50px;
}

.companyLogoContainer .companyLogo {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: 100px;
  max-width: 100px;
  margin-right: 10px;
}

.menu {
  min-width: auto;
  max-width: none;
  padding-bottom: 0px;
  background: var(--unipakDarkBlue);
}

.menu ul {
  float: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

/* Buttons */
.orangeButton {
  color: #FFF;
  background-color: var(--orangeColor);
  padding: 5px 20px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 0px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}

.orangeButton:hover {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#fc5d35+0,f94518+37,fc5d35+100 */
  background: rgb(252,93,53); /* Old browsers */
  background: -moz-linear-gradient(top,  rgba(252,93,53,1) 0%, rgba(249,69,24,1) 37%, rgba(252,93,53,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top,  rgba(252,93,53,1) 0%,rgba(249,69,24,1) 37%,rgba(252,93,53,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,  rgba(252,93,53,1) 0%,rgba(249,69,24,1) 37%,rgba(252,93,53,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=var(--orangeColor), endColorstr=var(--orangeColor),GradientType=0 ); /* IE6-9 */
}

.greyButton {
  color: #FFF;
  background-color: var(--greyColor);
  padding: 5px 20px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 0px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}

.greyButton:hover {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#606060+0,545454+37,606060+100 */
  background: rgb(96,96,96); /* Old browsers */
  background: -moz-linear-gradient(top,  rgba(96,96,96,1) 0%, rgba(84,84,84,1) 37%, rgba(96,96,96,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top,  rgba(96,96,96,1) 0%,rgba(84,84,84,1) 37%,rgba(96,96,96,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,  rgba(96,96,96,1) 0%,rgba(84,84,84,1) 37%,rgba(96,96,96,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=var(--greyColor), endColorstr=var(--greyColor),GradientType=0 ); /* IE6-9 */
}

.redButton {
  color: #FFF;
  background-color: #dd1a11;
  padding: 5px 20px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 0px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}

.redButton:hover {
  background-color: #cf1911;
}

.yellowButton {
  color: #FFF;
  background-color: var(--yellowColor);
  padding: 5px 20px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 0px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}

.removeButton {
  display: inline-block;
  margin: 5px 5px 5px 0px;
  padding: 6px 9px;
  font-size: 10px;
  font-weight: bold;
  color: #FFF;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  background-color: #dd1a11;
}


/* Form */
.form_header {
  font-weight: bold;
  font-size: larger;
  text-align: center;
  color: #483d8b;
}

.form_table {
  width: 100%;
}

.form_table td {
  padding-bottom: 10px;
}

.form_table .form_label {
  text-align: right;
  font-weight: bold;
}

.form_table input {
  width: 80%;
  line-height: 28px;
}

.form_table textarea {
  width: 100%;
  line-height: 28px;
  padding: 5px;
}

.form_table button {
  background-color: #d62828; /* Strong red */
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form_table button:hover {
  background-color: #a61c1c; /* Darker red */
  transform: translateY(-2px);
}

.form_table button:active {
  background-color: #801515;
  transform: translateY(0);
}

/* Brochure Carousel */
#container-brochureCarousel {
  width: 100%;
  height: 400px;
  background: #000;
  overflow: hidden;
}

#brochureCarousel {
  width: 300px;
  margin: 50px auto 0;
  overflow: visible;
}

#brochureCarousel img {
  height: 300px;
  -webkit-box-reflect: below 3px linear-gradient(rgba(255,255,255,0.1), rgba(255,255,255,0.3));
}

#container-brochureCarousel .flipster__button {
  margin: -1em 0em;
}

#container-brochureCarousel .flipster__button svg {
  stroke: rgb(255 255 255);
}

/*****************
* Brochure List Styles
*****************/
.brochure_list {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 16px;
}

/* Row as a card */
.brochure-row {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 16px;
  align-items: start;
  background: #fff;
  color: #111;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 16px;
  padding: 14px;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.brochure-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 7px rgba(0,0,0,.04), 0 9px 18px rgba(0,0,0,.02);
  border-color: rgba(10,124,255,.18);
}
.brochure-row:focus-within {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(10,124,255,.25);
}

/* Optional zebra that doesn’t fight the card look */
.brochure-row.odd { background-image: linear-gradient(0deg, rgba(0,0,0,.015), rgba(0,0,0,.015)); }
.brochure-row.even { background-image: none; }

/* Image column */
.brochure_overview_img {
  min-width: 300px;
  width: 300px;
  height: auto;
  aspect-ratio: auto;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}
.brochure_overview_img a,
.brochure_overview_img img {
  display: block;
  width: 100%;
}
.brochure_overview_img img {
  object-fit: contain;
}

/* Text column */
.brochure_info { display: grid; gap: 8px; }

.brochure_link h2 {
  margin: 0;
  font-size: clamp(1rem, 1rem + 0.6vw, 1.35rem);
  line-height: 1.2;
  letter-spacing: .2px;
}
.brochure_link a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.brochure_link a:hover,
.brochure_link a:focus {
  color: #900;
}

/* Meta list */
.brochure_overview_txt {
  font-size: .95rem;
  color: #333;
  line-height: 1.45;
}
.brochure_overview_txt strong {
  color: #222;
  font-weight: 600;
}

/* Tighten the repeated <br> block visually */
.brochure_overview_txt br { line-height: .6; }


/* Brochure Page Display */
#brochure-display-container {
  float: left;
  width: 100%;
  margin: 0;
}

#brochure-display-content {
  padding: 2.5%;
}

.brochure_thumb {
  float: left;
  margin: 0 1.04% 1.04% 0;
}

.brochure_thumb img {
  border: 1px solid #666;
  width: 100px;
  height: 130px;
}

.infobar-container {
  float: left;
  width: 100%;
  margin: 5px 0px 10px 0px;
}

.infobar-content {
  padding: 8px 0px 4px 0px;
  text-align: center;
  background: #FFB;
}

/*****************
* Brochure Product List Styles
*****************/
.brochure_product_list {
  float: left;
  padding: 5px;
}

.brochure_product_list .brochure_brand_container {
  float: left;
  padding: 5px;
  width: 99%;
}

.brochure_product_list .brand_name {
  font-weight: bold;
}

.brochure_product_list .product_name {
  font-size: smaller;
}


/*****************
* Brand Product Styles
*****************/
.brandProduct-list {
  display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  justify-content: center;
  gap: 10px;
}

.brandProduct-container {
  width: 280px;
  padding: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brandProduct-container:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.brandProduct-image img {
  max-width: 100%;
  border-radius: 10px;
}

.brandProduct-title {
  display: block;
  margin-top: 12px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  text-decoration: none;
}

.brandProduct-title:hover {
  color: #0077cc;
  text-decoration: underline;
}

.brandProduct-description {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #666;
}


/*****************
* Product Page Styles
*****************/
.product_page .product_img_nutrition {
  float: right;
  width: 40%;
  margin-left: 10px;
}

.product_page .product_img {
  width: 100%;
}

.product_page .product_brand {
  width: 100%;
}

.product_page .product_img img {
  width: 100%;
}

.product_page .product_brand img {
  width: 100%;
}

.product_page .product_description {
  margin-top: 5px;
}

.product_page .product_description,
.product_page .product_instructions,
.product_page .product_allergens,
.product_page .product_ingredients,
.product_page .product_notes {
  margin-bottom: 30px;
}

/*****************
* Nutrition Styles
*****************/
.nutrition_wrapper {
  float: left;
  border: solid 2px #000;
  padding: 5px;
  width: 97%;
}

.nutrition_wrapper div {
  float: left;
}

.nutrition_wrapper div.rightCol {
  float: right;
}

.nutrition_wrapper table {
  width: 100%;
}

.thickBB,
.mediumBB,
.thinBB {
  width: 100%;
  clear: both;
}
.thickBB {
  border-bottom: solid 8px #000;
}

.mediumBB {
  border-bottom: solid 4px #000;
}

.thinBB {
  border-bottom: solid 1px #666;
}

.nutrition_title {
  font-weight: bold;
  font-size: 28px;
}

.primaryTitle {
  font-weight: bold;
}

.smallerTitle {
  font-weight: bold;
  font-size: smaller;
}