/* Root Colors for Easy Theme Change */
:root {
  --primary-color: #4f46e5;
  --primary-gradient: linear-gradient(to right, #6366f1, #4f46e5);
  --text-dark: #0f172a;
  --text-muted: #6b7280;
  --bg-glass: rgba(255, 255, 255, 0.7);
  --radius: 18px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
body {
    top: 0px !important;
}
.shipping__section{
	padding-top: 30px;
}
.search-container {
	position: relative;
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.search-container .header__search--input {
	flex: 1; 
}
.search-container .mic-button {
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px 10px;
}
.search-container .mic-button img {
	width: 25px;
	height: 25px;
}
.search-container .header__search--button {
	display: flex;
	position: relative;
    align-items: center;
    justify-content: center;
    background: #0b71b9;
    border: none;
    padding: 15px 15px;
    cursor: pointer;
    top: 0px;
}
.search-container .header__search--button__svg {
	width: 24px;
	height: 24px;
	fill: white;
}
.search-container .listening {
	border: 2px solid red;
	animation: pulse 1s infinite;
}
@keyframes pulse {
	0% { box-shadow: 0 0 5px rgba(255, 0, 0, 0.5); }
	50% { box-shadow: 0 0 15px rgba(255, 0, 0, 1); }
	100% { box-shadow: 0 0 5px rgba(255, 0, 0, 0.5); }
}
.predictive__search--container {
   position: relative;
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin: auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.predictive__search--input {
    flex: 1;
    min-width: 950px;
    max-width: 100%;
    border: none;
    padding: 12px 15px;
    font-size: 16px;
    outline: none;
    border-radius: 8px 0 0 8px;
}
.predictive__search--button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b71b9;
    border: none;
    padding: 12px 15px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
    border-radius: 0 8px 8px 0;
}
.predictive__search--button:hover {
    background: #085a90;
}
.predictive__search--container .mic-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px; /* Moves mic to the right */
}
.predictive__search--container .mic-button img {
    width: 22px;
    height: 22px;
    transition: transform 0.2s ease-in-out;
}
.predictive__search--container .mic-button:hover img {
    transform: scale(1.1);
}
.predictive__search--container .header__search--button__svg {
    width: 24px;
    height: 24px;
    fill: white;
}
@keyframes pulse {
    0% { box-shadow: 0 0 5px rgba(255, 0, 0, 0.5); }
    50% { box-shadow: 0 0 15px rgba(255, 0, 0, 1); }
    100% { box-shadow: 0 0 5px rgba(255, 0, 0, 0.5); }
}
.custom-button {
    display: none; /* Default: Hide everywhere */
}
@keyframes blink {
    0% { filter: brightness(0.5); }  /* Dark */
    50% { filter: brightness(1.5); } /* Bright */
    100% { filter: brightness(0.5); } /* Dark */
}
.header__discount--icon__img {
    animation: blink 1s infinite alternate; /* Blink effect */
}
.password-wrapper {
    position: relative;
}
.eye-icon {
	position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.shop__invoice{
	max-width: 900px;
    margin: auto;
    display: block;
}
.shop__invoice .btn-primary {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
}
.shop__invoice .btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}
.shop__invoice .btn {
	display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    padding: 15px;
    font-size: 15px;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.invoice {
	background: #fff;
	border-radius: 10px;
	padding: 20px !important;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.invoice h2, .invoice h4, .invoice h5 {
	margin-bottom: 10px;
}
.invoice p {
	margin-bottom: 5px;
}
.invoice table{
	margin-top: 20px;
	margin-bottom: 20px;
}
.invoice .table thead {
	background: #007bff;
	color: #fff;
}
.invoice .table th, .table td {
	text-align: center;
	vertical-align: middle;
}
.invoice .text-end {
	text-align: right;
}
.invoice .border {
	border: 1px solid var(--border-color);
	height: 100px;
}
.product__items {
    position: relative;
    overflow: hidden;
}
.out-of-stock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.out-of-stock-img {
    max-width: 80%;
    height: auto;
}
.disabled-link {
    pointer-events: none;
    opacity: 0.5;
}
/* Account Page CSS */
.dashboard-layout {
	display: flex;
	flex-direction: column;
	gap: 3rem;
	margin: 0 auto;
	padding-top: 100px;
	padding-bottom: 70px;
}
.sidebar-box {
	background: #f8f8f8;
	-webkit-box-shadow: 0 0 8px rgba(34, 34, 34, .14);
	box-shadow: 0 0 8px rgba(34, 34, 34, .14);
	border-radius: 10px;
	overflow: hidden;
	position: sticky;
	top: 107px;
	z-index: 0;
	box-shadow: 0 -4px 27px rgba(62, 70, 120, .16);
}
.user-info {
	text-align: center;
}
.cover-image{
	position: initial;
	overflow: hidden;
}
.cover-image img{
	width: 100%;
    height: 150px;
    -o-object-fit: cover;
    object-fit: cover;
}
.profile-contain {
	padding: 0 15px;
}
.profile-contain .profile-image {
    margin: 0 auto;
    text-align: center;
    margin-top: -50px;
    z-index: 1;
    position: relative;
}
.position-relative {
    position: relative !important;
}
.profile-contain .profile-image img {
    width: calc(93px + 15*(100vw - 320px) / 1600);
    height: calc(93px + 15*(100vw - 320px) / 1600);
    -o-object-fit: contain;
    object-fit: contain;
    background-color: #f8f8f8;
    border-radius: 100%;
    padding: 5px;
    border: 1px solid #ececec;
    -webkit-box-shadow: 2px 3px 8px rgba(34, 34, 34, .0032);
    box-shadow: 2px 3px 8px rgba(34, 34, 34, .0032);
}
.blur-up.lazyloaded {
    -webkit-filter: blur(0);
    filter: blur(0);
}
.blur-up {
    -webkit-filter: blur(5px);
    filter: blur(5px);
    transition: filter 400ms, -webkit-filter 400ms;
}
.profile-contain .profile-image .cover-icon {
    width: 30px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 55%;
    z-index: 1;
    background-color: #fff;
    border-radius: 100%;
    color: #4a5568;
}
.profile-image .cover-icon i {
    position: relative;
}
.profile-image .cover-icon i input {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    opacity: 0;
    width: 35px;
}
.profile-name {
    margin-top: calc(10px + 3*(100vw - 320px) / 1600);
    text-align: center;
    padding-bottom: calc(12px + 6*(100vw - 320px) / 1600);
    border-bottom: 1px solid #ddd;
}
.profile-name h3 {
    font-size: calc(18px + 4*(100vw - 320px) / 1600);
    font-weight: 600;
    letter-spacing: 1px;
}
.profile-name h6 {
    font-size: calc(14px + 1*(100vw - 320px) / 1600);
    margin-top: 4px;
	letter-spacing: 1px;
}
.menu-links {
	margin-top: 2rem;
	display: flex;
	flex-direction: column;
}
.menu-link {
	padding: 0.75rem 1rem;
	border-left: 3px solid transparent;
	color: #374151;
	letter-spacing: 1px;
}
.menu-link i {
	width: 18px;
	text-align: center;
}
.menu-link:hover {
	background-color: #f9fafb;
}
.menu-link.active {
	font-weight: 600;
	border-left: 3px solid #0b71b9;
    background: linear-gradient(to right, #28eceba6, #28eceb85);
    color: #0b71b9;
}
.main-panel {
	background-color: #f8f8f8;
	padding: calc(20px + 20*(100vw - 320px) / 1600);
	border-radius: 8px;
	height: 100%;
	box-shadow: 0 -4px 27px rgba(62, 70, 120, .16);
}
.dashboard-header {
	border-radius: 0.75rem;
	margin-bottom: 30px;
}
.dashboard-header h2 {
	font-size: 25px;
    font-weight: 700;
    margin-bottom: 0px;
	letter-spacing: 1px;
}
.dashboard-header .title-leaf {
	width: 170px;
    text-align: center;
    margin-top: 10px;
    position: relative;
    z-index: 0;
    margin-bottom: 20px;
}
.dashboard-header .title-leaf::before {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    height: 1px;
    left: 0;
    background-color: #0b71b9;
    z-index: -1;
}
.dashboard-header .title-leaf svg.bg-gray {
    background-color: #f8f8f8;
}
.dashboard-header .title-leaf svg {
	width: 35px;
    z-index: 1;
    fill: #0b71b9;
    height: 35px;
}
.dashboard-header span {
    display: inline-block;
}
.dashboard-header p {
	color: #6b7280;
    margin-bottom: 10px;
	letter-spacing: 1px;
}
.stats-grid {
	margin-bottom: 30px;
}
.stat-box {
	background-color: #ffffff;
    padding: 15px;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05)
}
.stat-icon {
	font-size: 40px;
    color: #0b71b9;
    margin-right: 1rem;
}
.stat-info p {
	font-size: 17px;
    color: #6b7280;
    margin: 0;
	letter-spacing: 1px;
}
.stat-info span {
	font-size: 18px;
    font-weight: 700;
    color: #111827;
	letter-spacing: 1px;
}
.stat-content {
	position: relative;
    text-align: center;
}
.account-section {
	background-color: #f7f7f7;
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}
.account-section h2{
	letter-spacing: 1px;
}
.section-block {
	border-bottom: 1px solid #e5e7eb;
	padding-bottom: 1rem;
}
.section-block:last-child {
	border-bottom: none;
	padding-bottom: 0;
}
.section-header {
	display: flex;
	justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.section-header h3 {
	font-size: 17px;
	font-weight: 600;
	letter-spacing: 1px;
}
.text-danger {
	color: #dc2626;
}	
/* Popup Styles */
.popup-overlay {
	display: none;
	position: fixed;
	top: 0; left: 0; right: 0; bottom: 0;
	background: rgba(0,0,0,0.5);
	z-index: 999;
	justify-content: center;
	align-items: center;
}
.popup-content {
	background: #fff;
	padding: 20px;
	width: 500px;
	max-width: 90%;
	border-radius: 8px;
	position: relative;
}
.popup-content h2 {
	margin-top: 0;
}
.popup-content label {
	display: block;
	margin-top: 10px;
}
.popup-content input, .popup-content select, .popup-content textarea {
	width: 100%;
	padding: 8px;
	margin-top: 5px;
	box-sizing: border-box;
}
.popup-buttons {
	margin-top: 20px;
	text-align: right;
}
.popup-buttons button {
	padding: 8px 16px;
	margin-left: 10px;
	border: none;
	cursor: pointer;
	border-radius: 5px;
}
.close-btn {
	background-color: #f44336;
	color: white;
}
.save-btn {
	background-color: #4CAF50;
	color: white;
}
.close-icon {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 18px;
	cursor: pointer;
	color: #888;
}
.tab-content {
	display: none;
}
.tab-content.active {
	display: block;
}
/* Base Styles */

.modern-order-table {
  max-width: 100%;
  overflow-x: auto;
}

.modern-order-table .table-responsive {
  width: 100%;
  border-radius: 16px;
  background: #ffffff;
}

.modern-order-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.modern-order-table thead {
  background: #0b71b9;
  color: white;
}

.modern-order-table thead th {
  padding: 16px;
  text-align: left;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.modern-order-table tbody td {
  padding: 16px;
  border-bottom: 1px solid #e5e7eb;
  font-size: 14px;
  color: #374151;
}

/* Hover Row */
.modern-order-table tbody tr:hover {
  background: #f9fafb;
  transition: 0.3s ease;
}

/* Badges */
.modern-order-table .badge {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: white;
  display: inline-block;
}
.modern-order-table .badge.paid { background: #10b981; }
.modern-order-table .badge.pending { background: #f59e0b; }
.modern-order-table .badge.shipped { background: #3b82f6; }
.modern-order-table .badge.processing { background: #eab308; }
/* Action Button */
.modern-order-table .btn {
  background: linear-gradient(to right, #6366f1, #3b82f6);
  color: white;
  border: none;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.modern-order-table .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(59, 130, 246, 0.4);
}
.modern-order-table .glass-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  margin-top: 15px;
  animation: fadeSlide 0.4s ease;
}
.modern-order-table .glass-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  display: flex;
  align-items: center;
  gap: 8px;
}
.modern-order-table .glass-content {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}
.modern-order-table .glass-item {
  background: rgba(255, 255, 255, 0.9);
  padding: 14px 18px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
}
.modern-order-table .label {
  font-weight: 600;
  color: #4b5563;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.modern-order-table .value {
  color: #111827;
  font-size: 15px;
  margin-top: 4px;
}
.modern-order-table .icon {
  font-size: 16px;
  font-style: normal;
}
/* Animation */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Wishlist Container - Glass & Shadow */
.cart-section-inner {
      transition: all 0.3s ease-in-out;
}
/* Wishlist Title */
.cart-title {
  font-size: 32px;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 30px;
  letter-spacing: -0.5px;
  position: relative;
}
.cart-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--primary-gradient);
  border-radius: 2px;
}
/* Table Layout */
.cart-table-inner {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 20px;
}
.cart-table-header {
	background: #0b71b9;
    color: #f8f8f8;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
    border-radius: 14px;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
    letter-spacing: 1px;
}
.cart-table-header th{
  padding: 14px 18px;
}
/* Table Body */
.cart-table-body-items {
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: 0.3s ease;
}
.cart-table-body-items:hover {
  transform: scale(1.015);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.1);
}
.cart-product {
  gap: 20px;
  padding: 16px;
}
.cart-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
/* Product Thumbnail */
.cart-thumbnail img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
}
/* Product Info */
.cart-content h4 {
	font-size: 17px;
    font-weight: 400;
    margin: 0;
    color: #1e293b;
    transition: color 0.3s;
    letter-spacing: 1px;
}
.cart-content h4:hover {
  color: var(--primary-color);
}
.cart-content-variant {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 1px;
}
/* Price */
.cart-price {
  font-size: 17px;
  font-weight: 700;
  color: #059669;
}
/* Stock Badges */
.in-stock,
.out-stock {
  display: inline-block;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.in-stock {
  background: #dcfce7;
  color: #15803d;
}
.out-stock {
  background: #fee2e2;
  color: #b91c1c;
}
/* Add to Cart Button */
.wishlist-cart-btn {
  background: var(--primary-gradient);
  color: white;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 400;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.25);
  transition: 0.3s ease;
}
.wishlist-cart-btn:hover {
  background: linear-gradient(to right, #4f46e5, #6366f1);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.35);
}
/* Disabled Button */
.wishlist-cart-btn.disabled {
  background: #e5e7eb;
  color: #9ca3af;
  pointer-events: none;
  box-shadow: none;
}
/* Remove Button */
.cart-remove-btn {
  background: none;
  border: none;
  font-size: 18px;
  color: #ef4444;
  transition: transform 0.3s ease, color 0.3s ease;
}
.cart-remove-btn:hover {
  color: #dc2626;
  transform: rotate(90deg) scale(1.3);
}
/* Footer Links */
.continue-shopping {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.continue-shopping-link,
.continue-shopping-clear {
  color: #3b82f6;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s;
}
.continue-shopping-link:hover,
.continue-shopping-clear:hover {
  text-decoration: underline;
  color: #2563eb;
}
.cart-table-inner .text-right {
    text-align: right;
    padding: 10px;
}
/* Address */
.address-uppar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; /* for responsiveness */
  gap: 10px;
  margin-bottom: 20px;
}
.address-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.address-right .add-btn {
  background-color: #10b981; /* Tailwind green-500 */
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}
.add-btn {
	background-color: #10b981;
	color: white;
	padding: 10px 16px;
	border: none;
	border-radius: 6px;
	font-weight: bold;
	cursor: pointer;
}
.address-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 16px;
}
.address-card {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	padding: 20px;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.address-card input[type="radio"] {
	position: absolute;
	top: 20px;
	left: 20px;
	accent-color: #10b981;
}
.address-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-left: 24px;
}
.address-type {
	background-color: #10b981;
	color: white;
	padding: 4px 10px;
	font-size: 12px;
	border-radius: 12px;
}
.address-details {
	padding-left: 24px;
	font-size: 14px;
	color: #333;
}
.address-details p {
	margin: 4px 0;
	line-height: 1.5;
}
.card-actions {
	display: flex;
	gap: 10px;
	padding-left: 24px;
	margin-top: 10px;
}
.card-actions button {
	flex: 1;
	padding: 10px;
	font-size: 14px;
	border: 1px solid #ccc;
	background: #f8f9fa;
	cursor: pointer;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	transition: 0.3s;
}
.card-actions button:hover {
	background: #e5e7eb;
}
.card-actions i {
	color: #333;
}
/* Profile */
 .pro-container {
	max-width: 1000px;
	margin: auto;
}
.pro-container .pro-box {
	background: #ffffff;
	border-radius: 15px;
	padding: 20px;
	margin-bottom: 20px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.pro-container .pro-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.pro-container .pro-name {
	font-size: 24px;
	font-weight: bold;
	color: #0b71b9;
	letter-spacing: 1px;
}
.pro-container .pro-stars {
	color: #ffc107;
	font-size: 18px;
}
.pro-container .pro-details {
	margin-top: 10px;
}
.pro-container .pro-details p{
	margin-top: 10px;
	font-size: 14px;
	letter-spacing: 1px;
	text-align: left;
}
.pro-container .pro-info-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	font-size: 14px;
	margin: 10px 0;
}
.pro-container .pro-info-row span {
	letter-spacing: 1px;
}
.pro-container .pro-info-row i {
	margin-right: 6px;
	color: #0b71b9;
}
.pro-container .edit-btn {
	background-color: #28eceb;
	color: #0b71b9;
	border: none;
	padding: 6px 12px;
	border-radius: 6px;
	cursor: pointer;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 5px;
	transition: 0.3s ease;
}
.pro-container .edit-btn:hover {
	background-color: #b5e7d6;
}
.pro-container .pro-main-section {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.pro-container .pro-left {
	flex: 1;
	min-width: 300px;
}
.pro-container .pro-left h3{
	font-size: 20px;
	color: #0b71b9;
	text-align: left;
}
.pro-container .pro-about-table,
.pro-container .login-details-table {
	width: 400px;
    font-size: 14px;
    margin-top: 10px;
    letter-spacing: 1px;
}
.pro-container .pro-about-table td,
.pro-container .login-details-table td {
	padding: 5px 5px;
	vertical-align: top;
}
.pro-container .pro-right {
	flex: 1;
	min-width: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.pro-container .pro-right img {
	width: 100%;
	max-width: 300px;
	border-radius: 20px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	height: auto;
	object-fit: contain;
}
@media (min-width: 1024px) {
	.dashboard-layout {
        flex-direction: row;
	}
}
/* === Responsive Fixes for Mobile Devices === */
@media (max-width: 991px) {
	.dashboard-layout {
		flex-direction: column;
		padding: 50px 15px;
	}
	.sidebar-box {
		position: relative;
		top: auto;
		margin-bottom: 30px;
	}
	.profile-contain .profile-image {
		margin-top: -40px;
	}
	.menu-links {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		gap: 10px;
	}
	.menu-link {
		flex: 1 1 45%;
		text-align: center;
		border-left: none;
		border-radius: 8px;
		border: 1px solid #e5e7eb;
		padding: 10px;
	}
	.menu-link.active {
		border-left: none;
		border: 1px solid #0b71b9;
	}
	.main-panel {
		padding: 20px;
	}
	.dashboard-header {
		padding: 1rem;
        text-align: center;
	}
	.account-section {
		padding: 1rem;
	}
	.stat-box {
		margin-bottom: 20px;
	}
}
@media only screen and (max-width: 768px) {
    .predictive__search--input {
		height: 45px;
        min-width: 290px;
    }
	.custom-button {
        display: block; /* Show on mobile */
    }
	.invoice {
		padding: 20px;
	}
	.invoice .text-end {
		text-align: left;
	}
	.stats-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	/* âœ… Remove horizontal scroll for .modern-order-table */
	.modern-order-table {
	  width: 100%;
	  overflow-x: unset; /* remove the scroll behavior */
	}

	.modern-order-table .table-responsive {
	  overflow-x: unset;
	}

	/* âœ… Ensure mobile block layout wraps without enforcing table min-width */
	.modern-order-table table {
	  min-width: auto;
	}
	.modern-order-table table, thead, tbody, th, td, tr {
		display: block;
	}
	.modern-order-table thead {
		display: none;
	}
	.modern-order-table tbody tr {
		margin-bottom: 20px;
		background: #ffffff;
		border-radius: 12px;
		box-shadow: 0 4px 16px rgba(0,0,0,0.05);
		padding: 16px;
	}
	.modern-order-table tbody td {
		padding: 10px 0;
		display: flex;
		justify-content: space-between;
		border-bottom: 1px solid #f3f4f6;
	}
	.modern-order-table tbody td:last-child {
		border-bottom: none;
	}
	.modern-order-table td::before {
		content: attr(data-label);
		font-weight: 600;
		color: #6b7280;
		margin-right: 10px;
		flex-basis: 40%;
	}
	.glass-card {
		padding: 16px;
	}
	.glass-header h3 {
		font-size: 16px;
		flex-wrap: wrap;
	}
	.glass-content {
		grid-template-columns: 1fr;
		gap: 10px;
	}
	.glass-card .label {
		font-size: 13px;
	}
	.glass-card .value {
		font-size: 14px;
	}
	.glass-card .icon {
		font-size: 14px;
	}
	.cart-table-header {
		display: none;
	}
	.cart-table-inner {
		display: block;
		width: 100%;
	}
	.cart-table-body-items {
		display: block;
		background: #fff;
		border-radius: var(--radius);
		box-shadow: var(--shadow);
		padding: 20px 16px;
		margin-bottom: 24px; /* Gap between wishlist items */
	}
	.cart-table-body-list {
		display: flex;
		flex-direction: column;
		gap: 14px; /* Space between image, content, price, etc. */
		position: relative;
		align-items: center; /* Center everything horizontally */
		text-align: center;
	}
	.cart-remove-btn {
		position: absolute;
		top: 0;
		right: 0;
		font-size: 18px;
		color: #ef4444;
		background: none;
		border: none;
		padding: 6px;
		transition: transform 0.3s ease, color 0.3s ease;
	}
	.cart-remove-btn:hover {
		color: #dc2626;
		transform: rotate(90deg) scale(1.3);
	}
	.cart-thumbnail img {
		width: 100px;
		height: auto;
		border-radius: 12px;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
	}
	.cart-content h4 {
		font-size: 16px;
		font-weight: 700;
		margin: 0;
	}
	.cart-content-variant {
		font-size: 13px;
		color: var(--text-muted);
	}
	.cart-price {
		font-size: 15px;
		font-weight: 700;
		color: #059669;
	}
	.in-stock,
	.out-stock {
		font-size: 12px;
		padding: 6px 14px;
		margin-top: 6px;
		border-radius: 999px;
	}
	.wishlist-cart-btn {
		width: 100%;
		padding: 12px;
		margin-top: 10px;
		font-size: 14px;
		text-align: center;
	}
	.pro-container .pro-main-section {
        flex-direction: column;
	}
	.pro-container .pro-about-table, .pro-container .login-details-table {
		width: auto;
		font-size: 15px;
		margin-top: 10px;
		text-align: left;
	}
	.pro-container .pro-right {
		display:none;
	}
}
@media (min-width: 640px) {
	.stats-grid {
        grid-template-columns: repeat(2, 1fr);
	}	
}
@media (max-width: 576px) {
	.address-uppar {
		flex-direction: column;
        text-align: center;
        margin-bottom: 50px;
	}
	.address-right {
		width: 100%;
	}
	.address-right .add-btn {
		width: 100%;
		justify-content: center;
	}
}
@media (max-width: 575px) {
	.menu-link {
		flex: 1 1 100%;
	}
	.dashboard-header h2 {
		font-size: 20px;
	}
	.stat-info p, .stat-info span {
		font-size: 15px;
	}
	.profile-name h3 {
		font-size: 18px;
	}
	.profile-name h6 {
		font-size: 13px;
	}
	.popup-content {
		width: 90%;
	}
}
/* Responsive tweaks */
@media (max-width: 480px) {
	.address-card {
        padding: 16px;
	}
	.address-card input[type="radio"] {
        top: 16px;
        left: 16px;
	}
	.address-card-header,
	.address-details,
	.card-actions {
		padding-left: 40px;
	}
}
@media only screen and (max-width: 375px) {
    .predictive__search--input {
		height: 45px;
        min-width: 240px;
    }
	.custom-button {
        display: block; /* Show on mobile */
    }
}