/* ============================================
   MY ACCOUNT - COMPREHENSIVE REDESIGN
   Modern, Clean, Professional UI/UX
   ============================================ */



/* ============================================
   GLOBAL WORDPRESS NOTICES - SITE WIDE
   ============================================ */

/* Global Notice Styles - Applied Site Wide */
body .notice,
body .woocommerce-message,
body .woocommerce-info,
body .woocommerce-error {
	padding: 14px 20px 14px 50px !important;
	margin: 0 0 var(--spacing-lg) 0;
	border-radius: var(--radius-md);
	border: none;
	border-left: 4px solid;
	display: flex;
	align-items: flex-start;
	gap: var(--spacing-md);
	font-family: "Inter Tight", sans-serif;
	font-size: 14px;
	line-height: 1.6;
	position: relative;
	box-shadow: var(--shadow-sm);
	animation: slideDown 0.3s ease-out;
	background-color: var(--bg-primary);
	max-width: 100%;
}

/* Success - Global */
body .notice-success,
body .woocommerce-message {
	background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
	border-left-color: var(--success-color);
	color: #155724;
}

body .notice-success::before,
body .woocommerce-message::before {
	content: "";
	width: 24px;
	height: 24px;
	min-width: 24px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2328a745' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	flex-shrink: 0;
	margin-top: 2px;
}

/* Error - Global */
body .notice-error,
body .woocommerce-error {
	background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
	border-left-color: var(--error-color);
	color: #721c24;
}

body .notice-error::before,
body .woocommerce-error::before {
	content: "";
	width: 24px;
	height: 24px;
	min-width: 24px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23dc3545' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='12' y1='8' x2='12' y2='12'%3E%3C/line%3E%3Cline x1='12' y1='16' x2='12.01' y2='16'%3E%3C/line%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	flex-shrink: 0;
	margin-top: 2px;
}

/* Warning - Global */
body .notice-warning {
	background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
	border-left-color: var(--warning-color);
	color: #856404;
}

body .notice-warning::before {
	content: "";
	width: 24px;
	height: 24px;
	min-width: 24px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffc107' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z'%3E%3C/path%3E%3Cline x1='12' y1='9' x2='12' y2='13'%3E%3C/line%3E%3Cline x1='12' y1='17' x2='12.01' y2='17'%3E%3C/line%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	flex-shrink: 0;
	margin-top: 2px;
}

/* Info - Global */
body .notice-info,
body .woocommerce-info {
	background: linear-gradient(135deg, #cce5ff 0%, #b3d9ff 100%);
	border-left-color: var(--info-color);
	color: #004085;
}

body .notice-info::before,
body .woocommerce-info::before {
	content: "";
	width: 24px;
	height: 24px;
	min-width: 24px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2317a2b8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='12' y1='16' x2='12' y2='12'%3E%3C/line%3E%3Cline x1='12' y1='8' x2='12.01' y2='8'%3E%3C/line%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	flex-shrink: 0;
	margin-top: 2px;
}

/* Global Notice Content */
body .notice p,
body .woocommerce-message p,
body .woocommerce-info p,
body .woocommerce-error p {
	margin: 0;
	padding: 0;
	font-size: 14px;
	line-height: 1.6;
	flex: 1;
}

body .notice a,
body .woocommerce-message a,
body .woocommerce-info a,
body .woocommerce-error a {
	color: inherit;
	text-decoration: underline;
	font-weight: 600;
	transition: opacity var(--transition-base);
}

body .notice a:hover,
body .woocommerce-message a:hover,
body .woocommerce-info a:hover,
body .woocommerce-error a:hover {
	opacity: 0.8;
	text-decoration: underline;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
.woocommerce-account,
.woocommerce-account * {
	box-sizing: border-box;
}

.woocommerce-account .woocommerce {
	padding: 50px 0 !important;
	display: flex;
    align-items: center;
    gap: var(--spacing-2xl);
	max-width: 1000px;
	margin: 0 auto;
	flex-wrap: wrap;
}

.woocommerce-notices-wrapper {
    order: 0;
    flex: 0 0 100%;
}

/* ============================================
   MAIN CONTAINER & LAYOUT
   ============================================ */

.woocommerce-account .woocommerce #customer_login h2 {
    font-size: 50px;
    line-height: 50px;
    letter-spacing: -1px;
    font-family: 'TASA Orbiter Medium', sans-serif;
}

.woocommerce-account .woocommerce::before,
.woocommerce-account .woocommerce::after {
	display: none;
}

/* ============================================
   NAVIGATION - SIDEBAR/TABS
   ============================================ */
.woocommerce-MyAccount-navigation {
	width: 100%;
	margin-bottom: var(--spacing-xl);
	background: var(--bg-primary);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	padding: 0;
}

.woocommerce-MyAccount-navigation ul {
	list-style: none;
	margin: 0 !important;
	padding: 0;
	border-bottom: 1px solid var(--border-light);
}

.woocommerce-MyAccount-navigation ul li {
	margin: 0;
	padding: 0 !important;
	flex: 1;
	min-width: 120px;
}

.woocommerce-MyAccount-navigation ul li a {
	display: flex;
	align-items: center;
	gap: var(--spacing-sm);
	padding: var(--spacing-md) var(--spacing-lg);
	color: var(--text-secondary);
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	border-radius: var(--radius-md);
	transition: all var(--transition-base);
	font-family: "Inter Tight", sans-serif;
	position: relative;
	border-bottom: 3px solid transparent;
}

.woocommerce-MyAccount-navigation ul li a::before {
	content: "";
	width: 20px;
	height: 20px;
	display: inline-block;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	opacity: 0.6;
	transition: opacity var(--transition-base);
}

.woocommerce-MyAccount-navigation ul li a:hover {
	color: var(--primary-color);
	background: var(--bg-secondary);
}

.woocommerce-MyAccount-navigation ul li.is-active a {
	color: var(--primary-color);
	border-bottom-color: var(--primary-color);
	font-weight: 600;
	background: var(--bg-secondary);
}

.woocommerce-MyAccount-navigation ul li.is-active a::before {
	opacity: 1;
}

/* Navigation Icons */
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--dashboard a::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23E28C69' stroke-width='2'%3E%3Crect x='3' y='3' width='7' height='7'%3E%3C/rect%3E%3Crect x='14' y='3' width='7' height='7'%3E%3C/rect%3E%3Crect x='14' y='14' width='7' height='7'%3E%3C/rect%3E%3Crect x='3' y='14' width='7' height='7'%3E%3C/rect%3E%3C/svg%3E");
}

.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--orders a::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23E28C69' stroke-width='2'%3E%3Cpath d='M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2'%3E%3C/path%3E%3Crect x='8' y='2' width='8' height='4' rx='1' ry='1'%3E%3C/rect%3E%3C/svg%3E");
}

.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--downloads a::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23E28C69' stroke-width='2'%3E%3Cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4'%3E%3C/path%3E%3Cpolyline points='7 10 12 15 17 10'%3E%3C/polyline%3E%3Cline x1='12' y1='15' x2='12' y2='3'%3E%3C/line%3E%3C/svg%3E");
}

.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-address a::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23E28C69' stroke-width='2'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'%3E%3C/path%3E%3Ccircle cx='12' cy='10' r='3'%3E%3C/circle%3E%3C/svg%3E");
}

.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-account a::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23E28C69' stroke-width='2'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='12' cy='7' r='4'%3E%3C/circle%3E%3C/svg%3E");
}

.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23E28C69' stroke-width='2'%3E%3Cpath d='M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4'%3E%3C/polyline points='16 17 21 12 16 7'%3E%3C/polyline%3E%3Cline x1='21' y1='12' x2='9' y2='12'%3E%3C/line%3E%3C/svg%3E");
}

/* Subscriptions Icon */
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--subscriptions a::before,
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--wcs-subscriptions a::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23E28C69' stroke-width='2'%3E%3Cpath d='M4 7h16'%3E%3C/path%3E%3Cpath d='M4 12h16'%3E%3C/path%3E%3Cpath d='M4 17h16'%3E%3C/path%3E%3Cpath d='M8 3v6'%3E%3C/path%3E%3Cpath d='M16 3v6'%3E%3C/path%3E%3Cpath d='M8 15v6'%3E%3C/path%3E%3Cpath d='M16 15v6'%3E%3C/path%3E%3C/svg%3E");
}

/* Payment Methods Icon */
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--payment-methods a::before,
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--add-payment-method a::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23E28C69' stroke-width='2'%3E%3Crect x='1' y='4' width='22' height='16' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='1' y1='10' x2='23' y2='10'%3E%3C/line%3E%3C/svg%3E");
}

/* ============================================
   CONTENT AREA
   ============================================ */
.woocommerce-MyAccount-content {
	width: 100%;
	background: var(--bg-primary);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	padding: var(--spacing-xl);
	min-height: 400px;
}

.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3 {
	font-family: "TASA Orbiter", sans-serif;
	color: var(--text-primary);
	margin: 0 0 var(--spacing-lg) 0;
	font-weight: 600;
	line-height: 1.3;
}

.woocommerce-MyAccount-content h2 {
	font-size: 28px;
	margin-bottom: var(--spacing-xl);
	padding-bottom: var(--spacing-lg);
	border-bottom: 2px solid var(--border-light);
	display: flex;
	align-items: center;
	gap: var(--spacing-md);
}

.woocommerce-MyAccount-content h3 {
	font-size: 22px;
	margin-bottom: var(--spacing-lg);
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.woocommerce-account .breadcrumbs {
	margin-bottom: var(--spacing-lg);
	padding: var(--spacing-md) 0;
	font-size: 14px;
	color: var(--text-secondary);
	font-family: "Inter Tight", sans-serif;
}

.woocommerce-account .breadcrumbs a {
	color: var(--primary-color);
	text-decoration: none;
	transition: color var(--transition-base);
}

.woocommerce-account .breadcrumbs a:hover {
	color: var(--text-primary);
	text-decoration: underline;
}

.woocommerce-account .breadcrumbs span {
	margin: 0 var(--spacing-xs);
	color: var(--text-muted);
}

/* ============================================
   FORMS - UNIFIED STYLING
   ============================================ */
.woocommerce-MyAccount-content form,
.woocommerce form.woocommerce-form,
.woocommerce form.woocommerce-EditAccountForm,
.woocommerce form.woocommerce-address-fields,
.woocommerce form.edit-address {
	background: var(--bg-primary);
	border: 2px solid var(--border-color);
	border-radius: var(--radius-lg);
	padding: 20px;
	margin: var(--spacing-xl) 0;
	box-shadow: var(--shadow-sm);
	width: 100%;
	max-width: 100%;
}

.woocommerce-MyAccount-content form h3,
.woocommerce form.woocommerce-form h3,
.woocommerce form.woocommerce-EditAccountForm h3,
.woocommerce form.woocommerce-address-fields h3,
.woocommerce form.edit-address h3 {
	margin-top: 0;
	margin-bottom: var(--spacing-xl);
	padding-bottom: var(--spacing-lg);
	border-bottom: 2px solid var(--border-light);
	font-size: 24px;
	display: flex;
	align-items: center;
	gap: var(--spacing-md);
}

/* Form Rows */
.woocommerce-MyAccount-content form .woocommerce-form-row,
.woocommerce form .woocommerce-form-row,
.woocommerce form .form-row {
	margin-bottom: var(--spacing-lg);
	width: 100%;
	clear: both;
	position: relative;
	display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: start;
}

.woocommerce-MyAccount-content form .woocommerce-form-row label,
.woocommerce form .woocommerce-form-row label,
.woocommerce form .form-row label {
	font-weight: 600;
	margin-bottom: 0;
	display: block;
	font-size: 14px;
	color: var(--text-primary);
	letter-spacing: 0.02em;
	font-family: "Inter Tight", sans-serif;
	width: auto;
	float: none;
}

.woocommerce-MyAccount-content form .woocommerce-form-row label abbr,
.woocommerce form .woocommerce-form-row label abbr,
.woocommerce form .form-row label abbr {
	color: var(--error-color);
	text-decoration: none;
	font-weight: 700;
	margin-left: 3px;
}

/* Form Inputs */
.woocommerce-MyAccount-content form input[type="text"],
.woocommerce-MyAccount-content form input[type="email"],
.woocommerce-MyAccount-content form input[type="password"],
.woocommerce-MyAccount-content form input[type="tel"],
.woocommerce-MyAccount-content form input[type="url"],
.woocommerce-MyAccount-content form input[type="number"],
.woocommerce-MyAccount-content form select,
.woocommerce-MyAccount-content form textarea,
.woocommerce form input[type="text"],
.woocommerce form input[type="email"],
.woocommerce form input[type="password"],
.woocommerce form input[type="tel"],
.woocommerce form input[type="url"],
.woocommerce form input[type="number"],
.woocommerce form select,
.woocommerce form textarea,
.woocommerce form input.input-text {
	width: 100%;
	padding: 14px 18px;
	border: 1.5px solid var(--border-color);
	border-radius: var(--radius-md);
	font-size: 15px;
	font-family: "Inter Tight", sans-serif;
	color: var(--text-primary);
	background-color: var(--bg-primary);
	transition: all var(--transition-base);
	box-sizing: border-box;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	line-height: 1.5;
	margin: 0;
	float: none;
}

.woocommerce-MyAccount-content form input::placeholder,
.woocommerce form input::placeholder,
.woocommerce form textarea::placeholder {
	color: var(--text-muted);
	opacity: 1;
}

.woocommerce-MyAccount-content form input:focus,
.woocommerce-MyAccount-content form select:focus,
.woocommerce-MyAccount-content form textarea:focus,
.woocommerce form input:focus,
.woocommerce form select:focus,
.woocommerce form textarea:focus {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(226, 140, 105, 0.1);
	outline: none;
	background-color: var(--bg-primary);
}

/* Select Dropdowns */
.woocommerce-MyAccount-content form select,
.woocommerce form select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23333' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 18px center;
	background-size: 12px;
	padding-right: 45px;
	cursor: pointer;
}

.woocommerce-MyAccount-content form select:focus,
.woocommerce form select:focus {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23E28C69' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
}

/* Form Row Layouts */
.woocommerce-MyAccount-content form .form-row-wide,
.woocommerce form .form-row-wide {
	width: 100%;
	clear: both;
	margin-right: 0;
	display: block;
}

.woocommerce-MyAccount-content form .form-row-first,
.woocommerce-MyAccount-content form .form-row-last,
.woocommerce form .form-row-first,
.woocommerce form .form-row-last {
	width: 48%;
	display: inline-block;
	vertical-align: top;
	box-sizing: border-box;
}

.woocommerce-MyAccount-content form .form-row-first,
.woocommerce form .form-row-first {
	margin-right: 4%;
	float: none;
}

/* Textarea */
.woocommerce-MyAccount-content form textarea,
.woocommerce form textarea {
	min-height: 120px;
	resize: vertical;
}

/* ============================================
   BUTTONS - PRIMARY & SECONDARY
   ============================================ */

   .woocommerce-MyAccount-content .button, a.button.wc-forward.wp-element-button{
	padding: 8px 16px !important;
   }

   a.button.wc-forward.wp-element-button{

   }

.woocommerce-MyAccount-content .button,
.woocommerce-MyAccount-content button[type="submit"],
.woocommerce form .button,
.woocommerce form button[type="submit"],
.woocommerce form input[type="submit"],
a.button.wc-forward.wp-element-button {
	display: inline-block;
	padding: 14px 32px;
	font-size: 14px;
	font-weight: 600;
	font-family: "Inter Tight", sans-serif;
	border-radius: var(--radius-full);
	transition: all var(--transition-base);
	cursor: pointer;
	text-decoration: none;
	text-align: center;
	line-height: 1.5;
	border: none;
	min-width: 140px;
	background: var(--primary-gradient);
	color: var(--text-primary);
	box-shadow: var(--shadow-sm);
}

.woocommerce-MyAccount-content .button:hover,
.woocommerce-MyAccount-content button[type="submit"]:hover,
.woocommerce form .button:hover,
.woocommerce form button[type="submit"]:hover,
.woocommerce form input[type="submit"]:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
	color: var(--text-primary);
	text-decoration: none;
}

.woocommerce-MyAccount-content .button:active,
.woocommerce-MyAccount-content button[type="submit"]:active,
.woocommerce form .button:active,
.woocommerce form button[type="submit"]:active {
	transform: translateY(0);
}

/* Secondary Button */
.woocommerce-MyAccount-content .button.secondary,
.woocommerce-MyAccount-content .button.cancel,
.woocommerce form .button.secondary,
.woocommerce form .button.cancel {
	background: var(--bg-primary);
	color: var(--text-secondary);
	border: 2px solid var(--border-color);
}

.woocommerce-MyAccount-content .button.secondary:hover,
.woocommerce-MyAccount-content .button.cancel:hover,
.woocommerce form .button.secondary:hover,
.woocommerce form .button.cancel:hover {
	background: var(--bg-secondary);
	border-color: var(--primary-color);
	color: var(--text-primary);
}

/* Button Group */
.woocommerce-MyAccount-content form .form-row:last-child,
.woocommerce form .form-row:last-child {
	padding-top: var(--spacing-lg);
	border-top: 2px solid var(--border-light);
	margin-top: var(--spacing-xl);
}

/* ============================================
   TABLES - ORDERS & SUBSCRIPTIONS
   ============================================ */
.woocommerce-MyAccount-content .woocommerce-orders-table,
.woocommerce-MyAccount-content table {
	width: 100%;
	border-collapse: collapse;
	margin: var(--spacing-lg) 0;
	background: var(--bg-primary);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}

.woocommerce-MyAccount-content .woocommerce-orders-table thead,
.woocommerce-MyAccount-content table thead {
	background: var(--bg-secondary);
}

.woocommerce-MyAccount-content .woocommerce-orders-table th,
.woocommerce-MyAccount-content table th {
	padding: var(--spacing-lg);
	text-align: left;
	font-weight: 600;
	font-size: 14px;
	color: var(--text-primary);
	font-family: "Inter Tight", sans-serif;
}

.woocommerce-MyAccount-content .woocommerce-orders-table td,
.woocommerce-MyAccount-content table td {
	padding: var(--spacing-lg);
	font-size: 14px;
	color: var(--text-secondary);
	font-family: "Inter Tight", sans-serif;
}

tr.order.woocommerce-orders-table__row.woocommerce-orders-table__row--status-active{
	border-bottom: 1px solid var(--border-light); 
}

.woocommerce-MyAccount-content .woocommerce-orders-table tbody tr:hover,
.woocommerce-MyAccount-content table tbody tr:hover {
	background-color: var(--bg-secondary);
}

.woocommerce-MyAccount-content .woocommerce-orders-table tbody tr:last-child td,
.woocommerce-MyAccount-content table tbody tr:last-child td {
	border-bottom: none;
	text-align: left !important;
	
}

table.shop_table.subscription_details tr:last-child td {
	display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.woocommerce-page table.shop_table{
	width: 100% !important;
}

/* Order Status Badges */
.woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-status .woocommerce-badge,
.woocommerce-MyAccount-content .order-status {
	display: inline-block;
	padding: 6px 14px;
	border-radius: var(--radius-full);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-family: "Inter Tight", sans-serif;
}

.woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-status .woocommerce-badge--completed,
.woocommerce-MyAccount-content .order-status.completed {
	background-color: #d4edda;
	color: #155724;
}

.woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-status .woocommerce-badge--processing,
.woocommerce-MyAccount-content .order-status.processing {
	background-color: #cce5ff;
	color: #004085;
}

.woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-status .woocommerce-badge--on-hold,
.woocommerce-MyAccount-content .order-status.on-hold {
	background-color: #fff3cd;
	color: #856404;
}

.woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-status .woocommerce-badge--pending,
.woocommerce-MyAccount-content .order-status.pending {
	background-color: #f8d7da;
	color: #721c24;
}

/* ============================================
   ORDER DETAILS PAGE - PROFESSIONAL DESIGN
   ============================================ */

/* Order Details Container */
.woocommerce-MyAccount-content .woocommerce-order-details,
.woocommerce-MyAccount-content .order_details,
.woocommerce-MyAccount-content .woocommerce-order-details__order-table,
.woocommerce-MyAccount-content .woocommerce-table--order-details {
	margin: var(--spacing-xl) 0;
	background: var(--bg-primary);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
	width: 100%;
}

/* Order Details Header */
.woocommerce-MyAccount-content .woocommerce-order-details__title,
.woocommerce-MyAccount-content .order_details h2 {
	font-size: 24px;
	font-family: "TASA Orbiter", sans-serif;
	color: var(--text-primary);
	font-weight: 600;
	margin: 0 0 var(--spacing-lg) 0;
	padding: var(--spacing-xl) var(--spacing-xl) var(--spacing-lg);
	background: var(--bg-secondary);
	border-bottom: 2px solid var(--border-light);
	display: flex;
	align-items: center;
	gap: var(--spacing-md);
}

.woocommerce-MyAccount-content .woocommerce-order-details__title::before,
.woocommerce-MyAccount-content .order_details h2::before {
	content: "";
	width: 28px;
	height: 28px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%23E28C69' stroke-width='2'%3E%3Cpath d='M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2'%3E%3C/path%3E%3Crect x='8' y='2' width='8' height='4' rx='1' ry='1'%3E%3C/rect%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	flex-shrink: 0;
}

/* Order Details Table */
.woocommerce-MyAccount-content .woocommerce-order-details table,
.woocommerce-MyAccount-content .order_details table,
.woocommerce-MyAccount-content .woocommerce-table--order-details {
	width: 100%;
	border-collapse: collapse;
	margin: 0;
	display: table;
}

.woocommerce-MyAccount-content .woocommerce-order-details table thead,
.woocommerce-MyAccount-content .order_details table thead {
	background: var(--bg-secondary);
}

.woocommerce-MyAccount-content .woocommerce-order-details table th,
.woocommerce-MyAccount-content .order_details table th {
	padding: 15px;
	text-align: left;
	font-weight: 600;
	font-size: 14px;
	color: var(--text-primary);
	font-family: "Inter Tight", sans-serif;
}

.woocommerce-MyAccount-content .woocommerce-order-details table td,
.woocommerce-MyAccount-content .order_details table td {
	padding: 20px;
	border-bottom: 1px solid var(--border-light);
	font-size: 14px;
	color: var(--text-secondary);
	font-family: "Inter Tight", sans-serif;
	vertical-align: top;
}

.woocommerce-MyAccount-content .woocommerce-order-details table tbody tr:last-child td,
.woocommerce-MyAccount-content .order_details table tbody tr:last-child td {
	border-bottom: none;
}

.woocommerce-MyAccount-content .woocommerce-order-details table tbody tr:hover,
.woocommerce-MyAccount-content .order_details table tbody tr:hover,
.woocommerce-MyAccount-content .woocommerce-table--order-details tbody tr:hover {
	background-color: var(--bg-secondary);
	transition: background-color var(--transition-base);
}

/* Order Details Table - Product Column */
.woocommerce-MyAccount-content .woocommerce-order-details table td.product,
.woocommerce-MyAccount-content .order_details table td.product,
.woocommerce-MyAccount-content .woocommerce-table--order-details td.product {
	display: flex;
	align-items: center;
	gap: var(--spacing-md);
	padding: var(--spacing-lg) var(--spacing-xl);
}

/* Order Details Table - Quantity Column */
.woocommerce-MyAccount-content .woocommerce-order-details table td.quantity,
.woocommerce-MyAccount-content .order_details table td.quantity,
.woocommerce-MyAccount-content .woocommerce-table--order-details td.quantity {
	text-align: center;
	font-weight: 600;
	color: var(--text-primary);
}

/* Order Details Table - Price Column */
.woocommerce-MyAccount-content .woocommerce-order-details table td.product-total,
.woocommerce-MyAccount-content .order_details table td.product-total,
.woocommerce-MyAccount-content .woocommerce-table--order-details td.product-total {
	text-align: right;
	font-weight: 600;
	color: var(--text-primary);
	font-size: 15px;
}

/* Product Image in Order Details */
.woocommerce-MyAccount-content .woocommerce-order-details .product-thumbnail,
.woocommerce-MyAccount-content .order_details .product-thumbnail,
.woocommerce-MyAccount-content .woocommerce-table--order-details .product-thumbnail {
	width: 60px;
	height: 60px;
	border-radius: var(--radius-md);
	overflow: hidden;
	margin-right: var(--spacing-md);
	flex-shrink: 0;
	display: inline-block;
	vertical-align: middle;
}

.woocommerce-MyAccount-content .woocommerce-order-details .product-thumbnail img,
.woocommerce-MyAccount-content .order_details .product-thumbnail img,
.woocommerce-MyAccount-content .woocommerce-table--order-details .product-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Product Info Wrapper */
.woocommerce-MyAccount-content .woocommerce-order-details .product-name-wrapper,
.woocommerce-MyAccount-content .order_details .product-name-wrapper {
	display: flex;
	align-items: center;
	gap: var(--spacing-md);
}

/* Product Name in Order Details */
.woocommerce-MyAccount-content .woocommerce-order-details .product-name,
.woocommerce-MyAccount-content .order_details .product-name,
.woocommerce-MyAccount-content .woocommerce-table--order-details .product-name {
	font-weight: 600;
	color: var(--text-primary);
	font-size: 15px;
	font-family: "Inter Tight", sans-serif;
	line-height: 1.4;
}

.woocommerce-MyAccount-content .woocommerce-order-details .product-name a,
.woocommerce-MyAccount-content .order_details .product-name a,
.woocommerce-MyAccount-content .woocommerce-table--order-details .product-name a {
	color: var(--text-primary);
	text-decoration: none;
	transition: color var(--transition-base);
	display: inline-block;
}

.woocommerce-MyAccount-content .woocommerce-order-details .product-name a:hover,
.woocommerce-MyAccount-content .order_details .product-name a:hover,
.woocommerce-MyAccount-content .woocommerce-table--order-details .product-name a:hover {
	color: var(--primary-color);
	text-decoration: underline;
}

/* Product Meta in Order Details */
.woocommerce-MyAccount-content .woocommerce-order-details .product-meta,
.woocommerce-MyAccount-content .order_details .product-meta,
.woocommerce-MyAccount-content .woocommerce-table--order-details .product-meta {
	font-size: 13px;
	color: var(--text-muted);
	margin-top: var(--spacing-xs);
	font-family: "Inter Tight", sans-serif;
	line-height: 1.5;
}

.woocommerce-MyAccount-content .woocommerce-order-details .product-meta dl,
.woocommerce-MyAccount-content .order_details .product-meta dl,
.woocommerce-MyAccount-content .woocommerce-table--order-details .product-meta dl {
	margin: var(--spacing-xs) 0 0 0;
	padding: 0;
}

.woocommerce-MyAccount-content .woocommerce-order-details .product-meta dt,
.woocommerce-MyAccount-content .order_details .product-meta dt,
.woocommerce-MyAccount-content .woocommerce-table--order-details .product-meta dt {
	font-weight: 500;
	color: var(--text-secondary);
	display: inline;
	margin-right: var(--spacing-xs);
}

.woocommerce-MyAccount-content .woocommerce-order-details .product-meta dd,
.woocommerce-MyAccount-content .order_details .product-meta dd,
.woocommerce-MyAccount-content .woocommerce-table--order-details .product-meta dd {
	display: inline;
	margin: 0 var(--spacing-sm) 0 0;
}

/* Order Totals Section */
.woocommerce-MyAccount-content .woocommerce-order-details__order-totals,
.woocommerce-MyAccount-content .order_details .order-totals {
	margin-top: var(--spacing-xl);
	padding: var(--spacing-xl);
	background: var(--bg-secondary);
	border-top: 2px solid var(--border-light);
}

a.cancel-edit {
    display: block !important; 
    padding: 5px 20px;
    font-size: 14px;
    font-weight: 600;
    font-family: "Inter Tight", sans-serif;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    line-height: 1.5;
    min-width: 140px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--text-primary);
}


.woocommerce-MyAccount-content .woocommerce-order-details__order-totals table,
.woocommerce-MyAccount-content .order_details .order-totals table {
	width: 100%;
	max-width: 400px;
	margin-left: auto;
}

.woocommerce-MyAccount-content .woocommerce-order-details__order-totals table th,
.woocommerce-MyAccount-content .order_details .order-totals table th {
	text-align: right;
	padding: var(--spacing-md) var(--spacing-lg);
	font-weight: 500;
	color: var(--text-secondary);
	border-bottom: 1px solid var(--border-light);
}

.woocommerce-MyAccount-content .woocommerce-order-details__order-totals table td,
.woocommerce-MyAccount-content .order_details .order-totals table td {
	text-align: right;
	padding: var(--spacing-md) var(--spacing-lg);
	font-weight: 600;
	color: var(--text-primary);
	border-bottom: 1px solid var(--border-light);
}

.woocommerce-MyAccount-content .woocommerce-order-details__order-totals table .order-total th,
.woocommerce-MyAccount-content .woocommerce-order-details__order-totals table .order-total td,
.woocommerce-MyAccount-content .order_details .order-totals table .order-total th,
.woocommerce-MyAccount-content .order_details .order-totals table .order-total td {
	font-size: 18px;
	font-weight: 700;
	color: var(--text-primary);
	border-top: 2px solid var(--border-color);
	border-bottom: none;
	padding-top: var(--spacing-lg);
}

/* Order Details Sections */
.woocommerce-MyAccount-content .woocommerce-customer-details,
.woocommerce-MyAccount-content .customer_details {
	margin-top: var(--spacing-xl);
	background: var(--bg-primary);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
}

.woocommerce-MyAccount-content .woocommerce-customer-details h2,
.woocommerce-MyAccount-content .woocommerce-customer-details h3,
.woocommerce-MyAccount-content .customer_details h2,
.woocommerce-MyAccount-content .customer_details h3 {
	font-size: 20px;
	font-family: "TASA Orbiter", sans-serif;
	color: var(--text-primary);
	font-weight: 600;
	margin: 0;
	padding: var(--spacing-xl) var(--spacing-xl) var(--spacing-lg);
	background: var(--bg-secondary);
	border-bottom: 2px solid var(--border-light);
}

.woocommerce-MyAccount-content .woocommerce-customer-details address,
.woocommerce-MyAccount-content .customer_details address {
	font-style: normal;
	padding: var(--spacing-xl);
	margin: 0;
	line-height: 1.8;
	color: var(--text-secondary);
	font-family: "Inter Tight", sans-serif;
}

.woocommerce-MyAccount-content .woocommerce-customer-details address strong,
.woocommerce-MyAccount-content .customer_details address strong {
	color: var(--text-primary);
	font-weight: 600;
	display: block;
	margin-bottom: var(--spacing-sm);
}

/* Order Actions */
.woocommerce-MyAccount-content .woocommerce-order-actions,
.woocommerce-MyAccount-content .order-actions {
	padding-top: var(--spacing-xl);
	display: flex;
	gap: var(--spacing-md);
	flex-wrap: wrap;
}

td.subscription-status.order-status.woocommerce-orders-table__cell.woocommerce-orders-table__cell-subscription-status.woocommerce-orders-table__cell-order-status {
    padding: 5px 15px;
    border: 1px solid #ccc;
	vertical-align: middle;
	margin: 10px 0;
}

.woocommerce-MyAccount-content .woocommerce-order-actions .button,
.woocommerce-MyAccount-content .order-actions .button {
	margin: 0;
}

/* Order Notes */
.woocommerce-MyAccount-content .woocommerce-order-notes,
.woocommerce-MyAccount-content .order-notes {
	margin-top: var(--spacing-xl);
	background: var(--bg-primary);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	padding: var(--spacing-xl);
}

.woocommerce-MyAccount-content .woocommerce-order-notes h2,
.woocommerce-MyAccount-content .order-notes h2 {
	font-size: 20px;
	font-family: "TASA Orbiter", sans-serif;
	color: var(--text-primary);
	font-weight: 600;
	margin: 0 0 var(--spacing-lg) 0;
	padding-bottom: var(--spacing-lg);
	border-bottom: 2px solid var(--border-light);
}

.woocommerce-MyAccount-content .woocommerce-order-notes .note,
.woocommerce-MyAccount-content .order-notes .note {
	padding: var(--spacing-lg);
	margin-bottom: var(--spacing-md);
	background: var(--bg-secondary);
	border-radius: var(--radius-md);
	border-left: 3px solid var(--primary-color);
}

.woocommerce-MyAccount-content .woocommerce-order-notes .note:last-child,
.woocommerce-MyAccount-content .order-notes .note:last-child {
	margin-bottom: 0;
}

.woocommerce-MyAccount-content .woocommerce-order-notes .note p,
.woocommerce-MyAccount-content .order-notes .note p {
	margin: 0;
	color: var(--text-secondary);
	font-size: 14px;
	line-height: 1.6;
}

.woocommerce-MyAccount-content .woocommerce-order-notes .note .note-date,
.woocommerce-MyAccount-content .order-notes .note .note-date {
	font-size: 12px;
	color: var(--text-muted);
	margin-top: var(--spacing-xs);
}

/* ============================================
   ADDRESSES
   ============================================ */
.woocommerce-MyAccount-content .woocommerce-Addresses {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-lg);
	margin-top: var(--spacing-xl);
}

.woocommerce-MyAccount-content .woocommerce-Addresses address {
	margin: 0 !important;
	padding: 20px;
}

.woocommerce-MyAccount-content .woocommerce-Address {
	margin-bottom: 0;
	padding: 0;
	background: var(--bg-primary);
	border: 2px solid var(--border-color);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: all var(--transition-base);
	position: relative;
	display: flex;
	flex-direction: row;
	width: 100% !important;
	box-shadow: var(--shadow-sm);
}

.woocommerce-MyAccount-content .woocommerce-Address:hover {
	border-color: var(--primary-color);
	box-shadow: var(--shadow-md);
}

.woocommerce-MyAccount-content .woocommerce-Address .woocommerce-Address-title {
	background: var(--bg-secondary);
	padding: 20px;
	border-right: 2px solid var(--border-color);
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	position: relative;
	min-width: 300px;
	flex-shrink: 0;
}

.woocommerce-MyAccount-content .woocommerce-Address .woocommerce-Address-title h3 {
	margin: 0;
	font-size: 18px;
	font-weight: 600;
	color: var(--text-primary);
	display: flex;
	align-items: center;
	gap: var(--spacing-sm);
	font-family: "TASA Orbiter", sans-serif;
	width: 100%;
}

.woocommerce-MyAccount-content .woocommerce-Address .woocommerce-Address-wrapper {
	padding: var(--spacing-xl);
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	width: 100%;
}

.woocommerce-MyAccount-content .woocommerce-Address address {
	font-style: normal;
	line-height: 1.8;
	color: var(--text-secondary);
	margin: 0 0 var(--spacing-lg) 0;
	font-size: 15px;
	flex-grow: 1;
	display: block;
	font-family: "Inter Tight", sans-serif;
}

.woocommerce-MyAccount-content .woocommerce-Address address strong {
	color: var(--text-primary);
	font-weight: 600;
	display: block;
	margin-bottom: var(--spacing-sm);
	font-size: 16px;
	font-family: "TASA Orbiter", sans-serif;
}

.woocommerce-MyAccount-content .woocommerce-Address .woocommerce-Address-actions {
	display: flex;
	gap: var(--spacing-md);
	margin-top: auto;
	padding-top: var(--spacing-lg);
	border-top: 1px solid var(--border-light);
	justify-content: flex-end;
}

.woocommerce-MyAccount-content .woocommerce-Address .edit,
.woocommerce-MyAccount-content .woocommerce-Address .woocommerce-Address-edit-link {
	margin: 0;
	padding: 12px 24px;
	background: var(--primary-gradient);
	color: var(--text-primary);
	border-radius: var(--radius-full);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--spacing-sm);
	transition: all var(--transition-base);
	border: none;
	cursor: pointer;
	letter-spacing: 0.02em;
	white-space: nowrap;
}

.woocommerce-MyAccount-content .woocommerce-Address .edit:hover,
.woocommerce-MyAccount-content .woocommerce-Address .woocommerce-Address-edit-link:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
	text-decoration: none;
	color: var(--text-primary);
}

/* ============================================
   WORDPRESS NOTICES - THEME STYLED
   ============================================ */

/* Base Notice Styles - All WordPress Notices */
.notice,
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-MyAccount-content .woocommerce-message,
.woocommerce-MyAccount-content .woocommerce-info,
.woocommerce-MyAccount-content .woocommerce-error,
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error,
.wp-core-ui .notice,
.is-dismissible {
	padding: var(--spacing-lg) var(--spacing-xl);
	margin: 0 0 var(--spacing-lg) 0;
	border-radius: var(--radius-md);
	border: none;
	border-left: 4px solid;
	display: flex;
	align-items: flex-start;
	gap: var(--spacing-md);
	font-family: "Inter Tight", sans-serif;
	font-size: 14px;
	line-height: 1.6;
	position: relative;
	box-shadow: var(--shadow-sm);
	animation: slideDown 0.3s ease-out;
	background-color: var(--bg-primary);
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Success Notices */
.notice-success,
.woocommerce-message,
.woocommerce-MyAccount-content .woocommerce-message,
.woocommerce .woocommerce-message {
	background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
	border-left-color: var(--success-color);
	color: #155724;
}

.notice-success::before,
.woocommerce-message::before,
.woocommerce-MyAccount-content .woocommerce-message::before,
.woocommerce .woocommerce-message::before {
	content: "";
	width: 24px;
	height: 24px;
	min-width: 24px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2328a745' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	flex-shrink: 0;
	margin-top: 2px;
}

/* Error Notices */
.notice-error,
.woocommerce-error,
.woocommerce-MyAccount-content .woocommerce-error,
.woocommerce .woocommerce-error {
	background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
	border-left-color: var(--error-color);
	color: #721c24;
}

.notice-error::before,
.woocommerce-error::before,
.woocommerce-MyAccount-content .woocommerce-error::before,
.woocommerce .woocommerce-error::before {
	content: "";
	width: 24px;
	height: 24px;
	min-width: 24px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23dc3545' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='12' y1='8' x2='12' y2='12'%3E%3C/line%3E%3Cline x1='12' y1='16' x2='12.01' y2='16'%3E%3C/line%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	flex-shrink: 0;
	margin-top: 0;
}

/* Warning Notices */
.notice-warning,
.woocommerce-info.woocommerce-info--warning {
	background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
	border-left-color: var(--warning-color);
	color: #856404;
}

.notice-warning::before {
	content: "";
	width: 24px;
	height: 24px;
	min-width: 24px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffc107' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z'%3E%3C/path%3E%3Cline x1='12' y1='9' x2='12' y2='13'%3E%3C/line%3E%3Cline x1='12' y1='17' x2='12.01' y2='17'%3E%3C/line%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	flex-shrink: 0;
	margin-top: 2px;
}

/* Info Notices */
.notice-info, .woocommerce-info, .woocommerce-MyAccount-content .woocommerce-info, .woocommerce .woocommerce-info {
    background: #F6F2EF !important;
    border-left-color: #E28C69 !important;
    color: #E28C69;
    border: 1px solid;
	align-items: center;
}

.woocommerce-error::before, .woocommerce-info::before, .woocommerce-message::before {
    top: 50%;
    transform: translate(-10%, -60%);
}

p.no_subscriptions.woocommerce-message.woocommerce-message--info.woocommerce-Message.woocommerce-Message--info.woocommerce-info a{
	margin-left: auto;
}

.notice-info::before,
.woocommerce-info::before,
.woocommerce-MyAccount-content .woocommerce-info::before,
.woocommerce .woocommerce-info::before {
	content: "";
	width: 24px;
	height: 24px;
	min-width: 24px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2317a2b8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='12' y1='16' x2='12' y2='12'%3E%3C/line%3E%3Cline x1='12' y1='8' x2='12.01' y2='8'%3E%3C/line%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	flex-shrink: 0;
	margin-top: 2px;
}

/* Notice Content */
.notice p,
.woocommerce-message p,
.woocommerce-info p,
.woocommerce-error p {
	margin: 0;
	padding: 0;
	font-size: 14px;
	line-height: 1.6;
	flex: 1;
}

.notice p:first-child,
.woocommerce-message p:first-child,
.woocommerce-info p:first-child,
.woocommerce-error p:first-child {
	margin-top: 0;
}

.notice p:last-child,
.woocommerce-message p:last-child,
.woocommerce-info p:last-child,
.woocommerce-error p:last-child {
	margin-bottom: 0;
}

/* Notice Links */
.notice a,
.woocommerce-message a,
.woocommerce-info a,
.woocommerce-error a {
	color: inherit;
	text-decoration: underline;
	font-weight: 600;
	transition: opacity var(--transition-base);
}

.notice a:hover,
.woocommerce-message a:hover,
.woocommerce-info a:hover,
.woocommerce-error a:hover {
	opacity: 0.8;
	text-decoration: underline;
}

/* Dismissible Notices */
.notice.is-dismissible,
.is-dismissible {
	padding-right: var(--spacing-2xl);
}

.notice-dismiss {
	position: absolute;
	top: var(--spacing-md);
	right: var(--spacing-md);
	border: none;
	margin: 0;
	padding: 0;
	background: transparent;
	cursor: pointer;
	color: inherit;
	opacity: 0.6;
	transition: opacity var(--transition-base);
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--radius-sm);
}

.notice-dismiss:hover {
	opacity: 1;
	background: rgba(0, 0, 0, 0.05);
}

.notice-dismiss::before {
	content: "×";
	font-size: 24px;
	line-height: 1;
	font-weight: 300;
	color: inherit;
}

/* Notice Lists */
.notice ul,
.woocommerce-message ul,
.woocommerce-info ul,
.woocommerce-error ul {
	margin: var(--spacing-sm) 0 0 0;
	padding-left: var(--spacing-xl);
	list-style: disc;
}

.notice ul li,
.woocommerce-message ul li,
.woocommerce-info ul li,
.woocommerce-error ul li {
	margin-bottom: var(--spacing-xs);
}

/* Notice Buttons */
.notice .button,
.woocommerce-message .button,
.woocommerce-info .button,
.woocommerce-error .button {
	margin-left: var(--spacing-md);
	margin-top: 0;
	margin-bottom: 0;
	vertical-align: middle;
}

/* Stacked Notices */
.notice + .notice,
.woocommerce-message + .woocommerce-message,
.woocommerce-info + .woocommerce-info,
.woocommerce-error + .woocommerce-error {
	margin-top: var(--spacing-md);
}


/* Inline Form Notices */
.woocommerce-MyAccount-content form .woocommerce-form-row .woocommerce-error,
.woocommerce form .woocommerce-form-row .woocommerce-error,
.woocommerce form .form-row .woocommerce-error {
	display: block;
	margin-top: var(--spacing-xs);
	font-size: 13px;
	color: var(--error-color);
	font-weight: 500;
	background: transparent;
	border: none;
	padding: var(--spacing-xs) 0;
	box-shadow: none;
	animation: none;
	border-left: none;
}

.woocommerce-MyAccount-content form .woocommerce-form-row .woocommerce-error::before,
.woocommerce form .woocommerce-form-row .woocommerce-error::before {
	display: none;
}

/* Success Messages in Forms */
.woocommerce-MyAccount-content form .woocommerce-form-row .woocommerce-message,
.woocommerce form .woocommerce-form-row .woocommerce-message {
	display: block;
	margin-top: var(--spacing-xs);
	font-size: 13px;
	color: var(--success-color);
	font-weight: 500;
	background: transparent;
	border: none;
	padding: var(--spacing-xs) 0;
	box-shadow: none;
	animation: none;
	border-left: none;
}

.woocommerce-MyAccount-content form .woocommerce-form-row .woocommerce-message::before,
.woocommerce form .woocommerce-form-row .woocommerce-message::before {
	display: none;
}

/* ============================================
   LOGIN & REGISTRATION FORMS
   ============================================ */
.woocommerce form.login,
.woocommerce form.register, form.woocommerce-ResetPassword.lost_reset_password {
	margin: var(--spacing-2xl) auto;
	background: var(--bg-primary);
	border: 2px solid var(--border-color);
	border-radius: var(--radius-lg);
	padding: var(--spacing-2xl);
	box-shadow: var(--shadow-md);
}

a.woocommerce-privacy-policy-link {
    text-decoration: underline !important;
    font-weight: 600;
}

.woocommerce form.login h2,
.woocommerce form.register h2 {
	margin-top: 0;
	margin-bottom: var(--spacing-xl);
	text-align: center;
}

.woocommerce form.login .form-row-last,
.woocommerce form.register .form-row-last {
	width: 100%;
	margin-right: 0;
}

.woocommerce form.login .lost_password {
	margin-top: var(--spacing-md);
	text-align: left;
}

.woocommerce form.login .lost_password a {
	color: var(--primary-color);
	text-decoration: none;
	font-size: 14px;
}

.woocommerce form.login .lost_password a:hover {
	text-decoration: underline;
}

/* ============================================
   LOADING STATES
   ============================================ */
.woocommerce-MyAccount-content .loading,
.woocommerce form.loading {
	opacity: 0.6;
	pointer-events: none;
	position: relative;
}

.woocommerce-MyAccount-content .loading::after,
.woocommerce form.loading::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 40px;
	height: 40px;
	margin: -20px 0 0 -20px;
	border: 3px solid var(--bg-secondary);
	border-top-color: var(--primary-color);
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

/* ============================================
   VALIDATION STATES
   ============================================ */
.woocommerce-MyAccount-content form .woocommerce-form-row.woocommerce-invalid input,
.woocommerce form .woocommerce-form-row.woocommerce-invalid input,
.woocommerce form .form-row.woocommerce-invalid input {
	border-color: var(--error-color);
	background-color: #fff5f5;
}

.woocommerce-MyAccount-content form .woocommerce-form-row.woocommerce-invalid label,
.woocommerce form .woocommerce-form-row.woocommerce-invalid label,
.woocommerce form .form-row.woocommerce-invalid label {
	color: var(--error-color);
}

.woocommerce-MyAccount-content form .woocommerce-form-row.woocommerce-validated input:valid,
.woocommerce form .woocommerce-form-row.woocommerce-validated input:valid,
.woocommerce form .form-row.woocommerce-validated input:valid {
	border-color: var(--success-color);
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */
@media (max-width: 992px) {
	.woocommerce-account .woocommerce {
		padding: var(--spacing-lg) var(--spacing-md);
	}

	.woocommerce-MyAccount-navigation ul {
		flex-direction: column;
		gap: 0;
		border-bottom: none;
	}

	.woocommerce-MyAccount-navigation ul li {
		width: 100%;
		border-bottom: 1px solid var(--border-light);
	}

	.woocommerce-MyAccount-navigation ul li:last-child {
		border-bottom: none;
	}

	.woocommerce-MyAccount-navigation ul li a {
		border-bottom: none;
		border-left: 3px solid transparent;
		padding: var(--spacing-md) var(--spacing-lg);
	}

	.woocommerce-MyAccount-navigation ul li.is-active a {
		border-left-color: var(--primary-color);
		border-bottom-color: transparent;
	}

	.woocommerce-MyAccount-content {
		padding: var(--spacing-xl);
	}

	.woocommerce-MyAccount-content h2 {
		font-size: 24px;
	}

	.woocommerce-MyAccount-content h3 {
		font-size: 20px;
	}
}

@media (max-width: 767px) {
	.woocommerce-account .woocommerce {
		padding: var(--spacing-md);
		flex-wrap: wrap;
	}

	form.woocommerce-ResetPassword.lost_reset_password {
		padding: 20px;
	}


	.woocommerce-account .woocommerce-MyAccount-content{
		width: 100%;
	}

	

	.woocommerce-MyAccount-navigation {
		margin-bottom: var(--spacing-lg);
	}

	.woocommerce-MyAccount-navigation ul li a {
		font-size: 14px;
		padding: var(--spacing-md);
	}

	.woocommerce-MyAccount-content {
		padding: var(--spacing-lg);
	}

	.woocommerce-MyAccount-content h2 {
		font-size: 22px;
		margin-bottom: var(--spacing-lg);
	}

	.woocommerce-MyAccount-content h3 {
		font-size: 18px;
		margin-bottom: var(--spacing-md);
	}

	.woocommerce-MyAccount-content form,
	.woocommerce form.woocommerce-form,
	.woocommerce form.woocommerce-EditAccountForm,
	.woocommerce form.woocommerce-address-fields,
	.woocommerce form.edit-address {
		padding: var(--spacing-lg);
	}

	.woocommerce-MyAccount-content form .form-row-first,
	.woocommerce-MyAccount-content form .form-row-last,
	.woocommerce form .form-row-first,
	.woocommerce form .form-row-last {
		width: 100%;
		margin-right: 0;
		display: block;
		float: none;
	}

	.woocommerce-MyAccount-content form input,
	.woocommerce-MyAccount-content form select,
	.woocommerce-MyAccount-content form textarea,
	.woocommerce form input,
	.woocommerce form select,
	.woocommerce form textarea {
		font-size: 16px; /* Prevents zoom on iOS */
		padding: 12px 16px;
	}

	.woocommerce-MyAccount-content .button,
	.woocommerce-MyAccount-content button[type="submit"],
	.woocommerce form .button,
	.woocommerce form button[type="submit"] {
		width: 100%;
		margin-right: 0;
		margin-bottom: var(--spacing-md);
		min-width: auto;
	}

	.woocommerce-MyAccount-content form .form-row:last-child {
		flex-direction: column;
		gap: var(--spacing-md);
	}

	.woocommerce-MyAccount-content .woocommerce-Address {
		flex-direction: column;
	}

	.woocommerce-MyAccount-content .woocommerce-Address .woocommerce-Address-title {
		border-right: none;
		border-bottom: 2px solid var(--border-color);
		min-width: 100%;
	}

	.woocommerce-MyAccount-content .woocommerce-Address .woocommerce-Address-wrapper {
		padding: var(--spacing-lg);
	}

	.woocommerce-MyAccount-content .woocommerce-Address .woocommerce-Address-actions {
		flex-direction: column;
		gap: var(--spacing-sm);
	}

	.woocommerce-MyAccount-content .woocommerce-Address .edit,
	.woocommerce-MyAccount-content .woocommerce-Address .woocommerce-Address-edit-link {
		width: 100%;
	}

	/* Tables on Mobile */
	.woocommerce-MyAccount-content .woocommerce-orders-table-wrapper {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		margin: 0 calc(-1 * var(--spacing-md));
		padding: 0 var(--spacing-md);
	}

	.order_item td{
		display: block !important;
	}

	/* Order Details on Mobile */
	.woocommerce-MyAccount-content .woocommerce-order-details,
	.woocommerce-MyAccount-content .order_details {
		margin: var(--spacing-lg) 0;
		border-radius: var(--radius-md);
	}

	.woocommerce-MyAccount-content .woocommerce-order-details__title,
	.woocommerce-MyAccount-content .order_details h2 {
		font-size: 20px;
		padding: var(--spacing-lg);
		flex-wrap: wrap;
	}

	.woocommerce-MyAccount-content .woocommerce-order-details__title::before,
	.woocommerce-MyAccount-content .order_details h2::before {
		width: 24px;
		height: 24px;
	}

	.woocommerce-MyAccount-content .woocommerce-order-details table,
	.woocommerce-MyAccount-content .order_details table {
		font-size: 13px;
	}

	.woocommerce-MyAccount-content .woocommerce-order-details table th,
	.woocommerce-MyAccount-content .woocommerce-order-details table td,
	.woocommerce-MyAccount-content .order_details table th,
	.woocommerce-MyAccount-content .order_details table td {
		padding: var(--spacing-md);
	}

	.woocommerce-MyAccount-content .woocommerce-order-details .product-thumbnail,
	.woocommerce-MyAccount-content .order_details .product-thumbnail {
		width: 50px;
		height: 50px;
		margin-right: var(--spacing-sm);
	}

	.woocommerce-MyAccount-content .woocommerce-order-details__order-totals,
	.woocommerce-MyAccount-content .order_details .order-totals {
		padding: var(--spacing-lg);
	}

	.woocommerce-MyAccount-content .woocommerce-order-details__order-totals table,
	.woocommerce-MyAccount-content .order_details .order-totals table {
		max-width: 100%;
		margin-left: 0;
	}

	.woocommerce-MyAccount-content .woocommerce-customer-details,
	.woocommerce-MyAccount-content .customer_details {
		margin-top: var(--spacing-lg);
	}

	.woocommerce-MyAccount-content .woocommerce-customer-details h2,
	.woocommerce-MyAccount-content .woocommerce-customer-details h3,
	.woocommerce-MyAccount-content .customer_details h2,
	.woocommerce-MyAccount-content .customer_details h3 {
		font-size: 18px;
		padding: var(--spacing-lg);
	}

	.woocommerce-MyAccount-content .woocommerce-customer-details address,
	.woocommerce-MyAccount-content .customer_details address {
		padding: var(--spacing-lg);
		font-size: 14px;
	}

	.woocommerce-MyAccount-content .woocommerce-order-actions,
	.woocommerce-MyAccount-content .order-actions {
		flex-direction: column;
		gap: var(--spacing-sm);
	}

	.woocommerce-MyAccount-content .woocommerce-order-actions .button,
	.woocommerce-MyAccount-content .order-actions .button {
		width: 100%;
	}

	.woocommerce-MyAccount-content .woocommerce-order-notes,
	.woocommerce-MyAccount-content .order-notes {
		padding: var(--spacing-lg);
		margin-top: var(--spacing-lg);
	}

	.woocommerce-MyAccount-content .woocommerce-order-notes h2,
	.woocommerce-MyAccount-content .order-notes h2 {
		font-size: 18px;
	}

	.woocommerce-MyAccount-content .woocommerce-order-notes .note,
	.woocommerce-MyAccount-content .order-notes .note {
		padding: var(--spacing-md);
	}

	.woocommerce form .form-row {
		flex-wrap: wrap;
		align-items: start;
		flex-direction: column-reverse;
	}

}

/* ============================================
   LARGE SCREENS - SIDEBAR LAYOUT
   ============================================ */
@media (min-width: 1200px) {
	.woocommerce-account .woocommerce {
		display: flex;
		align-items: start;
		gap: var(--spacing-2xl);
		max-width: 1400px;
		justify-content: center;
		flex-wrap: wrap;
	}

	.woocommerce-MyAccount-navigation {
		flex: 0 0 280px;
		max-width: 280px;
		margin-bottom: 0;
		position: sticky;
		top: var(--spacing-xl);
	}

	.woocommerce-MyAccount-navigation ul {
		flex-direction: column;
		border-bottom: none;
		border-right: 1px solid var(--border-light);
		padding-right: var(--spacing-lg);
	}

	.woocommerce-MyAccount-navigation ul li {
		width: 100%;
	}

	.woocommerce-MyAccount-navigation ul li:last-child {
		border-bottom: none;
	}

	.woocommerce-MyAccount-navigation ul li a {
		border-bottom: none;
		border-left: 3px solid transparent;
		padding: var(--spacing-md) var(--spacing-lg);
	}

	.woocommerce-MyAccount-navigation ul li.is-active a {
		border-left-color: var(--primary-color);
		border-bottom-color: transparent;
	}

	.woocommerce-MyAccount-content {
		flex: 1;
		min-width: 0;
	}
}

/* ============================================
   ACCESSIBILITY ENHANCEMENTS
   ============================================ */
.woocommerce-MyAccount-content a:focus,
.woocommerce-MyAccount-content button:focus,
.woocommerce-MyAccount-content input:focus,
.woocommerce-MyAccount-content select:focus,
.woocommerce-MyAccount-content textarea:focus,
.woocommerce form a:focus,
.woocommerce form button:focus,
.woocommerce form input:focus,
.woocommerce form select:focus,
.woocommerce form textarea:focus {
	outline: 2px solid var(--primary-color);
	outline-offset: 2px;
}

.woocommerce-MyAccount-content .sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

/* Skip to content link */
.woocommerce-account .skip-link {
	position: absolute;
	top: -40px;
	left: 0;
	background: var(--primary-color);
	color: var(--bg-primary);
	padding: var(--spacing-md);
	text-decoration: none;
	z-index: 1000;
}

.woocommerce-account .skip-link:focus {
	top: 0;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
	.woocommerce-MyAccount-navigation,
	.woocommerce-MyAccount-content .button,
	.woocommerce form .button {
		display: none;
	}

	.woocommerce-MyAccount-content {
		box-shadow: none;
		border: none;
		padding: 0;
	}
}

.shop_table td a.button {
	margin: 0 5px 0px 0px !important;
	padding: 5px 20px;
	display: flex !important;
	justify-content: center;
	align-items: center;
}

table.woocommerce-MyAccount-paymentMethods td.woocommerce-PaymentMethod--actions {
	text-align: left !important;
}

.woocommerce-MyAccount-content table tbody tr:last-child td{
	text-align: center !important;
}

.wc-block-components-notice-banner>.wc-block-components-notice-banner__content {
    align-self: center;
    flex-basis: 100%;
    padding-right: 16px;
    white-space: normal;
    /* align-items: center; */
    display: flex;
    justify-content: space-between;
}


.edit input{
	border: 1px solid #E28C69 !important;
	padding: 2px !important;
}