* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #fff;
}

/* CONTAINER */
/* ================================
   CONTAINER SYSTEM (GLOBAL)
================================ */

/* DESKTOP (1200px and above) */
.container {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* LARGE LAPTOP (≤1200px) */
@media (max-width: 1200px) {
  .container {
    max-width: 1140px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* TABLET (≤992px) */
@media (max-width: 992px) {
  .container {
    max-width: 960px;
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* SMALL TABLET (≤768px) */
@media (max-width: 768px) {
  .container {
    max-width: 720px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* MOBILE (≤576px) */
@media (max-width: 576px) {
  .container {
    max-width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }
}

/* EXTRA SMALL MOBILE (≤480px) */
@media (max-width: 480px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}


/* HEADER */
.alibaba-header {
  border-bottom: 1px solid #eaeaea;
}

/* TOP HEADER */
.header-top {
  padding: 14px 0;
}

.top-grid {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

/* LOGO */
.logo {
  font-size: 22px;
  font-weight: bold;
  color: #ff6a00;
  display: flex;
  align-items: center;
}


.logo img{
width: 190px;
}
.logo-icon {
  background: #ff6a00;
  color: #fff;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 50%;
  margin-right: 6px;
}



/* SEARCH BAR */

.search-wrapper{
  width: 45%;
}
.search-bar {
  display: flex;
  align-items: center;
  border: 2px solid #e5e7eb;
  border-radius: 50px;
  padding: 6px;
  background: #fff;
}

/* INPUT */
.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0 18px;
  font-size: 16px;
  border-radius: 50px;
}

/* CAMERA BUTTON */
.camera-btn {
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding: 0 14px;
  color: #555;
}

/* SEARCH BUTTON */
.search-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #ff6a00;
  color: #fff;
  border: none;
  padding: 5px 15px;
  border-radius: 40px;
  font-size: 16px;
  cursor: pointer;
  /*font-weight: 600;*/
}


/* RIGHT */
.header-right {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
}

.header-right .icon {
  cursor: pointer;
}

.btn-orange {
  background: #ff6a00;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
}

/* BOTTOM NAV */
.header-bottom {
  border-top: 1px solid #eee;
}

.nav-grid {
  justify-content: space-around;
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 10px 0;
}


.nav-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.nav-menu a:hover {
  color: #ff6a00;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .top-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .search-bar {
    margin: 10px 0;
  }

  .header-right {
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  .nav-menu {
    gap: 12px;
  }


}

/* MOBILE */
@media (max-width: 480px) {
  .search-btn span {
    display: none;
  }
}


/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #333;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100%;
  background: #fff;
  box-shadow: 2px 0 10px rgba(0,0,0,0.1);
  transition: left 0.3s ease;
  z-index: 9999;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #eee;
  font-weight: bold;
}

.mobile-menu-header button {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
}

.mobile-nav a {
  padding: 14px 18px;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #f2f2f2;
}

/* RESPONSIVE SWITCH */
@media (max-width: 992px) {
  .nav-grid {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .search-wrapper {
    width: 100%;
  }
}


/* BANNER */
.hero-banner {
  position: relative;
  background: url("../images/banner-img.png") center center / cover no-repeat;
  color: #fff;
  padding: 90px 0;
  overflow: hidden;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.25)
  );
  z-index: 1;
}

.banner-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.banner-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  font-size: 14px;
}

.banner-content h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 15px;
}

.banner-content p {
  font-size: 18px;
  opacity: 0.9;
}

.banner-image img {
  width: 100%;
  max-width: 420px;
}

/* BANNER MOBILE */
@media (max-width: 992px) {
  .banner-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .banner-image {
    margin-top: 30px;
  }

  .banner-content h1 {
    font-size: 32px;
  }
}

/* BANK SECTION */
.bank-section {
  padding: 70px 0;
  background: #fff7f0;
}

.bank-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
}

.bank-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.bank-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.bank-card:hover{
   transform: translateY(-6px);
}

.bank-card img {
  width: 60px;
  margin-bottom: 20px;
}

.bank-card h4 {
  font-size: 18px;
  margin-bottom: 20px;
}

.bank-card p {
  line-height: 25px;
  font-size: 14px;
  color: #555;
}
.payment-logos {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    /*gap: 10px;*/
}
.payment-logos .payment-logo {
    height: 27px;
    object-fit: contain;
}

/* BANK MOBILE */
@media (max-width: 992px) {
  .bank-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .bank-grid {
    grid-template-columns: 1fr;
  }
}



/* ACCOUNT DETAILS – SPLIT LAYOUT */
.account-details {
  padding: 80px 0;
}

.account-layout {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: center;
  gap: 60px;
}

/* IMAGE */
.account-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* DETAILS BOX */
.account-box {
 background-color: #fff;
    margin-left: -155px;
  border: 1px solid #ffe2cc;
  border-radius: 20px;
  padding: 45px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.account-box h2 {
  font-size: 32px;
  /*margin-bottom: 30px;*/
  color: #ff6a00;
}

/* GRID */
.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 40px;
  margin-top: 30px;
}

.detail-item {
  display: flex;
  flex-direction: column;
}

.detail-item.full {
  grid-column: span 2;
}

.label {
  font-size: 14px;
  color: #777;
  margin-bottom: 6px;
}

.value {
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .account-layout {
    grid-template-columns: 1fr;
  }

  .account-image {
    order: -1;
  }

  .account-box {
    padding: 30px;
  }

  .account-box h2 {
    font-size: 26px;
  }
}

@media (max-width: 576px) {
  .details-grid {
    grid-template-columns: 1fr;
  }

  .detail-item.full {
    grid-column: span 1;
  }
}


/* SUPPORT SECTION */
.support-section {
  background: radial-gradient(
    circle at top,
    #3a1f10,
    #1a0d05
  );
  padding: 80px 0;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.support-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 35px 30px;
  border-radius: 18px;
  color: #fff;
  transition: all 0.3s ease;
}

.support-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.12);
}

/* ICON */
.support-icon {
  width: 48px;
  height: 48px;
  background: #ffcc00;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.support-icon img {
  width: 48px;
  height: 48px;
}

.support-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.support-card a {
  color: #fff;
  text-decoration: underline;
  font-size: 14px;
}

/* FOOTER */
.footer {
  background: #fff;
  padding: 40px 0;
  border-top: 1px solid #eee;
}

.footer-links {
  text-align: center;
  color: #777;
  font-size: 14px;
}

.footer-links p {
  margin-bottom: 12px;
}

.footer-links p:last-child {
  margin-bottom: 0;
}

.copyright {
  margin-top: 20px;
  font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .support-grid {
    grid-template-columns: 1fr;
  }

  .support-card {
    text-align: center;
  }

  .support-icon {
    margin-left: auto;
    margin-right: auto;
  }
}



/* ORDER PROTECTION */
.order-protection-wrap {
  background: linear-gradient(180deg, #1a0d07, #120805);
  padding: 80px 0;
}

.op-title {
  text-align: center;
  color: #fff;
  font-size: 38px;
  margin-bottom: 10px;
}

.op-subtitle {
  text-align: center;
  color: #ccc;
  max-width: 720px;
  margin: 0 auto 50px;
}

/* MAIN BOX */
.order-protection-box {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 40px;
}

/* SECURE PAYMENT */
.secure-payment-box h4 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 14px;
}

.secure-payment-box p {
  color: #ddd;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.small-text {
  font-size: 14px;
  color: #bbb;
}

/* PAYMENT LOGOS */
.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.payment-logos img {
  height: 32px;
  background: #fff;
  padding: 6px 10px;
  border-radius: 6px;
}

/* RIGHT SIDE POINTS */
.protection-points {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.point {
  border-left: 3px solid #ffcc00;
  padding-left: 18px;
}

.point h5 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 6px;
}

.point p {
  color: #ddd;
  font-size: 14.5px;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .order-protection-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .op-title {
    font-size: 30px;
  }
  .search-wrapper{
    display: none;
  }
  .header-right{
    display: none;
  }
  .account-box{
    margin-left: 0;
  }
}






.payment-section {
  padding: 60px 0;
  background: #f7f8fa;
}

.payment-layout {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr;
  gap: 30px;
}

/* PAYMENT CARDS */
.payment-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 15px;
  cursor: pointer;
}

.payment-card.active {
  border: 2px solid #ff6a00;
  background: #fff8f2;
}

.payment-left {
  display: flex;
  gap: 15px;
}

.payment-left input {
  margin-top: 6px;
}

.payment-card h4 {
  font-size: 18px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.payment-card h4.green {
  color: #1a8f3c;
}

.payment-card .desc {
  font-size: 14px;
  color: #666;
}

.badge {
  display: inline-block;
  background: #ff6a00;
  color: #fff;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
}

.add-card {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  color: #ff6a00;
  text-decoration: none;
}

/* RIGHT INFO */
.payment-right {
  display: flex;
  gap: 40px;
  align-items: center;
  font-size: 14px;
}

.payment-right span {
  display: block;
  color: #777;
}

.payment-right strong {
  font-weight: 600;
}

/* ORDER SUMMARY */
.order-summary {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 25px;
}

.order-summary h5 {
  font-size: 14px;
  margin-bottom: 20px;
}

.order-summary h5 span {
  color: #2a7de1;
}

.summary-row,
.summary-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
}

.summary-total {
  font-size: 20px;
  color: #ff6a00;
  margin-top: 15px;
}

.pay-btn {
  width: 100%;
  margin-top: 20px;
  background: #e5e7eb;
  color: #999;
  border: none;
  padding: 12px;
  font-size: 16px;
  border-radius: 6px;
  cursor: not-allowed;
}

.security {
  margin-top: 15px;
  display: flex;
  gap: 10px;
}
.payment-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f7f8fa, #ffffff);
}

/* HEADER */
.payment-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}

.payment-header h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.payment-header p {
  color: #666;
  font-size: 16px;
}

/* GRID */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* CARD */
.payment-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  border: 1px solid #e5e7eb;
  transition: all 0.35s ease;
}

.payment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: #ff6a00;
}

/* HIGHLIGHT */
.payment-card.highlight {
  border: 2px solid #ff6a00;
}

.recommended {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #ff6a00;
  color: #fff;
  padding: 5px 12px;
  font-size: 12px;
  border-radius: 20px;
}

/* CARD TOP */
.card-top {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.icon1 {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.icon1.green {
  background: #eaf7ef;
  color: #1a8f3c;
}

.icon1.blue {
  background: #eef4ff;
  color: #2a6de6;
}

.card-top h3 {
  font-size: 22px;
  margin-bottom: 5px;
}

.card-top p {
  font-size: 14px;
  color: #666;
}

/* FEATURES */
.features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.features li {
  font-size: 14px;
  padding: 8px 0;
  color: #333;
}

/* BUTTONS */
.btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn.primary {
  background: #ff6a00;
  color: #fff;
}

.btn.primary:hover {
  background: #e65c00;
  box-shadow: 0 10px 25px rgba(255,106,0,0.4);
}

.btn.outline {
  border: 2px solid #ff6a00;
  color: #ff6a00;
}

.btn.outline:hover {
  background: #ff6a00;
  color: #fff;
}

/* FOOTER */
.payment-footer {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #555;
}

.payment-footer .help a {
  color: #ff6a00;
  text-decoration: none;
}

.value_p {
  font-size: 14px;
  line-height: 18px;
}

@media (max-width: 992px) {
  .payment-grid {
    grid-template-columns: 1fr;
  }

  .payment-header h2 {
    font-size: 26px;
  }
}
