/*-----------------------------------*\
 * #style.css
\*-----------------------------------*/

/**
 * copyright 2022 codewithsadee
 */





/*-----------------------------------*\
 * #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /**
   * colors
   */

  --middle-blue-green: hsl(105, 68%, 39%);
  --sonic-silver: hsl(0, 0%, 44%);
  --eerie-black: hsl(0, 0%, 9%);
  --ocean-green: hsl(148, 45%, 58%);
  --candy-pink: hsl(356, 65%, 63%);
  --cultured: #ece8e1;
  --white: #f8f5f0;
  --black: hsl(0, 0%, 0%);

  /**
   * typography
   */

  --ff-jost: "Jost", sans-serif;

  --fs-1: 2.5rem;
  --fs-2: 1.75rem;
  --fs-3: 1.625rem;
  --fs-4: 1.5rem;
  --fs-5: 1.375rem;
  --fs-6: 1.25rem;
  --fs-7: 1.125rem;
  --fs-8: 0.938rem;
  --fs-9: 0.875rem;
  --fs-10: 0.813rem;

  --fw-500: 500;
  --fw-600: 600;

  /**
   * transition
   */

  --transition-1: 0.25s ease;
  --transition-2: 0.75s ease;
  --cubic-out: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-in: cubic-bezier(0.33, 0.85, 0.56, 1.02);

  /**
   * spacing
   */

  --section-padding: 60px;

}





/*-----------------------------------*\
 * #RESET
\*-----------------------------------*/

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}

li { list-style: none; }

a { text-decoration: none; }

a,
img,
span,
input,
button,
ion-icon { display: block; }

input,
button {
  
  background: none;
  border: none;
  font: inherit;
}

button {
  text-align: left;
  cursor: pointer;
}

input {
  width: 100%;
  outline-color: var(--middle-blue-green);
}

img { height: auto; }

ion-icon { pointer-events: none; }

html {
  font-family: var(--ff-jost);
  color: var(--sonic-silver);
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  padding-block: 70px;
 
}





/*-----------------------------------*\
 * #REUSED STYLE
\*-----------------------------------*/

.container { padding-inline: 15px; }

a,
button { transition: var(--transition-1); }

h3 > a { color: inherit; }

.h1,
.h2,
.h3,
.h4 {
  color: white;
  font-weight: var(--fw-600);
}

.h1 {
  font-size: var(--fs-1);
  line-height: 1;
}

.h2 { font-size: var(--fs-2); }

.h3 { font-size: var(--fs-6); }

.h4 {
  font-size: var(--fs-7);
  font-weight: var(--fw-500);
}

.btn {
  background: var(--background, var(--eerie-black));
  color: var(--color, var(--white));
  font-weight: var(--fw-600);
  height: var(--height, 60px);
  padding-inline: 50px;
  border: 1px solid var(--border-color, var(--eerie-black));
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 10px #616464, 0 0 20px #f6f3f3, 0 0 30px #0e140a; 
}

.btn-primary:is(:hover, :focus) {
  background-color: #5cdd7e;
  --color: var(--eerie-black);
  border-color: #5cdd7e;
}

.btn-secondary {
  --height: 50px;
  --background: var(--white);
  --color: var(--eerie-black);
  --border-color: var(--white);
}

.btn-secondary:is(:hover, :focus) {
  --background: var(--eerie-black);
  --color: var(--white);
  --border-color: var(--eerie-black);
}

.btn-outline {
  --height: 50px;
  --background: var(--white);
  --color: var(--eerie-black);
  --border-color: var(--eerie-black);
  padding-inline: 40px;
}

.btn-outline:is(:hover, :focus) {
  --background: var(--eerie-black);
  --color: var(--white);
  --border-color: var(--eerie-black);
}

.section { padding-block: var(--section-padding); }

.w-100 { width: 100%; }

.section-title {
  text-align: center;
  margin-bottom: 30px;
}





/*-----------------------------------*\
 * #HEADER
\*-----------------------------------*/

.header-search { display: none; }

.header {
  position: absolute;
  top: 0;
  left: 0;
  background: rgb(219, 244, 219);
  width: 100%;
  padding-block: 20px;
  z-index: 4;
  transition: var(--transition-1);
}

.header.active {
  position: fixed;
  box-shadow: 0 2px 20px hsla(0, 0%, 0%, 0.1);
}

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

.nav-open-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}

.nav-open-btn span {
  width: 20px;
  height: 2px;
  background: var(--black);
  transition: var(--transition-1);
}

.nav-open-btn span:nth-child(2) {
  transform: scaleX(0.5);
  transform-origin: right;
}

.nav-open-btn:is(:hover, :focus) span:nth-child(2) { transform: scaleX(1); }

.header-actions {
  background: var(--white);
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 5px;
  padding-block: 16px 10px;
  box-shadow: 0 -2px 20px hsla(0, 0%, 0%, 0.1);
  z-index: 1;
}

.header-action-btn {
  position: relative;
  width: 50px;
  text-align: center;
}
.header-action-btn:hover {
  size: 1rem;
  color: #fff;
}
.header-action-btn ion-icon {
  margin-inline: auto;
  font-size: 22px;
  margin-bottom: 3px;
}

.header-action-label {
  color: var(--sonic-silver);
  font-size: var(--fs-10);
  transition: var(--transition-1);
}

.header-action-btn:is(:hover, :focus) .header-action-label { color: var(--eerie-black); }

.header-action-btn .btn-badge {
  position: absolute;
  top: -5px;
  right: 0;
  background: var(--background, var(--eerie-black));
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  line-height: 0;
  font-size: 13px;
  color: var(--white);
  border-radius: 50%;
}

.header-action-btn .btn-badge.green { --background: var(--middle-blue-green); }
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .hero-content {
    font-size: 0rem; /* Decrease font size for mobile screens */
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media only screen and (max-width: 576px) {
  .hero-content {
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
  }
}

.navbar {
  background: rgb(161, 193, 161);
  position: fixed;
  top: 0;
  right: -300px;
  max-width: 300px;
  width: 100%;
  height: 100%;
  padding: 30px 25px;
  z-index: 3;
  visibility: hidden;
  transition: 0.25s var(--cubic-out);
}

.navbar.active {
  visibility: visible;
  transform: translateX(-300px);
  transition: 0.5s var(--cubic-in);
}

.navbar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.about-image{
  flex: 0 0 calc(35% - 20px);
}
@media screen and (max-width: 768px) {
  .content-wrapper {
    flex-direction: column; /* Stack items vertically on smaller screens */
  }
}

.about-image img {
  width: 100%;
  height: auto;
  box-shadow: 0 0 10px #585a59, 0 0 20px #8b8d91, 0 0 30px #0e140a; 
  transition: opacity 0.5s ease; /* Adding transition for smooth effect */
}




.about {
  background-color: #c9eac1;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}
.main-content {
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.section {
  margin-bottom: 30px;
}
h1, h2 {
  color: #090a0b;
}
ul {
  list-style: none;
  padding: 0;
}
li {
  margin-bottom: 5px;
}
/* Responsive styles */
@media screen and (max-width: 1200px) {
  .team-member {
    flex: 0 0 calc(33.33% - 40px);
  }
}

@media screen and (max-width: 992px) {
  .team-member {
    flex: 0 0 calc(50% - 40px);
  }
}

@media screen and (max-width: 768px) {
  .team-member {
    flex: 0 0 calc(100% - 40px);
  }
}

.team-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.team-row {
  display: flex;
  justify-content: center;
  align-items: center;
}

.team-container {
  
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.team-member {
  width: calc(50% - 20px); /* Each member takes up 50% of the container width with margin */
  margin: 10px; /* Adjust margin as needed */
  text-align: center;
}
.team-avatar {
 
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 10px;
}
.team-info {
  color: #000000; /* Gray color */
  font-size: 18px; /* Adjust font size */
  margin-top: 10px; /* Add margin on top */
}

.team-name {
  font-size: 24px; /* Adjust font size */
  margin-bottom: 5px; /* Add margin at the bottom */
}

.team-role {
  color: #616464;
  font-family: sans-serif;
  font-weight: 300;
   /* Italicize the role */
}


.team-avatar:hover {
  box-shadow: 0 0 10px #515b54, 0 0 20px #f8f8f9, 0 0 30px #0e140a; 
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 10px;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%; /* Add border-radius to create a circular shape */
}


@media screen and (min-width: 768px) {
  .team-member {
    width: calc(33.33% - 20px); /* Each member takes up 33.33% of the container width with margin */
  }
}



.nav-close-btn ion-icon { font-size: 23px; }

.navbar-link {
  padding-block: 10px;
  color: var(--eerie-black);
}

.navbar-list > li:not(:last-child) { border-bottom: 1px solid var(--cultured); }

.overlay {
  position: fixed;
  inset: 0;
  background: var(--black);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-1);
  z-index: 2;
}

.overlay.active {
  opacity: 0.7;
  pointer-events: all;
}









/*-----------------------------------*\
 * #HERO
\*-----------------------------------*/

/* Default styles */
.hero {
  background-color: rgb(252, 249, 249);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
  width: calc(100% - 70px); /* Decrease width by 70px to add 35px margin on each side */
  min-height: 10vh; /* Decrease height to 10% of the viewport height */
  display: flex;
  align-items: center;
  margin: 0 auto; /* Add margin to center the hero section horizontally */
  margin-left: 35px; /* Add margin from the left side */
  margin-right: 35px; /* Add margin from the right side */
}

.hero .container { 
  width: 100%; 
}

.hero-subtitle {
  color: rgb(14, 106, 57);
  font-size: 2rem;
  font-weight: var(--fw-600);
  margin-bottom: 20px;
  font-family: Arial, sans-serif; /* Use fallback font */
}

.hero-title {
  margin-bottom: 20px;
  max-width: 0; /* Remove max-width */
  font-size: 5rem;
}

/* Media queries for responsiveness */
/* Media queries for responsiveness */
@media (max-width: 768px) {
  .hero {
    width: 100%; /* Full width on smaller screens */
    margin-left: 0; /* Remove left margin */
    margin-right: 0; /* Remove right margin */
    padding: 0 15px; /* Add padding */
    margin-top: 120px; /* Decrease margin from the top for mobile devices */
  }
  
  .hero-title {
    font-size: 1rem; /* Decrease font size for smaller screens */
    margin-left: 120px; /* Move the title slightly to the left */
  }
  
  .hero-subtitle {
    font-size: 0.5rem; /* Decrease font size for smaller screens */
    margin-top: 20px; /* Move the subtitle slightly above */
  }
  .btn {
    display: none;
}
}






/*-----------------------------------*\
 * #SERVICE
\*-----------------------------------*/

.service { padding-block: 45px; }

.service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.service-item {
  max-width: 235px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}

.service-item-icon { width: 45px; }

.service-item-icon img { margin-inline: auto; }

.service-item-title {
  color: var(--eerie-black);
  font-size: var(--fs-7);
  font-weight: var(--fw-600);
}





/*-----------------------------------*\
 * #CATETORY
\*-----------------------------------*/

.category { padding-top: 0; }

.category-list {
  
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.category-item {
  
  
  width: 100%;
  position: relative;
}

.category-banner {
  
  
  background: var(--cultured);
  aspect-ratio: 2 / 2.35;
  overflow: hidden;
}

.category-banner img {
  
  height: 100%;
  object-fit: cover;
  transition: var(--transition-2);
}

.category-item:hover .category-banner img { transform: scale(1.05); }
.category-item .btn {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  padding: 10px 30px; /* Adjust padding for better responsiveness */
}

@media screen and (max-width: 768px) {
  .category-item .btn {
    bottom: 15px; /* Adjust bottom spacing */
    padding: 8px 20px; /* Adjust padding for smaller screens */
  }
}

@media screen and (max-width: 480px) {
  .category-item .btn {
    bottom: 10px; /* Further adjust bottom spacing */
    padding: 6px 15px; /* Further adjust padding for smaller screens */
  }
}





/*-----------------------------------*\
 * #PRODUCT
\*-----------------------------------*/

.filter-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 20px;
  margin-bottom: 50px;
}

.filter-btn {
  color: inherit;
  font-size: var(--fs-7);
  font-weight: var(--fw-500);
}

.filter-btn.active { color: var(--eerie-black); }

.product-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px 25px;
  margin-bottom: 60px;
}

.product-card .card-banner {
  position: relative;
  margin-bottom: 20px;
}

.product-card .card-badge {
  background: var(--eerie-black);
  color: var(--white);
  position: absolute;
  top: 0;
  left: 0;
  font-size: var(--fs-9);
  font-weight: var(--fw-500);
  padding: 3px 10px;
}

.product-card .card-badge.red { background: var(--candy-pink); }

.product-card .card-badge.green { background: var(--ocean-green); }

.product-card .card-actions {
  display: flex;
  height: 45px;
}

.product-card .card-action-btn {
  border: 1px solid var(--cultured);
  width: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--eerie-black);
}

.product-card .card-action-btn:is(:hover, :focus) { border-color: var(--eerie-black); }

.product-card .cart-btn {
  flex-grow: 1;
  background: var(--eerie-black);
  color: var(--white);
  border-color: var(--eerie-black);
}

.product-card .cart-btn:is(:hover, :focus) {
  background: var(--white);
  color: var(--eerie-black);
}

.product-card .card-action-btn ion-icon { font-size: 20px; }

.product-card .card-title { margin-bottom: 5px; }

.product-card .card-price {
  color: var(--eerie-black);
  font-size: var(--fs-8);
  font-weight: var(--fw-500);
}

.product-card .card-price data:not(:first-child) {
  color: var(--sonic-silver);
  margin-left: 5px;
  text-decoration: line-through;
}

.product .btn { margin-inline: auto; }





/*-----------------------------------*\
 * #BLOG
\*-----------------------------------*/

.blog .section-title { margin-bottom: 40px; }

.blog-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
}

.blog-card .card-banner {
  background: var(--cultured);
  aspect-ratio: 2 / 1.37;
  overflow: hidden;
  margin-bottom: 25px;
}

.blog-card .card-banner img {
  height: 100%;
  object-fit: cover;
  transition: var(--transition-2);
}

.blog-card:hover .card-banner img { transform: scale(1.05); }

.blog-card .card-content { padding-inline: 20px; }

.blog-card .card-meta-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-bottom: 10px;
}

.blog-card .card-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-card .card-meta-item ion-icon {
  font-size: 17px;
  --ionicon-stroke-width: 30px;
}

.blog-card .card-meta-link {
  color: inherit;
  font-size: var(--fs-9);
  font-weight: var(--fw-500);
  text-transform: uppercase;
}

.blog-card .card-meta-link:is(:hover, :focus) { color: var(--eerie-black); }

.blog-card .card-title {
  line-height: 1.4;
  text-align: center;
}





/*-----------------------------------*\
 * #NEWSLATTER
\*-----------------------------------*/

.contact { padding-bottom: 120px; }

.contact-card {
  max-width: 1000px; /* Set maximum width */
  margin: 0 auto; /* Center the card horizontally */
  box-shadow: 0 0 10px #eeefee, 0 0 20px #8b8d91, 0 0 30px #0e140a;  /* Reduced and simplified box-shadow */
  background-color: rgb(213, 229, 213);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left; /* Adjusted background position */
  padding: 80px 15px; /* Reduced padding */
  text-align: center;
}



.contact-card .card-title {
  color: var(--eerie-black);
  font-size: var(--fs-3);
  font-weight: var(--fw-500);
  line-height: 1.2;
  margin-bottom: 30px;
}
.message-wrapper {
  margin-bottom: 40px; /* Added margin-bottom to provide additional spacing */
  display: flex; /* Use flexbox for layout */
  align-items: center; /* Center items vertically */
}

.message-icon {
  font-size: 18px; /* Adjust icon size if needed */
  margin-right: 10px; /* Add spacing between icon and text */
}

.contact-card .card-text { margin-bottom: 30px; }

.contact-card .input-wrapper {
  position: relative;
  margin-bottom: 20px;
}

.contact-card .input-field {
  box-shadow: 0 0 10px #eeefee, 0 0 20px #8b8d91, 0 0 30px #0e140a; 
  background: var(--white);
  height: 60px;
  padding-inline: 70px 30px;
  border-radius: 10px;
  
}

.contact-card .input-wrapper ion-icon {
  font-size: 18px;
  position: absolute;
  top: 50%;
  left: 25px;
  transform: translateY(-50%);
}

.contact-card .btn-wrapper {
  margin-top: 0px; /* Adjust the spacing between the input field and the button */
}

.contact-card .btn {
  
  gap: 20px;
  width: max-content;
  padding-inline: 35px;
  border-radius: 0 6px 6px 0;
  position: relative; /* Add relative positioning */
  top: auto; /* Reset top position */
  right: auto; /* Reset right position */
  margin-top: 20px; /* Add margin-top to move the button below the email input */
}






/*-----------------------------------*\
 * #FOOTER
\*-----------------------------------*/

.footer-top {
  background: rgb(193, 227, 193);
  padding-block: var(--section-padding);
}

.footer-top .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer .logo { margin-bottom: 20px; }

.footer-text {
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.social-link {
  color: var(--eerie-black);
  font-size: 18px;
  width: 35px;
  height: 35px;
  border: 1px solid var(--sonic-silver);
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.social-link:is(:hover, :focus) {
  background: var(--eerie-black);
  color: var(--white);
  border-color: var(--eerie-black);
}

.footer-list { width: 100%; }

.footer-list-title {
  color: var(--eerie-black);
  font-size: var(--fs-5);
  font-weight: var(--fw-600);
  margin-bottom: 15px;
}

.footer-link {
  position: relative;
  color: inherit;
  padding-block: 5px;
}

.footer-link:is(:hover, :focus) {
  color: var(--eerie-black);
  transform: translateX(15px);
}

.footer-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -15px;
  transform: translateY(-50%) scale(var(--scale, 0));
  transform-origin: right;
  background: var(--sonic-silver);
  width: 10px;
  height: 2px;
  transition: var(--transition-1);
}

.footer-link:is(:hover, :focus)::before { --scale: 1; }

.footer-bottom { padding-block: 20px; }

.footer-bottom a { color: inherit; }

.copyright {
  margin-bottom: 15px;
  text-align: center;
}

.copyright a {
  display: inline-block;
  color: var(--eerie-black);
  font-weight: var(--fw-600);
}

.footer-bottom-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 5px 15px;
  margin-bottom: 15px;
}

.footer-bottom-link:is(:hover, :focus) { color: var(--eerie-black); }

.payment {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
}





/*-----------------------------------*\
 * #MEDIA QUARIES
\*-----------------------------------*/

/**
 * responsive for larger than 480px screen
 */

@media (min-width: 480px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 3rem;
    --fs-2: 2rem;

  }



  /**
   * CATEGORY
   */

  .category-list > li { width: calc(50% - 15px); }



  /**
   * PRODUCT
   */

  .product-list > li { width: calc(50% - 12.5px); }



  /**
   * FOOTER
   */

  .footer-brand { width: 100%; }

  .footer-text { max-width: 470px; }

  .footer-list { width: calc(50% - 20px); }

}





/**
 * responsive for larger than 580px screen
 */

@media (min-width: 580px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 3.75rem;
    --fs-2: 2.375rem;
    --fs-3: 2.25rem;

  }



  /**
   * REUSED STYLE
   */

  .container {
    max-width: 550px;
    margin-inline: auto;
  }

}





/**
 * responsive for larger than 768px screen
 */

@media (min-width: 768px) {

  /**
   * REUSED STYLE
   */

  .container { max-width: 700px; }



  /**
   * HERO
   */

  /* .hero {
    background-position: center;
    min-height: 800px;
  } */



  /**
   * BLOG
   */

  .blog-list > li { width: calc(50% - 15px); }



  /**
   * contact
   */

   .contact-card > * {
    max-width: 380px; /* Decreased width to 380px */
    margin-inline: auto;
  }
  
  .message-wrapper {
    margin-bottom: 40px; /* Added margin-bottom to provide additional spacing */
  }
  
  .contact-card .card-form {
    position: relative;
  }
  
  .contact-card .input-wrapper {
    margin-bottom: 20px; /* Adjusted margin to provide more space */
  }
  
  .input-field.message-input {
    height: 100px; /* Set the height of the input field to 3 lines (assuming each line is 40px) */
  }
  
  .message-icon {
    font-size: 18px; /* Adjust icon size if needed */
    margin-right: 10px; /* Add spacing between icon and text */
  }
  
  .contact-card .btn {
    position: relative; /* Change position to relative */
    width: max-content;
    padding-inline: 35px;
    border-radius: 0 6px 6px 0;
    margin-top: 20px; /* Add margin-top to separate from input fields */
  }
  
  



  /**
   * FOOTER
   */

  .footer-list { width: calc(33.33% - 26.66px); }

  .copyright,
  .footer-bottom-list { margin-bottom: 0; }

  .footer-bottom .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 25px 50px;
  }

}





/**
 * responsive for larger than 992px screen
 */

@media (min-width: 992px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 5rem;

  }



  /**
   * RESET
   */

  body { padding-block: 0; }



  /**
   * REUSED STYLE
   */

  .container { max-width: 950px; }



  /**
   * HEADER
   */

  .header {
    position: relative;
    padding-block: 15px;
    border-bottom: 1px solid hsla(0, 0%, 0%, 0.1);
    margin-bottom: 67px;
  }

  .header.active {
    position: relative;
    box-shadow: none;
  }

  .header .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
  }

  .header-search {
    display: block;
    position: relative;
    width: max-content;
  }

  .header-search .input-field {
    border: 1px solid hsla(0, 0%, 0%, 0.1);
    width: 280px;
    padding: 12px 30px;
    border-radius: 6px;
    transition: var(--transition-1);
  }

  .header-search .input-field:focus { outline: 1px solid var(--eerie-black); }

  .header-search .search-btn {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--eerie-black);
  }

  .header-search .search-btn ion-icon { --ionicon-stroke-width: 30px; }

  .header .logo { margin-inline: auto; }

  .nav-open-btn,
  .header-action-btn:nth-child(2),
  .navbar-top,
  .overlay { display: none; }

  .header-actions {
    all: unset;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
  }

  .navbar {
    all: unset;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    width: 100%;
    height: 70px; /* Adjust the height to your desired value */
    background: rgb(69, 165, 80);
}


  .header.active .navbar {
    position: fixed;
    top: 0;
    box-shadow: 0 2px 20px hsla(0, 0%, 0%, 0.1);
  }

  .navbar-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }

  .navbar-list > li:not(:last-child) { border-bottom: none; }

  .navbar-link {
    font-size: var(--fs-7);
    font-weight: var(--fw-500);
    padding-block: 20px;
  }

  .navbar-link:is(:hover, :focus) { color: rgb(221, 238, 231); }



  /**
   * CATEGORY
   */

  .category-list > li:not(:first-child, :nth-child(2)) { width: calc(25% - 22.5px); }



  /**
   * PRODUCT
   */

  .product-list > li { width: calc(33.33% - 16.66px); }

  .product-card .card-actions {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    transform: translateY(100px);
    visibility: hidden;
    transition: var(--transition-1);
  }

  .product-card .card-banner { overflow: hidden; }

  .product-card .card-banner:hover .card-actions {
    visibility: visible;
    transform: translateY(0);
  }

  .product-card .card-action-btn:first-child { border-radius: 6px 0 0 6px; }

  .product-card .card-action-btn:last-child { border-radius: 0 6px 6px 0; }



  /**
   * BLOG
   */

  .blog-list > li { width: calc(33.33% - 20px); }



  /**
   * contact
   */

  .contact-card .card-form { max-width: 650px; }

}





/**
 * responsive for larger than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 6.25rem;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 1150px; }



  /**
   * HEADER
   */

  .header-search .input-field { width: 350px; }



  /**
   * PRODUCT
   */

  .product-list > li { width: calc(25% - 18.75px); }



  /**
   * FOOTER
   */

  .footer-brand { width: calc(40% - 30px); }

  .footer-text { max-width: 340px; }

  .footer-list { width: calc(20% - 30px); }

  .footer-bottom .container { justify-content: space-between; }

}