@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

html {
  font-size: 16px;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

body {
  background-color: black;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-size: 1rem;
  font-family: "Roboto Condensed";
  width: 100%;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: #ffbf00;
  text-transform: uppercase;
  font-size: clamp(0.75rem, 2vw, 1rem);
  font-weight: 700;
  padding: 4px 15px;
  letter-spacing: 3px;
  transition: all 0.5s ease;

  &:hover {
    text-shadow: 0 0 20px #ffbf00, 0 0 30px #ffbf00, 0 0 40px #ffbf00;
  }
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
}

p {
  font-size: clamp(0.875rem, 2vw, 1.125rem);
}

.hero-section {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  clip-path: inset(0);
  overflow: hidden;
  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(4px);
    z-index: 1;
  }
}

.hero-img {
  position: fixed;
  object-fit: cover;
  top: 0;
  left: 0;
  filter: brightness(62%);
  width: 100%;
  height: 100%;
  z-index: 0;
}

.logo-img {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  width: 800px;
  height: auto;
}

/* Mobile Menu Toggle */
.menu-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1002;
  width: 30px;
  height: 25px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  background-color: #ffd700;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger Animation */
.menu-toggle.open span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* Overlay */
.menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
  position: absolute;
  top: 0;
  right: -250px;
  width: 250px;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1001;
  transition: right 0.4s ease;
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  color: #ffd700;
  font-weight: bold;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  width: 100%;
  text-align: center;
  padding: 10px 0;
}

.mobile-menu.active a {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}

.links {
  position: absolute;
  bottom: 40px;
  left: 0;
  display: flex;
  justify-content: space-around;
  flex-direction: row;
  cursor: pointer;
  width: 100%;
  padding: 0 40px;
  z-index: 2;
}

.links {
  margin: -100px auto 0 auto;
}

.container {
  flex: 1;
  display: flex;
  margin-top: 90px;
  justify-content: space-between;
  align-items: center;
  height: auto;
  min-height: 100vh;
  overflow: hidden;
  z-index: 0;
  width: 100%;
  padding: 0 20px;
}

.image-container {
  flex: 1;
  padding: 0;
}

.image-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-cnt2 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 40px 20px;
  width: 100%;
  text-align: center;
}

.about-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 3rem 2rem;
  max-width: 800px;
  width: 90%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0)
  );
  backdrop-filter: blur(7px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  z-index: 2;
  margin: 0 auto;
}

.about-container p {
  color: #ffbf00;
  font-weight: 700;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  text-transform: uppercase;
  margin-top: 30px;
  line-height: 1.6;
  max-width: 100%;
  word-break: break-word;
  hyphens: auto;
  padding: 0 10px;
}

.price-tag {
  padding: 10px 20px;
  border: 3px solid #ffb937;
  border-radius: 8px;
  color: #ffb937;
  font-size: clamp(0.75rem, 2vw, 1rem);
  background-color: transparent;
  cursor: default;
  transition: background-color 0.3s, color 0.3s;

  &:hover {
    background-color: #ffb937;
    color: #000;
  }
}

.about-container h1,
.about-container h2 {
  color: white;
  font-size: clamp(2rem, 5vw, 3rem);
  text-transform: uppercase;
  margin-top: 20px;
}

.text-container {
  flex: 1;
  text-align: center;
  padding: 20px;
  width: 100%;
  gap: 10px;
  margin-top: -30px;
}

.text-adjust {
  color: #ffbf00;
  font-weight: 700;
  text-align: center;
  font-size: clamp(0.75rem, 2vw, 1rem);
  text-transform: uppercase;
}

.only-awards {
  margin-top: 20px;
}

.founder {
  color: #ffbf00;
  font-weight: 700;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  padding: 30px;
  text-align: center;
  text-transform: uppercase;
}

.text-title {
  color: white;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  text-transform: uppercase;
}

.text-container h1 {
  text-align: center;
}

.text-container h2 {
  text-align: center;
  margin-top: 50px;
}

.text-container h3 {
  color: white;
  font-weight: 700;
  font-size: 2em;
  text-transform: uppercase;
  text-align: center;
}

.modal-prices {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.variant-price {
  padding: 10px 20px;
  border: 3px solid #ffb937;
  border-radius: 8px;
  color: #ffb937;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.75rem, 2vw, 1rem);
  background-color: transparent;
  cursor: default;
  transition: background-color 0.3s, color 0.3s;
  text-align: center;
  width: 100%;

  &:hover {
    background-color: #ffb937;
    color: #000;
  }
}

.text-container p {
  margin-top: 30px;
}

.section-separator {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-transform: uppercase;
  padding: 50px 20px;
  width: 100%;
  font-family: "Roboto Condensed";
  font-weight: 700;
  height: auto;
  background-image: url("../images/honeycomb.webp");
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
  overflow: hidden;
}

.section-separator img {
  object-fit: cover;
}

.section-separator h2 {
  color: black;
  font-size: clamp(1.5rem, 5vw, 3rem);
  font-family: "Montserrat";
  font-weight: 800;
}

.section-separator .title-products {
  font-size: clamp(2.5em, 6vw, 6em);
  font-family: "Montserrat";
  font-weight: 800;
  text-align: center;
  width: 100%;
}

.section-separator .product-paragraph {
  font-size: 2em;
  font-family: "Montserrat";
  font-weight: 800;
}

.section-separator p {
  font-size: 1.5em;
  text-transform: uppercase;
}

.team-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  height: auto;
  width: 100%;
  padding: 10px;
  overflow: hidden;
}

.founder-container,
.manager-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.founder-container {
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
}

.founder-image img {
  height: auto;
  max-width: 100%;
  padding: 40px;
  object-fit: cover;
}

.line-wrapper {
  width: 100%;
  height: 1px;
  background-color: #ffa500;
  position: relative;
}

.line-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 10px 0;
}

.line-notch {
  width: 50px;
  height: 5px;
  background-color: yellow;
  position: absolute;
  left: 50%; /* Center horizontally */
  transform: translateX(-50%);
  top: -2px;
}

.manager-image {
  width: 30%;
  margin-top: 30px;
}

.manager-image img {
  height: auto;
  width: 100%;
  object-fit: cover;
}

.about-section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding: 40px 20px;
  position: relative;
}

.about-image {
  width: 50%;
  height: auto;
  margin: 30px 0;
  display: flex;
  justify-content: center;
}

.about-image img {
  height: auto;
  max-width: 100%;
  padding: 30px;
  object-fit: cover;
}

.product-section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 100vh;
  padding: 40px 0;
  flex-wrap: wrap;
  margin: 30px 0;
  /* margin-top: 500px;
  margin-bottom: 50px; */
}

.products-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* ===== FEATURED PRODUCT CONTAINER ===== */
.featured-product-wrapper {
  position: relative;
  width: 100%;
  padding: 40px 20px;
  margin: 50px 0;
}

.featured-product {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 50px;
  background: linear-gradient(
    135deg,
    rgba(20, 20, 20, 0.9) 0%,
    rgba(0, 0, 0, 0.95) 100%
  );
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 191, 0, 0.3),
    0 0 50px rgba(255, 191, 0, 0.1) inset;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: all 0.5s ease;
}

.featured-product:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 191, 0, 0.5),
    0 0 70px rgba(255, 191, 0, 0.2) inset;
}

/* ===== GLOW EFFECT ===== */
.featured-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(255, 191, 0, 0.15) 0%,
    rgba(255, 191, 0, 0) 70%
  );
  z-index: 0;
  animation: pulse 6s infinite alternate;
}

@keyframes pulse {
  0% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 0.3;
  }
}

/* ===== ANIMATED BORDER ===== */
.featured-border-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    transparent,
    rgba(255, 191, 0, 0.2),
    transparent,
    transparent
  );
  background-size: 400% 100%;
  animation: borderFlow 8s linear infinite;
  z-index: 0;
  border-radius: 15px;
}

@keyframes borderFlow {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

.featured-product-content h3 {
  color: #fde74c;
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.featured-tagline {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 25px;
  font-style: italic;
}

.featured-description {
  color: #ffbf00;
  font-size: 1.1rem;
  line-height: 1.8;
  font-family: "Merriweather";
  font-weight: 700;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.accent1 {
  color: #fde74c;
  text-transform: uppercase;
  font-family: "Roboto Condensed";
  font-weight: 700;
}

.accent2 {
  color: #618b25;
  text-transform: uppercase;
  font-weight: 700;
}

/* ===== IMAGE STYLING ===== */
.featured-product-image {
  position: relative;
  flex: 1;
  min-width: 300px;
  padding: 30px;
  z-index: 1;
}

.featured-product-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border: 8px solid #ffbf00;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 191, 0, 0.3);
  transform: rotate(-2deg);
  transition: all 0.5s ease;
}

.featured-product:hover .featured-product-image img {
  transform: rotate(0deg) scale(1.02);
}

/* .image-reflection {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.05), transparent);
  transform: scaleY(-1);
  z-index: 2;
  opacity: 0.7;
} */

/* .btn-featured {
  background-color: transparent;
  color: #ffbf00;
  border: 2px solid #ffbf00;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-featured:hover {
  background-color: #ffbf00;
  color: #000;
  box-shadow: 0 0 20px rgba(255, 191, 0, 0.5);
} */

.product-images {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 40px 30px;
  gap: 10px;
}

.product-images img {
  width: 200px;
  height: 230px;
  object-fit: cover;
  border: 8px solid #ffa500;
}

.product-images h3 {
  text-align: center;
}

.product-images button {
  padding: 10px;
  background-color: transparent;
  border: 2px solid #ffbf00;
  color: #ffbf00;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: 700;
  border-radius: 200px;
  transition: all 0.5s ease;

  &:hover {
    background-color: #ffbf00;
    color: white;
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px); /* Apply blur effect */
  z-index: 10;
}

.modal {
  position: fixed;
  display: flex;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: black;
  padding: 2rem;
  border-radius: 8px;
  border: 8px solid #ffa500;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  max-width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  width: 100%;
  height: 100vh;
  z-index: 100;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.modal h3 {
  color: #ffbf00;
  font-weight: 700;
  font-size: clamp(1.25rem, 3vw, 2rem);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.modal-content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: auto;
  gap: 20px;
  overflow: auto;
}

.modal-text {
  flex: 1;
  font-size: clamp(0.875rem, 2vw, 1rem);
}

.modal-text p {
  margin-bottom: 1rem;
}

.text-modal {
  color: #ffbf00;
  font-weight: 700;
  font-size: 1em;
  text-transform: uppercase;
}

.modal-content img {
  max-width: 400px;
  height: auto;
  border: 8px solid #ffa500;
  object-fit: cover;
  cursor: pointer;
}

#product-modal.modal-award .modal-content img {
  width: 700px;
  height: auto;
}

#product-modal.modal-award .modal-content img.result {
  width: 470px;
}

.btn-close-container {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  position: absolute;
  top: 10px;
  right: 10px;
}

.btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  align-self: flex-end;
  background: none;
  border: none;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, background-color 0.2s ease;
  position: relative;

  &::before {
    content: "x";
    font-size: 1.5rem;
    color: grey;
    line-height: 1;
  }

  &:hover {
    background-color: #ffbf00;
    transform: scale(1.1);
  }
}

.award-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  margin: 30px 0;
}

.award-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 420px;
  margin: 40px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  &:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
}

.award-image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.award-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.award-hover-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 1.1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

.award-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.award-image-wrapper:hover::after {
  opacity: 1;
}

.award-image-wrapper:hover .award-hover-text {
  opacity: 1;
}

.award-content img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border: 8px solid #ffa500;
}

.award-content .result {
  height: auto;
}

.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-transform: uppercase;
  width: 100%;
  height: 100vh;
  padding: 20px;
  text-align: center;
}

.contact-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
  margin-top: 20px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  padding: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
}

.contact-item img {
  width: 24px;
  height: 24px;
}

.contact-item p {
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  margin-top: 100px;
  color: #ffbf00; /* Orange color for text */
}

.footer {
  background-color: #222020; /* Dark grey background */
  color: #fff; /* White text for contrast */
  text-align: center;
  padding: 50px 0;
  width: 100%; /* Full width */
  font-size: 18px;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.5);
  position: static; /* Allows it to appear at the bottom of the content */
}

.footer p {
  margin: 0;
  letter-spacing: 1px;
  font-family: "Roboto Condensed";
  font-size: clamp(0.875rem, 2vw, 1rem);
}

.hidden {
  display: none !important;
}

/* RESPONSIVE */

@media all and (max-width: 1400px) {
  .modal-prices {
    flex-direction: column;
    max-width: 400px;
  }
}

@media all and (max-width: 1200px) {
  .container {
    flex-direction: column;
    padding: 0 15px;
    margin-top: 60px;
    width: 100%;
    overflow-x: hidden;
  }

  .image-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
  }

  .modal-prices {
    gap: 30px;
    max-width: 900px;
    flex-direction: column;
  }

  .variant-price {
    font-size: 18px;
    padding: 15px 25px;
  }

  .about-adjust {
    margin: 100px auto;
  }

  .about-cnt2 {
    width: 100%;
    padding: 20px;
    margin: 0;
  }

  .about-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
  }

  .header img {
    height: 150px;
    object-fit: contain;
  }

  .links {
    margin-bottom: 5px;
  }

  .text-container h2 {
    margin-top: 20px;
  }

  .text-adjust {
    font-size: 1em;
  }

  .text-title {
    font-size: 25px;
  }

  .product-section {
    padding: 10px;
  }

  .section-separator {
    padding: 25px;
  }

  .section-separator h2 {
    font-size: 2.7em;
  }

  .founder-image {
    margin-top: 40px;
  }

  a {
    font-size: 11px;
  }

  .product-images {
    flex: 0 1 180px;
    margin: 5px;
  }

  #product-modal.modal-award .modal-content img.result {
    width: 400px;
  }
}

@media all and (max-width: 992px) {
  .text-adjust {
    font-size: 0.9em;
  }

  .modal-content img {
    width: 400px;
  }

  .modal-content {
    flex-direction: column-reverse;
  }

  #product-modal.modal-award .modal-content img.result {
    width: 300px;
  }
}

@media all and (max-width: 768px) {
  .container {
    flex-direction: column-reverse;
  }

  .text-container {
    width: 100%;
  }

  .text-container h1 {
    padding-top: 30px;
    font-size: 25px;
  }

  .modal-prices {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 700px;
  }

  .variant-price {
    flex: 1;
    min-width: 180px;
    max-width: 30%;
    font-size: 14px;
    padding: 10px 20px;
  }

  .text-container h2 {
    margin-top: 50px;
    font-size: 25px;
    margin-top: 35px;
  }

  .text-container p {
    text-align: center;
    padding: 15px;
  }

  .menu-toggle {
    display: flex;
  }

  /* Prevent content shift when menu opens */
  body.menu-open {
    overflow: hidden;
  }

  .links {
    display: none;
  }

  .links.active {
    display: flex;
  }

  .text-adjust {
    font-size: 0.85em;
  }

  .image-container img {
    height: 300px;
  }

  .text-modal {
    font-size: 0.8em;
  }

  .modal-content img {
    width: 270px;
  }

  .modal-content {
    flex-direction: column-reverse;
  }

  #product-modal.modal-award .modal-content img {
    width: 500px;
  }

  #product-modal.modal-award .modal-content img.result {
    width: 350px;
  }

  .about-section {
    flex-direction: column-reverse;
    height: auto;
    min-height: 100vh;
    padding: 40px 0;
  }

  .about-image img {
    height: 389px;
    padding: 2px;
  }

  .founder-container {
    flex-direction: column-reverse;
  }

  .line-container {
    width: 80%;
  }

  .manager-container {
    flex-direction: column-reverse;
  }

  .founder {
    font-size: 1em;
  }

  .contact-section h2 {
    font-size: 20px;
  }

  .contact-item p {
    margin-top: 65px;
  }

  .links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 0 10px;
    width: 100%;
    margin: 0;
  }

  .price-tag {
    font-size: 14px;
    border: 3px solid #ffbf00;
    padding: 8px;
  }

  .product-section {
    padding: 5px;
  }

  .product-images {
    flex: 0 1 160px;
  }

  .section-separator {
    padding: 25px 10px;
  }

  .featured-product {
    padding: 30px 20px;
    flex-direction: column;
  }

  .featured-product-content h3 {
    font-size: 2rem;
  }

  .featured-tagline {
    font-size: 1.2rem;
  }

  .featured-description {
    font-size: 1rem;
  }

  .featured-product-image img {
    max-width: 300px;
  }

  .featured-description {
    font-size: 1rem;
  }
}

@media all and (max-width: 600px) {
  .modal-content {
    flex-direction: column-reverse;
  }

  .text-modal {
    font-size: 0.8em;
  }

  .modal h3 {
    font-size: 1.7em;
  }

  .text-adjust {
    font-size: 0.8em;
  }

  .manager-image {
    width: 40%;
  }

  .contact-section h2 {
    font-size: 18px;
  }

  .about-image img {
    height: 361px;
    padding: 2px;
  }

  .price-tag {
    font-size: 13px;
    border: 3px solid #ffbf00;
  }

  #product-modal.modal-award .modal-content img {
    width: 380px;
  }

  #product-modal.modal-award .modal-content img.result {
    width: 350px;
  }
}

@media all and (max-width: 480px) {
  a {
    padding: 4px 8px;
  }

  .section-separator h2 {
    font-size: 2em;
  }

  .section-separator .title-products {
    font-size: 4em;
  }

  .text-adjust {
    font-size: 0.79em;
  }

  .modal-prices {
    gap: 15px;
    max-width: 400px;
  }

  .variant-price {
    font-size: 13px;
    padding: 6px 20px;
  }

  .about-image img {
    height: 293px;
  }

  .manager-image {
    width: 50%;
  }

  .contact-section h2 {
    font-size: 16px;
  }

  .price-tag {
    font-size: 12px;
  }

  .contact-item p {
    font-size: 16px;
  }

  .founder-image {
    width: 60%;
  }

  .founder-image .creator {
    padding: 0;
  }

  #product-modal.modal-award .modal-content img {
    width: 320px;
  }

  #product-modal.modal-award .modal-content img.result {
    width: 310px;
  }

  .featured-product h3 {
    font-size: 2.2rem;
  }

  .featured-tagline {
    font-size: 1rem;
  }

  .btn-featured {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media all and (max-width: 401px) {
  a {
    padding: 4px 3px;
    font-size: 9px;
  }

  .text-container h1 {
    padding-top: 20px;
    font-size: 22px;
  }

  .text-container h2 {
    font-size: 17px;
    margin-top: 25px;
  }

  .text-container p {
    margin-top: 15px;
  }

  .text-adjust {
    font-size: 0.77em;
  }

  .section-separator h2 {
    font-size: 1.5em;
  }

  .modal-content img {
    width: 180px;
    border: 5px solid #ffa500;
  }

  .modal-content {
    padding: 1rem;
  }

  .about-image img {
    height: 250px;
  }

  .founder {
    font-size: 0.8em;
  }

  .price-tag {
    font-size: 8.7px;
  }

  .award-content img {
    width: 100%;
    height: auto;
  }

  .award-content .resize {
    height: auto;
  }

  .award-content .result {
    height: auto;
  }

  .footer p {
    font-size: 0.8em;
  }

  .contact-item p {
    font-size: 11px;
    margin-top: 55px;
  }

  .contact-section h2 {
    font-size: 14px;
  }

  .product-images img {
    width: 158px;
    border: 6px solid #ffa500;
  }

  .manager-image {
    width: 60%;
  }

  .founder-image {
    width: 75%;
  }

  .contact-item img {
    height: 22px;
    width: 22px;
    object-fit: cover;
  }

  .modal {
    padding: 1rem;
    width: 90%;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .modal-product {
    height: 90vh;
  }

  .modal-award {
    height: 70vh;
  }

  .modal h3 {
    font-size: 1.25em;
  }

  .modal-text {
    font-size: 0.875em;
  }

  #product-modal.modal-award .modal-content img {
    width: 250px;
  }

  #product-modal.modal-award .modal-content img.result {
    width: 250px;
  }

  .section-separator .title-products {
    font-size: 4em;
  }

  .featured-product-wrapper {
    padding: 40px 8px;
  }
}
