@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Be Vietnam Pro", sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* Global Styles */
h1 {
  font-size: 50px;
  line-height: 64px;
  color: #222;
  text-transform: uppercase;
}

h2 {
  font-size: 46px;
  line-height: 54px;
  color: #222;
  text-transform: uppercase;
}

h4 {
  font-size: 20px;
  color: #222;
}

h6 {
  font-weight: 700;
  font-size: 12px;
}

p {
  font-size: 16px;
  color: #465b52;
  margin: 15px 0 20px 0;
}

.section-p1 {
  padding: 40px 80px;
}

.section-m1 {
  margin: 40px 0;
}

body {
  width: 100%;
  overflow-x: hidden;
  background-color: #23330E;
}

/* Header Start */
#header {
  width: 82%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1px 5vw;
  box-shadow: 0 2px 0 #98A789;
  z-index: 999;
  position: sticky;
  top: 0;
  left: 0;
  flex-wrap: wrap;
  flex-direction: row;
  background-color: #23330E;
  margin-bottom: 10px;
}

.logo {
  max-height: 150px;
  height: auto;
  width: auto;
  flex-shrink: 0;
}

#navbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  transform: translateY(18px);
}

#navbar li {
  list-style: none;
  padding: 0 0px;
  position: relative;
}

#navbar li a {
  text-decoration: none;
  font-size: 19px;
  font-weight: 400;
  color: #e7f5dc;
  line-height: 26px;
  transition: 0.3s ease;
}

#navbar li a:hover,
#navbar li a.active {
  color: white;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: #999999;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 6px;
  transition: color 0.3s ease;
  margin-left: auto;
}

.menu-toggle i {
  font-size: 20px;
}

.menu-toggle:hover {
  color: #f4c27e;
}

.menu-toggle span {
  pointer-events: none;
}

/* Ẩn mobile sidebar và overlay trên desktop */
@media (min-width: 769px) {
  .mobile-sidebar {
    display: none !important;
  }

  .overlay {
    display: none !important;
  }
}

@media (max-width: 768px) {
  #header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5vw;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1001;
    width: 100%;
  }

  .menu-toggle {
    display: flex;
  }

  #navbar {
    display: none;
  }

  #navbar-wrapper {
    display: none !important;
  }

  #navbar li {
    text-align: center;
    width: 100%;
  }

  #navbar li a {
    display: block;
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
  }

  #navbar li a.active::after,
  #navbar li a:hover::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .logo {
    max-height: 40px;
  }

  .mobile-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 260px;
    height: 100%;
    background-color: #ffffff;
    z-index: 1200;
    transition: left 0.3s ease;
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
  }

  .mobile-sidebar.active {
    left: 0;
  }

  .sidebar-header {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .sidebar-logo {
    max-width: 120px;
    height: auto;
  }

  .sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .sidebar-menu li {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .sidebar-menu a {
    display: block;
    padding: 14px 20px;
    color: black;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
  }

  .sidebar-menu a:hover {
    background-color: rgba(0, 0, 0, 0.1);
    color: #f4c27e;
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1100;
    display: none;
  }

  .overlay.active {
    display: block;
  }

  #mobileSidebar .language-menu {
    display: none;
    background: white;
    border: 1px solid #ddd;
    list-style: none;
    padding: 0;
    margin-top: 5px;
  }

  .mobile-sidebar .language-menu li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    text-decoration: none;
    font-weight: 500;
    color: #1a1a1a;
    background-color: white;
    width: 100%;
  }

  .mobile-sidebar .language-menu li a:hover {
    background: #f4f4f4;
    color: #f4c27e;
  }
}

/* Hero Styles */
#hero {
  height: auto;
  width: 80%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
  position: relative;
}

.hero-banner {
  background-image: url("img/banner.png");
  background-position: center 45%;
  background-size: cover;
  height: 400px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 50px;
  position: relative;
}

.hero-banner h1 {
  font-size: 33px;
  font-weight: 400;
  line-height: 46px;
  color: #e7f5dc;
  text-align: left;
  margin: 0;
  text-transform: none;
}

.hero-banner h1 br {
  display: block;
  content: "";
}

.hero-banner h1 br + span {
  text-align: center;
  width: 100%;
  display: block;
  margin-top: -10px;
}

.hero-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding: 1rem 0;
  background: rgba(35, 51, 14, 0.8);
  color: #e7f5dc;
  border-radius: 0 0 16px 16px;
  flex-wrap: nowrap;
  width: 100%;
}

.banner-description {
  flex: 1 1 55%;
  max-width: 450px;
  font-size: 16px;
  line-height: 1.6;
  color: #e7f5dc;
  padding: 0;
  font-weight: 400;
  text-align: justify;
  text-justify: inter-word;
}

.banner-description p {
  margin: 0;
  text-align-last: left;
  font-size: 16px;
  line-height: 22px;
  color: #e7f5dc;
  font-weight: 400;
  text-indent: 0;
}

.btn-choose {
  background-color: #E7F5DC;
  color: #344420;
  padding: 12px 50px;
  align-self: center;
  margin: 15px auto 0 auto;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: block;
}

.btn-choose:hover {
  background-color: #d6eac3;
  transform: translateY(-2px);
}

.product-preview {
  flex: 1 1 25%;
  display: flex;
  justify-content: space-between;
  gap: 2px;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}

.product-preview img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
  flex: 0 0 auto;
}

@media (max-width: 768px) {
  #hero {
    width: 100%;
    padding: 0;
    height: auto;
  }

  .hero-banner {
    padding: 20px;
    height: 300px;
  }

  .hero-banner h1 {
    font-size: 24px;
    line-height: 32px;
  }

  .hero-banner h1 br + span {
    text-align: center;
    margin-top: -5px;
  }

  .hero-content {
    flex-direction: column;
    padding: 1rem 0;
    gap: 1rem;
  }

  .banner-description {
    max-width: 100%;
    padding: 0;
    font-size: 14px;
    line-height: 1.5;
    text-align: justify;
  }

  .banner-description p {
    font-size: 14px;
    line-height: 20px;
    text-align-last: justify;
    text-indent: 0;
  }

  .btn-choose {
    align-self: center;
    margin: 10px auto 0 auto;
    padding: 10px 20px;
    font-size: 12px;
    display: block;
  }

  .product-preview {
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    width: 100%;
  }

  .product-preview img {
    width: 80px;
    height: 120px;
  }
}

/* Giới thiệu team */
#gioi-thieu {
  background-color: #23330E;
  color: #E7F5DC;
  padding: 4rem 2rem;
  width: 80%;
  margin: 1rem auto;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
}

.team-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  text-align: left;
  width: 100%;
}

.team-member {
  flex: 0 0 40%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-member img {
  width: 500px;
  height: 500px;
  object-fit: cover;
  margin-bottom: 1rem;
  transform: translateX(-50px);
}

.member-detail {
  flex: 0 0 55%;
  padding: 1.5rem;
  color: #E7F5DC;
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.4;
  text-align: justify;
  transform: translateX(-30px);
}

.member-detail .ceo {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 0.1rem;
  color: #E7F5DC;
}

.member-detail .linh-phan {
  font-size: 35px;
  font-weight: 700;
  line-height: 48px;
  margin-bottom: 0.5rem;
  color: #E7F5DC;
}

.member-detail .des1 {
  font-size: 17px;
  font-weight: 700;
  line-height: 24px;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: #E7F5DC;
}

.member-detail .des2 {
  font-size: 20px;
  font-weight: 400;
  line-height: 27px;
  margin-bottom: 0.5rem;
  color: #E7F5DC;
}

.btn-choose-2 {
  background-color: #E7F5DC;
  color: #344420;
  padding: 12px 50px;
  align-self: flex-start;
  margin: 15px 0 0 0;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  position: absolute;
  right: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: block;
}

@media (max-width: 768px) {
  #gioi-thieu {
    width: 90%;
    padding: 2rem 1rem;
  }

  .team-container {
    flex-direction: column;
    gap: 1rem;
    transform: translateX(-10px);
  }

  .team-member, .member-detail {
    flex: 0 0 100%;
  }

  .team-member img {
    width: 100%;
    height: 300px;
  }

  .member-detail h4 {
    text-align: center;
  }
}

/* Dịch vụ */
.services-section {
  color: #3e2f00;
  text-align: center;
  padding: 4rem 2rem;
  border-radius: 12px;
  max-width: 1200px;
  margin: 0 auto;
  width: 82%;
}

.services-section h2 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #4b3b00;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
}

.service-image {
  flex: 0 0 50%;
}

.service-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* Điều chỉnh cho eco-originals */
.eco-originals .service-image {
  flex: 0 0 60%;
  margin-left: -40px;
}

.eco-originals .service-image img {
  width: 600px;
  height: 300px;
}

/* Điều chỉnh cho eco-custom */
.eco-custom .service-image {
  flex: 0 0 60%;
  margin-left: 0;
  margin-right: -50px;
}

.eco-custom .service-content {
  margin-left: -50px;
}

.eco-custom .service-content {
  margin-left: 0;
}

.eco-custom .service-image img {
  height: 300px;
  width: 600px;
}

.service-content {
  flex: 0 0 50%;
  padding: 1.2rem;
  text-align: justify;
}

.service-content h3 {
  font-size: 33px;
  font-weight: 700;
  line-height: 46px;
  color: #e7f5dc;
  margin-bottom: 0.5rem;
}

.service-content h4 {
  font-size: 17px;
  font-weight: 700;
  line-height: 24px;
  color: #e7f5dc;
  margin-bottom: 0.5rem;
}

.service-content p {
  font-weight: 400;
  font-size: 16px;
  color: #e7f5dc;
  margin-bottom: 1rem;
  line-height: 22px;
}

.btn-readmore {
  background-color: #e7f5dc;
  color: #344420;
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.btn-readmore:hover {
  background-color: #d6eac3;
}

.eco-custom .service-content {
  order: 1;
}

.eco-custom .service-image {
  order: 2;
}

@media (max-width: 768px) {
  .services-section {
    padding: 2rem 1rem;
    width: 95%;
  }

  .services-section h2 {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    flex-direction: column;
  }

  .service-image img {
    height: 150px;
  }

  .service-content h3 {
    font-size: 1.2rem;
  }

  .service-content p {
    font-size: 0.9rem;
  }

  .btn-readmore {
    padding: 8px 16px;
    font-size: 12px;
  }

  .eco-custom .service-content,
  .eco-custom .service-image {
    order: 0;
  }
}

/* Shop */
.shop-section {
  background-color: #23330E;
  color: #E7F5DC;
  padding: 40px 80px;
  text-align: center;
  width: 80%;
  margin: 0 auto;
}

.shop-section h2 {
  font-size: 46px;
  line-height: 54px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #E0EED8;
}

.shop-description {
  font-size: 16px;
  margin-bottom: 30px;
  color: #E0EED8;
}

.divider {
  border: 0;
  height: 1px;
  background: #E7F5DC;
  margin: 20px auto;
  width: 90%;
}

.shop-products {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.product-card {
  flex: 1 1 22%;
  text-align: center;
}

.product-frame {
  background: #FFFFFF;
  border: 2px solid #E7F5DC;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 350px;
}

.product-frame img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  margin-bottom: 10px;
}

.product-frame .frame {
  font-size: 21px;
  margin: 2px 0;
  color: #547030;
  line-height: 29px;
  font-weight: 700;
}

.product-frame .cost {
  font-size: 16px;
  margin: 10px 0;
  color: #698149;
}

.btn-buy {
  background-color: #23330E;
  color: #D2E0C6;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.btn-buy:hover {
  background-color: #d6eac3;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .shop-section {
    padding: 20px;
    width: 90%;
  }

  .shop-section h2 {
    font-size: 30px;
    line-height: 40px;
  }

  .shop-description {
    font-size: 14px;
  }

  .shop-products {
    flex-direction: column;
    align-items: center;
  }

  .product-card {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }

  .product-frame img {
    width: 120px;
    height: 120px;
  }

  .product-frame {
    padding: 10px;
  }
}

/* Footer styles */
.custom-footer {
  background-color: #23330E;
  color: #E7F5DC;
  padding: 40px 20px;
  text-align: left;
  width: 80%;
  margin: 0 auto;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.footer-content {
  flex: 1;
  max-width: 50%;
  margin-top: 50px;
}

.footer-content h2 {
  font-size: 44px;
  line-height: 61px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #E7F5DC;
}

.footer-content p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #E7F5DC;
  line-height: 22px;
  font-weight: 400;
}

.footer-content i {
  font-size: 17px;
  line-height: 24px;
  font-weight: 400;
}

.contact-form {
  background: rgba(35, 51, 14, 0.8);
  padding: 30px;
  border-radius: 10px;
  width: 100%;
  max-width: 600px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 10px;
  border: 1px solid #23330E;
  background-color: #E7F5DC;
  color: #23330E;
  font-size: 16px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form input::placeholder {
  color: #23330E;
}

.contact-form .btn-submit {
  background-color: #E7F5DC;
  color: #344420;
  padding: 12px 50px;
  align-self: flex-start;
  margin: 15px 0 0 0;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  position: absolute;
  right: 240px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: block;
}

.contact-form .btn-submit:hover {
  background-color: #D6EAC3;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  justify-content: center;
}

.social-links a img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.social-links a img:hover {
  transform: scale(1.1);
}

.custom-footer p {
  font-size: 12px;
  margin-top: 20px;
  color: #B7CDAE;
  text-align: center;
}

@media (max-width: 768px) {
  .custom-footer {
    width: 90%;
    padding: 20px 10px;
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-content {
    max-width: 100%;
  }

  .contact-form {
    max-width: 100%;
    padding: 15px;
  }

  .contact-form input {
    font-size: 12px;
  }

  .social-links {
    justify-content: flex-start;
  }

  .social-links a img {
    width: 25px;
    height: 25px;
  }
}

.qr-wrapper {
  width: 250px;
  height: 250px;
  overflow: hidden;
  background: white;
  margin: 20px auto;
  border-radius: 8px;
  border: 2px solid #E7F5DC;
}

.qr-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.payment-method-box {
  border-left: 4px solid #E7F5DC;
  padding: 20px;
  margin-bottom: 25px;
  background-color: rgba(231, 245, 220, 0.15);
  border-radius: 6px;
  color: #FFFFFF;
  font-weight: 500;
}

.payment-method-box p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 8px;
  color: #FFFFFF;
}

.payment-method-box p strong {
  font-weight: 700;
  color: #E7F5DC;
}

.form-toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  background: #E7F5DC;
  color: #23330E;
  padding: 20px 30px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.4s ease;
}

.form-toast.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

.toast-icon {
  font-size: 24px;
  line-height: 1;
}

.toast-text {
  font-size: 15px;
  max-width: 320px;
  line-height: 1.4;
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: #1a2810;
  color: #e7f5dc;
  padding: 30px;
  border-radius: 12px;
  max-width: 700px;
  width: 100%;
  position: relative;
  animation: fadeIn 0.3s ease;
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
  max-height: 80vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  scrollbar-width: thin;
  scrollbar-color: #E7F5DC #344420;
}

/* Tùy chỉnh thanh cuộn cho Webkit (Chrome, Safari, Edge) */
.modal-content::-webkit-scrollbar {
  width: 8px;
}

.modal-content::-webkit-scrollbar-track {
  background: #344420;
  border-radius: 8px;
}

.modal-content::-webkit-scrollbar-thumb {
  background: #E7F5DC;
  border-radius: 8px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background: #D6EAC3;
}

.modal-content h2 {
  font-size: 37px;
  font-weight: 700;
  line-height: 52px;
  margin-bottom: 15px;
  color: #E7F5DC;
  white-space: nowrap;
}

.modal-content .pls {
  font-size: 17px;
  line-height: 24px;
  font-weight: 400;
  font-style: italic;
  color: #E7F5DC;
  margin-bottom: 15px;
}

.modal-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
  text-align: center;
  color: #E7F5DC;
}

.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.modal-content .additional-products-list {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  font-weight: 400;
}

.modal-content .additional-products-list li {
  margin-bottom: 8px;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 24px;
  color: #e7f5dc;
  cursor: pointer;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-content .btn-confirm {
  background-color: #E7F5DC;
  color: #344420;
  padding: 12px 50px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: block;
  width: fit-content;
  margin: 25px auto 15px auto;
}

.modal-content .btn-confirm:hover {
  background-color: #D6EAC3;
  transform: translateY(-2px);
}

.modal-content .btn-confirm:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
  transform: none;
}

.proof-form {
  background-color: #1a2810;
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
  color: #e7f5dc;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.proof-form input[type="text"],
.proof-form textarea,
.proof-form input[type="file"] {
  width: 100%;
  margin-top: 15px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.file-label {
  display: block;
  margin-top: 20px;
  font-weight: 600;
}

.proof-form textarea {
  resize: vertical;
}

.file-name-display {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: #E7F5DC;
  font-style: italic;
}

.modal-success-msg {
  background: #E7F5DC;
  color: #23330E;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 15px;
  font-weight: 600;
  animation: fadeIn 0.3s ease;
}

.modal-content .payment-section {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.modal-content .payment-method-box {
  flex: 1;
  margin-bottom: 0;
}

.modal-content .qr-wrapper {
  flex: 0 0 250px;
  margin: 0;
}

.modal-content hr {
  border: 0;
  height: 1px;
  background: #E7F5DC;
  margin: 20px 0;
}

@media (max-width: 768px) {
  .modal-content {
    padding: 20px;
    max-width: 90%;
  }

  .modal-content .payment-section {
    flex-direction: column;
  }

  .modal-content .qr-wrapper {
    width: 200px;
    height: 200px;
  }

  .modal-content h2 {
    font-size: 28px;
    line-height: 40px;
  }

  .modal-content .pls {
    font-size: 14px;
  }

  .modal-content h3 {
    font-size: 20px;
  }

  .modal-content input,
  .modal-content textarea {
    font-size: 12px;
  }

  .modal-content::-webkit-scrollbar {
    width: 6px;
  }

  .modal-content .additional-products-list {
    font-size: 14px;
    line-height: 22px;
    padding-left: 15px;
  }

  .payment-method-box {
    padding: 15px;
  }
}