@charset "UTF-8";
/* VARIABLE SETTINGS */
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap");
:root {
  --background-color: #ffffff;
  --foreground-color: #000000;
  --foreground-color-light: #282828;
  --primary-accent-color: #003645;
}

/*GLOBAL SETTINGS*/
* {
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  box-sizing: border-box;
  max-width: 100vw;
  scroll-behavior: smooth;
  scroll-snap-type: mandatory;
  background: var(--background-color);
}

body.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

/* For modern browsers that support scrollbar-gutter */
@supports (scrollbar-gutter: stable) {
  body.no-scroll {
    overflow: hidden;
    position: static;
    scrollbar-gutter: stable;
  }
}
::-webkit-scrollbar {
  width: 8px;
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-accent-color);
}

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

h1 {
  font-size: 50px;
  font-weight: 700;
  line-height: 57.5px;
}

h2 {
  font-size: 37px;
  font-weight: 700;
  line-height: 42.55px;
}

h4 {
  font-size: 22px;
  font-weight: 700;
  line-height: 27.6px;
}

h5 {
  font-size: 16px;
  font-weight: 700;
  line-height: 18.4px;
  text-transform: uppercase;
}

p,
a,
ul,
label {
  font-family: "Lato", sans-serif;
  font-size: 16px !important;
  font-weight: 300;
  line-height: 25px !important;
  text-decoration: none;
}

button {
  background: transparent;
  border: none;
  outline: none !important;
  cursor: pointer;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.main-btn {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-family: "Jost", sans-serif !important;
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  padding: 8px 30px;
  text-transform: capitalize;
  color: var(--background-color);
  background-color: var(--primary-accent-color);
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
}
.main-btn:hover {
  background-color: #f15e22;
  scale: 0.9 !important;
}

/* COMMON SECTIONS */
#search-popup {
  background-color: var(--background-color);
  padding: 2rem;
  border-radius: 8px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#search-popup h2 {
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--primary-accent-color);
  text-align: center;
}
#search-popup form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#search-popup form input[type=text] {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}
#search-popup form input[type=text]:focus {
  border-color: var(--primary-accent-color);
  outline: none;
}
#search-popup form button[type=submit] {
  padding: 8px 32px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--background-color);
  background-color: var(--primary-accent-color);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
#search-popup form button[type=submit]:hover {
  background-color: var(--foreground-color);
}

#top-bar {
  border-bottom: 0.5px solid #cccccc;
}
#top-bar .mobile-info {
  font-size: 11px;
  font-weight: 400;
}
#top-bar .social-links a {
  font-size: 11px;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}
#top-bar .social-links a:hover {
  color: var(--primary-accent-color);
}

.body-overlay {
  display: none;
  background-color: rgba(0, 0, 0, 0.9098039216);
  z-index: 200;
  transition: all 0.5s ease-in;
}
.body-overlay.open {
  display: block;
}

header {
  border-bottom: 0.5px solid #cccccc;
  background: transparent;
}
header .container .logo img {
  width: auto;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
header .container .menu-links .menu-item {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}
header .container .menu-links .menu-item a {
  font-size: 13px !important;
  font-weight: 500;
}
header .container .menu-links .menu-item::before {
  content: "";
  width: 0;
  height: 1.5px;
  background-color: var(--primary-accent-color);
  position: absolute;
  top: 100%;
  left: 0;
  transition: all 0.3s ease-in-out;
}
header .container .menu-links .menu-item:hover {
  color: var(--primary-accent-color);
}
header .container .menu-links .menu-item:hover::before {
  width: 100%;
}
header .container .menu-links .menu-item.active a {
  color: var(--primary-accent-color);
}
header .container .menu-links .menu-item.active::before {
  width: 100%;
}
header .container .search {
  color: var(--foreground-color);
  transition: all 0.3s ease-in-out;
}
header .container .search:hover {
  color: var(--primary-accent-color);
}
header .container .search:hover p {
  font-weight: 600 !important;
}
header .container .search span {
  font-size: 14px;
  font-weight: 400;
}
header .container .search p {
  font-size: 14px !important;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}
header .container .menu-toggle {
  cursor: pointer;
  display: none;
  align-items: center;
  z-index: 999;
}
header .container .menu-toggle .menu-icon {
  display: inline-block;
  position: relative;
  width: 22px;
  height: 14px;
  transition: all 0.6s ease-in;
}
header .container .menu-toggle .menu-icon span {
  display: block;
  position: absolute;
  height: 1.5px;
  width: 100%;
  background-color: var(--foreground-color);
  transition: all 0.3s ease-in;
}
header .container .menu-toggle .menu-icon span:nth-child(1) {
  top: 0;
}
header .container .menu-toggle .menu-icon span:nth-child(2) {
  top: 7px;
}
header .container .menu-toggle .menu-icon span:nth-child(3) {
  top: 14px;
}
header .container .menu-toggle .menu-icon.open {
  position: absolute;
  top: 2em;
  right: 1.5em;
}
header .container .menu-toggle .menu-icon.open span {
  background-color: var(--primary-accent-color);
}
header .container .menu-toggle .menu-icon.open span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}
header .container .menu-toggle .menu-icon.open span:nth-child(2) {
  opacity: 0;
}
header .container .menu-toggle .menu-icon.open span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}
header .container .menu-toggle .menu-icon:hover span {
  background-color: var(--primary-accent-color);
}
header .container .menu-toggle .menu-icon:hover span:nth-of-type(2) {
  width: 15%;
}
header.fixed {
  width: 100vw;
  max-width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: var(--background-color);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 100vh;
  background: var(--background-color);
  visibility: hidden;
  pointer-events: none;
  display: block;
  flex-direction: column;
  transition: all 0.6s ease-in-out;
  z-index: 999;
}
.mobile-menu .container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 1.5em 0;
  padding-top: 4em;
  opacity: 0;
  transition: all 0.4s ease-in;
}
.mobile-menu .container .menu-links {
  width: 100%;
  list-style: none;
  padding: 0;
}
.mobile-menu .container .menu-links .menu-link {
  position: relative;
  width: 100%;
}
.mobile-menu .container .menu-links .menu-link a {
  text-transform: uppercase;
  font-weight: 600;
  width: 100%;
  display: block;
  padding: 1em 1.5em;
  color: var(--foreground-color);
  text-decoration: none;
  cursor: pointer;
}
.mobile-menu .container .menu-links .menu-link a:hover {
  color: var(--secondary-accent-color);
}
.mobile-menu .container .menu-links .menu-link.menu-item-has-children > a::after {
  content: "▼";
  position: absolute;
  right: 15px;
  font-size: 12px;
  transition: all 0.3s ease-in-out;
}
.mobile-menu .container .menu-links .menu-link.menu-item-has-children.active > a::after {
  content: "▲";
}
.mobile-menu .container .menu-links .menu-link.menu-item-has-children .sub-menu {
  display: none;
  list-style: none;
  padding-left: 15px;
  background-color: var(--secondary-accent-color);
}
.mobile-menu .container .menu-links .menu-link.menu-item-has-children .sub-menu .menu-link a {
  padding-left: 30px;
}
.mobile-menu .container .menu-links .menu-link.menu-item-has-children .sub-menu .menu-link a:hover {
  color: var(--primary-accent-color);
}
.mobile-menu .container .header-btn {
  width: -moz-fit-content;
  width: fit-content;
}
.mobile-menu.open {
  width: 70%;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.mobile-menu.open .container {
  opacity: 1;
}

#breadcrumbs .container p {
  color: var(--foreground-color-light);
  font-weight: 300;
}

footer {
  height: -moz-fit-content;
  height: fit-content;
}
footer .footer-cta {
  border-top: 0.5px solid #cccccc;
  border-bottom: 0.5px solid #cccccc;
}
footer .footer-cta .container {
  min-height: 300px;
}
footer .footer-cta .container h2 {
  text-align: center;
  font-weight: 400;
  width: 70%;
  margin-bottom: 0.5em;
}
footer .footer-content .container {
  justify-items: center;
}
footer .footer-content .container .link-group p {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0.8em;
}
footer .footer-content .container .link-group .links a {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 12px;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}
footer .footer-content .container .link-group .links a::before {
  content: "";
  width: 0;
  height: 1.5px;
  background-color: var(--primary-accent-color);
  position: absolute;
  top: 100%;
  left: 0;
  transition: all 0.3s ease-in-out;
}
footer .footer-content .container .link-group .links a:hover {
  color: var(--primary-accent-color);
}
footer .footer-content .container .link-group .links a:hover::before {
  width: 100%;
}
footer .footer-content .container .link-group .links a.active {
  color: var(--primary-accent-color);
}
footer .footer-bar {
  border-top: 0.5px solid #cccccc;
}
footer .footer-bar p {
  position: relative;
  display: block;
  font-size: 12px;
  line-height: 15px;
  color: var(--foreground-color);
  font-weight: 300;
}

#catalogue-section {
  border-top: 0.5px solid #cccccc;
  margin-top: 2em;
}
#catalogue-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#catalogue-section .container .catalogue-header {
  margin-bottom: 3rem;
}
#catalogue-section .container .catalogue-header .section-title {
  text-align: center;
  margin-bottom: 0.2em;
}
#catalogue-section .container .catalogue-header .section-description {
  font-family: "Lato", sans-serif;
  font-size: 13px;
  max-width: 50%;
  margin-top: 1em;
  text-align: center;
}
#catalogue-section .container .catalogue-categories {
  margin-bottom: 3rem;
  border: 0.5px solid #c4c4c4;
}
#catalogue-section .container .catalogue-categories .category-card {
  padding: 0.8em;
  border-right: 0.5px solid #c4c4c4;
  transition: all 0.3s ease;
}
#catalogue-section .container .catalogue-categories .category-card .image-wrapper {
  width: 100%;
  height: 300px;
  overflow: hidden;
}
#catalogue-section .container .catalogue-categories .category-card .image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
#catalogue-section .container .catalogue-categories .category-card .image-wrapper:hover img {
  scale: 1.1;
}
#catalogue-section .container .catalogue-categories .category-card .category-title {
  font-family: "Lato", sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 0.8em;
  margin-bottom: 2.4em;
}
#catalogue-section .container .catalogue-categories .category-card:last-of-type {
  border-right: none;
}

#featured-section {
  border-top: 0.5px solid #cccccc;
  margin-top: 2em;
}
#featured-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#featured-section .container .featured-header {
  margin-bottom: 3rem;
}
#featured-section .container .featured-header .section-title {
  text-align: center;
  margin-bottom: 0.2em;
}
#featured-section .container .featured-header .section-description {
  font-family: "Lato", sans-serif;
  font-size: 13px;
  max-width: 50%;
  margin-top: 1em;
  text-align: center;
}
#featured-section .container .featured-items {
  margin-bottom: 3rem;
  border: 0.5px solid #c4c4c4;
}
#featured-section .container .featured-items .item-card {
  padding: 0.8em;
  border-right: 0.5px solid #c4c4c4;
  transition: all 0.3s ease;
}
#featured-section .container .featured-items .item-card .image-wrapper {
  width: 100%;
  height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
#featured-section .container .featured-items .item-card .image-wrapper img {
  width: 80%;
  height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s ease;
}
#featured-section .container .featured-items .item-card .image-wrapper:hover img {
  scale: 1.1;
}
#featured-section .container .featured-items .item-card .item-title {
  font-family: "Lato", sans-serif;
  font-size: 12px;
  font-weight: 400;
  margin-top: 0.8em;
  margin-bottom: 0.8em;
}
#featured-section .container .featured-items .item-card .price {
  font-family: "Lato", sans-serif;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 2em;
}
#featured-section .container .featured-items .item-card:last-of-type {
  border-right: none;
}

/* Responsive layout for tablet devices */
/* Responsive layout for Mobile devices */
@media (max-width: 768px) {
  h1 {
    font-size: 37px;
    font-weight: 700;
    line-height: 42.55px;
  }
  h2 {
    font-size: 22px;
    font-weight: 700;
    line-height: 27.6px;
  }
  h4 {
    font-size: 16px;
    font-weight: 700;
    line-height: 18.4px;
  }
  h5 {
    font-size: 13px;
    font-weight: 700;
    line-height: 18.4px;
  }
  header .container .menu-links {
    display: none;
  }
  header .container .menu-toggle {
    display: flex;
  }
  header .container .header-btn {
    display: none;
  }
  footer {
    height: -moz-fit-content;
    height: fit-content;
  }
  footer .footer-cta .container {
    height: 320px;
  }
  footer .footer-cta .container h2 {
    width: 100%;
  }
  footer .footer-content .container {
    justify-items: center;
  }
  footer .footer-content .container .link-group p {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0.8em;
  }
  footer .footer-content .container .link-group .links a {
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    font-size: 12px;
    font-weight: 400;
    transition: all 0.3s ease-in-out;
  }
  footer .footer-content .container .link-group .links a::before {
    content: "";
    width: 0;
    height: 1.5px;
    background-color: var(--primary-accent-color);
    position: absolute;
    top: 100%;
    left: 0;
    transition: all 0.3s ease-in-out;
  }
  footer .footer-content .container .link-group .links a:hover {
    color: var(--primary-accent-color);
  }
  footer .footer-content .container .link-group .links a:hover::before {
    width: 100%;
  }
  footer .footer-content .container .link-group .links a.active {
    color: var(--primary-accent-color);
  }
  footer .footer-bar {
    border-top: 0.5px solid #cccccc;
  }
  footer .footer-bar p {
    position: relative;
    display: block;
    font-size: 12px;
    line-height: 15px;
    color: var(--foreground-color);
    font-weight: 300;
  }
  #search-popup {
    padding: 2rem;
    border-radius: 8px;
    max-width: 300px;
  }
  #search-popup h2 {
    margin-bottom: 1rem;
    color: var(--primary-accent-color);
    text-align: center;
  }
  #search-popup form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #search-popup form input[type=text] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: border-color 0.3s ease;
  }
  #search-popup form input[type=text]:focus {
    border-color: var(--primary-accent-color);
    outline: none;
  }
  #search-popup form button[type=submit] {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    color: var(--background-color);
    background-color: var(--primary-accent-color);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  #search-popup form button[type=submit]:hover {
    background-color: var(--primary-accent-color);
  }
  #catalogue-section {
    margin-top: 1em;
  }
  #catalogue-section .container .catalogue-header {
    margin-bottom: 3rem;
  }
  #catalogue-section .container .catalogue-header .section-title {
    margin-bottom: 0.2em;
  }
  #catalogue-section .container .catalogue-header .section-description {
    font-size: 13px;
    max-width: 100%;
    margin-top: 1em;
  }
  #catalogue-section .container .catalogue-categories {
    margin-bottom: 3rem;
  }
  #catalogue-section .container .catalogue-categories .category-card {
    border-right: 0;
    border-bottom: 1px solid #c4c4c4;
  }
  #catalogue-section .container .catalogue-categories .category-card .image-wrapper {
    height: 300px;
  }
  #catalogue-section .container .catalogue-categories .category-card .category-title {
    margin-top: 0.8em;
    margin-bottom: 0.8em;
  }
  #catalogue-section .container .catalogue-categories .category-card:last-of-type {
    border-right: none;
    border-bottom: none;
  }
  #featured-section {
    margin-top: 1em;
  }
  #featured-section .container .featured-header {
    margin-bottom: 3rem;
  }
  #featured-section .container .featured-header .section-title {
    margin-bottom: 0.2em;
  }
  #featured-section .container .featured-header .section-description {
    font-size: 13px;
    max-width: 100%;
    margin-top: 1em;
  }
  #featured-section .container .featured-items {
    margin-bottom: 3rem;
  }
  #featured-section .container .featured-items .item-card {
    border-right: 0;
    border-bottom: 1px solid #c4c4c4;
  }
  #featured-section .container .featured-items .item-card .image-wrapper {
    height: 300px;
  }
  #featured-section .container .featured-items .item-card .item-title {
    margin-top: 0.8em;
    margin-bottom: 0.8em;
  }
  #featured-section .container .featured-items .item-card:last-of-type {
    border-right: none;
    border-bottom: none;
  }
}
/* Style Imports */
/* HOME PAGE STYLES */
#home-intro {
  border-bottom: 0.5px solid #cccccc;
}
#home-intro .container {
  min-height: 200px;
}
#home-intro .container p {
  width: 50%;
}

#brands .brand-items {
  width: 100%;
  border-top: 0.5px solid #cac8c8;
  border-bottom: 0.5px solid #cac8c8;
}
#brands .brand-items .brand {
  width: 100%;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#brands .brand-items .brand .wrapper {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#brands .brand-items .brand .wrapper * {
  text-align: center;
}
#brands .brand-items .brand .wrapper p {
  margin: 1em 0;
  font-size: 12px;
}
#brands .brand-items .brand:first-of-type {
  border-right: 0.5px solid #cac8c8;
}

#home-banner {
  border-bottom: 0.5px solid #cccccc;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-left: 5%;
}
#home-banner .banner-content {
  width: 30%;
}
#home-banner .banner-content h2 {
  color: var(--primary-accent-color);
}
#home-banner .banner-content .main-btn {
  position: relative;
  display: flex;
}
#home-banner .banner-content .categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1em;
}
#home-banner .banner-content .transparent-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0.5em 1em;
  font-size: 14px;
  border: 1px solid var(--Primary-Color, #003645);
  border-radius: 40px;
  transition: all 0.3s ease-in-out;
}
#home-banner .banner-content .transparent-btn:hover {
  background-color: var(--primary-accent-color);
  color: white;
}
#home-banner .main-image-wrapper {
  width: 65%;
}
#home-banner .main-image-wrapper .video-wrapper {
  width: 100%;
  height: 420px;
}
#home-banner .main-image-wrapper .video-wrapper video {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Responsive layout for tablet devices */
@media (max-width: 1024px) {
  #home-intro {
    min-height: 300px;
  }
  #home-intro p {
    width: 60%;
  }
  #brands .brand-items .brand {
    min-height: 350px;
  }
  #brands .brand-items .brand .wrapper {
    width: 60%;
  }
  #brands .brand-items .brand .wrapper p {
    margin: 1em 0;
  }
  #brands .brand-items .brand:first-of-type {
    border-right: 0.5px solid #cac8c8;
  }
}
/* Responsive layout for Mobile devices */
@media (max-width: 768px) {
  #home-banner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-left: 0;
  }
  #home-banner .banner-content {
    margin: 0 auto;
    margin-bottom: 2em;
    width: 90%;
  }
  #home-banner .banner-content h2 {
    color: var(--primary-accent-color);
  }
  #home-banner .banner-content .categories {
    grid-template-columns: 100%;
    gap: 1em;
  }
  #home-banner .banner-content .transparent-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    padding: 0.5em 1em;
    font-size: 14px;
    border: 1px solid var(--Primary-Color, #003645);
    border-radius: 40px;
  }
  #home-banner .main-image-wrapper {
    width: 90%;
    margin: auto;
  }
  #home-banner .main-image-wrapper .video-wrapper {
    width: 100%;
    height: 350px;
  }
  #home-intro .container {
    min-height: 300px;
  }
  #home-intro .container p {
    width: 100%;
  }
  #brands .brand-items .brand {
    min-height: 300px;
  }
  #brands .brand-items .brand .wrapper {
    width: 80%;
  }
  #brands .brand-items .brand .wrapper p {
    margin: 1em 0;
  }
  #brands .brand-items .brand:first-of-type {
    border-right: none;
    border-bottom: 0.5px solid #cac8c8;
  }
}
/* END HOME PAGE STYLES */
/* ABOUT PAGE STYLES */
#about-banner {
  border-bottom: 0.5px solid #cccccc;
}
#about-banner .container {
  width: 70%;
}
#about-banner .container .image-wrapper {
  width: 100%;
  height: 100%;
  min-height: 400px;
}
#about-banner .container .image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#about-banner .container .text-wrapper {
  padding-bottom: 1.5em;
}
#about-banner .container .text-wrapper h2 {
  color: var(--foreground-color);
  margin-bottom: 0.35em;
}
#about-banner .container .text-wrapper .divider {
  height: 1px;
  background-color: #cccccc;
  margin-top: 2.5em;
  margin-bottom: 1.2em;
}
#about-banner .container .text-wrapper p {
  color: var(--foreground-color);
  margin-bottom: 0.5em;
  font-weight: 300;
}

#process {
  border-bottom: 0.5px solid #cccccc;
}
#process .container {
  width: 75%;
}
#process .container .process-items .item {
  width: 100%;
  height: auto;
  min-height: 300px;
  border: 0.5px solid #c4c4c4;
  padding-top: 2em;
}
#process .container .process-items .item * {
  text-align: center;
}
#process .container .process-items .item img {
  width: 80px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

#team {
  border-bottom: 0.5px solid #cccccc;
}
#team .container {
  width: 75%;
}
#team .container .team-items .item {
  width: 100%;
  height: auto;
}
#team .container .team-items .item .image-wrapper {
  width: 100%;
  height: 200px;
  background-color: #ecf3fc;
}

#showroom {
  border-bottom: 0.5px solid #cccccc;
}
#showroom .container {
  width: 80%;
}
#showroom .container .showroom-items .item {
  width: 100%;
  height: auto;
}
#showroom .container .showroom-items .item .image-wrapper {
  width: 100%;
  height: 300px;
}
#showroom .container .showroom-items .item .image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#showroom .container .showroom-items .item h4 {
  font-size: 20px;
}

/* Responsive layout for tablet devices */
/* Responsive layout for Mobile devices */
@media (max-width: 768px) {
  #about-banner .container {
    width: 90%;
  }
  #process .container {
    width: 90%;
  }
  #process .container .process-items .item {
    width: 100%;
    height: auto;
    min-height: 300px;
  }
  #team .container {
    width: 90%;
  }
  #showroom .container {
    width: 90%;
  }
}
/* END ABOUT PAGE STYLES */
/* SHOP PAGE STYLES */
#shop-content .container .shop-layout .sidebar {
  width: 15%;
}
#shop-content .container .shop-layout .sidebar * {
  font-family: "Jost", sans-serif;
  text-transform: capitalize;
}
#shop-content .container .shop-layout .sidebar h4 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 0.6em;
}
#shop-content .container .shop-layout .sidebar .filter-item {
  display: flex;
  flex-direction: column;
}
#shop-content .container .shop-layout .sidebar .filter-item h5 {
  font-size: 15px;
  font-weight: 500;
}
#shop-content .container .shop-layout .sidebar .filter-item a {
  font-size: 12px;
  font-weight: 300;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
#shop-content .container .shop-layout .sidebar .filter-item a.active, #shop-content .container .shop-layout .sidebar .filter-item a:hover {
  font-weight: 600;
  color: var(--primary-accent-color);
}
#shop-content .container .shop-layout .products {
  width: 84%;
}
#shop-content .container .shop-layout .products .product {
  outline: none;
  border: none;
  text-decoration: none;
}
#shop-content .container .shop-layout .products .product .image-wrapper {
  width: 100%;
  height: 300px;
  background: #f5f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.5px solid #f5f6f6;
}
#shop-content .container .shop-layout .products .product .image-wrapper img {
  width: 70%;
  height: 70%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s ease-in-out;
}
#shop-content .container .shop-layout .products .product .product-details {
  margin-top: 0.6em;
}
#shop-content .container .shop-layout .products .product .product-details * {
  font-family: "Jost", sans-serif;
  text-transform: capitalize;
  font-size: 12px;
}
#shop-content .container .shop-layout .products .product .product-details .product-title {
  font-weight: 400;
  margin-bottom: 1em;
}
#shop-content .container .shop-layout .products .product .product-details .price {
  font-weight: 600;
}
#shop-content .container .shop-layout .products .product:hover .image-wrapper img {
  transform: scale(1.1);
}
#shop-content .container .shop-layout .products .product:hover .product-details .product-title {
  color: var(--primary-accent-color);
}

/* Responsive layout for tablet devices */
/* Responsive layout for Mobile devices */
@media (max-width: 768px) {
  #shop-content .container .shop-layout {
    width: 100%;
  }
  #shop-content .container .shop-layout .sidebar {
    width: 100%;
  }
  #shop-content .container .shop-layout .sidebar .filter-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 0.5em;
  }
  #shop-content .container .shop-layout .sidebar .filter-items .filter-item {
    display: flex;
    flex-direction: column;
  }
  #shop-content .container .shop-layout .sidebar .filter-items .filter-item a {
    margin: 0;
  }
  #shop-content .container .shop-layout .products {
    width: 100%;
    margin-top: 1.6em;
  }
  #shop-content .container .shop-layout .products .product {
    width: 100%;
  }
  #shop-content .container .shop-layout .products .product .image-wrapper {
    width: 100%;
    height: 250px;
  }
  #shop-content .container .shop-layout .products .product .product-details {
    margin-top: 0.6em;
  }
}
/* END SHOP PAGE STYLES */
/* PRODUCT PAGE STYLES */
#product-details .container {
  width: 70%;
}
#product-details .container * {
  font-family: "Jost", sans-serif;
}
#product-details .container .top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
#product-details .container .top .image-gallery {
  width: 56%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#product-details .container .top .image-gallery .thumbnails {
  display: flex;
  flex-direction: column;
  width: 20%;
}
#product-details .container .top .image-gallery .thumbnails .thumbnail {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 120px;
  background-color: #f5f6f6;
  border: 1px solid #f5f6f6;
  cursor: pointer;
  margin-bottom: 1em;
  transition: all 0.3s ease-in-out;
}
#product-details .container .top .image-gallery .thumbnails .thumbnail img {
  width: 70%;
  height: 70%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s ease-in-out;
}
#product-details .container .top .image-gallery .thumbnails .thumbnail:hover {
  border-color: var(--primary-accent-color);
}
#product-details .container .top .image-gallery .thumbnails .thumbnail:hover img {
  scale: 1.1;
}
#product-details .container .top .image-gallery .thumbnails .thumbnail:last-of-type {
  margin: 0;
}
#product-details .container .top .image-gallery .main-image {
  width: 78%;
  height: 100% !important;
  min-height: 393px;
  background-color: #f5f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
}
#product-details .container .top .image-gallery .main-image img {
  width: 60%;
  height: 60%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s ease-in-out;
}
#product-details .container .top .image-gallery .main-image:hover img {
  scale: 1.1;
}
#product-details .container .top .product-info {
  width: 40%;
}
#product-details .container .top .product-info .product-name {
  font-weight: 400;
}
#product-details .container .top .product-info .price {
  font-size: 16px;
  font-weight: 600;
  margin: 1em 0;
}
#product-details .container .top .product-info .description {
  font-size: 13px;
  font-weight: 400;
}
#product-details .container .top .product-info .meta {
  margin: 2.5em 0;
}
#product-details .container .top .product-info .meta p {
  font-size: 13px;
  font-weight: 400;
}
#product-details .container .top .product-info .meta p span {
  font-weight: 500;
}
#product-details .container .bottom {
  margin-top: 3em;
  padding: 1em 0;
}
#product-details .container .bottom .accordion-item {
  border-bottom: 0.5px solid #cccccc;
  color: var(--foreground-color);
}
#product-details .container .bottom .accordion-item .accordion-toggler {
  padding: 0.4em 0;
  transition: all 0.2s ease;
}
#product-details .container .bottom .accordion-item .accordion-toggler h2 {
  font-size: 20px;
  font-weight: 400 !important;
  transition: all 0.3s ease-in-out;
}
#product-details .container .bottom .accordion-item .accordion-toggler h2.active {
  color: var(--primary-accent-color);
}
#product-details .container .bottom .accordion-item .accordion-toggler .collapsible-icon .vertical-line {
  transform: rotate(0deg);
  transform-origin: center;
  transition: transform 0.3s ease;
}
#product-details .container .bottom .accordion-item .accordion-toggler .collapsible-icon.active {
  color: var(--primary-accent-color);
}
#product-details .container .bottom .accordion-item .accordion-toggler .collapsible-icon.active .vertical-line {
  transform: rotate(90deg);
  opacity: 0;
}
#product-details .container .bottom .accordion-item .accordion-toggler:hover .collapsible-icon,
#product-details .container .bottom .accordion-item .accordion-toggler:hover h2 {
  color: var(--primary-accent-color);
}
#product-details .container .bottom .accordion-item .accordion-toggler:focus {
  outline: none;
}
#product-details .container .bottom .accordion-item .accordion-content {
  max-height: 0;
}
#product-details .container .bottom .accordion-item .accordion-content .description {
  font-size: 14px;
  font-weight: 300;
}
#product-details .container .bottom .accordion-item .accordion-content .extra-details {
  display: flex;
  flex-direction: column;
  padding-bottom: 1em;
}
#product-details .container .bottom .accordion-item .accordion-content .extra-details p {
  font-size: 13px;
  font-weight: 300;
  margin-bottom: 0.4em;
}
#product-details .container .bottom .accordion-item .accordion-content .extra-details p span {
  font-weight: 600;
}
#product-details .container .bottom .accordion-item .accordion-content .extra-details p:last-of-type {
  margin: 0;
}
#product-details .container .bottom .accordion-item:first-of-type {
  border-top: 0.5px solid #cccccc;
}

/* Responsive layout for tablet devices */
/* Responsive layout for Mobile devices */
@media (max-width: 768px) {
  #product-details .container {
    width: 90%;
  }
  #product-details .container .top {
    flex-direction: column;
  }
  #product-details .container .top .image-gallery {
    width: 100%;
  }
  #product-details .container .top .image-gallery .thumbnails {
    width: 20%;
  }
  #product-details .container .top .image-gallery .thumbnails .thumbnail {
    height: 90px;
  }
  #product-details .container .top .image-gallery .main-image {
    width: 78%;
    height: 100% !important;
    min-height: 303px;
  }
  #product-details .container .top .product-info {
    width: 100%;
    margin-top: 1em;
  }
  #product-details .container .bottom {
    margin-top: 3em;
    padding: 1em 0;
  }
  #product-details .container .bottom .accordion-item .accordion-toggler {
    padding: 0.4em 0;
  }
  #product-details .container .bottom .accordion-item .accordion-toggler h2 {
    font-size: 16px;
  }
  #product-details .container .bottom .accordion-item .accordion-content {
    max-height: 0;
  }
  #product-details .container .bottom .accordion-item .accordion-content .description {
    font-size: 13px;
    font-weight: 300;
  }
  #product-details .container .bottom .accordion-item .accordion-content .extra-details p {
    font-size: 13px;
  }
}
/* END PRODUCT PAGE STYLES */
/* CONTACT PAGE STYLES */
#contact-wrapper {
  background: transparent;
}
#contact-wrapper .container {
  width: 60%;
}
#contact-wrapper .container h1 {
  color: var(--primary-accent-color);
}
#contact-wrapper .container form label {
  font-weight: 500;
}
#contact-wrapper .container form input,
#contact-wrapper .container form textarea {
  background: transparent;
  padding: 10px;
  margin-bottom: 15px;
  border: none;
  outline: none;
  border: 1px solid var(--primary-accent-color);
  border-radius: 5px;
  font-size: 15px;
  color: var(--foreground-color);
}
#contact-wrapper .container form input:focus,
#contact-wrapper .container form textarea:focus {
  outline: none;
  border-color: var(--primary-accent-color);
}

/* END CONTACT PAGE STYLES *//*# sourceMappingURL=style.css.map */