@import url("https://fonts.googleapis.com/css?family=Pontano+Sans");
/* google fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

*{
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  scroll-padding-top: 2rem;
  scroll-behavior: smooth;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}
:root{
	--bg-color: #ffffff;
	--text-color: #111111;
	--main-color: #ff0000;
	--big-font: 4.5rem;
	--h2-font: 3.3rem;
	--h3-font: 2rem;
	--normal-font: 1rem;
}


:root {
  --duration: 1.5s;
  --container-size: 250px;
  --box-size: 33px;
  --box-border-radius: 15%;
}

    /* Media query for phones */
    @media (max-width: 720px) {
      .stock-status {
          text-align: center !important;
      }
      .stock-info {
          text-align: center; /* Keeps the small text centered on mobile */
      }
  }

  /* Ensure text breaks on larger screens */
  @media (min-width: 721px) {
      .stock-info {
          text-align: left; /* Left-align the text on larger screens */
          max-width: 400px; /* Optional: limit the width to control text wrapping */
      }
  }
.loading-screen {
  position: fixed; /* Set to fixed position */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #ffe1a9;
  z-index: 9999; /* Ensure it's on top of other content */
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}
#uniqueSidebar {
  height: 100%;
  width: 250px; /* Adjusted width for visibility */
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  background: linear-gradient(145deg, #991e1e, #ff8800); /* Gradient background */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); /* Shadow for depth */
  overflow-x: hidden;
  transition: width 0.5s; /* Smooth transition for sidebar width */
  padding-top: 60px;
}

.sidebarLink h3 {
  white-space: nowrap; /* Prevent text from wrapping */
  overflow: hidden; /* Hide text that overflows the container */
  text-overflow: ellipsis; /* Add an ellipsis (...) when the text overflows */
}

#uniqueSidebar .sidebarLink {

  text-decoration: none;
  font-size: 17px;
  color: #ffffff;
  display: block;
  transition: color 0.3s, transform 0.3s; /* Added transform transition */
}

#uniqueSidebar .sidebarLink:hover {
  color: #f1f1f1;
  transform: translateX(10px); /* Slight right movement on hover */
}

#uniqueSidebar .closeButton {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
  color: #ffffff;
  cursor: pointer; /* Added cursor pointer */
}
.sidebarcat{
  background-color: #d87829;
  border-radius: 2rem;
}
#openButton {
  font-size: 20px;
  cursor: pointer;
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  padding: 10px 15px;
  border: none;
  border-radius: 5px; /* Rounded corners for the button */

}
#openButton:hover {

  background-color: #ebebeb;

}
.logo-container3 {
    text-align: center;
    animation: pulse 2s infinite; /* Apply the pulse animation */
}
/* Define the pulse animation */
@keyframes pulse {
    0% {
        transform: scale(1); /* Start with normal size */
    }
    50% {
        transform: scale(1.2); /* Pulse to 120% size halfway through */
    }
    100% {
        transform: scale(1); /* Back to normal size */
    }
}
.container3 {
  width: var(--container-size);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.📦 {
  width: var(--box-size);
  height: var(--box-size);
  position: relative;
  display: block;
  transform-origin: -50% center;
  border-radius: var(--box-border-radius);
}
.📦:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: rgb(230, 221, 173);
  border-radius: var(--box-border-radius);
  box-shadow: 0px 0px 10px 0px rgba(255, 62, 28, 0.4);
}
.📦:nth-child(1) {
  animation: slide var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(1):after {
  animation: color-change var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(2) {
  animation: flip-1 var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(2):after {
  animation: squidge-1 var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(3) {
  animation: flip-2 var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(3):after {
  animation: squidge-2 var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(4) {
  animation: flip-3 var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(4):after {
  animation: squidge-3 var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(5) {
  animation: flip-4 var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(5):after {
  animation: squidge-4 var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(2):after {
  background-color: #ff641c;
}
.📦:nth-child(3):after {
  background-color: rgb(253, 120, 31);
}
.📦:nth-child(4):after {
  background-color: #fbaf22;
}
.📦:nth-child(5):after {
  background-color: #fbe523;
}

@keyframes slide {
  0% {
    background-color: #ffd417;
    transform: translatex(0vw);
  }
  100% {
    background-color: #fbc923;
    transform: translatex(
      calc(var(--container-size) - (var(--box-size) * 1.25))
    );
  }
}

@keyframes color-change {
  0% {
    background-color: #ff4d17;
  }
  100% {
    background-color: #fbc123;
  }
}

@keyframes flip-1 {
  0%,
  15% {
    transform: rotate(0);
  }
  35%,
  100% {
    transform: rotate(-180deg);
  }
}

@keyframes squidge-1 {
  5% {
    transform-origin: center bottom;
    transform: scalex(1) scaley(1);
  }
  15% {
    transform-origin: center bottom;
    transform: scalex(1.3) scaley(0.7);
  }
  25%,
  20% {
    transform-origin: center bottom;
    transform: scalex(0.8) scaley(1.4);
  }
  55%,
  100% {
    transform-origin: center top;
    transform: scalex(1) scaley(1);
  }
  40% {
    transform-origin: center top;
    transform: scalex(1.3) scaley(0.7);
  }
}

@keyframes flip-2 {
  0%,
  30% {
    transform: rotate(0);
  }
  50%,
  100% {
    transform: rotate(-180deg);
  }
}

@keyframes squidge-2 {
  20% {
    transform-origin: center bottom;
    transform: scalex(1) scaley(1);
  }
  30% {
    transform-origin: center bottom;
    transform: scalex(1.3) scaley(0.7);
  }
  40%,
  35% {
    transform-origin: center bottom;
    transform: scalex(0.8) scaley(1.4);
  }
  70%,
  100% {
    transform-origin: center top;
    transform: scalex(1) scaley(1);
  }
  55% {
    transform-origin: center top;
    transform: scalex(1.3) scaley(0.7);
  }
}

@keyframes flip-3 {
  0%,
  45% {
    transform: rotate(0);
  }
  65%,
  100% {
    transform: rotate(-180deg);
  }
}

@keyframes squidge-3 {
  35% {
    transform-origin: center bottom;
    transform: scalex(1) scaley(1);
  }
  45% {
    transform-origin: center bottom;
    transform: scalex(1.3) scaley(0.7);
  }
  55%,
  50% {
    transform-origin: center bottom;
    transform: scalex(0.8) scaley(1.4);
  }
  85%,
  100% {
    transform-origin: center top;
    transform: scalex(1) scaley(1);
  }
  70% {
    transform-origin: center top;
    transform: scalex(1.3) scaley(0.7);
  }
}

@keyframes flip-4 {
  0%,
  60% {
    transform: rotate(0);
  }
  80%,
  100% {
    transform: rotate(-180deg);
  }
}

@keyframes squidge-4 {
  50% {
    transform-origin: center bottom;
    transform: scalex(1) scaley(1);
  }
  60% {
    transform-origin: center bottom;
    transform: scalex(1.3) scaley(0.7);
  }
  70%,
  65% {
    transform-origin: center bottom;
    transform: scalex(0.8) scaley(1.4);
  }
  100%,
  100% {
    transform-origin: center top;
    transform: scalex(1) scaley(1);
  }
  85% {
    transform-origin: center top;
    transform: scalex(1.3) scaley(0.7);
  }
}


.container {
  margin: auto;
  padding: 0 1rem;
  max-width: 71.25rem;
  width: 100%;
}
.grid-second-nav{
  margin-top: 5rem;
}
.grid {
  display: flex;
  flex-direction: column;
  flex-flow: row wrap;
}
.grid > [class*=column-] {
  display: block;
}

.first {
  order: -1;
}

.last {
  order: 12;
}
input.star[type="radio"] + label {
  color: #ccc;
  cursor: pointer;
}

input.star[type="radio"]:checked ~ label,
input.star[type="radio"]:checked + label {
  color: #f1c40f;
  cursor: pointer;
}
.delete {
  background-color: white;
  color: black;
  border: none;
  padding: 5px;
  cursor: pointer;
  outline: none;
  font-size: 1.5em; /* Increase the icon size */
}
.delete:hover {
  background-color: rgb(255, 67, 67);
  color: black;
  border: none;
  padding: 5px;
  cursor: pointer;
  outline: none;
  font-size: 1.5em; /* Increase the icon size */
}
.right-align {
  text-align: right;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}
.whitey{
  background-color: #fff;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
  padding-top: 30px;
  margin-top: 1rem;
  border-radius: 20px;
}
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

  body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
  }
  
  h2 {
    color: #444;
  }
  /* Add this to your existing CSS code */
  .responsive-textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
    resize: vertical;
    font-family: Arial, sans-serif;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: transparent;
    margin-bottom: 1rem;
    transition: border-color 0.2s;
  }
  
  .responsive-textarea:focus {
    border-color: #008CBA;
    outline: none;
  }
  
  /* Media query for screens larger than 768px */
  @media (min-width: 768px) {
    .responsive-textarea {
      width: 80%;
    }
  }

  #main-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }  

  input[type="submit"],
  button {
    background-color: #ff4800;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
  }
  
  input[type="submit"]:hover,
  button:hover {
    background-color: #ff6600;
    border-radius: 20px;

  }
  
  .star {
    font-size: 24px;
    color: #f1c40f;
  }
  
  .comment {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 30px auto;
  }
  
  .comment[data-level="1"] {
    margin-left: 30px;
  }
  
  .comment[data-level="2"] {
    margin-left: 60px;
  }
  
  .comment[data-level="3"] {
    margin-left: 90px;
  }
  
  .comment[data-level="4"] {
    margin-left: 120px;
  }
  
  .comment[data-level="5"] {
    margin-left: 150px;
  }
  
  hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 30px 0;
  }
  
  .modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
  }
  
  .modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }
  .follow-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffffff;
    color: #070707;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s;
    margin-bottom: 1rem;
  }

  .follow-btn:hover {
    background-color: #000000;
    color: #ffffff;
    transform: scale(1.1);
  }
      /* CSS styling for the heart symbol */
      .heart {
        display: inline-block;
        width: 24px;
        height: 24px;
        color: gray;
        transition: transform 0.2s, color 0.2s;
      }
  
      .heart.like {
        color: red;
        animation: pulse 0.8s infinite;
      }
  
      .heart.fill {
        color: red;
        animation: fill 0.8s infinite;
      }
  
      /* CSS animation keyframes */
      @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.2); }
        100% { transform: scale(1); }
      }
  
      @keyframes fill {
        0% { transform: scale(1); }
        50% { transform: scale(1.2); }
        100% { transform: scale(1); }
      }
.logo{
  font-size: 1.1rem;
  color: var(--text-color);
  font-weight: 400;
  font-weight: bold;
	white-space: nowrap;
  order: 0;
}
.slide-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: auto;
  overflow: hidden;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.slides {
  display: none; /* Hide all slides by default */
  padding: 20px;
  box-sizing: border-box;
}
.slides.active {
  display: block; /* Show the active slide */
}
.slide-nav {
  text-align: center;
  margin-bottom: 1rem;
}
.slide-nav button {
  padding: 10px 20px;
  margin: 0 5px;
  cursor: pointer;
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  border: none;
  border-radius: 5px;
}
.slide-nav button.active {
  background-color: #dadada; /* Background color for active button */
  text-decoration: underline; /* Underline for active button */
  font-weight: bold; /* Optional: make the text bold for active button */
}
.slide-nav button:hover {
  background-color: #dadada;
}
.right-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right:10px;
}
#right-item{
  margin-right:20px
}
#cart-icon{
  font-size: 1.8rem;
  cursor: pointer;
  font-weight:bolder;
  color:#000;
}
/*cart*/
.cart{
  position: fixed;
  top: 0;
  right: -100%;
  width: 360px;
  min-height: 100vh;
  padding:20px;
  background: var(--bg-color);
  box-shadow: -2px 0 4px hsl(0 4% 15% / 10%);
  transition: 0.3s;
  z-index: 9999;
}
.cart.active{
  right:0;
  z-index: 9999;
}
.cart-title{
  text-align: center;
  font-size:1.5rem;
  font-weight: 600;
  margin-top: 2rem;
}
.cart-box{
  display: grid;
  grid-template-columns: 32% 50% 18%;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.highlighted-collection {
  margin: 20px auto;
  max-width: 1200px;
  text-align: center;
}
.highlighted-collection h2 {
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.products-container {
  position: relative;
  overflow: hidden;
  padding: 20px;
  background-color: #252525;
  border-radius: 30px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  max-width: 100%; /* Adjusted maximum width to fit the whole page */
  z-index:2;
}

.products-wrapper {
  display: flex;
  transition: transform 0.3s ease;
}

.product1 {
  flex: 0 0 calc(25% - 15px); /* 4 products per row on PC */
  margin-right: 20px;
  background-color: #000000;
  padding: 20px;
  border-radius: 30px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  z-index:2;
}

.product1:last-child {
  margin-right: 0;
}

.product1:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product1 h3 {
  font-size: 14px; /* Adjusted font size */
  margin-bottom: 5px; /* Adjusted margin */
  color: #ffffff;
}

.product1 img {
  width: 100%; /* Adjusted image width */
  height: auto;
  border-radius: 4px;
  margin-bottom: 5px; /* Adjusted margin */
}
.products-container {
  position: relative;
  overflow: hidden;
  padding: 20px;
  background-color: #252525;
  border-radius: 30px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  max-width: 100%; /* Adjusted maximum width to fit the whole page */
  z-index:2;
}
.products-wrapper {
  display: flex;
  transition: transform 0.3s ease;
}
.navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #ff8c00;
  color: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.product-image {
  position: relative; /* Make the container a positioned element */
  display: inline-block; /* Fit the image size */
}

.zoom-sticker {
  position: absolute; /* Position the sticker relative to the container */
  top: 10px; /* Adjust top spacing */
  left: 10px; /* Adjust left spacing */
  background-color: #ffffff83; /* Background color of the sticker */
  color: #333; /* Text color of the sticker */
  padding: 5px 10px; /* Padding around the text */
  border: 2px solid #ff660081; /* Border around the sticker */
  border-radius: 5px; /* Rounded corners */
  font-size: 1em; /* Smaller font size */
  font-weight: bold; /* Bold text */
  box-shadow: 0 2px 4px rgba(0,0,0,0.2); /* Optional shadow for better visibility */
}

img.active {
  display: block; /* Ensure the image is displayed correctly */
  width: 100%; /* Adjust width as needed */
  height: auto; /* Maintain aspect ratio */
}
.arrow:not(:last-child) {
  margin-right: 10px;
}
.hidden1 {
  display: none;
}
.optionbuttons{
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.arrow:hover {
  background-color: #ff6f00;
}
.feaured1.h2{
  background-color: #000;
  border-radius: 0px;
  z-index: -1;
}
.feaured{
  background-color: #000;
  border-radius: 20px;
}
.feaured{
  background-color: #ff6600;
  border-radius: 20px;
  
}
.feaured1{
  display: none;
}
.cart-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  padding: 10px;
  border: 2px solid #000;
  border-radius: 1rem;
}
.detail-box{
  display: grid;
  row-gap: 0.5rem;
}
.cart-product-title{
  font-size:1rem;
  text-transform: uppercase;
}
.cart-price{
  font-weight: 500;
}
.cart-quantity{
  border:1px solid var(--text-color);
  outline-color:var(--main-color);
  width: 2.4rem;
  text-align: center;
  font-size:1rem;
  border-radius:5px;
}
.cart-remove{
  font-size:24px;
  color: var(--main-color);
  cursor: pointer;
}
.total{
  display:flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
  border-top: 1px solid var(--text-color);
}
.total-title{
  font-size:1rem;
  font-weight: 600;
}
.total-price{
  margin-left: 0.5rem;
}
.btn-buy{
  display: flex;
  margin: 1.5rem auto 0 auto;
  padding: 12px 20px;
  border: none;
  background: #B81414;
  color: var(--bg-color);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 20px;
  transition: all .35s ease;
}
.btn-buy:hover{
  background: var(--text-color);
  border-radius: 20px;
  transform: translateY(-5px);
}
#close-cart{
  position: absolute;
  top: 1rem;
  right: 0.8rem;
  font-size: 2rem;
  color: var(--text-color);
  cursor: pointer;
}
.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
/*sugerate*/
.productsuggested {
	flex: 0 0 calc(25% - 15px); /* 4 products per row on PC */
	margin-right: 20px;
	background-color: #ffffff;
	padding: 20px;
	border-radius: 30px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column; /* Changed from row to column */
	align-items: center;
	justify-content: center;
	text-align: center;
	cursor: pointer;
	transition: transform 0.3s; /* Added transition for smooth zooming */
  }
  .productsuggested {
	transition: opacity 0.5s ease-in-out;
	opacity: 0;
  }
  .productsuggested:last-child {
	margin-right: 0;
  }
  
  .productsuggested:hover {
	transform: scale(1.01); /* Zooms in the product a little when hovered */
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  
  
  
  h2.product-title{
	color:#000;
	size:2rem;
  }
  #suggested-text {
	font-size: 20px; /* Change the font size */
	font-weight: bold; /* Make the text bold */
	color: #333; /* Change the text color */
	text-align: center; /* Center the text */
	padding: 10px; /* Add some padding */
	background-color: #ffc526; /* Change the background color */
	border-radius: 5px; /* Add rounded corners */
	margin-bottom: 20px; /* Add some margin at the bottom */
  }
  
  .custom-show-more-button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 4px;
}

.custom-show-more-button:hover {
    background-color: #0056b3;
}

  
  .productsuggested h3 {
	font-size: 14px; /* Adjusted font size */
	margin-bottom: 5px; /* Adjusted margin */
	color: #ffffff;
  }
  
  .productsuggested img {
	width: 50%; /* Adjusted image width */
	height: auto;
	border-radius: 4px;
	margin-right: 5px; /* Added margin to the right of the image */
  }
  
  @media only screen and (min-width: 1024px) {
    .custom-product-description-box1 {
      display: none;
    }
  }

  .custom-show-more-button {
    background-color: #ff8800;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 20px;
}

.custom-show-more-button:hover {
    background-color: #ff3c00;
}


  .productsuggested .add-to-cart{
	display: flex;
	margin: 1.5rem auto 0 auto;
	padding: 12px 20px;
	border: none;
	background: #ffbb00;
	color: var(--bg-color);
	font-size: 1rem;
	font-weight: 500;
	cursor: pointer;
	border-radius: 20px;
	transition: all .35s ease;
  }
  .productsuggested .add-to-cart:hover{
	background: #ff0000;
	transform: translateY(-5px);
  }

  .cart-product-title{
	font-size:1rem;
	text-transform: uppercase;
  }
  .product-title{
	font-size: 1.1rem;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 0.5rem;
	background-color: #ffe5d9d0;
	  border-radius: 20px;
	padding: 7px;
  }
  .product-title{
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
  }  

  .price1{
	font-weight: 500;
	background-color: #ffffff;
	  border-radius: 20px;
	padding: 7px;
	z-index: 1;
  }
  .cart-price{
	font-weight: 500;
  }
  .total-price{
	margin-left: 0.5rem;
  }
  .price{
	font-weight: 500;
	background-color: #ffffff;
	  border-radius: 20px;
	padding: 7px;
  }
  .price{
    font-size: 16px;
    font-weight: 500;
  }
header{
  position: fixed;
  top :0;
  left: 0;
  width: 100%;
  background: var(--bg-color);
  box-shadow: 0 1px 4px hsl(0 4% 15% / 10%);
  z-index: 100;
}
.align-top {
  align-items: start;
}

.align-center {
  align-items: center;
}

.align-bottom {
  align-items: end;
}


* {
  box-sizing: border-box;
}
*::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: "Pontano Sans", sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  color: #000000;
  background: #fff;
  text-rendering: optimizeLegibility;
  background-image: url('../img/bgmain1.webp');
  background-size: cover;
  position: relative;
  background-attachment: fixed;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
ul li {
  margin: 0 1.75rem 0 0;
}

a {
  color: #888;
  text-decoration: none;
  transition: all 0.2s ease;
}
a:hover {
  color: #333;
}
a.active {
  color: #333;
}

h1, h2, h3, h4 {
  color: #333;
  font-weight: normal;
  text-shadow: 3px 3px 3px rgba(238, 87, 0, 0.5);
  margin: 1.75rem 0 1rem 0;

}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2.125rem;
  margin: 0;
}

.unique-category-item img {
  width: 200%;
  max-width: 300px;
  height: auto;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.608);
  transition: all 0.3s ease-in-out;
  /* Add a border */
  border: 0px solid #000;
  
  /* Add round corners */
  border-radius: 15px;
}

.unique-category-item img:hover {
  transform: scale(1.005);
  filter: brightness(80%);
}
h3 {
  display:flex;
  justify-content: center;
  font-size: 17px;
  font-weight:600;
  background-color:#ff8800;
  border-radius:20px;
  color:#fff;
  padding: 5px;
}
.review-name{
  background-color: #d6c6fc;
  border-radius: 20px;
  padding: 7px;
}
.star {
  display: inline-block;
  font-size: 1.5rem;
  color: gray;
  cursor: pointer;
}
.star.filled {
  color: yellow;
}

h4 {
  font-size: 1.5rem;
  margin: 1rem 0 0.5rem 0;
  font-weight:500;
  text-align: center;
}

section {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius:20px;
}

#highlight {
  color: #333;
  font-size: 1.125rem;
  text-transform: uppercase;
}

.price {
  margin: 0;
  text-align:center;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 1rem 0 0 0;
  list-style: none;
  color:#000;
}
.breadcrumb-list li {
  font-size: 0.85rem;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
}
.breadcrumb-item a{
  color: #000;
}
.breadcrumb-item.active {
  color: #ff9100;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  display: inline-block;
  padding: 0 0.5rem;
  color: #d5d5d5;
}

.description {
  font-size: 1.15em; /* Slightly larger than normal text for emphasis */
  line-height: 1.6; /* Increase the line height for readability */
  color: #333; /* Dark gray text for a softer look */
  margin: 1rem 0; /* Some margin to separate the description from other elements */
  text-align: justify; /* Justify text for a cleaner look */
  font-family: 'Helvetica Neue', Arial, sans-serif; /* A modern, sans-serif font */
  padding: 1rem; /* Padding around the text */
  background-color: #f9f9f9; /* Light background to differentiate the description */
  border-radius: 10px; /* Rounded corners for a softer, more modern look */
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1); /* A subtle shadow for depth */
}

.video-container video {
  background-color: transparent;
  width: 412px;
  height: 126px;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 10;
  pointer-events: none;
  margin-right:20px;
  margin-bottom:3rem;
  cursor: pointer;
  border-radius: 10px 30px 10px 30px;
}
.custom-product-description-box {
  border: 2px solid #ccc;
  border-radius: 12px;
  padding: 18px;
  background-color: #fafafa;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  margin: 20px auto;
  font-family: 'Arial', sans-serif;
}

.custom-product-description {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 0;
}

h1.mobile-title1{
  margin-bottom: 0rem;
}
.video-container video::-webkit-media-controls {
  display:none !important;
}

.video-container video::-webkit-media-controls-enclosure {
  display:none !important;
}

.video-container video::-webkit-media-controls-panel {
  display:none !important;
}

.video-container video::-webkit-media-controls-play-button {
  display:none !important;
}

.video-container video::-webkit-media-controls-timeline {
  display:none !important;
}

.video-container video::-webkit-media-controls-volume-slider {
  display:none !important;
}

.video-container video::-webkit-media-controls-mute-button {
  display:none !important;
}
.add-to-cart {
  border-radius: 20px;
  position: relative;
  display: inline-block;
  background: #ff6600;
  color: #fff;
  border: none;
  padding: 1.25rem 2.5rem;
  font-size: 1rem;
  text-transform: uppercase;
  cursor: pointer;
  transform: translateZ(0);
  transition: color 0.3s ease;
  letter-spacing: 0.0625rem;
  font-weight:500;
  overflow: hidden;
  margin-top:1rem;
}

.add-to-cart::before {
  border-radius: 20px;
  position: absolute;
  content: "";
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffa600;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease-out;
}

.add-to-cart:hover::before {
  transform: scaleX(1);
}


.container{
  max-width: 1068px;
  margin: auto;
  width: 100%;
}

.grid > [class*=column-] {
  padding: 0rem;
}
.grid.menu, .grid.product {
  border-bottom: 0.0625rem solid #e3dddd;
}
.grid.menu > [class*=column-] {
  padding: 0.5rem 1rem 0.5rem 1rem;
}
.grid.product {
  padding: 0 0 1.5rem 0;
}

  
footer {
  padding: 1rem 0;
  text-align: center;
}

.product-image {
  display: none;
}

.image-list li {
  margin: 0;
  cursor: pointer;
}
#account-icon{
  font-size: 1.8rem;
  cursor: pointer;
  color: #000;
  order: 2;
  margin-right:20px;
}
nav ul {
  display: flex;
  list-style: none;
  margin: 0;
}
.comenzile_mele{
  padding-left: 2%;
  padding-right: 2%;
  order: 1;
}
.trustpilot {
  text-align: center; /* Center the text and inline elements */
}
.trustpilot img {
  border-radius: 2px;
  width: 100px;
  height: auto;
  vertical-align: middle;
  background-color: #ad896b; /* Fallback color */
  animation: rainbow-background 5s linear infinite; /* Apply the animation */
}

@keyframes rainbow-background {
  0% { background-color: #005c31; } /* Red */
  16% { background-color: #494949; } /* Orange */
  33% { background-color: #0051ff; } /* Yellow */
  50% { background-color: #009400; } /* Green */
  66% { background-color: #aca000; } /* Blue */
  83% { background-color: #363636; } /* Indigo */
  100% { background-color: #09005c; } /* Violet */
}
/* The Modal (background) */
/* styles.css */

/* The Modal (background) */
/* styles.css */

/* The Modal (background) */
.image-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0,0,0,0.8); /* Black background with opacity */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  flex-direction: column; /* Stack children vertically */
}

/* Modal Content */
.modal-content-image {
  max-width: 30%; /* Adjust to fit screen width */
  max-height: 80vh; /* Adjust to fit screen height */
  object-fit: contain; /* Ensure the image is contained within its box */
  position: relative; /* Establish a relative positioning context */
}

/* Navigation Buttons */
.modal-prev, .modal-next {
  position: absolute;
  top: 50%; /* Center vertically */
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  z-index: 2; /* Ensure buttons are on top */
  padding: 16px;
  transition: 0.3s;
  transform: translateY(-50%); /* Center vertically */
}

.modal-prev {
  left: 10px; /* Adjust to be inside the modal content */
}

.modal-next {
  right: 10px; /* Adjust to be inside the modal content */
}

.modal-prev:hover,
.modal-next:hover {
  color: #bbb;
}

/* Pagination Dots */
.modal-dots {
  display: flex;
  justify-content: center; /* Center horizontally */
  margin-top: 10px; /* Space between image and dots */
}

.modal-dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s;
}

.modal-dot.active {
  background-color: #fff; /* Highlight active dot */
}

.product-image-container {
  position: relative;
  width: 100%;
  height: 50vh;
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer; /* Change cursor to pointer to indicate clickability */
}

.image-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.image-item {
  display: inline-block;
  margin: 0 5px;
}

.image-item img {
  width: 100px; /* Adjust size as needed */
  height: auto;
  cursor: pointer;
}
#textoptiuni{
  text-align: left;;
}
.mobile-title{
  display: none;
  
}
@keyframes rainbow {
  0% { color: red; }
  15% { color: orange; }
  30% { color: yellow; }
  45% { color: green; }
  60% { color: blue; }
  75% { color: indigo; }
  90% { color: violet; }
  100% { color: red; }
}

.rainbow-icon {
  font-size: 24px; /* Adjust size as needed */
  animation: rainbow 5s infinite;
}
.livrare-gr{
  color:#b67600;
}
.star-rating-container{
  display: none;
}
.star-icon{
  display: none;
}
@media (max-width: 768px) {
  .product1{
    flex: 0 0 calc(35% - 15px);
    background-color: #f5f5f5;
    border-left: #000;
    box-shadow: 0 2px 4px rgba(249, 35, 35, 0.212);
  }
  .custom-product-description-box{
    display: none;
  }
  .custom-product-description-box1 {
    border: 2px solid #ccc;
    border-radius: 12px;
    padding: 18px;
    background-color: #fafafa;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 20px auto;
    font-family: 'Arial', sans-serif;
  }
  
  .products-container{
    background-color: #f5f5f5;
  }
  .product1 h3 {
display: none;
  }
  .product1 p.price{
    background-color: #ffffff;
    color: #000000;
    border-radius: 10px;
  }
  .product1 img {
    width: 150%; /* Adjusted image width */
    height: auto;
    border-radius: 4px;
    margin-bottom: 5px; /* Adjusted margin */
  }
  .whitey{
    line-height: 1.5rem;
  }
  .image-list img {
    height: 10rem;
    width: 84%;
    transition: opacity 0.3s ease;
    cursor: pointer;
  }
  img{
    max-width: 150%;
  }
  #reviews {
    background-color: #fff9f3;
    padding: 0px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
  }
  .zoom-sticker {
    position: absolute; /* Position the sticker relative to the container */
    margin-top: 1rem;
    top: 10px; /* Adjust top spacing */
    left: 10px; /* Adjust left spacing */
    background-color: #ffffff83; /* Background color of the sticker */
    color: #333; /* Text color of the sticker */
    padding: 5px 10px; /* Padding around the text */
    border: 2px solid #ff660081; /* Border around the sticker */
    border-radius: 5px; /* Rounded corners */
    font-size: 1em; /* Smaller font size */
    font-weight: bold; /* Bold text */
    box-shadow: 0 2px 4px rgba(0,0,0,0.2); /* Optional shadow for better visibility */
  }
  .whitey h2{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .star-rating-container {
    display: flex; /* Align stars horizontally */
    gap: 12px; /* Space between stars */
    justify-content: center; /* Center stars horizontally */
    align-items: center; /* Center stars vertically */
    padding: 0px; /* Padding around the stars */
  }
  .star-icon {
    display: block;
    font-size: 1rem; /* Size of the stars */
    color: #FFD700; /* Star color (gold) */
  }
  .description{
    margin-top:0rem;
    padding: 0rem;
  }
  #textoptiuni{
    text-align: center;;
  }
  .mobile-title1{
    display: none;
  }
  .description {
    font-size: 1.15em; /* Slightly larger than normal text for emphasis */
    line-height: 1.6; /* Increase the line height for readability */
    color: #333; /* Dark gray text for a softer look */
    margin: 1rem 0; /* Some margin to separate the description from other elements */
    text-align: center; /* Justify text for a cleaner look */
    font-family: 'Helvetica Neue', Arial, sans-serif; /* A modern, sans-serif font */
    padding: 1rem; /* Padding around the text */
    background-color: #f9f9f9; /* Light background to differentiate the description */
    border-radius: 10px; /* Rounded corners for a softer, more modern look */
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1); /* A subtle shadow for depth */
  }
  *{
    font-family: ui-rounded, 'Hiragino Maru Gothic ProN', Quicksand, Comfortaa, Manjari, 'Arial Rounded MT', 'Arial Rounded MT Bold', Calibri, source-sans-pro, sans-serif;
    font-weight: normal;
    margin: 0;
    padding: 0;
    scroll-padding-top: 2rem;
    scroll-behavior: smooth;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
  }
.column-xs-12 {
  width: 100%;
  text-align: center;
}
  .mobile-title{
    display:block;
    font-size: 1.5rem;
  }
.breadcrumb-list{
  justify-content: center;
}
h1.mobile-title{
  margin-top:1rem;
  margin-bottom: 0rem;
}
.breadcrumb-list a {
  font-size: 0.55rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

  .product-image {
    position: relative; /* Allows absolute positioning for the image */
    width: 100%; /* Full width of the container */
    height: 40vh; /* Adjust this value to control the height of the image container */
    overflow: hidden; /* Hide any overflow content */
    border-radius: 20px;
  }
  .modal-content-image {
    max-width: 80%; /* Adjust to fit screen width */
    max-height: 90vh; /* Adjust to fit screen height */
    object-fit: contain; /* Ensure the image is contained within its box */
  }
  .product-image img.active {
    width: 100%; /* Full width of the container */
    height: 100%; /* Full height of the container */
    object-fit: cover; /* Ensure the image covers the container */
    display: block; /* Remove extra space below the image */
  }
  
}
@media (min-width: 10rem) {
  .product-image img, .image-list img {
    width: 100%;
  }

  .nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3px 1.7rem;
  }
  .product-image {
    display: block;
  }
  .product-image img {
    height: 52vh;
  }
  .product-image img.active {
    display: block;
    margin: 1rem 0 0.3rem 0;
  }

  .image-list {
    display: flex;
    overflow: hidden;
  }
  .image-list li {
    margin: 0 0.75rem 0 0;
    flex-basis: 100%;
  }
  .image-list li:nth-child(3) {
    margin: 0;
  }
  .image-list img {
    height: 10rem;
    width: 100%;
    transition: opacity 0.3s ease;
    cursor: pointer;
  }
  .image-list img:hover {
    opacity: 0.7;
  }


  #cart-icon{
    font-size: 1.8rem;
    cursor: pointer;
    order: 3;
  }
  /*cart*/
  .cart{
    position: fixed;
    top: 0;
    right: -100%;
    width: 360px;
    min-height: 100vh;
    padding:20px;
    background: var(--bg-color);
    box-shadow: -2px 0 4px hsl(0 4% 15% / 10%);
    transition: 0.3s;
    
      max-height: 500px; /* Adjust this value according to your needs */
      overflow-y: auto; /* This will add a vertical scrollbar when the content exceeds the max-height */
    
  }
.cart.active{
  right:0;
}
.cart-title{
  text-align: center;
  font-size:1.5rem;
  font-weight: 600;
  margin-top: 2rem;
}
.cart-box{
  display: grid;
  grid-template-columns: 32% 50% 18%;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}
.cart-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  padding: 10px;
  border: 2px solid #000;
  border-radius: 1rem;
}
.detail-box{
  display: grid;
  row-gap: 0.5rem;
}
.cart-product-title{
  font-size:1rem;
  text-transform: uppercase;
}
.cart-price{
  font-weight: 500;
  color: #000;
}
.cart-quantity{
  border:1px solid var(--text-color);
  outline-color:var(--main-color);
  width: 2.4rem;
  text-align: center;
  font-size:1rem;
}
.cart-remove{
  font-size:24px;
  color: var(--main-color);
  cursor: pointer;
}
.total{
  display:flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
  border-top: 1px solid var(--text-color);
}
.total-title{
  font-size:1rem;
  font-weight: 600;
}
.total-price{
  margin-left: 0.5rem;
}
.btn-buy{
  display: flex;
  margin: 1.5rem auto 0 auto;
  padding: 12px 20px;
  border: none;
  background: var(--main-color);
  color: var(--bg-color);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
}
.btn-buy:hover{
  background: var(--text-color)
}
#close-cart{
  position: absolute;
  top: 1rem;
  right: 0.8rem;
  font-size: 2rem;
  color: var(--text-color);
  cursor: pointer;
}
.likesecion{
  margin-left: 0.2rem;
}
.custom-link2:hover {
  cursor: pointer;
}
.custom-link2 {
  display: inline-block;
  background-image: url('../img/SAL_2.webp');
  background-size: 100% 100%;
  width: 12rem;
  height: 3rem;
  text-decoration: none;
}
/* General Footer Styling */
footer {
  background: linear-gradient(135deg, #f2f2f2 0%, #e0e0e0 100%);
  padding: 30px 20px;
  color: #333;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}
.custom-link {
  display: inline-block;
  background-image: url('../img/SAL_1.webp');
  background-size: 100% 100%;
  width: 12rem;
  height: 3rem;
  text-decoration: none;
}
.footer-left, .footer-center, .footer-right {
  flex: 1;
  padding: 10px;
  box-sizing: border-box;
}

/* Default styling for desktop */
.footer-left {
  text-align: left; /* Default alignment for larger screens */
}

.footer-left p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

.footer-left a {
  color: #0088cc;
  text-decoration: none;
  display: inline; /* Display links inline on desktop */
  margin-right: 10px; /* Horizontal spacing */
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-left a:hover {
  color: #0056a0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.footer-center {
  text-align: center;
}

.anpc-logo {
  width: 100px;
  margin: 0 15px;
  transition: transform 0.3s ease;
}

.anpc-logo:hover {
  transform: scale(1.1);
}

.footer-right {
  text-align: right;
}

.footer-right h4 {
  margin-top: 0;
  font-size: 18px;
  color: #333;
  font-weight: bold;
}

.footer-right p {
  margin: 5px 0;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center; /* Center all items on mobile */
  }

  .footer-left {
    text-align: center; /* Center text in left section on mobile */
    margin-bottom: 20px; /* Space between sections */
  }

  .footer-left a {
    display: block; /* Stack links vertically on mobile */
    margin: 5px 0; /* Vertical spacing */
  }

  .footer-right {
    text-align: center; /* Center text in right section on mobile */
  }
}
@-webkit-keyframes fadeImg {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeImg {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Style the reviews section */
#reviews {
  background-color: #fff9f3;
  padding: 40px;
  margin: 10px;
  border-radius: 10px;
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
}

/* Style the section heading */
#reviews h2 {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  color: #555;
  margin-bottom: 40px;
}

/* Style the review cards */
.review-card {
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  padding: 30px;
  margin: 20px 0;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 800px;
  position: relative;
}

.review-card:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 0 0 20px;
  border-color: transparent transparent transparent #fff;
  transform: translate(-100%, 100%);
}

.review-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: bold;
  color: #555;
}

.review-card p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: #666;
}

.review-card span {
  font-weight: bold;
  color: #888;
  margin-top: 20px;
}

/* Style the form */
#review-form {
  display: flex;
  flex-direction: column;
  max-width: 800px;
}

#review-form label {
  font-size: 20px;
  font-weight: bold;
  color: #555;
  margin-bottom: 10px;
}

#review-form input[type="text"],
#review-form textarea {
  padding: 10px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
}

#review-form textarea {
  height: 500px;
}

#review-form button[type="submit"] {
  padding: 10px 20px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  background-color: #555;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#review-form button[type="submit"]:hover {
  background-color: #333;
}

@media only screen and (max-width: 700px) {
  .image-list {
    display: flex;

  }
  .whitey{
    background-color: #fff;
    padding-bottom: 30px;
    padding-top: 10px;
    padding-right: 0px;
    padding-left: 0px;
    margin-top: 1rem;
    border-radius: 20px;
  }
  .image-list img {
    height: auto;
    max-width: 90%;
    margin: 0.5rem;
  }
  h1, h2{
    color: #333;
    font-weight: normal;
    margin: 1.75rem 0 1rem 0;
    background-color: #ffffffad;
    border-radius: 20px;
    padding:7px;
  }
  .add-to-cart {
    border-radius: 20px;
    position: relative;
    display: inline-block;
    background: #ff6600;
    color: #fff;
    border: none;
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    transform: translateZ(0);
    transition: color 0.3s ease;
    letter-spacing: 0.0625rem;
    font-weight:500;
    overflow: hidden;
    margin-top:1rem;
    margin-left:0px;
  }
  .follow-btn {
    margin-left: 1rem;
  }
  .likesecion{
    margin-left: 0.5rem;
  }
}
@media only screen and (max-width: 480px) {
  .whitey{
    background-color: #fff;
    padding-bottom: 30px;
    padding-top: 10px;
    padding-right: 0px;
    padding-left: 0px;
    margin-top: 1rem;
    border-radius: 20px;
  }
  .add-to-cart {
    border-radius: 20px;
    position: relative;
    display: inline-block;
    background: #ff6600;
    color: #fff;
    border: none;
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    transform: translateZ(0);
    transition: color 0.3s ease;
    letter-spacing: 0.0625rem;
    font-weight:500;
    overflow: hidden;
    margin-top:1rem;
    margin-left:0px;
  }
  .follow-btn {
    margin-left: 1rem;
  }
  .likesecion{
    margin-left: 0.5rem;
  }
}
@media only screen and (max-width: 600px) {
  /* CSS styles for smartphones go here */
  .whitey{
    background-color: #fff;
    padding-bottom: 30px;
    padding-top: 10px;
    padding-right: 0px;
    padding-left: 0px;
    margin-top: 1rem;
    border-radius: 20px;
  }
  .add-to-cart {
    border-radius: 20px;
    position: relative;
    display: inline-block;
    background: #ff6600;
    color: #fff;
    border: none;
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    transform: translateZ(0);
    transition: color 0.3s ease;
    letter-spacing: 0.0625rem;
    font-weight:500;
    overflow: hidden;
    margin-top:1rem;
    margin-left:0px;
  }
  .follow-btn {
    margin-left: 1rem;
  }
  .likesecion{
    margin-left: 0.5rem;
  }
}
}