<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 
        Primary colors: 
        Secondary colors: 
        Typography: 
*/

/* General CSS */
@font-face {
  font-family: Montserrat-Regular;
  src: url(../font/Montserrat-Regular.ttf);
}
@font-face {
  font-family: Saira_Expanded-Regular;
  src: url(../font/Saira_Expanded-Regular.ttf);
}
@font-face {
  font-family: Saira_Expanded-SemiBold;
  src: url(../font/Saira_Expanded-SemiBold.ttf);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 16px;
}

body {
  font-family: "Montserrat-Regular", sans-serif;
  margin: 50px;
  background: url(../img/Fabric-Diamond-2024-2.jpg);
  background-repeat: repeat;
  background-size: auto;
}

a {
  font-family: "Saira_Expanded-SemiBold", sans-serif;
  text-transform: capitalize;
  text-decoration: none;
  transition: color 1s;
}

p {
  margin-bottom: 10px;
}
p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Saira_Expanded-Bold", sans-serif;
}

ul {
  list-style: none;
}

.container {
  width: 1080px;
  margin: 0 auto;
}
/* Buttons */

/* header */
#header_container {
  background-color: #ffffff;
}
.header {
  width: 1080px;
  height: 150px;
  margin: 0 auto;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}
/* menu */
.h1-menu {
  display: flex;
  flex: 1.3;
  justify-content: start;
  height: 100%;
}
.h2-menu {
  display: flex;
  justify-content: end;
  flex: 2;
  padding: 0 20px;
}
.logo {
  width: 100%;
}
.logo img {
  width: 100%;
}
.link_menu {
  color: #7ecadb;
}
.link_menu:hover {
  color: #0c2d48;
}
.header .h2-menu .menu,
.header .h2-menu .menu2 {
  clear: both;
  max-height: 0;
  transition: max-height 0.2s ease-out;
  display: flex;
  grid-gap: 25px;
}
/* menu icon */
.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  position: relative;
  user-select: none;
}
.header .menu-icon .navicon {
  background: #0c2d48;
  display: block;
  height: 2px;
  position: relative;
  transition: background 0.2s ease-out;
  width: 20px;
}
.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: #0c2d48;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
}
.header .menu-icon .navicon:before {
  top: 7px;
}
.header .menu-icon .navicon:after {
  top: -7px;
}

/* menu btn */
.header .menu-btn {
  display: none;
}
.header .menu-btn:checked ~ .h2-menu .menu,
.header .menu-btn:checked ~ .h2-menu .menu2 {
  max-height: 240px;
}
.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}
.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}
.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

/* Sub Header */
#sub_header {
  background-color: #7ecadb;
  padding: 20px 0;
}
.sub_menu {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-gap: 25px;
}
.link_menu2 {
  color: #0c2d48;
}
.link_menu2:hover {
  color: #548a96;
}

/* Category */
#category {
  padding: 100px 0;
  background-color: #ffffff;
}
.category_box {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 1%;
}
.category_box a {
  color: #0c2d48;
  width: 24.2%;
  padding: 5px;
  /* background-color: #7ecadb; */
  margin-bottom: 5px;
}
.category_box a:hover {
  color: #7ecadb;
}
#category h4 a {
  font-size: 26px;
  color: #0c2d48;
}
#category h4 {
  margin-bottom: 30px;
  text-align: center;
}

/* Product Page */
#product_page {
  padding: 50px 0;
  background-color: #ffffff;
}
.pp_box {
  display: flex;
  grid-gap: 40px;
}
.ppb_one {
  flex: 1;
}
.ppb_two {
  flex: 1;
}

/* Product Gallery  */
.wrapper {
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.product_gallery {
  margin: 0 auto;
}

.product_thumbnails {
  display: flex;
  justify-content: center;
  grid-gap: 5px;
  margin: 20px auto;
}
.primary_product_image {
  width: 100%;
  height: auto;
}

.img_thumbnail:hover.thumb_img,
.selected_thumb .thumb_img {
  border: 4px solid #7ecadb;
}
.thumb_img:hover {
  border: 4px solid #7ecadb;
}

.thumb_img {
  width: 50px;
  height: 50px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border: 1px solid #7ecadb;
}

/* Quantity selector */
.quantity_selector {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.minus-btn,
.plus-btn {
  background-color: #7ecadb;
  border: none;
  color: #ffffff;
  height: 43px;
  width: 35px;
  font-size: 22px;
  cursor: pointer;
  font-weight: 600;
  line-height: 1;
  border-radius: 3px;
}
.minus-btn:active,
.plus-btn:active {
  background-color: #2980b9;
}
#quantity {
  text-align: center;
  height: 43px;
  width: 55px;
  font-size: 18px;
  border: 1px solid #7ecadb;
  margin: 0 3px;
  border-radius: 3px;
}
.ppbt_product_info h1 {
  font-size: 40px;
  color: #0c2d48;
  margin-bottom: 30px;
}
.quantity_selector span {
  font-size: 20px;
  font-weight: 600;
  color: #0c2d48;
  margin-right: 20px;
}
.btn_order {
  background-color: #0c2d48;
  color: #ffffff;
  width: 300px;
  height: 60px;
  border-radius: 3px;
  font-size: 20px;
  font-family: "Saira_Expanded-SemiBold", sans-serif;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  transition: all 1s;
  margin-bottom: 40px;
}
.btn_order:hover {
  transform: scale(1.1);
}
.product_description {
  margin-top: 30px;
  margin-bottom: 30px;
}
.hr_product_info {
  width: 80%;
  height: 3px;
  background-color: #0c2d480f;
  margin: 0 auto;
}
.product_shipping_information h5 {
  font-size: 18px;
  color: #0c2d48;
  margin-bottom: 10px;
}
.product_shipping_information p,
.product_shipping_information span {
  color: #0c2d48;
  font-size: 15px;
  margin-bottom: 0;
}
.product_shipping_information {
  background-color: #7ecadb;
  padding: 20px;
  border-radius: 3px;
}
.text-color_dark_black {
  color: #0c2d48;
  font-family: "Saira_Expanded-SemiBold", sans-serif;
}
.product_shipping_information {
  background-color: #7ecadb;
  padding: 20px;
  border-radius: 3px;
  margin: 30px 0;
}
.produuct_note p {
  font-size: 14px;
  color: #0000008c;
}

/* Category Template */
#category_sec {
  background-color: #ffffff;
  padding: 80px 0;
}
.cat_each {
  width: 18.4%;
  margin-bottom: 50px;
}
.ce_inner {
  text-align: center;
}
.ce_inner h5 {
  width: 95%;
  margin: 0 auto;
}
.cat_img_box {
  width: 120px;
  min-height: 200px;
  margin: 0 auto 10px auto;
  display: flex;
  justify-content: center;
  align-items: end;
}
.ce_inner a img {
  width: 100%;
}
#category_header {
  background-color: #7ecadb;
  padding: 20px 0;
}
#category_header h1 {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 10px;
  text-align: center;
}
.ce_inner a {
  color: #000000;
}

/* Pagination */
.cat_container {
  margin: 0 20px;
}
.content {
  display: none;
}
.content.active {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 2%;
}
#pagination-wrapper {
  display: flex;
  justify-content: center;
}
.pagination button {
  border: none;
  background-color: #ffffff00;
  color: #ffffff;
  cursor: pointer;
  font-family: "Saira_Expanded-SemiBold", sans-serif;
  font-size: 16px;
}
.pagination button.active {
  color: #000000;
}
.pagination button::after {
  content: "|";
  margin: 0 10px;
  color: #ffffff;
}
.pagination button:last-child::after {
  display: none;
}

/* Footer */
footer {
  background-color: #0c2d48;
  color: #7ecadb;
  padding: 50px 0 20px 0;
}
footer ul li a {
  color: #7ecadb;
}
.footer_inner {
  display: grid;
  margin: 0 20px;
}
.footer_box_1 {
  display: flex;
  padding-bottom: 0;
  margin-bottom: 0;
}
.footer_box_2 {
  text-align: center;
}
.fb1_each {
  flex: 1;
}
.fb1_each2 {
  flex: 1.2;
}
.footr_logo {
  width: 200px;
}
.footr_logo a img {
  width: 100%;
}
.policy_links {
  display: flex;
  justify-content: center;
  grid-gap: 20px;
  margin-top: 20px;
}
.footer_box_2 p {
  color: #7ecadb73;
}
.footer_notice {
  font-size: 14px;
}
footer ul li a {
  color: #7ecadb;
  display: flex;
  align-items: baseline;
  grid-gap: 10px;
}
.menu_link_title {
  color: #ffffff;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.sm_list {
  display: flex;
  margin-top: 20px;
  justify-content: center;
  grid-gap: 20px;
}
.sm_list li a i {
  font-size: 20px;
}
footer ul li a:hover {
  color: #5994a1;
}
.email_tag {
  text-transform: lowercase;
}
</pre></body></html>