.back-button {
  position: fixed;
  left: 20px;
  bottom: 700px;
  text-align: center;
  z-index: 999; /* Ensure the button is above other content */
}

.back-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: transparent;
  text-decoration: none;
  color: #333;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

.back-link:hover {
  background-color: #999;
  color: #fff;
}

.back-icon {
  font-size: 20px;
  vertical-align: middle;
}
/* Basic Styling */
html, body {
  
  margin: 0;
  font-family: 'Roboto', sans-serif;
}
section{
  padding: 70px 0; /* Adjust padding as needed */
  margin: 0 auto;
}
.container {
  margin: 0 auto;
  padding: 15px;
  display: flex;
  flex-wrap: wrap; /* Allow sections to wrap on smaller screens */
  
}
/* Left Column */
.left-column img {
  width: 75%;
  
 
}

.section-yellow {
  background-color: #ffcf00;
}

.section-blue {
  background-color: #00a0df;
}
.section-brown {
  background-color: #502c1e;
  color: #fff;
}
.section-brown h1 {
  color: #fff;
}

.section-violet {
  background-color: blueviolet;
}


/* Columns */
.left-column {
  width: 65%;
  position: relative;
}

.right-column {
  width: 35%;
  margin-top: 60px;
}




/* Product Description */
.product-description {
  border-bottom: 1px solid #E1E8EE;
  margin-bottom: 20px;
}
.product-description span {
  font-size: 12px;
  color: #00a0df;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
}
.product-description h1 {
  font-weight: 300;
  font-size: 52px;
  letter-spacing: -2px;
}
.product-description p {
  font-size: 16px;
  font-weight: 300;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 24px;
}


/* Product Price */
.product-price {
  display: flex;
  align-items: center;
  display: flex;
  justify-content: center;
}

.product-price span {
  font-size: 26px;
  font-weight: 300;
  color: #43474D;
  margin-right: 20px;
}

.cart-btn {
  display: inline-block;
  background-color: #7DC855;
  border-radius: 6px;
  font-size: 16px;
  color: #FFFFFF;
  text-decoration: none;
  padding: 12px 30px;
  transition: all .5s;
}
.cart-btn:hover {
  background-color: #64af3d;
}

/* Responsive */


/* Mobile View Styles */
/* Mobile View Styles */
@media (max-width: 768px) {
  /* Container */
  .left-column,
  .right-column {
    width: 100%;
    text-align: center;
  }
  
  /* Image */
  .left-column img {
    max-width: 100%;
    margin: 0 auto;
  }
  
  /* Product Description */
  .product-description {
    text-align: center;
    margin-top: 20px;
    order: -1;
  }
  
  /* Product Title */
  .product-description h1 {
    font-size: 1.5em;
    margin: 10px 0;
  }
  
  /* Other Product Description Text */
  .product-description span,
  .product-description p {
    font-size: 1em;
    margin: 0px 0;
  }
  
  /* Product Price and Cart Button */
  .product-price {
    text-align: center;
    margin-top: 0px;
  }
  
  .product-price p {
    font-size: 1.2em;
    margin: 5px 0;
  }
  
  .cart-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    margin-bottom: 20px;
  }
}