/*
Theme Name: ShopBar Child
Theme URI: https://delecacy.com/
Description: Child theme for ShopBar
Author: Delecacy
Template: shopbar
Version: 1.0.0
*/

/* Custom Delecacy styles */


/* =========================================
   LOGIN TABS
========================================= */

.shopbar-login-tabs {
	display: flex;
	gap: 8px;
	margin: 25px 0;
}

.shopbar-login-tab {
	flex: 1;
	height: 48px;
	padding: 0 15px;
	border: 1px solid #075c52;
	border-radius: 30px;
	background: #fff;
	color: #075c52;
	cursor: pointer;
	font-weight: 600;
	transition: all .2s ease;
}

.shopbar-login-tab.active {
	background: #075c52;
	color: #fff;
	border-color: #075c52;
}

.shopbar-login-tab:hover {
	background: #075c52;
	color: #fff;
}


/* =========================================
   ALL INPUTS - SAME DESIGN
========================================= */

.shopbar-login-mode input[type="text"],
.shopbar-login-mode input[type="email"],
.shopbar-login-mode input[type="password"] {

	width: 100%;
	height: 50px;
	box-sizing: border-box;

	border: 1px solid #dedede;
	border-radius: 8px;

	background: #fff;

	padding: 0 15px;

	font-size: 14px;

	outline: none;

	transition: border-color .2s ease,
				box-shadow .2s ease;
}


.shopbar-login-mode input:focus {

	border-color: #075c52;

	box-shadow: 0 0 0 1px #075c52;

}


/* =========================================
   PASSWORD LOGIN BUTTON
========================================= */

.shopbar-password-mode
.woocommerce-form-login__submit {

	width: 100% !important;

	height: 50px;

	border: none !important;

	border-radius: 30px !important;

	background: #075c52 !important;

	color: #fff !important;

	font-weight: 600;

	cursor: pointer;

	margin-top: 5px;

	transition: all .2s ease;
}


.shopbar-password-mode
.woocommerce-form-login__submit:hover {

	background: #064d45 !important;

}


/* =========================================
   OTP BUTTON
========================================= */

.shopbar-get-otp {

	width: 100% !important;

	height: 50px;

	border: none !important;

	border-radius: 30px !important;

	background: #075c52 !important;

	color: #fff !important;

	font-weight: 600;

	cursor: pointer;

	margin-top: 5px;

	transition: all .2s ease;
}


.shopbar-get-otp:hover {

	background: #064d45 !important;

}


/* =========================================
   OTP VERIFY
========================================= */

.shopbar-otp-verification {

	margin-top: 18px;

}


.shopbar-verify-otp {

	width: 100% !important;

	height: 50px;

	border: none !important;

	border-radius: 30px !important;

	background: #075c52 !important;

	color: #fff !important;

	font-weight: 600;

	cursor: pointer;

}


/* =========================================
   OTP MESSAGE
========================================= */

.shopbar-otp-message {

	margin-top: 12px;

	text-align: center;

	font-size: 13px;

	color: #555;

}


/* =========================================
   OR DIVIDER
========================================= */

.shopbar-login-divider {

	display: flex;

	align-items: center;

	gap: 12px;

	margin: 25px 0;

	color: #777;

	font-size: 12px;

}


.shopbar-login-divider::before,
.shopbar-login-divider::after {

	content: "";

	flex: 1;

	height: 1px;

	background: #ddd;

}


/* =========================================
   GOOGLE BUTTON
========================================= */

.shopbar-google-button {

	width: 100%;

}


.shopbar-google-button
.woocommerce-social-login {

	width: 100%;

}


.shopbar-google-button a {

	width: 100% !important;

	min-height: 50px;

	box-sizing: border-box;

	display: flex !important;

	align-items: center !important;

	justify-content: center !important;

	gap: 10px;

	border: 1px solid #ddd !important;

	border-radius: 30px !important;

	background: #fff !important;

	color: #222 !important;

	text-decoration: none !important;

	font-weight: 600;

}


.shopbar-google-button a:hover {

	background: #f8f8f8 !important;

}


/* =========================================
   GOOGLE FALLBACK
========================================= */

.shopbar-google-fallback {

	display: flex;

	align-items: center;

	justify-content: center;

	gap: 10px;

	width: 100%;

	height: 50px;

	box-sizing: border-box;

	border: 1px solid #ddd;

	border-radius: 30px;

	color: #222;

	text-decoration: none;

	font-weight: 600;

}


/* =========================================
   SIGN UP
========================================= */

.shopbar-signup {

	margin-top: 20px;

	text-align: center;

	font-size: 14px;

}


.shopbar-signup a {

	color: #075c52;

	font-weight: 600;

	text-decoration: underline;

}


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

@media (max-width: 600px) {

	.shopbar-login-tabs {

		gap: 5px;

	}

	.shopbar-login-tab {

		height: 46px;

		padding: 0 8px;

		font-size: 12px;

	}

}


<?php
}





































































add_action( 'wp_head', function () {
?>

	/* ========================================
	   SHOPBAR LOGIN BUTTON
	======================================== */

	.woocommerce-form-login__submit {
		background: #075c52 !important;
		color: #ffffff !important;
		border-color: #075c52 !important;
	}

	.woocommerce-form-login__submit:hover {
		background: #075c52 !important;
		color: #ffffff !important;
	}


	/* ========================================
	   OTP BUTTON
	======================================== */

	#shopbar-get-otp {
		width: 100% !important;
		background: #075c52 !important;
		color: #ffffff !important;
		border-color: #075c52 !important;
		border-radius: 8px !important;
		min-height: 50px !important;
		font-weight: 600 !important;
	}

	#shopbar-get-otp:hover {
		background: #075c52 !important;
		color: #ffffff !important;
	}


	/* ========================================
	   VERIFY OTP BUTTON
	======================================== */

	#shopbar-verify-otp {
		width: 100% !important;
		background: #075c52 !important;
		color: #ffffff !important;
		border-color: #075c52 !important;
		border-radius: 8px !important;
		min-height: 50px !important;
		font-weight: 600 !important;
	}

	#shopbar-verify-otp:hover {
		background: #075c52 !important;
		color: #ffffff !important;
	}


	/* ========================================
	   OTP EMAIL / MOBILE INPUT
	======================================== */

	#shopbar_otp_identifier {
		width: 100% !important;
		height: 50px !important;
		min-height: 50px !important;
		padding: 0 15px !important;
		border: 1px solid #dedede !important;
		border-radius: 8px !important;
		box-sizing: border-box !important;
		font-size: 15px !important;
		background: #ffffff !important;
	}

	#shopbar_otp_identifier:focus {
		border-color: #075c52 !important;
		outline: none !important;
	}


	/* ========================================
	   OTP INPUT
	======================================== */

	#shopbar_otp {
		width: 100% !important;
		height: 50px !important;
		min-height: 50px !important;
		padding: 0 15px !important;
		border: 1px solid #dedede !important;
		border-radius: 8px !important;
		box-sizing: border-box !important;
		font-size: 15px !important;
		background: #ffffff !important;
	}


	/* ========================================
	   GOOGLE LOGIN
	======================================== */

	.shopbar-google-login {
		width: 100% !important;
		margin-top: 15px !important;
	}

	.shopbar-google-button {
		width: 100% !important;
	}

	.shopbar-google-custom-btn {
		width: 100% !important;
		height: 50px !important;
		min-height: 50px !important;

		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		gap: 10px !important;

		background: #ffffff !important;
		color: #222222 !important;

		border: 1px solid #dddddd !important;
		border-radius: 8px !important;

		font-size: 15px !important;
		font-weight: 600 !important;

		text-decoration: none !important;
		box-sizing: border-box !important;

		cursor: pointer !important;
	}

	.shopbar-google-custom-btn:hover {
		background: #f8f8f8 !important;
		color: #222222 !important;
		border-color: #cccccc !important;
		text-decoration: none !important;
	}

	.shopbar-google-custom-btn svg {
		width: 20px !important;
		height: 20px !important;
		flex-shrink: 0 !important;
	}


	/* ========================================
	   LOGIN TABS
	======================================== */

	.shopbar-login-tab.active {
		background: #075c52 !important;
		color: #ffffff !important;
	}


	/* ========================================
	   SIGN UP
	======================================== */

	.shopbar-signup a {
		color: #075c52 !important;
		text-decoration: underline !important;
		font-weight: 600 !important;
	}

	/* REGISTER CARD */
	.account-auth--single {
		width: 100%;
		display: flex;
		justify-content: center;
		padding: 40px 20px;
		box-sizing: border-box;
	}

	.account-auth-card {
		width: 100%;
		max-width: 680px;
		background: #ffffff;
		padding: 35px 40px;
		border-radius: 12px;
		box-sizing: border-box;
		box-shadow: 0 8px 35px rgba(0,0,0,0.08);
	}


	/* HEADING */
	.account-auth-eyebrow {
		display: block;
		margin-bottom: 6px;
		font-size: 12px;
		font-weight: 600;
		text-transform: uppercase;
		letter-spacing: 2px;
		color: #075c52;
	}

	.account-auth-title {
		margin: 0 0 8px !important;
		font-size: 30px !important;
		line-height: 1.2 !important;
		font-weight: 700 !important;
	}

	.account-auth-subtitle {
		margin: 0 0 22px !important;
		font-size: 13px !important;
		line-height: 1.5 !important;
		color: #777 !important;
	}


	/* 2 COLUMN FORM */
	.woocommerce-form-register {
		display: grid !important;
		grid-template-columns: 1fr 1fr;
		column-gap: 20px;
	}


	/* FULL WIDTH ELEMENTS */
	.woocommerce-form-register > .shopbar-register-terms,
	.woocommerce-form-register > .form-row:last-of-type,
	.woocommerce-form-register > .shopbar-register-google,
	.woocommerce-form-register > .shopbar-register-google + *,
	.woocommerce-form-register > .woocommerce-privacy-policy-text {
		grid-column: 1 / -1;
	}


	/* FORM ROW */
	.woocommerce-form-register .form-row,
	.woocommerce-form-register .woocommerce-form-row {
		width: 100% !important;
		margin: 0 0 15px !important;
		padding: 0 !important;
		float: none !important;
	}


	/* LABEL */
	.account-auth-card label {
		display: block !important;
		margin-bottom: 6px !important;
		font-size: 13px !important;
		font-weight: 600 !important;
		color: #222 !important;
	}

	.account-auth-card .required {
		color: #075c52 !important;
	}


	/* INPUT */
	.account-auth-card input[type="text"],
	.account-auth-card input[type="email"],
	.account-auth-card input[type="tel"],
	.account-auth-card input[type="password"] {
		width: 100% !important;
		height: 48px !important;
		min-height: 48px !important;
		padding: 0 14px !important;
		background: #fff !important;
		border: 1px solid #dedede !important;
		border-radius: 8px !important;
		box-sizing: border-box !important;
		font-size: 14px !important;
	}

	.account-auth-card input:focus {
		border-color: #075c52 !important;
		outline: none !important;
	}


	/* TERMS */
	.shopbar-register-terms {
		margin-top: 2px !important;
		margin-bottom: 15px !important;
	}

	.shopbar-register-terms label {
		display: flex !important;
		align-items: center !important;
		gap: 7px !important;
		font-size: 12px !important;
		font-weight: 400 !important;
	}

	.shopbar-register-terms input[type="checkbox"] {
		width: 15px !important;
		height: 15px !important;
		min-width: 15px !important;
		margin: 0 !important;
	}

	.shopbar-register-terms a {
		color: #075c52 !important;
		text-decoration: underline !important;
		font-weight: 600 !important;
	}


	/* CREATE ACCOUNT */
	.shopbar-register-submit {
		width: 100% !important;
		height: 48px !important;
		min-height: 48px !important;
		background: #075c52 !important;
		color: #fff !important;
		border: 1px solid #075c52 !important;
		border-radius: 8px !important;
		font-size: 14px !important;
		font-weight: 600 !important;
		padding: 0 20px !important;
	}

	.shopbar-register-submit:hover {
		background: #075c52 !important;
		color: #fff !important;
	}


	/* GOOGLE */
	.shopbar-register-google {
		width: 100% !important;
		margin-top: 2px !important;
	}

	.shopbar-login-divider {
		display: flex;
		align-items: center;
		gap: 10px;
		margin: 15px 0 !important;
		font-size: 11px;
		color: #999;
	}

	.shopbar-login-divider::before,
	.shopbar-login-divider::after {
		content: "";
		flex: 1;
		height: 1px;
		background: #e5e5e5;
	}

	.shopbar-google-button {
		width: 100% !important;
	}

	.shopbar-google-custom-btn {
		width: 100% !important;
		height: 48px !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		gap: 9px !important;
		background: #fff !important;
		color: #222 !important;
		border: 1px solid #ddd !important;
		border-radius: 8px !important;
		font-size: 14px !important;
		font-weight: 600 !important;
		text-decoration: none !important;
		box-sizing: border-box !important;
	}

	.shopbar-google-custom-btn:hover {
		background: #f8f8f8 !important;
		color: #222 !important;
	}

	.shopbar-google-custom-btn svg {
		width: 19px !important;
		height: 19px !important;
	}


	/* LOGIN LINK */
	.shopbar-signup {
		margin: 18px 0 0 !important;
		text-align: center !important;
		font-size: 13px !important;
		color: #666 !important;
	}

	.shopbar-signup a {
		color: #075c52 !important;
		font-weight: 600 !important;
		text-decoration: underline !important;
	}


	/* MOBILE */
	@media (max-width: 600px) {

		.account-auth--single {
			padding: 25px 15px;
		}

		.account-auth-card {
			padding: 25px 20px;
		}

		.woocommerce-form-register {
			display: block !important;
		}

		.account-auth-title {
			font-size: 27px !important;
		}

	}


	.shopbar-welcome-wrapper {
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 65px 20px;
		box-sizing: border-box;
	}


	.shopbar-welcome-card {
		width: 100%;
		max-width: 600px;
		background: #ffffff;
		padding: 50px 45px;
		text-align: center;
		border-radius: 14px;
		box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
		box-sizing: border-box;
	}


	.shopbar-welcome-icon {
		width: 64px;
		height: 64px;
		margin: 0 auto 22px;
		display: flex;
		align-items: center;
		justify-content: center;
		background: #075c52;
		color: #ffffff;
		border-radius: 50%;
		font-size: 30px;
		font-weight: 700;
	}


	.shopbar-welcome-eyebrow {
		display: block;
		margin-bottom: 10px;
		color: #075c52;
		font-size: 12px;
		font-weight: 700;
		letter-spacing: 2px;
	}


	.shopbar-welcome-card h1 {
		margin: 0 0 15px !important;
		color: #111111 !important;
		font-size: 34px !important;
		line-height: 1.2 !important;
		font-weight: 700 !important;
	}


	.shopbar-welcome-title {
		margin: 0 0 10px !important;
		color: #333333 !important;
		font-size: 16px !important;
		font-weight: 600 !important;
		line-height: 1.5 !important;
	}


	.shopbar-welcome-text {
		margin: 0 auto 30px !important;
		max-width: 450px;
		color: #777777 !important;
		font-size: 14px !important;
		line-height: 1.6 !important;
	}


	.shopbar-welcome-buttons {
		display: flex;
		flex-direction: column;
		gap: 12px;
		width: 100%;
	}


	.shopbar-welcome-primary,
	.shopbar-welcome-secondary {
		width: 100%;
		height: 50px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 8px;
		box-sizing: border-box;
		font-size: 14px;
		font-weight: 600;
		text-decoration: none !important;
		transition: all 0.2s ease;
	}


	.shopbar-welcome-primary {
		background: #075c52;
		color: #ffffff !important;
		border: 1px solid #075c52;
	}


	.shopbar-welcome-primary:hover {
		background: #064f47;
		color: #ffffff !important;
	}


	.shopbar-welcome-secondary {
		background: #ffffff;
		color: #075c52 !important;
		border: 1px solid #075c52;
	}


	.shopbar-welcome-secondary:hover {
		background: #f5f8f7;
		color: #075c52 !important;
	}


	@media (max-width: 600px) {

		.shopbar-welcome-wrapper {
			padding: 35px 15px;
		}

		.shopbar-welcome-card {
			padding: 35px 22px;
		}

		.shopbar-welcome-card h1 {
			font-size: 28px !important;
		}

	}

	/* =========================================
	   MY ACCOUNT DASHBOARD
	========================================= */

	.shopbar-account-dashboard {
		width: 100%;
		max-width: 1100px;
		margin: 0 auto;
		padding: 45px 20px 60px;
		box-sizing: border-box;
	}


	/* Welcome */

	.shopbar-dashboard-welcome {
		background: #075c52;
		color: #ffffff;
		border-radius: 12px;
		padding: 35px 40px;
		margin-bottom: 25px;
	}

	.shopbar-dashboard-eyebrow {
		display: block;
		font-size: 11px;
		letter-spacing: 2px;
		font-weight: 600;
		margin-bottom: 8px;
		opacity: .85;
	}

	.shopbar-dashboard-welcome h2 {
		margin: 0 0 8px !important;
		color: #ffffff !important;
		font-size: 30px !important;
		font-weight: 700 !important;
	}

	.shopbar-dashboard-welcome p {
		margin: 0 !important;
		color: rgba(255,255,255,.85) !important;
		font-size: 14px !important;
	}


	/* Cards */

	.shopbar-account-grid {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 18px;
		margin-bottom: 25px;
	}

	.shopbar-account-card {
		position: relative;
		display: flex;
		align-items: center;
		gap: 15px;
		padding: 22px;
		background: #ffffff;
		border: 1px solid #e6e6e6;
		border-radius: 10px;
		text-decoration: none !important;
		box-sizing: border-box;
		transition: all .2s ease;
	}

	.shopbar-account-card:hover {
		border-color: #075c52;
		transform: translateY(-2px);
		box-shadow: 0 8px 25px rgba(0,0,0,.06);
	}


	.shopbar-account-icon {
		width: 48px;
		height: 48px;
		min-width: 48px;
		display: flex;
		align-items: center;
		justify-content: center;
		background: #eef6f4;
		border-radius: 8px;
		font-size: 22px;
	}


	.shopbar-account-card h3 {
		margin: 0 0 5px !important;
		color: #111111 !important;
		font-size: 16px !important;
		font-weight: 600 !important;
	}

	.shopbar-account-card p {
		margin: 0 !important;
		color: #777777 !important;
		font-size: 12px !important;
		line-height: 1.5 !important;
	}


	.shopbar-card-arrow {
		margin-left: auto;
		color: #075c52;
		font-size: 20px;
		font-weight: 600;
	}


	/* Account Information */

	.shopbar-account-info {
		background: #ffffff;
		border: 1px solid #e6e6e6;
		border-radius: 10px;
		overflow: hidden;
	}

	.shopbar-account-info-header {
		padding: 20px 25px;
		border-bottom: 1px solid #eeeeee;
	}

	.shopbar-account-info-header h3 {
		margin: 0 !important;
		font-size: 18px !important;
		color: #111111 !important;
	}

	.shopbar-account-info-grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
		padding: 25px;
	}

	.shopbar-account-info-grid div {
		display: flex;
		flex-direction: column;
		gap: 6px;
	}

	.shopbar-account-info-grid span {
		font-size: 11px;
		color: #888888;
		text-transform: uppercase;
		letter-spacing: .5px;
	}

	.shopbar-account-info-grid strong {
		font-size: 14px;
		color: #222222;
		font-weight: 600;
		word-break: break-word;
	}


	/* Mobile */

	@media (max-width: 700px) {

		.shopbar-account-dashboard {
			padding: 30px 15px 45px;
		}

		.shopbar-dashboard-welcome {
			padding: 28px 22px;
		}

		.shopbar-dashboard-welcome h2 {
			font-size: 25px !important;
		}

		.shopbar-account-grid {
			grid-template-columns: 1fr;
		}

		.shopbar-account-info-grid {
			grid-template-columns: 1fr;
			padding: 20px;
		}

	}

	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	/* =========================================================
   DELECACY - MY ORDERS PAGE
   ========================================================= */

.delecacy-orders-page {
	width: 100%;
	max-width: 100%;
	padding: 5px 0 30px;
}


/* HEADER
--------------------------------------------------------- */

.delecacy-orders-header {
	margin-bottom: 30px;
}

.delecacy-account-label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 2px;
	color: #075c52;
	margin-bottom: 8px;
}

.delecacy-orders-header h2 {
	margin: 0 0 12px;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.2;
	color: #111111;
}

.delecacy-orders-header p {
	margin: 0;
	font-size: 15px;
	color: #666666;
}


/* ORDERS LIST
--------------------------------------------------------- */

.delecacy-orders-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}


/* ORDER CARD
--------------------------------------------------------- */

.delecacy-order-card {
	background: #ffffff;
	border: 1px solid #e2e2e2;
	border-radius: 14px;
	overflow: hidden;
	transition: all 0.25s ease;
}

.delecacy-order-card:hover {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}


/* ORDER TOP
--------------------------------------------------------- */

.delecacy-order-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 22px 25px;
	border-bottom: 1px solid #eeeeee;
}

.delecacy-order-top > div {
	display: flex;
	align-items: center;
	gap: 10px;
}

.delecacy-order-small {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1.5px;
	color: #888888;
}

.delecacy-order-top strong {
	font-size: 17px;
	color: #111111;
}


/* STATUS
--------------------------------------------------------- */

.delecacy-order-status {
	display: inline-flex;
	align-items: center;
	padding: 7px 14px;
	border-radius: 30px;
	font-size: 12px;
	font-weight: 600;
	text-transform: capitalize;
	background: #edf7f5;
	color: #075c52;
}


/* ORDER INFO
--------------------------------------------------------- */

.delecacy-order-info {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	padding: 22px 25px;
	background: #fafafa;
	border-bottom: 1px solid #eeeeee;
}

.delecacy-order-info div {
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.delecacy-order-info span {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 1.3px;
	color: #999999;
}

.delecacy-order-info strong {
	font-size: 14px;
	color: #222222;
}


/* PRODUCTS
--------------------------------------------------------- */

.delecacy-order-products {
	padding: 20px 25px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.delecacy-order-product {
	display: flex;
	align-items: center;
	gap: 14px;
}

.delecacy-order-product-image {
	width: 55px;
	height: 55px;
	border-radius: 8px;
	overflow: hidden;
	background: #f5f5f5;
	flex-shrink: 0;
}

.delecacy-order-product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.delecacy-order-product-details {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.delecacy-order-product-details strong {
	font-size: 14px;
	color: #222222;
}

.delecacy-order-product-details span {
	font-size: 12px;
	color: #888888;
}


/* MORE ITEMS
--------------------------------------------------------- */

.delecacy-more-items {
	font-size: 12px;
	color: #075c52;
	font-weight: 600;
	margin-top: 3px;
}


/* BOTTOM
--------------------------------------------------------- */

.delecacy-order-bottom {
	padding: 18px 25px;
	border-top: 1px solid #eeeeee;
	display: flex;
	justify-content: flex-end;
}

.delecacy-view-order {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #075c52;
	color: #ffffff !important;
	padding: 11px 20px;
	border-radius: 7px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none !important;
	transition: all 0.25s ease;
}

.delecacy-view-order:hover {
	background: #064d45;
	color: #ffffff !important;
}

.delecacy-view-order span {
	font-size: 17px;
	line-height: 1;
}


/* EMPTY ORDERS
--------------------------------------------------------- */

.delecacy-no-orders {
	background: #ffffff;
	border: 1px solid #e5e5e5;
	border-radius: 14px;
	padding: 55px 30px;
	text-align: center;
}

.delecacy-no-orders-icon {
	width: 65px;
	height: 65px;
	margin: 0 auto 18px;
	border-radius: 50%;
	background: #edf7f5;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
}

.delecacy-no-orders h3 {
	margin: 0 0 10px;
	font-size: 22px;
	font-weight: 700;
	color: #111111;
}

.delecacy-no-orders p {
	margin: 0 0 25px;
	font-size: 14px;
	color: #777777;
}


/* SHOP BUTTON
--------------------------------------------------------- */

.delecacy-shop-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: #075c52;
	color: #ffffff !important;
	padding: 13px 25px;
	border-radius: 7px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none !important;
	transition: all 0.25s ease;
}

.delecacy-shop-button:hover {
	background: #064d45;
	color: #ffffff !important;
}

.delecacy-shop-button span {
	font-size: 18px;
}


/* PAGINATION
--------------------------------------------------------- */

.delecacy-orders-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-top: 30px;
}

.delecacy-orders-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border: 1px solid #dddddd;
	border-radius: 6px;
	color: #333333;
	text-decoration: none;
	font-size: 13px;
}

.delecacy-orders-pagination .page-numbers.current {
	background: #075c52;
	border-color: #075c52;
	color: #ffffff;
}

.delecacy-orders-pagination .page-numbers:hover {
	background: #075c52;
	border-color: #075c52;
	color: #ffffff;
}


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

@media (max-width: 767px) {

	.delecacy-orders-page {
		padding: 0 5px 25px;
	}

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

	.delecacy-orders-header h2 {
		font-size: 27px;
	}

	.delecacy-orders-header p {
		font-size: 14px;
	}

	.delecacy-order-top {
		padding: 18px;
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.delecacy-order-info {
		grid-template-columns: 1fr 1fr;
		padding: 18px;
		gap: 18px;
	}

	.delecacy-order-products {
		padding: 18px;
	}

	.delecacy-order-bottom {
		padding: 15px 18px;
		justify-content: stretch;
	}

	.delecacy-view-order {
		width: 100%;
		justify-content: center;
	}

	.delecacy-no-orders {
		padding: 40px 20px;
	}

	.delecacy-no-orders h3 {
		font-size: 20px;
	}

}
	
	
	
	
	
	

	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
/* =========================================================
   SHOPBAR CHILD - ORDER DETAILS PAGE
========================================================= */

.shopbar-order-page {
    max-width: 1100px;
    margin: 50px auto 80px;
    padding: 0 20px;
}


/* =========================================================
   ORDER HEADER
========================================================= */

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

.shopbar-order-eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #075c52;
    margin-bottom: 10px;
}

.shopbar-order-header h2 {
    margin: 0 0 8px;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
}

.shopbar-order-date {
    margin: 0;
    color: #777;
    font-size: 14px;
}


/* =========================================================
   STATUS
========================================================= */

.shopbar-order-status {
    text-align: right;
}

.shopbar-status-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #777;
    margin-bottom: 8px;
}

.shopbar-status-badge {
    display: inline-block;
    padding: 9px 18px;
    border-radius: 30px;
    background: #eaf5f3;
    color: #075c52;
    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
   CARD
========================================================= */

.shopbar-order-card {
    background: #ffffff;
    border: 1px solid #e4e4e4;
    border-radius: 14px;
    margin-bottom: 24px;
    overflow: hidden;
}

.shopbar-order-card-title {
    padding: 22px 28px;
    border-bottom: 1px solid #eeeeee;
}

.shopbar-order-card-title h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}


/* =========================================================
   ORDER ITEMS
========================================================= */

.shopbar-order-items {
    padding: 5px 28px;
}

.shopbar-order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #eeeeee;
}

.shopbar-order-item:last-child {
    border-bottom: 0;
}

.shopbar-order-product {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.shopbar-order-product-image {
    width: 80px;
    height: 80px;
    flex: 0 0 80px;
    border-radius: 10px;
    overflow: hidden;
    background: #f5f8f7;
}

.shopbar-order-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0 !important;
}

.shopbar-no-product-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.shopbar-order-product-info h4 {
    margin: 0 0 7px;
    font-size: 16px;
    font-weight: 700;
}

.shopbar-order-product-info p {
    margin: 0;
    color: #777;
    font-size: 14px;
}

.shopbar-order-item-price {
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
}


/* =========================================================
   ORDER SUMMARY
========================================================= */

.shopbar-order-summary {
    padding-bottom: 10px;
}

.shopbar-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 28px;
    font-size: 15px;
}

.shopbar-summary-row span {
    color: #666;
}

.shopbar-summary-row strong {
    color: #111;
}

.shopbar-discount {
    color: #075c52 !important;
}

.shopbar-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    padding: 20px 28px;
    border-top: 1px solid #dddddd;
    font-size: 19px;
    font-weight: 700;
}

.shopbar-summary-total strong {
    color: #075c52;
}


/* =========================================================
   BILLING / SHIPPING
========================================================= */

.shopbar-order-address-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.shopbar-address-card {
    margin-bottom: 24px;
}

.shopbar-address-content {
    padding: 24px 28px;
    color: #555;
    font-size: 14px;
    line-height: 1.8;
}

.shopbar-address-content address {
    margin: 0;
    font-style: normal;
}

.shopbar-address-extra {
    margin: 12px 0 0;
    color: #555;
}

.shopbar-address-extra strong {
    color: #111;
}


/* =========================================================
   PAYMENT
========================================================= */

.shopbar-payment-info {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shopbar-payment-info > div {
    padding: 24px 28px;
}

.shopbar-payment-info > div + div {
    border-left: 1px solid #eeeeee;
}

.shopbar-payment-info span {
    display: block;
    margin-bottom: 8px;
    color: #777;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.shopbar-payment-info strong {
    display: block;
    color: #111;
    font-size: 15px;
}


/* =========================================================
   BUTTONS
========================================================= */

.shopbar-order-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.shopbar-order-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 52px;
    padding: 0 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.25s ease;
}

.shopbar-order-button-primary {
    background: #075c52;
    color: #ffffff !important;
    border: 1px solid #075c52;
}

.shopbar-order-button-primary:hover {
    background: #064b43;
    color: #ffffff !important;
}

.shopbar-order-button-outline {
    background: #ffffff;
    color: #075c52 !important;
    border: 1px solid #075c52;
}

.shopbar-order-button-outline:hover {
    background: #075c52;
    color: #ffffff !important;
}


/* =========================================================
   ERROR
========================================================= */

.shopbar-order-page .woocommerce-error {
    padding: 18px 22px;
    border-radius: 8px;
    background: #fff1f1;
    color: #b42318;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 768px) {

    .shopbar-order-page {
        margin: 35px auto 60px;
        padding: 0 15px;
    }

    .shopbar-order-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .shopbar-order-status {
        text-align: left;
    }

    .shopbar-order-header h2 {
        font-size: 30px;
    }

    .shopbar-order-address-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .shopbar-payment-info {
        grid-template-columns: 1fr;
    }

    .shopbar-payment-info > div + div {
        border-left: 0;
        border-top: 1px solid #eeeeee;
    }

    .shopbar-order-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .shopbar-order-button {
        width: 100%;
    }

}


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

@media (max-width: 480px) {

    .shopbar-order-page {
        margin-top: 25px;
    }

    .shopbar-order-header h2 {
        font-size: 26px;
    }

    .shopbar-order-card-title {
        padding: 18px 20px;
    }

    .shopbar-order-items {
        padding: 5px 20px;
    }

    .shopbar-order-item {
        align-items: flex-start;
    }

    .shopbar-order-product {
        gap: 12px;
    }

    .shopbar-order-product-image {
        width: 65px;
        height: 65px;
        flex-basis: 65px;
    }

    .shopbar-order-product-info h4 {
        font-size: 14px;
    }

    .shopbar-order-product-info p {
        font-size: 12px;
    }

    .shopbar-order-item-price {
        font-size: 14px;
    }

    .shopbar-summary-row,
    .shopbar-summary-total {
        padding-left: 20px;
        padding-right: 20px;
    }

    .shopbar-address-content {
        padding: 20px;
    }

    .shopbar-payment-info > div {
        padding: 20px;
    }

}










































