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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, "Times New Roman", Arial, sans-serif;
  margin: 0 auto;
}

img {
  width: 10rem;
}

p {
  line-height: 1.7rem;
}

a {
  text-decoration: none;
}

a:visited {
  color: #086d40;
}

header {
  height: 8rem;
  width: 100%;
  display: flex;
  position: fixed;
  justify-content: space-between;
  align-items: center;
  background-color: #c1e6a7;
  z-index: 10;
  top: 0;
}

#header-logo {
  margin: 3rem;
  max-width: 120px;
  height: auto;
}

#header-logo:hover {
  background-color: transparent;
  transform: none;
}


.header-ul {
  list-style-type: none;
  padding: 4rem;
  margin: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
}

.header-li {
  /* position: relative; */
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-direction: row-reverse; 
}

.header-li .icon {
  display: inline-block;
  width: 1rem;
  height: auto;
  margin: 0;
}

.mobile-icon {
  width: 1.2rem;
  height: auto;
  margin-right: 0.5rem;
}

.header-a {
  text-decoration: none;
  color: #086d40;
  font-size: 1.1rem;
  padding: 10px;
  display: inline-block;
  position: relative;
}

.header-a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #024b41;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.header-a:hover::after {
  visibility: visible;
  width: 100%;
}

a:hover {
  color: #0f8d7c;
}

.icon {
  width: 1rem;
  margin-left: 0.5rem;
}

.current-page {
  color: #024b41;
}

.current-page::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #024b41;
  visibility: visible;
}

.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  box-sizing: border-box;
  position: relative;
  margin: 2rem;
}

/* De tre linjerna */
.hamburger-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #333333;
  border-radius: 3px;
  position: absolute;
  transition: all 0.3s ease-in-out;
}

/* Positionering av linjerna */
.hamburger-btn span:nth-child(1) {
  top: 0;
}

.hamburger-btn span:nth-child(2) {
  top: 10px;
}

.hamburger-btn span:nth-child(3) {
  top: 20px;
}

/* När knappen är aktiv (kryssläge) */
.hamburger-btn.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0; /* Dölj mittenlinjen */
}

.hamburger-btn.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 10px;
}

#mobile-links {
  background-color: #c1e6a7;
  flex-direction: column;
  padding: 3rem 0;
  position: absolute;
  top: 8rem;
  left: 0;
  width: 100%;
  z-index: 10;
  align-items: center;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.2s ease;
}

#mobile-links li {
  text-align: center;
  margin: 1rem 0;
  list-style: none;
}

#mobile-links li a {
  text-decoration: none;
  font-size: 1.5rem;
  color: #086d40;
}

#mobile-links li a:hover {
  color: #086d40;
}

#mobile-links.active {
  opacity: 1;
  visibility: visible;
}
#desktop-links {
  display: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
}

#breadcrumbs-vers2 {
  margin: 2rem 0 0rem;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  color: #000000;
  margin: 9rem 0 -7rem;
  padding: 0.5rem 4rem;
  z-index: 10;
}

.breadcrumbs p,
.breadcrumb-heading {
  margin: 0;
  font-weight: bold;
  color: #333;
}

.breadcrumbs .breadcrumb-heading {
  font-size: 1.1rem;
  margin: 0;
  display: inline;
}

.breadcrumbs a, .breadcrumbs strong{
  text-decoration: none;
  color: #086d40;
  margin: 0 0.5rem;
  position: relative;
  z-index: 1;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

h1,
#hero-section h1 {
  text-align: center;
  font-size: 6rem;
  font-weight: normal;
  color: #086d40;
}

.main-heading,
.welcome-section h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: normal;
  color: #086d40;
  margin-bottom: -2rem;
}

/* Welcome section container for Page Home & Portfolio */
/* Video banner for Home page */

#video-banner {
  width: 100%;
  max-height: 43rem;
  position: relative;
  overflow: hidden;
  margin-top: 8rem;
  margin-bottom: 6rem;
}

#video-banner video {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
}

#banner {
  width: 100%;
  height: auto;
  margin-top: 8rem;
  object-fit: cover;
}

#banner img {
  width: 100%;
}

.welcome-section {
  max-width: 62ch;
  text-align: left;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.welcome-section p {
  font-size: 1.2rem;
  padding-top: 3rem;
  line-height: 1.8;
  color: #333333;
}

/* Button group container */
.button-group {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-top: 2rem;
}

button {
  all: unset;
  display: inline-block;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 5rem;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
}

.action-button {
  width: 16rem;
  height: 4rem;
  font-size: 1.5rem;
}

.shop-button {
  background-color: white;
  color: #086d40;
  border: 2px solid #086d40;
}

.about-button {
  background-color: #086d40;
  color: white;
  border: 2px solid #086d40;
}

.about-button:hover {
  background-color: #0a7540;
  color: white;
}

.shop-button:hover {
  background-color: #086d40;
  color: white;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: auto;
  gap: 20px;
  padding-top: 4rem;
}

.best-sellers {
  display: grid;
  grid-template-columns: repeat(3, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  justify-content: center;
}

.best-image {
  width: 100%;
  height: auto;
  max-width: 400px;
}

/* Styling for Home-page footer */
footer {
  text-align: center;
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.footer-line {
  border-top: 2px solid #c1e6a7;
  margin-bottom: 20px;
  width: 80%;
  margin: 0 auto 20px auto;
  padding-bottom: 2rem;
}

.social-icons a {
  display: inline-block;
  text-align: center;
  line-height: 40px;
  margin: 0 5px;
  font-size: 20px;
}

.social-icons img {
  width: 2rem;
  color: #02796a;
}

/* Styling for "Illustration" --------------------------------------------------------------------------------------------------------------------*/
.illustration-gallery {
  display: flex;
  justify-content: space-between;
  padding: 0 50px;
  margin: 20px 0;
  position: relative;
  z-index: 1;
  gap: 0;
}

.image-container {
  flex: 1;
  position: relative;
  overflow: hidden;
  /* max-width: 50%; Ger varje container exakt 50% av utrymmet */
  box-sizing: border-box;
  width: 100%;
  max-width: 70%;
  margin: 0 auto;
}

.gallery-image {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.5s ease;
  cursor: pointer;
}

.image-container h2 {
  margin-top: 1rem;
  font-weight: inherit;
  font-size: 2rem;
  color: #02796a;
  margin-bottom: 1rem;
}

.gallery-image:hover {
  opacity: 0.6;
}

/* Styling for "About-page"
--------------------------------------------------------------------------------------------------------------------*/
#hero-section {
  position: relative;
  height: auto;
  text-align: center;
}

.hero-image {
  width: 100%;
  height: auto;
  margin-top: 8rem;
}

.about-text h2,
.developer-container h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: normal;
  color: #086d40;
  margin-bottom: 2rem;
}

/* Centraliserad text */
#about-description {
  text-align: left;
  padding: 2rem 2rem;
}

#about-description p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 2rem;
  color: #333333;
}

#about-page {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 10rem 2rem 2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.character-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.character-section.reverse {
  flex-direction: row-reverse;
}

.character-section .text {
  max-width: 500px;
}

.character-section h2 {
  font-size: 2rem;
  color: #02796a;
}

.character-section hr {
  border: 0;
  border-top: 2px solid #02796a;
  margin: 1rem 0;
}

.character-section p,
.developer-container p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333333;
}

.developer-container p{
  text-align: left;
}

.character-section img {
  width: 100%; /*Before was 40%*/
  height: auto;
}

/* Standard layout (stora skärmar) */
.three-illustration {
  display: flex;
  margin-top: 8rem;
  margin-bottom: 8rem;
  justify-content: center;
}

.three-illustration img {
  width: 100%;
  max-width: 30rem;
  height: auto;
}

.image-row {
  display: flex;
  justify-content: center;
}

#space-between,
#illustartion-three-row {
  margin-bottom: 4rem;
}

.visibal-items {
  display: none;
}

.developer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 2rem auto;
  padding: 2rem;
  max-width: 50ch;
  gap: 1rem;
}

.developer-container picture {
  max-width: 100%;
}

.developer-image {
  width: 100%;
  max-width: 90ch;
  height: auto;
}

/* Styling for "Commission" 
---------------------------------------------------------------------------------------------------------------- */
#commission-hero {
  background-color: #c1e6a7;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#commission-hero .hero-content h1 {
  font-size: 3rem;
  color: #02796a;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

#commission-hero .hero-content p {
  font-size: 1.5rem;
  color: #048776;
  margin-top: 1rem;
}

/* Hero Section Styling */
#commission-hero {
  background-color: #c1e6a7;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#commission-hero .hero-content p {
  font-size: 1.5rem;
  color: #048776;
  margin-top: 1rem;
}

/* Form Section Styling */
#commission-form {
  padding: 2rem;
}

.form-container {
  max-width: 45rem;
  margin: 0 auto;
  padding: 2rem;
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
  text-align: center;
  color: #048776;
  margin-bottom: 1.5rem;
}

.form-container label {
  display: block;
  margin: 1rem 0 0.5rem;
  font-weight: bold;
}

.form-container input[type="text"],
.form-container input[type="email"],
.form-container textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

/* Fieldset Styling */
form fieldset {
  margin: 1.5rem 0;
  border: 1px solid #ddd;
  padding: 1rem;
  border-radius: 0.5rem;
}

form legend {
  font-weight: bold;
  color: #02796a;
}

form label input {
  margin-right: 0.5rem;
}

/* Submit Button */
.submit-btn, 
.contact-form button {
  padding: 0.8rem;
  background-color: #02796a;
  color: #fff;
  border: none;
  border-radius: 4.5rem;
  cursor: pointer;
  font-size: 1.5rem;
}

.submit-btn {
  width: 100%;
}

.submit-btn:hover,
.contact-form button:hover {
  transform: scale(1.05);
  transition: 0.3s;
  background-color: #048776;
}

#terms-and-conditions-section {
  max-width: 45rem;
  margin: 3rem auto;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  line-height: 1.8;
}

#terms-and-conditions-section .h2-center,
#shopping-items h2,
#product-video h2 {
  font-size: 2.5rem;
  color: #02796a;
  margin-bottom: 1.5rem;
  text-align: center;
}

#terms-and-conditions-section h2 {
  font-size: 1.8rem;
  color: #048776;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

#terms-and-conditions-section h3 {
  font-size: 1.5rem;
  color: #333;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

#terms-and-conditions-section p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

#terms-and-conditions-section ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

#terms-and-conditions-section ul li {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 0.8rem;
}

/* Checkbox Styling */
#terms-and-conditions-section label {
  display: block;
  font-weight: bold;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: #048776;
}

#terms-and-condition {
  transform: scale(1.2);
  margin-right: 0.5rem;
}

#deadline-fieldset label {
  font-weight: bold;
  color: #555;
  display: block;
  margin-bottom: 0.5rem;
}

#deadline-date {
  padding: 0.5rem;
  border: 2px solid #ccc;
  border-radius: 0.3rem;
  font-size: 1rem;
  width: 50%;
  max-width: 200px;
  text-align: center;
  margin-bottom: 1rem;
}

#deadline-fieldset button {
  background-color: #02796a;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 0.3rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#deadline-fieldset button:hover {
  background-color: #048776;
}

#deadline-output {
  margin-top: 1rem;
  font-size: 1rem;
  color: #048776;
}

#artworks-examples {
  padding: 1.5rem;
  background-color: #ffffff;
  border-radius: 0.5rem;
  text-align: center;
}

#artworks-examples img {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin-bottom: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
}

/* Styling for "Shop-page" ------------------------------------------------------------------------------------------------------------------------------- */
.cart-wrapper {
  position: relative;
  display: inline-block;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #B3000F; 
  color: #ffffff;
  font-size: 12px;
  font-weight: bold;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5em;
  visibility: hidden; /* Hidden the empty cart */
}

#shop-page header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #c1e6a7;
  z-index: 1000;
}

/* General layout for container and sidebar */
#shop-page .container {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 20px;
  margin-top: 120px;
  align-items: start;
}

/* Only for shop page */
#shop-page body {
  margin: 0;
  padding: 0;
}

/* General layout for container and sidebar */
.container {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 20px;
}

/* Sidebar styling */
#the-sidebar-nav {
  background-color: #fdf8e3;
  padding: 3rem;
  margin-top: 3rem;
  border-radius: 0rem 10rem 10rem 0;
}

#the-sidebar-nav h2 {
  font-size: 1.5rem;
  margin-left: -2rem;
}

#the-sidebar-nav .sidebar-content {
  list-style-type: none;
  padding: 0;
}

#the-sidebar-nav .sidebar-content li {
  margin-bottom: 2rem;
  margin-top: 2rem;
  font-size: 1.1em;
}

#the-sidebar-nav .sidebar-content a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

#the-sidebar-nav .sidebar-content a:hover {
  color: #048776;
}

/* Video for the Products styling */
#page-buyproducts {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: 2rem;
}

#page-buyproducts h1 {
  grid-row: 1;
  text-align: center;
  margin-bottom: 1rem;
}

#product-video {
  grid-row: 2;
  text-align: center;
  margin-bottom: 2rem;
}

#product-video video {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #f9f9f9;
  border: 1px solid #c1e6a7;
}

/* Product grid styling */
.grid-products-container {
  display: grid;
  grid-template-columns: 1fr;
}

/* Product grid */
.product-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

/* Product card */
.product-card {
  background-color: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.product-card img {
  width: 100%;
  /* height: 50%;  */
  object-fit: cover;
  border-radius: 5px 5px 0 0;
}

.product-card h2 {
  font-size: 1.2em;
  color: #048776;
  margin: 15px 0 10px 0;
}

.product-card h3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

a picture img {
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}

a picture img:hover {
  background-color: #f3f3f3;
  transform: scale(1.05);
}

/* Button styling */
.buy-now-btn {
  background-color: #086d40;
  color: white;
  padding: 1rem;
  border: none;
  cursor: pointer;
  border-radius: 4rem;
  font-size: 1.5rem;
  margin-top: auto;
}

.buy-now-btn:hover {
  background-color: #0b8950;
}

#page-buyproducts {
  max-width: 80%;
  position: relative;
  background-color: #fdf6e3;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-bottom: 30px;
  text-align: left;
  z-index: 1;
}

/* Background image */
#page-buyproducts::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/BlindBox_ArtPrint.jpg"); /* Fallback for older web browser */
  background-size: 100% auto;
  background-position: top;
  background-repeat: no-repeat;
  opacity: 0.3;
  border-radius: 15px;
  z-index: -1;
}

@supports (background-image: url("../images/BlindBox_ArtPrint.webp")) {
  #background-image {
    background-image: url("../images/BlindBox_ArtPrint.webp");
  }
}

#page-buyproducts h1 {
  font-size: 2.5em;
  color: #086d40;
  margin-bottom: 20px;
  font-weight: bold;
}

#page-buyproducts p {
  font-size: 1.1em;
  color: #333;
}

#page-buyproducts {
  border: 3px dashed #c1e6a7;
  margin: 3rem 2rem;
}

/* Styling for the Main Content Section */
#shopping-items {
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-price1 {
  font-size: 1.5rem;
  font-weight: bold;
  padding-bottom: 2rem;
}

.paragraph-margin {
  margin: 10px 0;
  margin-bottom: 1.5rem;
}

/* Footer styling in "Shop-page" */
#the-shop-footer {
  background-color: #c1e6a7;
  padding: 4rem 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: left;
  width: calc(100%);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
  padding: 1rem;
}

.footer-left ul {
  list-style-type: none;
  padding: 0;
}

.footer-left ul li {
  margin-bottom: 1rem;
}

.footer-left a,
.footer-center a,
.footer-center p,
.footer-right a {
  color: #086d40;
  text-decoration: none;
}

.footer-left a:hover,
.footer-center a:hover,
.footer-right a:hover {
  text-decoration: underline;
}

.social-icons-shop {
  display: flex;
  gap: 1rem;
  justify-content: left;
}

.social-icons-shop img {
  width: 30px;
  transition: opacity 0.3s;
}

.social-icons-shop img:hover {
  opacity: 1;
}

footer h3 {
  color: #086d40;
  margin-bottom: 1rem;
  font-weight: bold;
}

#notify {
  width: 100%;
  height: 0;
  line-height: 60px;
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: #026457;
  color: white;
  text-align: center;
  transition: height 1s;
  z-index: 9999;
}

#notify p {
  margin: 0;
  display: inline-block;
}

#notify.visible {
  height: 60px;
}

.checkout-inline {
  display: none;
}

.clicked {
  visibility: hidden;
}

#small-basket-container {
  background-color: #c1e6a7;
  border-radius: 10px;
  padding: 2rem;
  width: 18rem;
  margin: 1rem auto;
  text-align: center;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.checkout-button.submit-order {
  background-color: #086d40;
  color: white;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  border-radius: 2rem;
  border: 2px solid #086d40;
  margin-top: 2rem;
  cursor: pointer;
  list-style-type: none;
}

.checkout-button.submit-order:hover {
  background-color: #024b41;
}

#basket-holder li {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: bold;
}

#chibi-section {
  text-align: center;
}

#chibi-section img {
  max-width: 100%;
  width: 100ch;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Styling for the page "CART" -------------------------------------------------------------------------- */
.content-wrapper {
  margin-top: 14rem;
  margin-bottom: 8rem;
}

/* Shopping cart styles */
.shopping-cart {
  margin: 2rem auto;
  max-width: 50rem;
  font-size: 1.1rem;
}

.shopping-cart h1 {
  margin-bottom: 2rem;
  font-size: 4rem;
  color: #086d40;
  text-align: left;
}

.shopping-cart table td.checkout-sum {
  text-align: right;
  font-weight: bold;
  padding-right: 1rem;
}

.cart-container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  font-size: 1.1rem;
}

.cart-container .summary {
  flex: 1;
  text-align: center;
  background-color: #fdf6e3;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  max-height: 36ch;
}

.shopping-cart table {
  flex: 2;
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  display: block;
}

.shopping-cart table th,
.shopping-cart table td {
  border-top: 1px solid #086d40;
  border-bottom: 1px solid #086d40;
  border-left: none;
  border-right: none;
  padding: 8px;
  text-align: left;
}

.shopping-cart table th {
  background-color: #c1e6a7;
  color: #086d40;
  font-weight: bold;
}

.shopping-cart .summary p {
  margin: 0.5rem 0;
  font-size: 1.1rem;
  color: #086d40;
  text-align: left;
  border-bottom: 2px solid #086d40;
}

.shopping-cart .submit-order,
.shopping-cart .clear-cart {
  padding: 0.8rem 1.5rem;
  margin: 0.5rem;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
}

.shopping-cart .submit-order {
  background-color: #086d40;
  color: white;
  border: 2px solid #086d40;
  margin-top: 2rem;
  border-radius: 2rem;
}

.shopping-cart .submit-order:hover {
  background-color: #024b41;
}

.shopping-cart .clear-cart,
.back-to-shop {
  background-color: white;
  color: #086d40;
  border: 2px solid #086d40;
  width: 7rem;
  border-radius: 2rem;
}

.shopping-cart .clear-cart:hover,
.back-to-shop:hover {
  background-color: #086d40;
  color: white;
}

.shopping-cart table thead tr {
  font-weight: bold;
  background-color: #c1e6a7;
  border: 2px solid #086d40;
}

.back-to-shop {
  margin: 2rem auto;
}

/* Styling for the individual pages for products -------------------------------------------------------------------------- */
/* Main section for the products side */
.product-page {
  display: flex;
  justify-content: center;
  margin: 10rem auto;
  padding: 2rem;
  max-width: 1200px;
}

.product-container {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.product-image {
  flex: 1;
  text-align: center;
}

.product-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.product-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.product-details h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #086d40;
}

.product-details p,
.product-specs,
.product-specs li {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  font-size: 1.1rem;
  list-style: none;
}

.product-price {
  font-size: 2rem;
  color: #02796a;
  font-weight: bold;
  padding-bottom: 2rem;
  padding-top: 1rem;
}

.to-cart-btn {
  padding: 1.8rem 2rem;
  font-size: 2rem;
  background-color: #086d40;
  color: #fff;
  border: none;
  border-radius: 5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
}

.to-cart-btn:hover {
  background-color: #024b41;
}

/* .grid-container {
  border: 1px solid red; 
}

.illustration-gallery {
  border: 1px solid blue;
}

.image-container {
  border: 1px solid green;
} */

/* Styling for the page "Contact" -------------------------------------------------------------------------- */

.contact-intro {
  margin: 0 auto 2rem;
  max-width: 60ch;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
  padding-top: 16rem;
  padding-bottom: 2.5rem;
}

.contact-intro h2 {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: #2b7a78;
}

.contact-intro p {
  text-align: left;
  padding:2rem;
}

.contact-section {
  max-width: 60ch; 
  margin: 2rem auto; 
  margin-bottom: 6rem;
  padding: 1rem; 
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #086d40;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 20px; /* Rounded corners */
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
}

.contact-form textarea {
  resize: none;
}



@media (max-width: 1120px) {
  .header-ul {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.5rem;
  }

  .header-li {
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }

  .header-a {
    font-size: 1rem;
  }

  .icon {
    width: 0.9rem;
    height: auto;
  }
}

/* Responsive design and adjustment for header navigation links and icons layout on medium-sized screens */
@media (max-width: 1024px) {
  .best-sellers {
    grid-template-columns: repeat(2, minmax(300px, 1fr));
  }

  .product-row {
    grid-template-columns: repeat(2, 1fr);
  }

  #shop-page .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  #the-sidebar-nav {
    position: static;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 1.5rem;
    background-color: #fdf8e3;
    border-radius: 0rem 0rem 2rem 2rem;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
  }

  .grid-products-container {
    width: 100%;
    padding: 1rem;
  }

  .icon {
    display: none;
  }

  /* Responsiv Design for Product layout */
  .product-container {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }

  .product-img,
  .product-details {
    max-width: 90%;
    margin-bottom: 1.5rem;
  }

  .product-img img {
    max-width: 20rem;
  }

  .product-image img {
    max-width: 70%;
  }

  .to-cart-btn {
    display: block;
    width: 80%;
    max-width: 20rem;
    margin: 2rem auto;
    text-align: center;
  }
}

/* Responsive design for desktop */
@media (min-width: 1024px) {
  .grid-container {
    grid-template-columns: 1fr;
  }

  #shop-page .container {
    display: grid;
    grid-template-columns: 1fr 6fr;
    grid-template-areas: "sidebar content";
    gap: 30px;
  }

  #the-sidebar-nav {
    grid-area: sidebar;
    position: fixed;
    max-width: 20%;
    padding: 2rem 3rem;
  }

  .grid-products-container {
    grid-area: content;
    margin-left: 15rem;
    display: grid;
    gap: 30px;
  }

  .hamburger-btn {
    display: none; /* Hide hamburgar icon */
  }
  #desktop-links {
    display: flex; /* Show desktop-menu */
  }
}

/* Character img section ends up below the text on smaller screens */
@media (max-width: 935px) {
  #desktop-links {
    display: none; /* Hide desktop-menu  */
  }
  .hamburger-btn {
    display: flex; /* Show hamburgar icon */
  }

  .character-section {
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .character-section img {
    width: 60%;
    margin: 0 auto;
  }

  .character-section.reverse,
  #space-between {
    flex-direction: column;
  }

  .character-section.reverse .text,
  #space-between .text {
    order: 1;
  }

  .character-section.reverse img,
  .character-section.reverse picture,
  #space-between img,
  #space-between picture {
    order: 2;
  }

  .three-illustration {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}

/* Responsive design for mobile */
@media (max-width: 768px) {
  h1,
  #hero-section h1 {
    font-size: 4rem;
  }

  .submit-btn, .contact-form button {
    font-size: inherit;
  }

  .grid-container {
    grid-template-columns: 1fr;
    gap: 1rem;
    /* padding: 2rem; */
  }

  .grid-container2 {
    padding: 0;
  }

  .grid-container h1,
  #hero-section h1 {
    font-size: 4rem;
    margin-right: 2rem;
    margin-left: 2rem;
  }

  .product-row {
    grid-template-columns: 1fr;
  }

  #the-sidebar-nav {
    width: 90%;
  }

  #the-sidebar-nav h2 {
    margin: 0;
  }

  #the-shop-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    flex: none;
    width: 100%;
  }

  .footer-left ul {
    text-align: center;
    padding: 0;
  }

  .social-icons-shop {
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
  }

  .button-group {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  #chibi-section {
    text-align: left;
  }

  #chibi-section img {
    margin: 0;
  }

  @media (min-width: 768px) {
    .grid-container {
      grid-template-columns: 1fr 1fr;
    }
  }

  .product-card {
    max-width: none;
  }

  .product-card img {
    object-fit: cover;
  }

  .illustration-gallery {
    flex-direction: column;
    gap: 1rem;
    padding: 0;
    margin: 1rem 0;
  }

  .image-container {
    max-width: 100%;
    padding: 2rem;
  }

  footer {
    padding: 2rem;
  }

  .social-icons {
    justify-content: center;
  }

  #commission-hero .hero-content h1 {
    margin-top: 4rem;
  }

  #page-buyproducts {
    max-width: none;
  }

  .best-sellers {
    grid-template-columns: 1fr;
  }

  .best-image {
    max-width: 60%;
  }

  .welcome-section p {
    margin: 2rem;
  }

  .cart-container {
    flex-direction: column;
  }

  .shopping-cart table {
    margin-bottom: 1rem;
    width: 100%;
    overflow-x: auto;
    display: block;
    white-space: nowrap;
  }

  .shopping-cart h1 {
    font-size: 2rem;
  }

  .shopping-cart table th,
  .shopping-cart table td {
    font-size: 0.9rem;
    padding: 6px;
  }

  .shopping-cart table th {
    text-align: left;
  }

  .shopping-cart table td {
    text-align: left;
  }

  .shopping-cart .summary {
    margin-top: 1rem;
  }

  .shopping-cart table th,
  .shopping-cart table td,
  .shopping-cart table td.checkout-sum {
    text-align: center;
  }

  .shopping-cart h1,
  .back-to-shop {
    margin: 2rem;
  }
}