/* Reset some default styles */
* {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(45deg, #FFD5E5, #AA9EBF);
  position: relative;
}


.grid-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 columns */
  grid-template-rows: repeat(5, 1fr); /* 5 rows */
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.grid-container::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, transparent 1%, #FFF 1%, #FFF 9%, transparent 9%),
                    linear-gradient(to bottom, transparent 1%, #FFF 1%, #FFF 9%, transparent 9%);
  background-size: 20px 20px; /* Grid size (adjust as needed) */
  background-position: 0 0, 0 0;
}

.grid-container {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #333;
}

.window-container {
  display: flex;
  justify-content: space-between;
  margin: 20px auto;
}
.retro-windows, .product-info {
  position: absolute;
  background-color: #FFF;
  border: 1px solid #000;
  border-radius: 5px;
  box-shadow: 3px 3px 5px #000;
}


.window-title-bar, .title-bar {
  background-color: #1E90FF;
  color: #FFF;
  padding: 8px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: default; /* Set default cursor style */
}

/* Change cursor style to 'grab' on hover */
.window-title-bar:hover, .title-bar:hover {
  cursor: grab;
}
.window-title, .window-title {
  font-weight: bold;
}

.window-controls {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-right: 5px;
  font-size: 16px;
  cursor: pointer;
}

.window-controls div, .window-controls div {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #FF4500;
  margin-left: 5px;
}

/* ... (other CSS styles) ... */

.window-controls div {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #FF4500;
  margin-left: 5px;
}

.window-content {
  padding: 20px;
  text-align: center;
}

img {
  max-width: 100%;
}

h1 {
  font-size: 24px;
  margin: 10px 0;
}

p {
  font-size: 16px;
  margin: 10px 0;
}

.price {
  font-size: 24px;
  color: #FF4500;
}
/* ... (previous CSS code) ... */
.product-image {
  max-width: 100%;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  margin: 10px 0;
}

/* ... (previous CSS code) ... */
.title-bar {
    background-color: #1E90FF;
    color: #FFF;
    padding: 8px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.username {
  font-weight: bold;
}

.retro-windows {
    width: 600px;
    margin: 20px auto;
    background-color: #FFF;
    border: 1px solid #000;
    border-radius: 5px;
    box-shadow: 3px 3px 5px #000;
}

.product-image {
    max-width: 100%;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
    margin: 10px 0;
}
/* ... (previous CSS code) ... */

/* Styles for the Buy Now button */
.button-56 {
  align-items: center;
  background-color: #fee6e3;
  border: 2px solid #111;
  border-radius: 8px;
  box-sizing: border-box;
  color: #111;
  cursor: pointer;
  display: flex;
  font-family: Inter, sans-serif;
  font-size: 16px;
  height: 48px;
  justify-content: center;
  line-height: 24px;
  max-width: 100%;
  padding: 0 25px;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  overflow: hidden; /* Add overflow property */
}

.button-56:after {
  background-color: #111;
  border-radius: 8px;
  content: "";
  display: block;
  height: 48px;
  left: 0;
  width: 100%;
  position: absolute;
  top: 0;
  transform: translate(8px, 8px);
  transition: transform 0.2s ease-out;
  z-index: -1; /* Set z-index to -1 for the pseudo-element to be behind the button */
}

.button-56:hover:after {
  transform: translate(0, 0);
}

.button-56:active {
  background-color: #ffdeda;
  outline: 0;
}

.button-56:hover {
  outline: 0;
}

@media (min-width: 768px) {
  .button-56 {
    padding: 0 40px;
  }
}

.review .fa {
  font-size: 24px; /* Adjust the size as needed */
  width: 24px; /* Set a fixed width */
  height: 24px; /* Set a fixed height */
  border-radius: 50%; /* Make the icons round */
}

/* Additional styling for user photos */
.user-photo img {
  width: 48px; /* Set a fixed width for user photos */
  height: 48px; /* Set a fixed height for user photos */
  border-radius: 50%; /* Make user photos round */
  object-fit: cover; /* Ensure the photo retains its aspect ratio */
}
.user-info {
  flex: 1;
  font-family: 'Arial', sans-serif; /* Change to your desired font-family */
}

/* Font style for review-text (e.g., a different font-family) */
.review-text {
  margin-top: 0;
  font-family: 'Verdana', sans-serif; /* Change to your desired font-family */
  font-size: 16px; /* You can also adjust the font size here */
}

.rating {
  margin-top: 10px; /* Add spacing between text and rating */
  color: orange;
}











