body {
  font-family: 'Open Sans';
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.banner {
  background-color: #cd007b;
  color: #fff;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.banner img {
  max-height: 50px;
  width: auto;
  margin: 0 auto;
  display: block;
  position: relative;
}

/* Desktop version */
@media (min-width: 768px) {
  .banner img {
    left: -60px; /* Adjust this value for desktop offset */
  }
}

/* Mobile version */
@media (max-width: 767px) {
  .banner img {
    left: -20px; /* Adjust this value for mobile offset */
  }
}


.menu {
  display: none;
  position: fixed; /* Make the menu cover the entire screen */
  top: 0;
  left: 0;
  height: 100%;
  width: 100%; /* Make the menu cover the entire screen width */
  background-color: rgba(0, 0, 0, 0.9); /* Dark overlay with some transparency */
  color: #fff;
  padding-top: 60px;
  transition: 0.3s;
  z-index: 1000; /* Ensure the menu is on top of everything else */
  text-align: center; /* Center the text in the menu */
}

.menu a {
  padding: 15px 30px; /* Increase padding for larger click area */
  text-decoration: none;
  color: #fff;
  display: block;
  font-size: 24px; /* Increase font size */
}

.menu a:hover {
  background-color: #cd007b;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  background-color: transparent;
  border: none;
  font-size: 36px; /* Increase the size of the close button */
  color: #fff;
  cursor: pointer;
}

.close-btn:hover {
  color: #cd007b;
}

.open-menu {
  display: block;
}

.menu-btn {
  cursor: pointer;
  padding: 10px;
  background-color: #cd007b;
  border: none;
  color: #fff;
  border-radius: 5px;
  margin-left: 20px;
}

.menu-btn:hover {
  background-color: #e04d00;
}

.social-icons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  justify-content: center;
}

.social-icon img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.social-icon img:hover {
  transform: scale(1.1);
}

.search-container {
  text-align: center;
  margin: 50px auto;
  max-width: 500px;
  width: 100%;
}

.search-container h1 {
  margin-bottom: 20px;
}

.input-group {
  margin-bottom: 15px;
  max-width: 300px; /* Restrict the maximum width of the input fields */
  margin: 0 auto 15px; /* Center align the input fields */
  font-size: 20px;
}

.input-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  text-align: left;
}

.input-group input {
  padding: 10px;
  width: 100%; /* Make the input fields take up the full width of the .input-group */
  box-sizing: border-box;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: border-color 0.3s ease;
}

.input-group input:focus {
  border-color: #ff6600;
}

.input-group input[readonly] {
  background-color: #f9f9f9;
  color: #777;
  cursor: not-allowed;
}

.button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  background-color: #cd007b;
  color: #fff;
  transition: background-color 0.3s ease;
  margin-top: 30px; /* Space between form and button */
  margin-bottom: 30px;
  text-decoration: none;
  font-family: 'Open Sans';
  
  

}

.button-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.button-stack .button {
  display: block;
  width: 80%; /* Optional: make them wider */
  max-width: 300px; /* Optional: control maximum width */
  text-align: center;
}

.button1 {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  background-color: #cd007b;
  color: #fff;
  transition: background-color 0.3s ease;
  margin-top: 0px; /* Space between form and button */
  margin-bottom: 5px;
  text-decoration: none;
  font-family: 'Open Sans';
  
}


.album {
  width: 90%;
  max-width: 800px;
  margin: auto;
  text-align: center;
  padding: 20px;
 
 
  
}

h1,h2 {
  color: #333;
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 25px;
  
}

.gallery,
.image-selection {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.image-container {
  position: relative;
  width: calc(33.33% - 20px);
  max-width: 250px;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  margin-bottom: 30px;
}

.image-container:hover {
  transform: scale(1.05);
}

img {
  width: 100%;
  height: auto;
  display: block;
}

.download-button {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 5px 10px;
  border-radius: 3px;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.3s;
}

.download-button:hover {
  background-color: #ff5500;
}


.share-button {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  width: 30px;  /* Adjust the width to control the size */
  height: 30px; /* Make the height equal to width for a perfect circle */
  text-decoration: none;
  border-radius: 50%;  /* Fully round the corners to make a circle */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
  border: none; /* Remove any border */
  cursor: pointer; /* Change cursor to pointer on hover */
}

.share-button:hover {
  background-color: #ff5500
}


.no-images {
  color: #777;
}

.form-container {
  margin-top: 20px;
  text-align: center;
}

.form-container h2 {
  color: #333;
}

.form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 300px;
  margin: 0 auto 15px; /* Center align and margin-bottom for spacing */
}

.form-group label {
  text-align: left;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-group input {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .image-container {
      width: calc(50% - 20px);
  }

  .input-group label {
      text-align: left;
  }

  .search-container {
    padding: 0 15px; /* Add padding to the container to create space on the left and right */
    width: 100%; /* Ensure the container takes up the full width */
    box-sizing: border-box; /* Include padding in the element's total width */
  }

  .input-group input[type="text"] {
    width: 100%; /* Make the input field take up the full width of its container */
    padding-left: 10px; /* Optional: Add some padding inside the input field for text alignment */
    padding-right: 10px; /* Optional: Add some padding inside the input field for text alignment */
    box-sizing: border-box; /* Ensure the padding is included within the width */
  }

  .space {

    margin-top: 40px;
  
  }
}

@media screen and (max-width: 480px) {
  .image-container {
      width: 100%;
  }

  input[type="text"] {
      width: 100%;
  }

  .form-container input[type="text"],
  .form-container input[type="password"] {
      width: 100%;
  }

  .social-icons {
    flex-direction: column; /* Stack icons vertically */
    align-items: center;
  }
}


/* Enhanced Login Page Styles */
.login-wrapper {
  min-height: 100vh;
  background: white;
  padding: 20px;
}

.login-container {
  background: white;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  overflow: visible;
}

.login-header {
  margin-bottom: 30px;
}

.login-header h1 {
  color: #333;
  font-size: 2.2em;
  margin-bottom: 10px;
  font-weight: 700;
}

.login-header p {
  color: #666;
  font-size: 1.1em;
  margin: 0;
}

/* Google Login Section - Most Prominent */
.google-section {
  background: white;
  border: 2px solid #cd007b;
  border-radius: 15px;
  padding: 15px;
  margin-bottom: 20px;
  position: relative;
  text-align: center;
  overflow: visible;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.google-section h3 {
  color: #cd007b;
  margin-bottom: 10px;
  font-size: 1.2em;
  font-weight: 700;
}

.google-login-container {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  padding: 0 10px;
}

.g_id_signin {
  margin: 0 auto !important;
  display: block !important;
  margin-left: 55% !important;
  transform: translateX(-50%) !important;
}



/* Center the Google button content */
.google-login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px 5px;
}



/* Hide any One Tap elements */
[data-ux_mode="popup"] {
  display: none !important;
}

/* Custom Google Button */
.custom-google-btn {
  width: 100%;
  height: 60px;
  background: #cd007b;
  border: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(247, 128, 33, 0.3);
  font-family: 'Google Sans', 'Roboto', sans-serif;
  text-decoration: none;
}

.custom-google-btn:hover {
  background: #e66d1a;
  box-shadow: 0 6px 16px rgba(247, 128, 33, 0.4);
  transform: translateY(-2px);
}

.custom-google-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.google-logo {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.custom-google-btn span {
  font-size: 16px;
  font-weight: 500;
  color: white;
}


/* Additional styling to ensure proper display */
.google-section {
  overflow: visible;
}

.google-section .g_id_signin {
  position: relative;
  z-index: 1;
}

/* Ensure Google button content is fully visible on mobile */
.google-section .g_id_signin iframe {
  overflow: visible !important;
  min-height: 44px !important;
}

.google-section .g_id_signin div {
  overflow: visible !important;
}

.google-benefits {
  color: #4caf50;
  font-size: 0.8em;
  margin: 5px 0 0 0;
  line-height: 1.3;
}

/* Divider */
.divider {
  position: relative;
  margin: 25px 0;
  text-align: center;
}

.divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e0e0e0;
}

.divider span {
  background: white;
  padding: 0 20px;
  color: #999;
  font-size: 0.9em;
}

/* Traditional Login */
.traditional-login {
  margin-bottom: 25px;
}

.traditional-login h3 {
  color: #333;
  margin-bottom: 20px;
  font-size: 1.2em;
}

.login-form {
  text-align: left;
}

.input-group {
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 600;
  font-size: 0.9em;
}

.input-group input {
  width: 100%;
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.input-group input:focus {
  outline: none;
  border-color: #cd007b;
  box-shadow: 0 0 0 3px rgba(247, 128, 33, 0.1);
}

.login-btn {
  width: 100%;
  background: #cd007b;
  color: white;
  border: none;
  padding: 15px;
  border-radius: 10px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.login-btn:hover {
  background: #e66d1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(247, 128, 33, 0.3);
}

/* Error Message */
.error-message {
  background: #ffebee;
  color: #c62828;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9em;
}

/* Register Section */
.register-section {
  margin-bottom: 20px;
}

.register-section p {
  color: #666;
  margin-bottom: 15px;
}

.register-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #cd007b;
  color: white;
  padding: 15px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  white-space: nowrap;
  width: 100%;
  justify-content: center;
}

.register-btn:hover {
  background: #e66d1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(247, 128, 33, 0.3);
}

/* Help Section */
.help-section {
  border-top: 1px solid #e0e0e0;
  padding-top: 20px;
}

.help-section a {
  color: #667eea;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.help-section a:hover {
  color: #764ba2;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .login-wrapper, .register-wrapper {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
  }
  
  .login-container, .register-container {
    padding: 20px;
    max-width: 100%;
    margin: 0;
    width: 100%;
  }
  
  .login-header h1 {
    font-size: 1.8em;
  }
  
  .google-section {
    padding: 10px;
    margin-bottom: 15px;
    border: 2px solid #cd007b;
    max-width: 350px;
  }
  
  .google-section h3 {
    font-size: 1.1em;
  }
  
  .google-login-container {
    padding: 15px 5px;
    min-height: 105px;
    overflow: visible;
  }
  
  .g_id_signin {
    min-width: 250px !important;
    width: calc(100% - 5px) !important;
    max-width: 100% !important;
    overflow: visible !important;
    height: auto !important;
    margin-left: 58% !important;
    transform: translateX(-50%) !important;
  }
  
  .custom-google-btn {
    height: 50px;
    font-size: 14px;
  }
  
  .custom-google-btn span {
    font-size: 14px;
  }
  
  .input-group input {
    padding: 12px;
    font-size: 16px; /* Prevents zoom on iOS */
  }
  
  .login-btn, .register-btn {
    padding: 12px;
    font-size: 1em;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .form-row .input-group {
    margin-bottom: 20px;
  }
  
  .divider {
    margin: 20px 0;
  }
  
  .login-section, .register-section {
    margin-bottom: 15px;
  }
  
  .login-link, .register-btn {
    padding: 12px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .login-wrapper, .register-wrapper {
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
  }
  
  .login-container, .register-container {
    padding: 8px;
    width: 98%;
    margin: 0 auto;
  }
  
  .login-header h1 {
    font-size: 1.6em;
  }
  
  .login-header p {
    font-size: 1em;
  }
  
  .google-section {
    padding: 6px;
    border-radius: 8px;
    box-shadow: none;
    border: 1px solid #cd007b;
    margin-bottom: 10px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .google-section h3 {
    font-size: 0.75em;
    margin-bottom: 3px;
    margin-top: 0;
  }
  
  .google-login-container {
    padding: 8px;
    min-height: 75px;
    overflow: visible;
  }
  
  .g_id_signin {
    min-width: 200px !important;
    width: calc(100% - 4px) !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    overflow: visible !important;
    height: auto !important;
    transform: scale(0.8) translateX(5%);
    margin-left: 62% !important;
  }
  
  .custom-google-btn span {
    font-size: 13px;
  }
  
  .google-logo {
    width: 18px;
    height: 18px;
  }
  
  .google-benefits {
    font-size: 0.6em;
    margin-top: 1px;
    line-height: 1.1;
  }
  
  .traditional-login h3, .registration-form h3 {
    font-size: 1.1em;
  }
  
  .input-group label {
    font-size: 0.85em;
  }
  
  .input-group input {
    padding: 10px;
    font-size: 16px;
  }
  
  .login-btn, .register-btn {
    padding: 10px;
    font-size: 0.9em;
  }
  
  .login-section p, .register-section p {
    font-size: 0.9em;
  }
  
  .login-link, .register-btn {
    padding: 10px;
    font-size: 0.9em;
  }
  
  /* Ensure no card appearance on mobile */
  .login-container, .register-container {
    box-shadow: none;
    border-radius: 0;
    background: white;
  }
  
  /* Center content properly */
  .login-wrapper, .register-wrapper {
    background: white;
  }
  
  /* Ensure button doesn't overflow on mobile */
  .register-section {
    text-align: center;
    overflow: hidden;
  }
  
  .register-btn {
    max-width: 100%;
    word-wrap: break-word;
  }
}

/* Registration Form Styles */
.registration-form {
  margin-bottom: 25px;
}

.register-form {
  text-align: left;
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.form-row .input-group {
  flex: 1;
  margin-bottom: 0;
}

/* Registration Page - Match Login Style */
.register-wrapper {
  min-height: 100vh;
  background: white;
  padding: 20px;
}

.register-container {
  background: white;
  padding: 40px;
  max-width: 450px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

.register-btn {
  width: 100%;
  background: #cd007b;
  color: white;
  border: none;
  padding: 15px;
  border-radius: 10px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.register-btn:hover {
  background: #e66d1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(247, 128, 33, 0.3);
}

.login-section {
  margin-bottom: 20px;
  text-align: center;
}

.login-section p {
  color: #666;
  margin-bottom: 15px;
}

.login-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f5f5f5;
  color: #333;
  padding: 12px 25px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.login-link:hover {
  background: #e0e0e0;
  border-color: #cd007b;
  transform: translateY(-1px);
}

.recover-link {
  color: #cd007b;
  text-decoration: none;
  font-size: 0.9em;
  margin-top: 5px;
  display: inline-block;
}

.recover-link:hover {
  color: #e66d1a;
  text-decoration: underline;
}


/* Legacy Google Login Styles (for backward compatibility) */
.google-login {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.password-group {
  position: relative;
}

.password-group .toggle-password {
  position: absolute;
  top: 35px;
  right: 10px;
  cursor: pointer;
  color: #999;
  transition: color 0.3s ease;
}

.password-group .toggle-password:hover {
  color: #333;
}


.error-message .recover-link {
  color: blue;
  text-decoration: underline;
  margin-left: 10px;
}

.error-message .recover-link:hover {
  color: darkblue;
  text-decoration: none;
}

.products {
  position: relative;
  width: 300px; /* Adjust based on your image size */
  margin: 20px auto; /* Center the container horizontally */
  text-align: center;
}



.product img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: -20px; /* Negative margin to overlap the button */
}

.product a.buy-button {
  position: absolute;
  bottom: 15%; /* Move the button higher */
  left: 50%;
  transform: translate(-50%, 50%);
  padding: 20px 15px; /* Adjust padding */
  background-color: #000000;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
  padding: 20px 15px; /* Adjust the padding to control the button's position */
}
.product:hover {
  background-color: #e65c00; /* Darker shade for hover effect */
}

.buy-button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 12px;
  background-color: #cd007b;
  color: #fff;
  transition: background-color 0.3s ease;
  margin-top: 0px; /* Space between form and button */
  margin-bottom: 30px;
  font-family: 'Open Sans';

}





/* Prevent zooming in on input fields on mobile devices */
input[type="text"], input[type="password"], input[type="email"], input[type="search"], input[type="tel"], input[type="number"], input[type="url"] {
  font-size: 20px;
}


#video {
  border: 1px solid #cd007b;
  width: 320px;
  height: 240px;
}

.camera {
  width: 340px;
  display: inline-block;
}

.output {
  width: 340px;
  display: inline-block;
}

.contentarea {
  font-size: 16px;
  font-family: Arial;
  text-align: center;
  color: black;
  padding-top: 100px;
}


.content {

padding-left: 20px;

}


.faq-container {
  width: 80%;
  max-width: 400px;
  margin: 20px auto;
  text-align: center;
  
  
 
}
.faq {
  background: #cd007b;
  margin-bottom: 0px;
  border-radius: 50px;
  overflow: hidden;
  

}
.faq-header {
  font-weight: bold;  /* Makes the text bold */
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  cursor: pointer;
  color: #FFFFFF;
}


.faq-content {
  overflow: hidden;
  transition: all 0.3s ease-out;
  padding-left: 15px;
  padding-right: 15px;
  background: #cd007b;
  height: 0; /* Initially hidden */
  opacity: 0; /* Initially hidden */
  display: none; /* Initially hidden */
  Color: #FFFFFF;
  
}

.faq-content p {
  margin: 10px 0;
  padding: 0;

}
.faq.open .faq-content {
  display: block; /* Show content */
  height: auto; /* Let content expand fully */
  opacity: 1; /* Fade-in effect */
}
.faq .arrow-button {
  background-color: #ffffff;
  border: none;
  color: #cd007b;
  padding: 10px 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  border-radius: 50%;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease;

}

.faq.open .arrow-button {
  transform: rotate(180deg);
}


.deliver {
  border: 2px solid #cd007b; /* Orange border */
  border-radius: 8px; /* Rounded corners */
  padding: 15px;
  margin: 20px 0;
  background-color: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Slight shadow for a 3D effect */
}

.deliver h3 {
  margin-left: 10px;
  font-size: 18px;
  color: #333;
}

.deliver i {
  font-size: 24px;
  color: #cd007b;
}

.order-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.order-wrapper h1 {
  font-size: 28px;
  color: #ff6600;
  margin-bottom: 30px;
}

.order {
  width: 80%;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  border: 2px solid #ff6600; /* Added orange border */
  margin-bottom: 20px;
  text-align: center; /* Center text within each order card */
  box-shadow: none; /* Removed the shadow */
}

.order h2 {
  font-size: 24px;
  color: #ff6600;
  margin-bottom: 10px;
}

.order p {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
}

.total-price {
  font-weight: bold;
  color: #ff6600;
}

.photos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Center the images horizontally */
  margin-top: 20px;
}

.photo {
  margin-right: 10px;
  margin-bottom: 10px;
}

/* New class for the update status */
.update-status {
  font-weight: bold !important;
  color: #03b32c !important; /* Green color */
  font-size: 50px !important;
  margin-bottom: 15px !important; /* Space between the update status and photos */
}

.order-photo {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: none; /* Removed shadow from the images */
  border: 1px solid #ddd; /* Added light border to images */
}


.quantity-selector {
  display: flex;
  align-items: center;
  justify-content: center;
}
.quantity-selector button {
  width: 30px;
  height: 30px;
  background-color: #ff6600;
  color: white;
  border: none;
  font-size: 18px;
  cursor: pointer;
  border-radius: 4px;
}
.quantity-selector input {
  text-align: center;
  line-height: 40px; /* Center the text vertically */
  border: none; /* Removed border */
  padding: 0;
  margin: 0 5px;
}
.quantity-selector button:hover {
  background-color: #ff6600;
}
.quantity-selector button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}


  /* Additional styling to enhance the appearance */
  .quantity-selector button:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.quantity-selector button:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}
.quantity-selector {
 
    overflow: hidden;
    display: inline-flex;
}


/* Header for "Add more Photos to Save" */
.add-photo-header {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
}

/* Form and its elements styling */
.add-photo-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Wrapper for input and button */
.search-wrapper {
  position: relative;
  width: 80%;
  max-width: 600px;
  margin-bottom: 10px;
}

/* Input field styling */
.search-input {
  padding: 10px;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

/* Search button inside input field */
.search-button {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
}

.search-button i {
  font-size: 18px;
  color: #cd007b; /* Move icon color here */
}

/* Divider styling for "or" between input and QR button */
.or-divider {
  text-align: center;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: bold;
}

/* Wrapper for Scan QR Code button */
.qr-code-wrapper {
  width: 80%;
  max-width: 600px;
  text-align: center;
  margin-bottom: 30px;
}

/* Add spacing to the next button */
.button + .button {
  margin-top: 30px;  /* Add more spacing between consecutive buttons */
}

/* Or, if the next button is an <a> tag instead of an <input> or <form> */
.button ~ a {
  margin-top: 30px;  /* Add more spacing if another link follows */
}

.loading-spinner {
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: fixed; /* Make the spinner fixed */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9); /* Semi-transparent black */
  z-index: 9999; /* Ensure it is above all other elements */
}

.loading-spinner p {
  color: white;
  font-size: 36px; /* Larger text for loading */
}

.fa-spin {
  margin-bottom: 20px; /* Space between spinner and text */
  font-size: 100px; /* Larger spinner */
  color: white;
}


.loading-spinner i {
  font-size: 100px;
  color: white;
}




    /* Styles for File Input and Buttons */
    .file-input-group {
      margin-bottom: 20px;
      text-align: center;
  }

  .file-input-group label {
      font-size: 1.2rem;
      margin-bottom: 10px;
      display: inline-block;
  }

  input[type="file"] {
      padding: 12px;
      font-size: 1rem;
      border-radius: 8px;
      border: 2px solid #ddd;
      cursor: pointer;
      max-width: 100%;
      box-sizing: border-box;
      background-color: #f2f2f2;
  }


  .consent-container {
    margin-top: 10px; /* Reduced margin for closer spacing */
    text-align: center;
    font-size: 14px;
}

.consent-container label {
    display: flex;
    align-items: center;
    justify-content: center;
}

.consent-container input[type="checkbox"] {
    margin-right: 10px;
}

#submitButton {
    margin-top: 10px; /* Reduced gap between the checkbox and "Search" button */
}

#iosMessage {
  display: none;
}


#cookie-banner {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding-top: 50px; /* 👈 shifts the modal down */
}


.cookie-modal {
  background: #ffffff;
  padding: 20px 25px;
  max-width: 90%;
  width: 300px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  text-align: center;
  z-index: 10000; /* Add this line */
}





.cookie-modal p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #333;
}

.cookie-modal a {
  color: #007bff;
  text-decoration: none;
}

.cookie-modal a:hover {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.cookie-buttons button {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.cookie-buttons button:first-child {
  background-color: #cd007b;
  color: white;
}

.cookie-buttons button:first-child:hover {
  background-color: #cd007b;
}

.cookie-buttons button:last-child {
  background-color: #e0e0e0;
  color: #333;
}

.cookie-buttons button:last-child:hover {
  background-color: #c2c2c2;
}
    
