/* Main Wrapper */

.brx-dashboard-wrapper{
max-width:1550px;
margin:auto;
position:relative;
font-family:Arial;
}

/* Layout */

.brx-dashboard-container{
display:flex;
padding-top: 50px;
}

/* Sidebar */

.brx-dashboard-sidebar{

width:250px;
background-color: white;
color:rgb(0, 0, 0);
position:absolute;
left:0;
top:56px;
padding:25px 15px;
z-index:1000;
transition:0.4s;



}




/* User Box */

.brx-user-box{
text-align:center;
margin-bottom:30px;
}


.brx-user-avatar{
width:70px;
height: 70px;
border-radius:50%;
object-fit:cover;
margin-bottom:10px;


}

/* Menu */

.brx-sidebar-menu{
list-style:none;
padding:0;
}

.brx-sidebar-menu li{

display:flex;
align-items:center;
gap:10px;
padding:12px 15px;
border-radius:8px;
cursor:pointer;
margin-bottom:8px;
font-size:15px;
transition:0.3s;

}
.brx-sidebar-menu a{
    color: black;
    text-decoration: none;
}

.brx-sidebar-menu li:hover{

background:#93a8d2;

}

.brx-sidebar-menu li.active{

background:#005f0d;
color: white;

}

/* Content */

.brx-dashboard-content{

margin-left:250px;
padding:40px;
width:100%;
min-height:100vh;
background:#f5f7fb;
overflow-y:auto;

}

.brx-dashboard-title{

margin-bottom:30px;

}

/* Cards */

.brx-cards-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
gap:20px;

}
.brx-cards-grid a{
  text-decoration: none;
  color: black;
}

.brx-card{

background:white;
padding:25px;
border-radius:14px;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
text-align:center;
transition:0.3s;

}

.brx-card:hover{

transform:translateY(-5px);
box-shadow:0 10px 30px rgba(0,0,0,0.12);

}

.brx-card i{

font-size:30px;
color:#2563eb;
margin-bottom:10px;

}

.top-menu-content{
text-align: center;
}
/* Toggle Button */

.brx-sidebar-toggle-btn{

position:absolute;
top:75px;
left:26px;
background:#000000;
border:none;
color:white;
    font-size: 15px;
    padding: 4px 6px;
    border-radius: 4px;
cursor:pointer;
/* z-index:1100; */
display:none;

}

/* Overlay */

.brx-sidebar-overlay{

position:fixed;
width:100%;
height:100%;
background:rgba(0,0,0,0.4);
backdrop-filter:blur(4px);
top:0;
left:0;
opacity:0;
visibility:hidden;
transition:0.3s;
z-index:900;

}

.brx-sidebar-overlay.active{

opacity:1;
visibility:visible;

}



/* ACTIVITY PRODUCT CARD */

.brx-activity-product{
display:flex;
gap:15px;
padding:15px 0;
border-bottom:1px solid #eee;
width:100%;
}

/* IMAGE */

.brx-activity-product img{
width:90px;
height:90px;
object-fit:cover;
border-radius:8px;
}

/* INFO */

.brx-activity-info{
flex:1;
}

/* TOP */

.brx-activity-top{
display:flex;
justify-content:space-between;
align-items:center;
}

.brx-activity-top h6{
margin:0;
font-size:16px;
font-weight:600;
}

.brx-activity-top i{
font-size:18px;
cursor:pointer;
color:#555;
}

/* DETAILS */

.brx-activity-info p{
margin:6px 0;
font-size:14px;
color:#777;
}

/* PRICE */

.brx-activity-price{
font-weight:600;
font-size:16px;
}

/* WISHLIST */

.brx-activity-wishlist{
margin-top:10px;
font-size:13px;
font-weight:600;
cursor:pointer;
color:#222;
letter-spacing:1px;
}

.brx-activity-wishlist:hover{
text-decoration:underline;
}


.brx-right-card{
    padding: 40px 0 10px;
    
}
.brx-right-card h3{
text-align: center;
    
}


















/* ============================================Profile page========================================== */


.brx-profile-section{
display:flex;
gap:30px;
margin-top:20px;
flex-wrap:wrap;
}

.brx-profile-left{
flex:2;
}

.brx-profile-right{
flex:1;
display:flex;
flex-direction:column;
gap:20px;
}

.brx-profile-card{
background:#fff;
padding:25px;
border-radius:10px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
margin-bottom:20px;
}

.brx-profile-img img{
width:90px;
height:90px;
border-radius:50%;
object-fit:cover;
margin-bottom:10px;
}

.brx-user-email{
font-size:13px;
color:#777;
}

.brx-profile-stats{
display:flex;
justify-content:space-around;
margin-top:15px;
}

.brx-profile-stats h5{
margin:0;
font-size:18px;
}

.brx-profile-stats a{
text-decoration: none;
color:#777;
}
.brx-profile-stats span{
font-size:12px;
color:#777;
}

.brx-profile-form{
background:#fff;
padding:25px;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.brx-form-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:15px;
margin-top:15px;
}

.brx-input{
display:flex;
flex-direction:column;
}

.brx-input label{
font-size:13px;
margin-bottom:5px;
color:#666;
}

.brx-input input{
padding:10px;
border:1px solid #ddd;
border-radius:6px;
}

.brx-update-btn{

background:#000;
color:#fff;
border:none;
padding:12px 20px;
border-radius:6px;
cursor:pointer;
}

.brx-right-card{
background:#fff;
padding:20px;
margin-top: 20px;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.brx-card-header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:10px;
}

.brx-address-box p{
font-size:14px;
color:#555;
}

.brx-phone{
font-size:14px;
font-weight:500;
}

.brx-security-row{
display:flex;
justify-content:space-between;
margin-top:15px;
}

.brx-change-btn{
background:#f3f3f3;
border:none;
padding:6px 12px;
border-radius:5px;
cursor:pointer;
}

.brx-verified{
color:green;
font-size:14px;
}

.brx-edit-address{
    border: none;
    outline: none;
    background: transparent;
}


/* =========================
   MODERN PROFILE FORM
========================= */

.modern-profile-form{
background:#fff;
padding:30px;
border-radius:14px;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

/* header */

.profile-form-header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:25px;
}

.profile-form-header h5{
font-size:20px;
font-weight:600;
}

.profile-status{
font-size:13px;
color:#0a8f3e;
background:#e9f9ef;
padding:6px 12px;
border-radius:20px;
}

/* profile image */

.profile-image-update{
display:flex;
align-items:center;
gap:20px;
margin-bottom:25px;
}

.profile-image-update img{
width:80px;
height:80px;
border-radius:50%;
object-fit:cover;
border:3px solid #f2f2f2;
}

.profile-img-actions{
display:flex;
gap:10px;
}

.upload-btn{
background:#f4f4f4;
padding:8px 14px;
border-radius:8px;
font-size:13px;
cursor:pointer;
}

.remove-btn{
border:none;
background:#ffeaea;
padding:8px 12px;
border-radius:8px;
cursor:pointer;
}

/* form grid */

.brx-form-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:18px;
}

.brx-input label{
font-size:13px;
color:#555;
margin-bottom:5px;
display:block;
}

.brx-input input,
.brx-input select{
width:100%;
padding:11px;
border:1px solid #ddd;
border-radius:8px;
font-size:14px;
}

.brx-input input:focus,
.brx-input select:focus{
border-color:#000;
outline:none;
}

/* buttons */

.profile-actions{
display:flex;
justify-content:flex-end;
gap:12px;
margin-top:25px;
}

.cancel-profile-btn{
padding:10px 18px;
border:1px solid #ddd;
background:#f5f5f5;
border-radius:8px;
cursor:pointer;
}

.brx-update-btn{
padding:10px 22px;
background:#000;
color:#fff;
border:none;
border-radius:8px;
cursor:pointer;
}

/* =========================
   MOBILE
========================= */






/* =============================Orders Page=========================== */

.brx-orders-page{
background:#fff;
padding: 25px ;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.brx-orders-header{
margin-bottom:20px;
}

.brx-orders-header h3{
font-size:22px;
font-weight:600;

}

.brx-order-card{
border:1px solid #eee;
border-radius:10px;
padding:20px;
margin-bottom:20px;
background:#fff;
transition:0.3s;
}

.brx-order-card:hover{
box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

.brx-order-top{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:15px;
}

.brx-order-id{
display:block;
font-size:14px;
font-weight:500;
}

.brx-order-date{
font-size:13px;
color:#777;
}

.brx-order-status{
padding:4px 10px;
font-size:12px;
border-radius:20px;
font-weight:500;
}

.brx-order-status.delivered{
background:#e7f8ec;
color:#1e8e3e;
}

.brx-order-status.shipped{
background:#e6f0ff;
color:#1a73e8;
}

.brx-order-status.cancelled{
background:#fdecea;
color:#d93025;
}

.brx-order-product{
display:flex;
align-items:center;
gap:20px;
flex-wrap:wrap;
}

.brx-order-product img{
width:90px;
height:90px;
object-fit:cover;
border-radius:8px;
}

.brx-order-info{
flex:1;
}

.brx-order-info h5{
margin:0;
font-size:16px;
}

.brx-order-info p{
font-size:13px;
color:#777;
margin:5px 0;
}

.brx-order-price{
font-weight:600;
font-size:15px;
}

.brx-order-actions{
display:flex;
gap:10px;
}

.brx-track-btn{
background:#000;
color:#fff;
border:none;
padding:8px 16px;
border-radius:6px;
cursor:pointer;
}

.brx-cancel-btn{
background:#f3f3f3;
border:none;
padding:8px 16px;
border-radius:6px;
cursor:pointer;
}

.brx-cancel-btn:hover{
background:#ffeded;
color:#d93025;
}



/* ========================================Settings Page======================================== */




.settings-container{
width: 100%;
  background:#fff;
  padding:20px;
}

.settings-title{
  text-align:center;
  font-weight:700;
  letter-spacing:2px;
  margin-bottom:20px;
}

.settings-item{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 16px;
  text-decoration:none;
  color:#000;
  border-bottom:1px solid #eee;
  font-size:16px;
  transition:0.2s;
}

.settings-item:hover{
  background:#f7f7f7;
}

.settings-item i{
  font-size:18px;
  color:#555;
}

.settings-item.active{
  background:#e9e9e9;
}



/* =====================================
        SAVED ADDRESS PAGE
===================================== */

.address-container{
  width:100%;
  padding:20px;
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(320px,1fr));
  gap:20px;
}

/* Address Card */

.address-card{
  background:#fff;
  border-radius:12px;
  padding:20px;
  box-shadow:0 4px 15px rgba(0,0,0,0.05);
  transition:0.3s;
  border:1px solid #eee;
}

.address-card:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

/* top section */

.address-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:10px;
}

.address-top h4{
  font-size:18px;
  font-weight:600;
}

/* tag */

.address-tag{
  background:#000;
  color:#fff;
  font-size:12px;
  padding:4px 10px;
  border-radius:20px;
}

.address-tag.office{
  background:#444;
}

/* phone */

.address-phone{
  font-size:14px;
  margin-bottom:8px;
  color:#444;
}

.address-phone i{
  margin-right:6px;
}

/* address */

.address-text{
  font-size:14px;
  color:#666;
  line-height:1.5;
  margin-bottom:16px;
}

/* actions */

.address-actions{
  display:flex;
  gap:10px;
}

.edit-btn,
.delete-btn{
  padding:8px 14px;
  border:none;
  border-radius:6px;
  font-size:13px;
  cursor:pointer;
  transition:0.2s;
}

.edit-btn{
  background:#f5f5f5;
}

.edit-btn:hover{
  background:#e9e9e9;
}

.delete-btn{
  background:#ffeaea;
  color:#d40000;
}

.delete-btn:hover{
  background:#ffd6d6;
}

/* ADD ADDRESS CARD */

.add-address-card{
  border:2px dashed #ddd;
  border-radius:12px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  cursor:pointer;
  transition:0.3s;
  min-height:180px;
}

.add-address-card i{
  font-size:35px;
  margin-bottom:10px;
  color:#888;
}

.add-address-card p{
  font-size:15px;
  color:#666;
}

.add-address-card:hover{
  border-color:#000;
  color:#000;
}


/* =========================
        PASSWORD MODAL
========================= */

.password-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.45);
  display:flex;
  justify-content:center;
  align-items:center;
  padding:20px;
  opacity:0;
  visibility:hidden;
  transition:0.3s;
  z-index:999999;
}

.password-modal.active{
  opacity:1;
  visibility:visible;
}

/* modal box */

.password-modal-content{
  width:520px;
  max-width:100%;
  background:#fff;
  border-radius:14px;
  padding:30px;
  box-shadow:0 25px 60px rgba(0,0,0,0.2);
}

/* header */

.password-modal-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:25px;
}

.password-modal-header h3{
  font-size:24px;
  font-weight:600;
}

.close-password{
  border:none;
  background:none;
  font-size:18px;
  cursor:pointer;
}

/* form */

.password-form{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.input-group label{
  display:block;
  font-size:14px;
  margin-bottom:6px;
  color:#444;
}

.input-group input{
  width:100%;
  padding:12px;
  border:1px solid #ddd;
  border-radius:8px;
  font-size:14px;
  transition:0.2s;
}

.input-group input:focus{
  border-color:#000;
  outline:none;
}

/* buttons */

.password-actions{
  display:flex;
  justify-content:flex-end;
  gap:10px;
  margin-top:10px;
}

.cancel-btn{
  padding:10px 18px;
  border:1px solid #ddd;
  background:#f4f4f4;
  border-radius:8px;
  cursor:pointer;
}

.save-password-btn{
  padding:10px 22px;
  background:#000;
  color:#fff;
  border:none;
  border-radius:8px;
  cursor:pointer;
}

.save-password-btn:hover{
  background:#222;
}


/* password input wrapper */

.password-field{
  position:relative;
  width:100%;
}

.password-field input{
  width:100%;
  padding:12px 42px 12px 12px;
  border:1px solid #ddd;
  border-radius:8px;
  font-size:14px;
}

/* eye icon */

.toggle-password{
  position:absolute;
  right:12px;
  top:50%;
  transform:translateY(-50%);
  font-size:18px;
  color:#777;
  cursor:pointer;
  transition:0.2s;
}

.toggle-password:hover{
  color:#000;
}



/* =========================
        ADDRESS MODAL
========================= */

.address-modal{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.45);
  display:flex;
  justify-content:center;
  align-items:center;
  padding:20px;
  opacity:0;
  visibility:hidden;
  transition:0.3s;
  z-index:9999999;
}

.address-modal.active{
  opacity:1;
  visibility:visible;
}

/* MODAL BOX */

.address-modal-content{
  width:750px;
  max-width:100%;
  background:#fff;
  border-radius:10px;
  padding:30px;
  box-shadow:0 20px 60px rgba(0,0,0,0.2);

  max-height:90vh;     /* Prevent height overflow */
  overflow-y:auto;     /* Scroll inside modal */
}

/* header */

.modal-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:25px;
}

.modal-header h4{
  font-size:22px;
  font-weight:600;
}

.close-modal{
  border:none;
  background:none;
  font-size:18px;
  cursor:pointer;
}

/* FORM GRID */

.address-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.full-width{
  grid-column:span 2;
}

/* inputs */

.address-form label{
  display:block;
  font-size:13px;
  margin-bottom:6px;
  color:#555;
}

.address-form input,
.address-form textarea{
  width:100%;
  padding:11px;
  border:1px solid #ddd;
  border-radius:6px;
  font-size:14px;
}

.address-form textarea{
  height:90px;
  resize:none;
}

/* buttons */

.modal-actions{
  grid-column:span 2;
  display:flex;
  justify-content:flex-end;
  gap:10px;
  margin-top:15px;
}

.cancel-btn{
  padding:9px 18px;
  border:1px solid #ddd;
  background:#f5f5f5;
  border-radius:6px;
  cursor:pointer;
}

.save-btn{
  padding:9px 22px;
  background:#000;
  color:#fff;
  border:none;
  border-radius:6px;
  cursor:pointer;
}

.save-btn:hover{
  background:#222;
}

/* =========================
        CHECK OUT PAGE
========================= */

.checkout-page{
background:#f6f6f6;
padding:40px 20px;
font-family:Arial;
}

.checkout-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:2fr 1fr;
gap:30px;
}

/* TITLE */

.checkout-title{
margin-bottom:20px;
}

/* CARD */

.checkout-card{
background:#fff;
padding:25px;
border-radius:12px;
margin-bottom:20px;
box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

/* FORM */

.form-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:12px;
margin-top:15px;
}

.form-grid textarea{
grid-column:1/3;
height:90px;
}

.form-grid input,
.form-grid textarea{
padding:12px;
border:1px solid #ddd;
border-radius:6px;
font-size:14px;
}

/* PAYMENT */

.payment-option{
display:flex;
align-items:center;
gap:10px;
margin-bottom:10px;
cursor:pointer;
}

/* PRODUCT */

.product-row{
display:flex;
align-items:center;
gap:15px;
margin-bottom:15px;
}
.product-info{
  display: f;
}

.product-row img{
width:90px;
height:90px;
/* border-radius:50%; */
object-fit:cover;
margin-bottom:10px;
}

.product-info h4{
font-size:15px;
}

.product-info p{
font-size:13px;
color:#777;
}

.product-price{
margin-left:auto;
font-weight:600;
}

/* SUMMARY */

.summary-card{
background:#fff;
padding:25px;
border-radius:12px;
position:sticky;
top:20px;
box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.summary-line{
display:flex;
justify-content:space-between;
margin-bottom:10px;
}

.total{
font-weight:700;
font-size:16px;
}

.place-order{
width:100%;
margin-top:15px;
background:#000;
color:#fff;
padding:14px;
border:none;
/* border-radius:8px; */
font-weight:600;
cursor:pointer;
}


.coupon-box{
display:flex;
gap:10px;
margin-top:10px;
}

.coupon-box input{
flex:1;
padding:6px 12px;
border:1px solid #ddd;
/* border-radius:6px; */
}

.coupon-box button{
background:#000;
color:#fff;
border:none;
outline: none;
padding:6px 18px;
/* border-radius:6px; */
cursor:pointer;
}

#couponMessage{
margin-top:10px;
font-size:13px;
}





.track-order-page{
width:100%;
/* padding:60px 6%; */
background:#f7f8fa;
font-family:Arial;
}

.track-wrapper{
max-width:1200px;
margin:auto;
}

/* TITLE */

.track-title{
text-align:center;
margin-bottom:30px;
color:#005F0D;
}

/* SEARCH */

.track-search{
display:flex;
justify-content:center;
gap:10px;
margin-bottom:35px;
flex-wrap:wrap;
}

.track-search input{
padding:12px;
width:300px;
border:1px solid #ddd;
border-radius:8px;
}

.track-search button{
background:#005F0D;
color:#fff;
border:none;
padding:12px 18px;
border-radius:8px;
cursor:pointer;
}

/* ORDER CARD */

.order-card{
background:#fff;
padding:35px;
border-radius:14px;
box-shadow:0 8px 25px rgba(0,0,0,0.05);
}

/* HEADER */

.order-header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:25px;
flex-wrap:wrap;
}

.order-status{
background:#e8f5e9;
color:#005F0D;
padding:6px 14px;
border-radius:20px;
font-weight:600;
}

/* PRODUCT */

.order-product{
display:flex;
align-items:center;
gap:20px;
padding:15px 0;
border-bottom:1px solid #eee;
margin-bottom:35px;
flex-wrap:wrap;
}

.order-product img{
width:90px;
height:90px;
object-fit:cover;
border-radius:8px;
}

.product-price{
margin-left:auto;
font-weight:600;
}

/* TRACKING PROGRESS */

.tracking-progress{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:40px;
position:relative;
}

/* gray background line */

/* TRACKING SECTION */

.tracking-progress{
display:flex;
justify-content:space-between;
align-items:center;
margin:40px 0;
position:relative;
}

/* main line */

.tracking-progress::before{
content:"";
position:absolute;
top:22px;
left:8%;
right:8%;
height:3px;
background:#e0e0e0;
z-index:1;
}

/* step */

.step{
flex:1;
text-align:center;
position:relative;
z-index:2;
}

/* icon circle */

.icon{
width:46px;
height:46px;
background:#e8f5e9;
color:#005F0D;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
margin:0 auto 10px;
font-size:18px;
border:3px solid #fff;
transition:0.3s;
}

.step.active .icon{
background:#005F0D;
color:#fff;
}

/* text */

.step p{
font-size:14px;
margin:0;
}

.step span{
font-size:12px;
color:#777;
}

/* DELIVERY */

.delivery-details{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
}

.delivery-box{
background:#fafafa;
padding:10px;
border-radius:10px;
}




/* ===========================Return Product Page============================ */





/* container */

.return-container{

display:flex;
justify-content:center;
}

.return-card{
background:white;
width:100%;
max-width:900px;
border-radius:16px;
padding:15px;
box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

/* product */

.return-product{
display:flex;
gap:25px;
align-items:center;
border-bottom:1px solid #eee;
padding-bottom:25px;
margin-bottom:25px;
flex-wrap:wrap;
}

.return-product img{
width:90px;
height:90px;
object-fit:cover;
border-radius:8px;
}

.product-details h3{
font-size:20px;
margin-bottom:8px;
}

.product-meta{
display:flex;
flex-wrap:wrap;
gap:15px;
font-size:14px;
color:#666;
}

/* form */

.return-form{
display:flex;
flex-direction:column;
gap:20px;
}

.input-group label{
font-size:14px;
font-weight:500;
margin-bottom:6px;
display:block;
}

select, textarea{
width:100%;
padding:11px;
border-radius:8px;
border:1px solid #ddd;
font-size:14px;
}

textarea{
height:100px;
resize:none;
}

/* upload */

.upload-wrapper label{
font-weight:500;
font-size:14px;
}

.upload-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:15px;
margin:10px 0;
}
.upload-image-return{
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.upload-image-return img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 8px;
}

.upload-item{
border:2px dashed #ddd;
border-radius:10px;
/* height:50px; */
padding: 5px;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
cursor:pointer;
transition:.3s;
}

.upload-item i{
font-size:20px;
color:#999;
}

.upload-item p{
font-size:12px;
color:#777;
}

.upload-item:hover{
border-color:#005F0D;
color:#005F0D;
}

.upload-item input{
display:none;
}

/* button */

.return-btn{
margin-top:10px;
background:#005F0D;
color:white;
padding:13px;
border:none;
border-radius:8px;
font-weight:500;
cursor:pointer;
transition:.3s;
}

.return-btn:hover{
background:#004a0a;
}







/* ========================= Blog Page ========================= */

.brx-blog-wrapper{
padding:20px 20px;
background:#f7f7f7;
font-family:system-ui;
}

.brx-blog-container{
max-width:1200px;
margin:auto;
}

/* header */

.brx-blog-header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:40px;
flex-wrap:wrap;
gap:20px;
}

.brx-blog-title{
font-size:32px;
font-weight:600;
}

.brx-blog-search{
display:flex;
border:1px solid #ddd;
border-radius:30px;
overflow:hidden;
background:white;
width: 100%;
}

.brx-blog-search input{
border:none;
padding:10px 15px ;
outline:none;
width:100%;
}

.brx-blog-search button{
border:none;
background:#005F0D;
color:white;
padding:10px 15px 14px;
cursor:pointer;
}

/* layout */

.brx-blog-layout{
display:grid;
grid-template-columns:2fr 1fr;
gap:40px;
}

/* posts */

.brx-blog-posts{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;
}

.brx-blog-card{
background:white;
border-radius:12px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:.3s;
}

.brx-blog-card:hover{
transform:translateY(-6px);
}

.brx-blog-thumb {
width:100%;
aspect-ratio: 3/2;
object-fit: cover;
overflow: hidden;
}
.brx-blog-thumb img{
width:100%;
height:100%;
object-fit:cover;
object-position: top;
}

.brx-blog-body{
padding:20px;
}

.brx-blog-date{
font-size:12px;
color:#888;
}

.brx-blog-card-title{
font-size:18px;
margin:10px 0;
}

.brx-blog-excerpt{
font-size:14px;
color:#555;
margin-bottom:12px;
}

.brx-blog-read{
color:#005F0D;
font-weight:500;
text-decoration:none;
}

/* sidebar */

.brx-blog-sidebar{
display:flex;
flex-direction:column;
gap:25px;
}

.brx-sidebar-box{
background:white;
padding:20px;
border-radius:12px;
box-shadow:0 8px 20px rgba(0,0,0,0.05);
}

.brx-sidebar-title{
margin-bottom:15px;
font-size:18px;
}

.brx-category-list{
list-style:none;
padding:0;
margin:0;
}

.brx-category-list li{
margin-bottom:10px;
}

.brx-category-list a{
text-decoration:none;
color:#444;
}

.brx-category-list a:hover{
color:#005F0D;
}

/* recent posts */

.brx-recent-post{
display:flex;
gap:10px;
margin-bottom:15px;
}

.brx-recent-post img{
width:60px;
height:60px;
border-radius:6px;
object-fit:cover;
}

.brx-recent-post p{
font-size:14px;
margin:0;
}

.brx-recent-post span{
font-size:12px;
color:#777;
}

/* ========================= Blog Detail Page ========================= */


.brx-detail-container{
max-width:900px;
margin:auto;
}

.brx-detail-title{
font-size:36px;
margin-bottom:10px;
}

.brx-detail-meta{
display:flex;
gap:20px;
color:#777;
margin-bottom:20px;
}

.brx-detail-image {
width:100%;
border-radius:10px;
margin-bottom:30px;
aspect-ratio: 3 / 2;
object-fit: cover;
overflow: hidden;
}
.brx-detail-image img{
width:100%;
height: 100%;
object-fit: cover;
}

.brx-detail-content{
line-height:1.8;
color:#444;
font-size:16px;
}

.brx-detail-content h2{
margin-top:25px;
color:#005F0D;
}
















/* ========================= contact Page Style ========================= */

.cx-contact-page{
padding:90px 20px;
background:linear-gradient(135deg,#f5f7f6,#ffffff);
font-family:system-ui;
}

.cx-contact-wrapper{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

/* LEFT */

.cx-contact-title{
font-size:42px;
font-weight:700;
margin-bottom:10px;
}

.cx-contact-desc{
color:#555;
line-height:1.6;
margin-bottom:35px;
}

/* CARDS */

.cx-contact-cards{
display:flex;
flex-direction:column;
gap:18px;
}

.cx-contact-card{
display:flex;
align-items:center;
gap:15px;
background:white;
padding:16px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
transition:.3s;
}

.cx-contact-card:hover{
transform:translateY(-5px);
}

.cx-contact-card i{
font-size:22px;
color:white;
background:#005F0D;
padding:12px;
border-radius:8px;
}

/* SOCIAL */

.cx-socials{
margin-top:25px;
display:flex;
gap:12px;
}

.cx-socials a{
width:38px;
height:38px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
background:#005F0D;
color:white;
text-decoration:none;
font-size:16px;
transition:.3s;
}

.cx-socials a:hover{
transform:scale(1.1);
}

/* FORM */

.cx-contact-right{
background:rgba(255,255,255,0.9);
backdrop-filter:blur(10px);
padding:40px;
border-radius:14px;
box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.cx-form h3{
margin-bottom:25px;
font-size:24px;
}

/* FLOATING INPUT */

.cx-input-box{
position:relative;
margin-bottom:22px;
}

.cx-input-box input,
.cx-input-box textarea{
width:100%;
padding:14px;
border-radius:6px;
border:1px solid #ddd;
outline:none;
font-size:14px;
background:transparent;
}

.cx-input-box textarea{
height:120px;
resize:none;
}

.cx-input-box label{
position:absolute;
left:14px;
top:50%;
transform:translateY(-50%);
background:white;
padding:0 5px;
font-size:13px;
color:#666;
transition:.3s;
}

.cx-input-box input:focus+label,
.cx-input-box input:valid+label{
top:-8px;
font-size:12px;
color:#005F0D;
}

.cx-textarea label{
top:20px;
transform:none;
}

.cx-textarea textarea:focus+label,
.cx-textarea textarea:valid+label{
top:-8px;
}

/* BUTTON */

.cx-send-btn{
width:100%;
padding:14px;
background:#005F0D;
color:white;
border:none;
border-radius:6px;
font-size:15px;
cursor:pointer;
transition:.3s;
}

.cx-send-btn:hover{
background:#004a0a;
}

/* ========================= New footer  Style ========================= */

.vx-footer-shell{
background:#0b0b0b;
color:#dcdcdc;
font-family:system-ui;
margin-top:80px;
}

.vx-footer-frame{
max-width:1400px;
margin:auto;
padding:70px 40px;
display:grid;
grid-template-columns:340px 1fr;
gap:80px;
}

/* brand */

.vx-brand-mark{
width:140px;
margin-bottom:18px;
}

.vx-brand-story{
font-size:14px;
line-height:1.8;
color:#a8a8a8;
margin-bottom:18px;
}

.vx-brand-location{
font-size:14px;
margin-bottom:18px;
display:flex;
gap:8px;
align-items:center;
}

.vx-payment-strip img{
width:150px;
opacity:.9;
}


/* link area */

.vx-links-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:50px;
}

.vx-column-head{
font-size:17px;
font-weight:600;
color:white;
margin-bottom:18px;
letter-spacing:.4px;
}

/* links */

.vx-column-block a{
display:block;
text-decoration:none;
color:#bfbfbf;
font-size:14px;
margin-bottom:12px;
transition:.25s;
}

.vx-column-block a:hover{
color:#ffffff;
transform:translateX(4px);
}

/* contact */

.vx-contact-row{
font-size:14px;
margin-bottom:12px;
color:#bfbfbf;
}


/* newsletter */

.vx-news-caption{
font-size:14px;
color:#a8a8a8;
margin-bottom:12px;
line-height:1.6;
}

.vx-news-input{
display:flex;
border:1px solid #222;
border-radius:6px;
overflow:hidden;
}

.vx-news-input input{
flex:1;
border:none;
background:transparent;
padding:10px;
color:white;
font-size:14px;
outline:none;
}

.vx-news-input button{
background:#005F0D;
border:none;
padding:10px 18px;
color:white;
cursor:pointer;
transition:.3s;
}

.vx-news-input button:hover{
background:#00831b;
}

/* social */

.vx-social-line{
margin-top:20px;
display:flex;
gap:14px;
}

.vx-social-line a{
width:36px;
height:36px;
border:1px solid #333;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:white;
transition:.3s;
}

.vx-social-line a:hover{
background:#005F0D;
border-color:#005F0D;
transform:translateY(-3px);
}

/* bottom */

.vx-footer-bottomline{
text-align:center;
border-top:1px solid #1b1b1b;
padding:18px;
font-size:13px;
color:#888;
}

/* responsive */

@media(max-width:1100px){

.vx-footer-frame{
grid-template-columns:1fr;
gap:50px;
}

.vx-links-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.vx-links-grid{
grid-template-columns:1fr;
gap:35px;
}

.vx-brand-story{
text-align:center;
}

.vx-brand-location{
justify-content:center;
}

.vx-payment-strip{
text-align:center;
}

}




/* ========================= Responsive Style ========================= */
/* RESPONSIVE */
/* Mobile */

@media(max-width:992px){

.brx-dashboard-sidebar{

transform:translateX(-100%);
    top: -5px;
    height: 100vh;
}

.brx-dashboard-sidebar.active{
    transform:translateX(0);

}

.brx-dashboard-content{

margin-left:0;
padding:25px;

}

.brx-sidebar-toggle-btn{

display:block;

}



/* ===========Profile page=========== */

.brx-profile-section{
grid-template-columns:1fr;
}

.brx-form-grid{
grid-template-columns:1fr;
}

}

/* RESPONSIVE */

@media(max-width:900px){

.checkout-container{
grid-template-columns:1fr;
}

.form-grid{
grid-template-columns:1fr;
}

.form-grid textarea{
grid-column:auto;
}

  .brx-blog-layout{
display:flex;
flex-direction:column-reverse;
}
.brx-sidebar-box.box2{
  display: none;
}

.cx-contact-wrapper{
grid-template-columns:1fr;
gap:40px;
}

.cx-contact-title{
font-size:32px;
}

}




@media (max-width:768px){



.brx-order-actions{
margin-top:10px;
}


  .settings-container{
    padding:10px;
  }

  .settings-item{
    font-size:15px;
    padding:16px 12px;
  }


  
.product-price{
margin-left:0;
}

.delivery-details{
grid-template-columns:1fr;
}



.address-modal-content{
  width:95%;
  padding:25px;
}

.address-form{
  grid-template-columns:1fr;
}

.full-width{
  grid-column:span 1;
}

.modal-actions{
  justify-content:center;
}


.brx-form-grid{
grid-template-columns:1fr;
}

.profile-image-update{
flex-direction:column;
align-items:flex-start;
}

.profile-actions{
flex-direction:column;
}

.profile-actions button{
width:100%;
}


.tracking-progress{
margin:30px 0;
}

/* make icons smaller */

.icon{
width:32px;
height:32px;
font-size:14px;
}

/* reduce spacing */

.tracking-progress::before{
top:16px;
display: none;
}

/* smaller text */

.step p{
font-size:11px;
}

.step span{
font-size:10px;
}

.return-product{
flex-direction:column;
align-items:flex-start;
}



}



/* =========================
        MOBILE FIX
========================= */

@media(max-width:600px){
  .brx-order-product{
flex-direction:column;
align-items:flex-start;
}

.address-modal{
  align-items:center;      /* center modal vertically */
  padding:15px;
}

.address-modal-content{
  width:100%;
  max-width:100%;
  padding:20px;
  border-radius:10px;
}

/* Make form single column */

.address-form{
  display:flex;
  flex-direction:column;
  gap:15px;
}

/* Full width fields */

.address-form input,
.address-form textarea{
  width:100%;
}

/* Buttons full width */

.modal-actions{
  width:100%;
  flex-direction:column;
}

.modal-actions button{
  width:100%;
}


.password-modal-content{
  padding:22px;
  border-radius:12px;
}

.password-actions{
  flex-direction:column;
}

.password-actions button{
  width:100%;
}

}

@media (max-width:586px) {
    .brx-dashboard-sidebar{
        top: 0px;
    }
    .brx-orders-page{

padding:10px ;

}
.display-verified-none{
  display: none;
}


.order-card{

padding:15px;

}

.brx-detail-content h2 {
    margin-top: 15px;
    color: #005F0D;
    font-size: 18px;
}
}


