/* LAYOUT */

.ultra-order{
    max-width:1000px;
    margin:30px auto;
    font-family:Inter,Segoe UI,sans-serif;
}


/* HEADER */

.glass{
    background:rgba(255,255,255,0.75);
    backdrop-filter:blur(14px);
    padding:20px;
    border-radius:5px;
    
}

.badge{
    display:inline-block;
    padding:6px 14px;
    border-radius:5px;
    font-size:14px;
    margin-right:8px;
    background:#eef2ff;
    font-weight:600;
}

.total{background:#ecfeff}
	
/* HEADER GRID */

.header-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
}

.info-box{
    display:flex;
    gap:12px;
    align-items:center;
    background:white;
    padding:14px;
    border-radius:8px;
    box-shadow:0 4px 15px rgba(0,0,0,0.05);
}

.icon{
    font-size:20px;
}

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

.value{
    font-weight:600;
    font-size:15px;
}

.total-box{
    background:#f0f9ff;
}


	
	/* TWO COLUMN LAYOUT */

.two-col{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:20px;
	margin-top: 15px;
    align-items:start;
}


/* ITEMS GRID */

.items-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}


/* ITEM CARD GRID MODE */

.wr-item-card.grid{
    height:100%;
}

/* ======================
   STATUS BOX BACKGROUNDS
====================== */
.status-box.st-pending    { background-color: #fef3c7; }  /* light amber */
.status-box.st-processing { background-color: #dbeafe; }  /* light blue */
.status-box.st-completed  { background-color: #dcfce7; }  /* light green */
.status-box.st-cancel     { background-color: #fee2e2; }  /* light red */
.status-box.st-failed     { background-color: #fee2e2; }  /* light red */

/* RESPONSIVE */

@media(max-width:900px){

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

    .two-col{
        grid-template-columns:1fr;
    }

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

}
/* DELIVERY COUNTDOWN */

.delivery-countdown-card{
    background:#fff;
    padding:18px;
    border-radius:10px;
    box-shadow:0 6px 20px rgba(0,0,0,0.05);
    margin-bottom:20px;
}

.delivery-top{
    display:flex;
    justify-content:space-between;
    margin-bottom:8px;
}

#delivery-countdown{
    font-size:18px;
    font-weight:600;
}

/* PROGRESS TRACKER */

.progress-tracker{
    display:flex;
    justify-content:space-between;
    margin:25px 0;
    position:relative;
}

.progress-tracker::before{
    content:"";
    position:absolute;
    top:18px;
    left:0;
    right:0;
    height:4px;
    background:#fff;
    z-index:0;
}

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

.circle{
    width:36px;
    height:36px;
    border-radius:50%;
    background:#ddd;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    margin-bottom:6px;
    transition:0.3s;
}

.step.active .circle{
    background:#2563eb;
    transform:scale(1.1);
}

/* COURIER */

.courier-card{
    display:flex;
    align-items:center;
    gap:15px;
    background:#fff;
    padding:15px;
    border-radius:10px;
    box-shadow:0 6px 20px rgba(0,0,0,0.05);
    margin-bottom:20px;
}

.courier-logo{
    width:60px;
    height:auto;
}



/* PROGRESS */

.progress-card{
    background:white;
    padding:20px;
    border-radius:5px;
    margin:20px 0;
    box-shadow:0 6px 20px rgba(0,0,0,0.05);
}

.progress-bar{
    height:10px;
    background:#eee;
    border-radius:5px;
}

.progress-fill{
    height:100%;
    background:#2563eb;
    border-radius:5px;
}


/* CARDS */

.card{
    background:white;
    padding:20px;
    border-radius:5px;
    margin-bottom:20px;
    box-shadow:0 6px 20px rgba(0,0,0,0.05);
}


/* PRODUCT */

.product-info{
    display:flex;
    gap:15px;
}

.product-img img{
    width:70px;
    border-radius:5px;
}

.qty{font-size:13px;color:#666}


/* TRACKING */

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

.timeline{
    display:flex;
    justify-content:space-between;
    margin-top:20px;
}

.step{
    flex:1;
    text-align:center;
    padding:5px;
    border-radius:5px;
    background:#fff;
    margin-right:5px;
	box-shadow:0 6px 20px rgba(0,0,0,0.05);
}

.step.done{
    background:#2563eb;
    color:white;
}


/* TOTAL */

.total-card{
    background:white;
    padding:20px;
    border-radius:5px;
    margin-bottom:20px;
    box-shadow:0 6px 20px rgba(0,0,0,0.05);
}

.row{
    display:flex;
    justify-content:space-between;
    padding:10px 0;
    border-bottom:1px solid #eee;
}

.row.grand{
    font-size:18px;
    font-weight:700;
    border:none;
}

/* NOTES */

.timeline-note{
    display:flex;
    margin-bottom:15px;
}

.dot{
    width:10px;
    height:10px;
    background:#2563eb;
    border-radius:5%;
    margin-right:10px;
    margin-top:6px;
}

.date{
    font-size:12px;
    color:#888;
}
	
	.wr-item-card {
    display: flex;
    gap: 18px;
    background: #fff;
    border-radius: 5px;
    padding: 18px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: 0.3s;
}

.wr-item-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* Image */

.wr-item-image img {
    width: 110px;
    height: auto;
    border-radius: 5px;
}

/* Content */

.wr-item-content {
    flex: 1;
}

/* Header */

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

.wr-item-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

/* Status Badge */

.wr-badge {
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
	background:#e6f7ee;
}

.status-completed { background:#e6f7ee; color:#1f9d55; }
.status-processing { background:#fff4e5; color:#e67e22; }
.status-pending { background:#fdecea; color:#e74c3c; }

/* Attributes */

.wr-attributes {
    margin-bottom: 10px;
}

.attr-badge {
    display: inline-block;
    background:#fdecea;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 13px;
    margin-right: 6px;
}

.color-dot {
    width: 15px;
    height: 15px;
    display: inline-block;
    border-radius: 5%;
    margin: 0 5px;
    vertical-align: middle;
    border:1px solid #ddd;
}

/* Meta */

.wr-meta-row {
    margin-bottom: 12px;
}

.meta-badge {
    display: inline-block;
    background:#fff4e5;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 13px;
    margin-right: 6px;
}

/* Price */

.wr-price {
    font-size: 18px;
    font-weight: bold;
    color: #111;
}

/* Mobile */

@media (max-width: 600px) {

    .wr-item-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .wr-item-header {
        flex-direction: column;
        gap: 8px;
    }

}


/* =========================
   ULTRA ADDRESS — LIGHT MODE
========================= */

.ultra-address-wrapper{
    max-width:1100px;
    margin:30px auto;
    font-family:Inter,Segoe UI,sans-serif;
    color:#111;
}

.address-header{
    margin-bottom:25px;
}

.address-header h2{
    margin:0 0 5px;
    font-weight:600;
}

/* GRID */

.address-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:20px;
}

/* CARD */

.address-card{
    background:#ffffff;
    border-radius:10px;
    padding:22px;
    border:1px solid #eee;
    box-shadow:0 8px 25px rgba(0,0,0,0.05);
    transition:0.3s;
}

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

/* TOP */

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

/* TITLE */

.address-title h3{
    margin:5px 0 0;
    font-size:18px;
}

/* BADGE */

.badge{
    display:inline-block;
    padding:4px 10px;
    background:#eef2ff;
    border-radius:6px;
    font-size:12px;
    font-weight:600;
    text-transform:uppercase;
    color:#3730a3;
}

/* BUTTON */

.edit-btn{
    background:#111;
    color:#fff;
    padding:6px 14px;
    border-radius:6px;
    font-size:13px;
    text-decoration:none;
    transition:0.2s;
}

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

/* BODY */

.address-content{
    line-height:1.6;
    color:#444;
}

.address-empty{
    color:#777;
    font-style:italic;
}









.writhics-dashboard-wrapper {
    max-width: 1100px;
    margin: auto;
    padding: 30px 20px;
}

.writhics-dashboard-header {
    margin-bottom: 30px;
}

.writhics-dashboard-header h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 5px;
}

.writhics-dashboard-header p {
    color: #777;
}

.writhics-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.writhics-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.writhics-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.writhics-card-icon img {
    width: 40px;
}

.writhics-card-content h3 {
    margin: 0;
    font-size: 18px;
    color: #111;
}

.writhics-card-content p {
    margin: 0;
    font-size: 13px;
    color: #777;
}

.writhics-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #0073aa;
    color: #fff;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 20px;
}

.writhics-card.logout {
    background: #fff5f5;
}














.woocommerce nav.woocommerce-MyAccount-navigation ul li {
    padding: 0 !important;
}

.woocommerce-MyAccount-navigation ul li a {
	border-bottom: 1px solid #ddd !important;
	padding: 18px 20px !important;
	background: #F9F9F9;
	color: #2c3e50 !important;
}

.woocommerce-MyAccount-navigation ul li.is-active a, 
.woocommerce-MyAccount-navigation ul li:hover a {
	background: #fff !important;
}

.woocommerce-MyAccount-navigation ul {
	box-shadow: 0 0 10px #D1D4E1;
}

.woocommerce-MyAccount-content {
	padding: 25px !important;
	box-sizing: border-box;
	box-shadow: 0 0 10px #D1D4E1;
	background: #FFF;
}

.dashbord-simple-area p {
	padding-bottom: 15px;
}

.writhics-dashbord-single-item {
	padding: 30px 10px;
	width: 100%;
	text-align: center;
	background: #FFF;
	box-shadow: 0 0 10px #D1D4E1;
	color: #2c3e50;
}



.dashbord-simple-area p a:hover{
	text-decoration: underline;
}


.writhics-dashbord-single-item span svg {
	fill: #34495e;
	width: 30px;
	height: 30px;
	object-fit: contain;
}
 
.woocommerce-orders-table.woocommerce-MyAccount-orders tbody tr td,
.woocommerce-orders-table.woocommerce-MyAccount-orders thead tr th{
	background: #F9F9F9;
}


.woocommerce-orders-table.woocommerce-MyAccount-orders tbody tr td{
	border-top: 1px solid #ddd !important;
}

.woocommerce-orders-table.woocommerce-MyAccount-orders tbody tr:last-child td{
	border-bottom: 1px solid #ddd !important;
}
  
/*Responsive*/
@media all and (max-width: 767px){
	.woocommerce-MyAccount-navigation ul li a {
		padding: 12px 15px !important;
	}


}