@import url('https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500; 600;700;800;900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Spartan', sans-serif;
}

h1 {
    font-size: 50px;
    line-height: 64px;
    color: #222;
}

h2 {
    font-size: 46px;
    line-height: 54px;
    color: #222;
}

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%;
}


/* Header Start */

#header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px;
    background: #e3e6f3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    z-index: 999;
    position: sticky;
    left: 0;
    top: 0;
}

#navbar {
    display: flex;
    align-items: center;
    justify-content: center;
}

#navbar li {
    list-style: none;
    padding: 0 20px;
    position: relative;
}

#navbar li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    transition: 0.3s ease;
}

#navbar li a:hover,
#navbar li a.active {
    color: #088178;
}

#navbar li a.active::after,
#navbar li a:hover::after {
    content: "";
    width: 30%;
    height: 2px;
    background: #088178;
    position: absolute;
    bottom: -4px;
    left: 20px;
}
/* Home Page */

#hero {
    background-image: url("img/hero.png");
    height: 90vh;
    width: 100%; 
    background-size: contain; 
    background-repeat: no-repeat;
    background-position: right 0 bottom -20px;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

#hero h4 {
    padding-bottom: 15px;
}

#hero h1 {
    color: #088178;
}

#hero button {
    background-image: url("img/button.jpg");
    background-color: transparent;
    color: #088178;
    border: 0;
    padding: 14px 80px 14px 65px;
    background-repeat: no-repeat;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
}

#product1 {
    text-align: center;
}

#product1 .pro-container{
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    flex-wrap: wrap;
}

#product1 .pro {
    width: 23%;
    min-width: 250px;
    padding: 10px 12px;
    border: 1 px solid #cce7d0;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
    margin: 15px 0;
    transition: 0.2s ease;
    position: relative;
}

#product1 .pro:hover{
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
}

#product1 .pro img {
    width: 100%;
    border-radius: 20px;
}

#product1 .pro .des{
    text-align: start;
    padding: 10px 0;
}

#product1 .pro .des span{
    color: #606063;
    font-size: 12px;
}

#product1 .pro .des h5{
    padding: 7px;
    color: #1a1a1a;
    font-size: 14px;
}

#product1 .pro .des i{
    font-size: 12px;
    color: rgb(243, 181, 25);
}

#product1 .pro .des h4{
    padding-top: 7px;
    font-size: 15px;
    font-weight: 700;
    color: #088178;
}

#product1 .pro .cart{
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50px;
    background-color: #e8f6ea;
    font-weight: 500;
    color: #088178;
    border: 1px solid #cce7d8;
    position: absolute;
    bottom: 20px;
    right: 10px;
}

footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;    
}
 
footer .col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 40px;
    margin-bottom: 20px;
    gap: 10px;          
    min-width: 100px;   
}

footer .logo {
    margin-bottom: 30px;
}

footer h4 {
    font-size: 14px;
    padding-bottom: 20px;
}

footer p {
    font-size: 13px;
    margin: 0 0 8px 0;
}

footer a {
    font-size: 13px;
    text-decoration: none;
    color: #222;
    margin-bottom: 10px;
}

footer .follow {
    margin-top: 20px;
}

footer .follow i{
    color: #465b52;
    padding-right: 4px;
    cursor: pointer;
}

footer .install .row img {
    border: 1px solid #088178;
    border-radius: 6px;
}

footer .install img {
    margin: 10px 0 15px 0;
}

footer .follow i:hover,
footer a:hover {
    color: #088178;
}

footer .copyright {
    width: 90%;
    text-align: center;
}



/* Product Page */

#type {
    margin-top: 40px; 
    text-align: center;
}

.type-buttons {
    display: flex;
    justify-content: center;
    gap: 20px; 
    flex-wrap: wrap;
    margin-top: 20px;
}

.type-btn {
    padding: 12px 25px;
    font-size: 20px;       
    text-transform: capitalize;
    background-color: #088178;
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s ease;
}

.type-btn:hover {
    background-color: #088178;
    transform: translateY(-2px);
}

.type-btn:active {
    transform: scale(0.95);
}

#pagination {
    text-align: center;
}

#pagination a {
    text-decoration: none;
    background-color: #088178;
    padding: 15px 20px;
    border-radius: 5px;
    color: #fff;
    font-weight: 350;
}

#pagination a i {
    font-size: 16px;
    font-weight: 600;
}

/* Single Product */
#prodetails {
    display: flex;
    margin-top:20px;
}


#prodetails .single-pro-image {
    width: 40%;
    margin-right: 50px;
}

.small-img-group {
    display: flex;
    justify-content: space-between;
}

.small-img-col {
    flex-basis: 24%;
    cursor: pointer;
}

#prodetails .single-pro-details {
    width: 50%;
    padding-top: 30px;
}

#prodetails .single-pro-details h6 {
    font-size: 20px;
}

#prodetails .single-pro-details h4 {
    padding: 40px 0 20px 0;
}

#prodetails .single-pro-details h2{
    font-size: 26px;
}

#prodetails .single-pro-details select {
    display: block;
    padding: 5px 10px;
    margin-bottom: 10px;
}

#prodetails .single-pro-details input {
    width: 50px;
    height: 47px;
    padding-left: 10px;
    font-size: 16px;
    margin-right: 10px;
}

#prodetails .single-pro-details input:focus{
    outline: none;
}

#prodetails .single-pro-details button {
    background: #088178;
    color: #fff;
    height:  45px;
    width: 25%;
}

#prodetails .single-pro-details span {
    line-height: 25px;
}

/* Login Page */

:root{
  --bg:#f2f5fa;
  --text:#111;
  --muted:#666;
  --line:#e6e6e6;
  --primary:#2a6edc;
  --shadow: 0 20px 45px rgba(0,0,0,.12);
  --r:22px;
}

*{ box-sizing:border-box; }

html, body{
  width:100%;
  height:100%;
  margin:0;
  padding:0;
}

#btnGoogle, #btnFacebook{
  border: 1px solid #cfdcff !important;
  background: #eaf2ff !important;
  color: #2a6edc !important;
}

#btnGoogle i, #btnFacebook i{
  color: #2a6edc !important;
}

body{
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);

  /* ✅ 你的背景图放这里 */
  background-image: url("img/login.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ✅ 右边扩满：只保留一个 panel */
.auth{
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px 16px;

  /* 让背景更好看：可选遮罩 */
  background: rgba(0,0,0,0.25);
}

.auth-panel{
  width: 100%;
  display: grid;
  place-items: center;
}

/* 卡片 */
.card{
  width: min(520px, 100%);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-radius: var(--r);
  padding: 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.45);
}

/* ✅ logo 变大 + 不裁切 */
.brand{
  display:flex;
  gap: 14px;
  align-items:center;
  margin-bottom: 14px;
}

.brand-logo{
  width: 84px;
  height: 84px;
  object-fit: contain;     /* ✅ 完整显示，不裁切 */
  border-radius: 12px;    /* 你要更“完整方形”可改 8px 或 0 */
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  padding: 6px;           /* ✅ 让 logo 不贴边 */
}

.brand h1{
  margin: 0 0 6px;
  font-size: 22px;
}

.brand p{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* 表单 */
.form label{
  display:block;
  font-size: 12px;
  color: var(--muted);
  margin: 10px 0 6px;
}

.input{
  display:flex;
  align-items:center;
  gap:10px;
  border: 1px solid #e1e1e1;
  border-radius: 14px;
  padding: 10px 12px;
  background:#fff;
}

.input i{ color: var(--primary); }

.input input{
  width:100%;
  border:none;
  outline:none;
  font-size: 14px;
  background: transparent;
}

/* ✅ Social under password */
.social{
  display:grid;
  gap: 10px;
  margin-top: 12px;
}

/* 按钮 */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  width: 100%;
  border-radius: 999px;
  padding: 12px 14px;
  font-size: 12px;
  font-weight: 900;
  cursor:pointer;
  text-decoration:none;
  border:none;
}

/* ✅ 社交按钮也蓝色 */
.btn-blue{
  background: #eaf2ff;
  color: var(--primary);
  border: 1px solid #cfdcff;
}

/* ✅ 主登录按钮蓝色 */
.btn-primary{
  background: var(--primary);
  color:#fff;
}

/* 让图标“完整显示并且可以放小” */
.btn i{
  font-size: 14px;     /* ✅ 放小 */
  line-height: 1;
  width: 18px;         /* ✅ 预留宽度，不会挤/裁切 */
  text-align: center;
}

.row{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 10px;
  margin-top: 12px;
}

.check{
  font-size: 12px;
  color: #555;
  display:inline-flex;
  align-items:center;
  gap:8px;
}

.link-btn{
  border:none;
  background: transparent;
  color: #333;
  font-size: 12px;
  font-weight: 900;
  cursor:pointer;
  padding: 0;
}

.msg{
  margin: 10px 0 0;
  min-height: 18px;
  font-size: 12px;
  color: var(--primary);
}

.foot{
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
  display:flex;
  gap: 8px;
  justify-content: center;
}

.link{
  color: var(--primary);
  font-weight: 900;
  text-decoration:none;
}
.link:hover{ text-decoration: underline; }

/* Modal */
.modal{
  position: fixed;
  inset: 0;
  display:none;
  place-items:center;
  background: rgba(0,0,0,.45);
  padding: 18px;
}
.modal.show{ display:grid; }

.modal-card{
  width: min(520px, 100%);
  background:#fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.modal-head{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 10px;
}
.icon-btn{
  border:none;
  background: transparent;
  cursor:pointer;
  font-size: 18px;
  color:#444;
}
.modal-sub{
  margin: 8px 0 12px;
  color: var(--muted);
  font-size: 13px;
}
.modal-actions{
  display:flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.btn-ghost{
  background:#f5f5f5;
  color:#333;
  border: 1px solid #ddd;
}
.note{
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.btn,
.btn-primary,
.btn-blue,
.social button,
#loginForm button {
  background: #2a6edc !important;
  border: 1px solid #2a6edc !important;
  color: #ffffff !important;
}

/* Social button lighter blue */
#btnGoogle,
#btnFacebook {
  background: #eaf2ff !important;
  border: 1px solid #cfdcff !important;
  color: #2a6edc !important;
}

/* Social icon color */
#btnGoogle i,
#btnFacebook i {
  color: #2a6edc !important;
}

#btnForgot,
button#btnForgot.link-btn,
.link-btn#btnForgot{
  color: #555 !important;      /* 你要黑一点就改 #333 */
  font-weight: 600 !important;
  text-decoration: none !important;
}

#btnForgot:hover{
  color: #222 !important;
}

/* Pay Page */

:root { 
    --shopee-orange: #ee4d2d; 
    --bg-gray: #f5f5f5; 
}

body { 
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; 
    background-color: var(--bg-gray); 
    margin: 0; 
    color: #222; 
}
        
/* Header Area */

.header { background: white; 
    padding: 15px 20px; 
    border-bottom: 1px solid #ddd; 
    display: flex; 
    align-items: center; 
}

.header h1 { 
    color: var(--shopee-orange); 
    margin: 0; 
    font-size: 24px; 
    border-right: 1px solid var(--shopee-orange); 
    padding-right: 15px; 
}

.header span { 
    margin-left: 15px; 
    font-size: 20px; 
    color: #222; 
}

.container { 
    max-width: 800px; 
    margin: 20px auto; 
    padding: 0 10px; 
}
        
/* Section Styling */

.section { 
    background: white; 
    border-radius: 3px; 
    padding: 20px; 
    margin-bottom: 12px; 
    box-shadow: 0 1px 1px rgba(0,0,0,0.05); 
}

.section-title { 
    font-size: 18px; 
    margin-bottom: 20px; 
    display: flex; 
    align-items: center; 
    color: var(--shopee-orange); 
}


/* Payment Methods List */
.payment-option { display: flex; align-items: center; padding: 15px; border: 1px solid #efefef; margin-bottom: 10px; cursor: pointer; transition: 0.2s; border-radius: 2px; }
.payment-option:hover { border-color: var(--shopee-orange); background: #fffcfb; }
.payment-option input { margin-right: 15px; accent-color: var(--shopee-orange); }
.payment-logo { width: 40px; height: 25px; object-fit: contain; margin-right: 15px; background: #eee; border-radius: 2px; }
.payment-text { flex-grow: 1; font-size: 14px; }

/* Order Summary */
.summary-row { display: flex; justify-content: flex-end; padding: 5px 0; font-size: 14px; color: #757575; }
.total-row { display: flex; justify-content: flex-end; padding: 15px 0; font-size: 28px; color: var(--shopee-orange); font-weight: 500; }

.footer-action { display: flex; justify-content: flex-end; background: white; padding: 20px; border-top: 1px dashed #ddd; }
.btn-place-order { background-color: var(--shopee-orange); color: white; border: none; padding: 12px 50px; font-size: 16px; border-radius: 2px; cursor: pointer; }
.btn-place-order:hover { opacity: 0.9; }





/* Start Media Query */

@media (max-width:799px) {
    #navbar {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: fixed;
        top: 0;
        right: -300px;
        height: 100vh;
        width: 300px;
        background-color: #e3e6f3;
        box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1);
        padding: 80px 0  0 10px;
    }
    #navbar li {
        margin-bottom: 25px;
    }    
}



/* cart page */

.tabs {
font-size: 14px;
color: #666;
}
.tab.active {
color: #e53935;
border-bottom: 2px solid #e53935;
font-weight: bold;
}
.order-card {
background: #fff;
margin: 10px;
border-radius: 6px;
padding: 10px;
}
.shop {
font-size: 14px;
font-weight: bold;
margin-bottom: 8px;
}
.item {
display: flex;
align-items: center;
}
.item img {
width: 70px;
height: 70px;
border-radius: 4px;
margin-right: 10px;
}
.item-info {
flex: 1;
}
.item-info p {
margin: 2px 0;
font-size: 13px;
}
.price {
text-align: right;
font-size: 13px;
}
.price .old {
text-decoration: line-through;
color: #aaa;
}
.price .new {
color: #e53935;
font-weight: bold;
}
.delivery {
margin-top: 8px;
padding: 6px;
background: #e8f5e9;
color: #2e7d32;
font-size: 12px;
border-radius: 4px;
}
.actions {
margin-top: 8px;
text-align: right;
}
.btn {
padding: 6px 10px;
font-size: 12px;
border-radius: 4px;
border: 1px solid #e53935;
background: #fff;
color: #e53935;
margin-left: 6px;
}


/* information page */

#ekoInfo{
  padding: 40px 16px 60px;
  background: #f2f5fa;
}

/* Container */
.eko-container{
  max-width: 1100px;
  margin: auto;
  background: linear-gradient(135deg,#ffffff,#f4f7fc);
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 20px 45px rgba(0,0,0,.12);
}

/* Grid layout */
.info-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

/* Card: make it flex so buttons can stick to bottom */
.info-card{
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 28px rgba(0,0,0,.10);

  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 320px; /* keep cards balanced */
}

.info-card i{
  font-size: 22px;
  color: #2a6edc;
  margin-bottom: 2px;
}

.info-card h3{
  font-size: 18px;
  margin: 0;
}

.info-card p{
  margin: 0 0 6px;
  font-size: 13px;
  color: #444;
  line-height: 1.6;
}

/* Items list */
.item-list{
  margin-top: 6px;
  border-top: 1px dashed #ddd;
  padding-top: 12px;
}

.item{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 13px;
}

.item:last-child{
  border-bottom: none;
}

.item-name{
  font-weight: 600;
}

.item-info{
  color: #555;
  white-space: nowrap;
}

/* Info list (remove bullets!) */
.info-list{
  list-style: none;   /* ✅ remove dots */
  padding: 0;
  margin: 8px 0 0;
  font-size: 13px;
}

.info-list li{
  margin-bottom: 10px;
  line-height: 1.6;
}

.tag{
  display: inline-block;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #eef3ff;
  color: #2a6edc;
  margin-right: 8px;
}

/* ✅ Action buttons stick to bottom */
.action-btns{
  margin-top: auto;          /* key line */
  padding-top: 14px;
  border-top: 1px dashed #e6e6e6;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

/* Buttons */
.btn-action{
  padding: 10px 16px;
  font-size: 12px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 700;
}

.btn-receive{
  background: #2a6edc;
  color: #fff;
}

.btn-refund{
  background: #f5f5f5;
  color: #333;
  border: 1px solid #ddd;
}

.btn-evaluate{
  background: #eef3ff;
  color: #2a6edc;
  border: 1px solid #cfdcff;
}

/* Mobile */
@media (max-width: 720px){
  .eko-container{ padding: 22px; }
  .info-card{ min-height: auto; }
}


/* Me page */

#mePage{
  padding: 40px 16px 60px;
  background: #f2f5fa;
}

.me-container{
  max-width: 1100px;
  margin: auto;
  background: #fff;
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 20px 45px rgba(0,0,0,.12);
}

.me-container h2{
  font-size: 36px;
  margin-bottom: 6px;
}

.me-container .subtitle{
  color: #555;
  margin-bottom: 30px;
}

.me-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 22px;
}

.me-card{
  background: #f9fbff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 28px rgba(0,0,0,.1);
}

.me-card i{
  font-size: 26px;
  color: #2a6edc;
}

.me-card h3{
  margin: 8px 0;
}

.wallet-balance{
  font-size: 18px;
}

.language-select{
  padding: 8px;
  border-radius: 8px;
}

.recent-section{
  margin-top: 40px;
}

.recent-section h3{
  margin-bottom: 14px;
}

.recent-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px,1fr));
  gap: 18px;
}

.recent-card{
  background: #fff;
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 10px 24px rgba(0,0,0,.1);
  text-align: center;
}

.recent-card img{
  width: 100%;
  border-radius: 10px;
}

.recent-card p{
  margin: 8px 0 2px;
  font-weight: 600;
}

.recent-card span{
  font-size: 13px;
  color: #555;
}

/* Comment page */

#csPage{
  padding: 40px 16px 60px;
  background: #f2f5fa;
}

.cs-container{
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(135deg,#ffffff,#f4f7fc);
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 20px 45px rgba(0,0,0,.12);
}

.cs-head{
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.cs-head h2{
  font-size: 36px;
  margin: 0 0 6px;
}

.cs-subtitle{
  margin: 0;
  color: #555;
}

.cs-badges{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.cs-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef3ff;
  color: #2a6edc;
  border: 1px solid #cfdcff;
}

.cs-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.cs-card{
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 28px rgba(0,0,0,.10);
}

.cs-card-wide{
  grid-column: 1 / -1;
}

.cs-card-title{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.cs-card-title i{
  font-size: 22px;
  color: #2a6edc;
}

.cs-card-title h3{
  margin: 0;
  font-size: 18px;
}

.cs-contact{
  margin-top: 10px;
  border-top: 1px dashed #e6e6e6;
  padding-top: 12px;
}

.cs-row{
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
  padding: 8px 0;
}

.cs-label{
  font-size: 12px;
  color: #666;
}

.cs-link{
  color: #2a6edc;
  text-decoration: none;
  font-weight: 700;
}

.cs-link:hover{
  text-decoration: underline;
}

.cs-text{
  color: #333;
}

.cs-actions{
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cs-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  border: none;
}

.cs-btn-primary{
  background: #2a6edc;
  color: #fff;
}

.cs-btn-ghost{
  background: #f5f5f5;
  color: #333;
  border: 1px solid #ddd;
}

.cs-faq{
  border-top: 1px dashed #e6e6e6;
  padding-top: 10px;
  margin-top: 10px;
}

.cs-faq summary{
  cursor: pointer;
  font-weight: 700;
  margin-bottom: 8px;
}

.cs-faq p{
  margin: 0 0 10px;
  color: #444;
  line-height: 1.6;
}

.cs-form{
  margin-top: 10px;
  border-top: 1px dashed #e6e6e6;
  padding-top: 12px;
}

.cs-form-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cs-field label{
  display: block;
  font-size: 12px;
  color: #666;
  margin-bottom: 6px;
}

.cs-field input,
.cs-field select,
.cs-field textarea{
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #e1e1e1;
  outline: none;
}

.cs-field-full{
  grid-column: 1 / -1;
}

.cs-form-actions{
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cs-note{
  margin-top: 10px;
  font-size: 12px;
  color: #666;
}

@media (max-width: 720px){
  .cs-container{ padding: 22px; }
  .cs-head h2{ font-size: 28px; }
  .cs-form-grid{ grid-template-columns: 1fr; }
  .cs-row{ grid-template-columns: 90px 1fr; }
}


/* Cart page */


#cartPage{
  padding: 40px 16px 60px;
  background: #f2f5fa;
}

.cart-container{
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(135deg,#ffffff,#f4f7fc);
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 20px 45px rgba(0,0,0,.12);
}

.cart-head{
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.cart-head h2{
  font-size: 36px;
  margin: 0 0 6px;
}

.cart-sub{
  margin: 0;
  color: #555;
}

.cart-layout{
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 22px;
  align-items: start;
}

.cart-panel{
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,.10);
}

.cart-list{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-item{
  display: grid;
  grid-template-columns: 86px 1fr 150px;
  gap: 14px;
  padding: 14px;
  border-radius: 14px;
  background: #f9fbff;
  border: 1px solid #e9eef8;
}

.cart-img{
  width: 86px;
  height: 86px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #eef0f5;
}

.cart-meta{
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.cart-title{
  font-weight: 800;
}

.cart-subline{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cart-pill{
  display: inline-block;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #eef3ff;
  color: #2a6edc;
  border: 1px solid #cfdcff;
}

.cart-qty{
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.qty-btn{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid #dbe5ff;
  background: #fff;
  cursor: pointer;
  font-weight: 900;
}

.qty-input{
  width: 54px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid #dbe5ff;
  text-align: center;
  outline: none;
}

.cart-right{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.cart-price{
  font-weight: 900;
}

.del-btn{
  border: none;
  background: transparent;
  color: #555;
  cursor: pointer;
  font-size: 12px;
  padding: 6px 8px;
  border-radius: 10px;
}

.del-btn:hover{
  background: rgba(0,0,0,.05);
}

.cart-summary .summary-card{
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,.10);
  position: sticky;
  top: 18px;
}

.summary-card h3{
  margin: 0 0 12px;
}

.summary-row{
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed #e6e6e6;
}

.summary-line{
  height: 1px;
  background: #e6e6e6;
  margin: 12px 0;
}

.summary-total{
  font-size: 16px;
  border-bottom: none;
}

.summary-wallet{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed #e6e6e6;
}

.wallet-row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.wallet-note{
  margin: 8px 0 0;
  font-size: 12px;
  color: #666;
}

.summary-actions{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.cart-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 14px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  border: none;
}

.cart-btn-primary{
  background: #2a6edc;
  color: #fff;
}

.cart-btn-ghost{
  background: #f5f5f5;
  color: #333;
  border: 1px solid #ddd;
}

.cart-msg{
  margin: 12px 0 0;
  font-size: 12px;
  color: #2a6edc;
  min-height: 18px;
}

.cart-empty{
  text-align: center;
  padding: 30px 10px;
  color: #444;
}

.cart-empty i{
  font-size: 40px;
  color: #2a6edc;
  margin-bottom: 10px;
}

@media (max-width: 980px){
  .cart-layout{
    grid-template-columns: 1fr;
  }
  .cart-summary .summary-card{
    position: static;
  }
}

@media (max-width: 560px){
  .cart-container{ padding: 22px; }
  .cart-head h2{ font-size: 28px; }
  .cart-item{
    grid-template-columns: 70px 1fr;
  }
  .cart-right{
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .cart-img{ width: 70px; height: 70px; }
}