/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* Header Styles */
header {
  background-color: #ffdad4;
  color: #111111;
  padding: 5px 20px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: auto;
  height: auto;
}

.menu {
  list-style-type: none;
  display: flex;
}

.menu li {
  margin-right: 20px;
}

.menu li a {
  color: #111111;
  text-decoration: none;
}

.header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: white;
  width: 100%;
}

.header img {
  max-width: 100%; /* Ensure images don't exceed the width of their container */
  height: auto;
  overflow: hidden;
}

.overlay {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.7);
  bottom: -3em;
  left: 65%;
  transform: translateX(-50%);
  color: white;
  padding: 2em;
  font-size: 1.5em;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

/* Main Section Styles */
main {
  padding: 20px;
}

/* Container for main content and sidebar */
.container {
  display: flex;
}

.sidebar {
  width: 20%;
  padding: 20px;
  background-color: #f8f8f8;
  border-right: 1px solid #ddd;
}

.sidebar h2, .sidebar h3 {
  margin-top: 0;
}

.sidebar input[type="text"],
.sidebar select,
.sidebar input[type="range"] {
  width: 100%;
  margin-bottom: 10px;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.sidebar label {
  display: block;
  margin-bottom: 5px;
}

.sidebar label input {
  margin-right: 5px;
}

.content {
  width: 80%;
  padding: 20px;
}

/* Clothing Cards Flexbox */
.clothes {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around; /* Adjust alignment as needed */
}

.clothing-card {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: center;
  width: 30%; /* Adjust width based on your design */
  margin-bottom: 20px;
}

.clothing-card img {
  width: 100%;
  height: auto;
}

.color-circle {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-left: 5px;
}

.cart-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  color: #333;
}

.cart-container {
  display: flex;
  flex-direction: column;
  gap: 20px; /* Adjust the gap between carts */
}

.cart-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* Adjust the gap between items in a cart */
}

.cart-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px; /* Adjust the gap between elements in each item */
}

/* Sales Section Styles */
.sales {
  margin-top: 40px;
}

.sale-item {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: center;
  margin-bottom: 20px;
}

.sale-item img {
  width: 100%;
  height: auto;
}

.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh; /* Adjust height as needed */
}

.btn {
  display: inline-block;
  padding: 8px 16px;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  margin-top: 10px;
}

/* Your CSS styles for checkout page */
.checkout-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.image-div {
  flex: 1;
  margin-right: 20px;
}

.image-div img {
  max-width: 100%;
  height: auto;
}

.summary-div {
  flex: 1; /* Adjusted to have the same flex value as image-div */
  border: 1px solid #ccc;
  padding: 20px;
}

.item-summary {
  margin-bottom: 15px;
}

.payment-options {
  display: flex;
  justify-content: center;
}

.payment-image {
  width: 50px;
  padding: 0.5em;
}

/* Footer CSS */
footer {
  background-color: #111111;
  color: #ffffff;
  padding: 20px;
  text-align: center; /* Center text in the footer */
}

.footer-content {
  display: flex;
  flex-direction: column; /* Stack items vertically */
  align-items: center; /* Center items horizontally */
}

.contact-info,
.social-links,
.quick-links {
  flex: 1;
}

.social-icon {
  display: inline;
  padding: 0.5em;
  margin-bottom: 10px;
  color: #fff;
  text-decoration: none;
}

.quick-links a {
  text-decoration: none;
  color: white;
}

/* Media Queries for Responsive Design */
@media screen and (max-width: 768px) {
  .clothing-card {
    width: 45%; /* Adjust width for smaller screens */
  }
}

@media screen and (max-width: 480px) {
  .clothing-card {
    width: 100%; /* Adjust width for mobile screens */
  }

  .sidebar {
    width: 100%; /* Sidebar takes full width on smaller screens */
  }

  .content {
    width: 100%; /* Content takes full width on smaller screens */
  }
}
