#right-side-items-details {
  width: 380px;
  position: fixed; 
  top: 80px;
  right: -380px; /* hidden offscreen */
  height: 100%;
  background: #fff;
  box-shadow: -3px 0 10px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  transition: right 0.3s ease-in-out;
  overflow-y: auto;
}

#items-details-header {
  background-color: #f6f6f6;
  padding: 5px 15px;
  font-weight: bold;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10;
}
#background-screen-disable{
	position:fixed;
	top:0; left:0;
	height:100%;
	width:100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index:999;
	display:none;
}
#items-details-content{
	height: calc(100% - 200px);
	overflow-y:auto;
}
#view-cart-btn{
	cursor:pointer;
}
#items-details-header button {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}
#style-size-table{
	width:100%;
}
#style-size-table td{
	text-align:center;
	padding:5px;
}
#style-size-table td:first-child{
	width:50%;
}
#qty-cart-table:first-child span{
	display:inline;
}
#qty-cart-table:first-child span:first-child{
	font-weight:bold;
}

.logo_image_jdr{
	height:70px;
	margin-top:-15px;
}
.spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
}

.spinner-border {
  width: 2rem;
  height: 2rem;
  border: 0.25em solid #ccc;
  border-top: 0.25em solid #007bff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

#image-thumbs-box{
	max-height:250px;
	overflow-y:auto;
	overflow-x:hidden;
}
.quantity-controls {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.qty-btn {
  width: 30px;
  height: 25px;
  background-color: #f9f9f9;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.qty-btn:hover {
  background-color: #e0e0e0;
}

.qty-btn i {
  font-size: 12px;
  color: #333;
}

.qty-input {
  width: 45px;
  height: 25px;
  border: none;
  text-align: center;
  font-size: 14px;
  background-color: #fff;
  outline: none;
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.05);
}
#cart-details-table{
	width:100%;
}
#cart-details-table tr td:first-child{
	width:80%;
}
#cart-details-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
  font-family: Arial, sans-serif;
}

#cart-details-table th,
#cart-details-table td {
  padding: 12px 15px;
  background-color: #fff;
  border: 1px solid #ddd;
  vertical-align: middle;
  font-size: 15px;
}

#cart-details-table th {
  background-color: #f5f5f5;
  font-weight: 600;
  text-align: left;
}

#cart-details-table tr {
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: background 0.3s;
}

#cart-details-table tr:hover {
  background-color: #f9f9f9;
}

#cart-details-table .btn {
  padding: 6px 12px;
  font-size: 14px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#cart-details-table .btn:hover {
  background-color: #0056b3;
}
/* Make sure Google Places autocomplete dropdown appears above SweetAlert */
.pac-container {
  z-index: 10000 !important;
}

/* Optionally, adjust position if it's misaligned */
.swal2-container {
  overflow: visible !important;
}
.swal2-popup .swal2-html-container {
  padding: 0 !important;
}

gmpx-place-autocomplete {
  --gmpx-color-background: white;
  --gmpx-spacing-padding: 0.5rem;
  --gmpx-shape-corner-radius: 6px;
  width: 100% !important;
}
#cart-contact-table {
  width: 100%;
  background-color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
#cart-contact-table td:first-child{
	font-size:0.9em;
	width:80px;
}
#cart-contact-table td {
  padding: 6px;
  vertical-align: middle;
}

#cart-contact-table tr {
  border-radius: 8px;
  background: #f9f9f9;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

#cart-contact-table input[type="text"],
#cart-contact-table input[type="email"],
#cart-contact-table input[type="tel"] {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background-color: #fff;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
  text-align:center;
}

#cart-contact-table input:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0,123,255,0.1);
}

#shipping-address-table input[type="text"],
#shipping-address-table input[type="email"],
#shipping-address-table input[type="tel"] {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background-color: #fff;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
  text-align:center;
}
#billing-address-table input[type="text"],
#billing-address-table input[type="email"],
#billing-address-table input[type="tel"] {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background-color: #fff;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
  text-align:center;
}
#shop-cart h5{
	font-size:1.1em;
	text-align:center;
}
.address-inline-wrapper {
  display: flex;
  gap: 5px;
  align-items: center;
}

#shipping-address {
  flex: 1;
}
/* Address inline layout */
.address-inline-wrapper {
  display: flex;
  gap: 8px;
  align-items: center;
}

.address-inline-wrapper input {
  flex: 1;
}

/* Custom Checkbox */
.form-check-wrapper {
  margin: 10px 0;
}

.form-check-label {
  display: flex;
  align-items: center;
  font-size: 16px;
  cursor: pointer;
  user-select: none;
}

.form-check-label input[type="checkbox"] {
  margin-right: 10px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.shipping-methods-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y:auto;
}

.shipping-method-card {
  display: flex;
  align-items: flex-start;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 7px 16px;
  margin-bottom:0;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.shipping-method-card:hover {
  border-color: #4a90e2;
  background: #f9fafe;
}

.shipping-method-card input[type="radio"] {
  margin-right: 16px;
  margin-top: 4px;
  transform: scale(1.2);
  accent-color: #4a90e2;
}

.shipping-method-content {
  flex-grow: 1;
}

.method-title {
  font-weight: 600;
  font-size: 16px;
  color: #333;
}

.method-subtext,
.method-markup {
  font-size: 13px;
  color: #666;
}
#global-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.loader-backdrop {
  background: rgba(255, 255, 255, 0.8);
  width: 100%;
  height: 100%;
  position: absolute;
}

.loader-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  margin: -24px 0 0 -24px;
  border: 5px solid #4a90e2;
  border-top: 5px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

#shipping-method-options-table{
	width:100%;
}
#design-now-btn{
	width:200px;
}
#sign-form-box{
	padding:25px;
	text-align:center;
}
#sign-form-box input{
	width:80%;
	margin:auto;
}

/* .catalog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr); 
	gap: 2rem;
	padding: 2rem;
}

.product-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #e9eff5; 
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.product-image-wrapper {
	background: #ffffff; 
	padding: 1rem;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 250px;
}

.product-image-wrapper img {
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
}

.product-details {
	padding: 1rem;
	background: #e9eff5; 
	text-align: center;
}

.product-name {
	font-size: 1.1rem;
	font-weight: bold;
	color: #333;
	margin-bottom: 0.4rem;
}

.product-price {
	font-size: 1.05rem;
	color: #198754;
	font-weight: 600;
	margin-bottom: 1rem;
}

.sale-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	background: #dc3545;
	color: white;
	padding: 0.4rem 0.8rem;
	font-size: 0.75rem;
	font-weight: bold;
	border-radius: 8px;
	transform: rotate(-8deg);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.add-to-cart-btn {
	background: #198754;
	color: #fff;
	border: none;
	border-radius: 50px;
	padding: 0.5rem 1.5rem;
	font-size: 0.9rem;
	cursor: pointer;
	transition: background 0.3s ease;
	position: relative;
	overflow: hidden;
}

.add-to-cart-btn:hover {
	background: #146c43;
}

.add-to-cart-btn:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 200%;
	height: 200%;
	background: rgba(255, 255, 255, 0.3);
	transform: translate(-50%, -50%) scale(0);
	border-radius: 50%;
	transition: transform 0.4s ease;
	z-index: 0;
}

.add-to-cart-btn.clicked:after {
	transform: translate(-50%, -50%) scale(1);
	transition: transform 0s;
} */

 .product-card {
    display: flex;
    flex-direction: column;
    background: #f9f9f9;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    max-width: 260px;
    margin: auto;
}

.product-image-wrapper {
    background: #fff;
    padding: 1rem;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-name {
    font-weight: bold;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.product-price {
    font-size: 0.95rem;
    color: #198754;
    margin: 0.5rem 0;
}

.add-to-cart-btn {
    background: #198754;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    cursor: pointer;
}

.add-to-cart-btn:hover {
    background: #146c43;
}

.sale-badge {
    background: #dc3545;
    color: white;
    padding: 0.3rem 0.6rem;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 6px;
    margin-bottom: 0.5rem;
    align-self: flex-start;
}

.product-details {
    text-align: center;
}
#product-table_filter{
	margin-top:-25px;
	margin-bottom:10px;
}


.product-modal {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-family: 'Segoe UI', sans-serif;
}

.product-images {
  width: 100%;
  margin-bottom: 1rem;
}

.slider .slide img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.product-info h2 {
  margin-top: 0;
  font-size: 1.5rem;
  color: #222;
}

.product-info .price {
  color: #198754;
  font-size: 1.3rem;
  font-weight: bold;
  margin: 0.5rem 0;
}

.product-info .desc {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}
#main-product-image {
  transition: all 0.3s ease-in-out;
}

#registration-form input {
  font-size: 0.9rem;
  padding: 0.4rem 0.6rem;
}
#registration-form label {
  font-size: 0.85rem;
  font-weight: 600;
}
.embed-container {
  width: 100%;
  height: 720px;
  margin: 20px auto;
  border: 1px solid #ccc;
  background: #fff;
}
#card-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
  }

  .stripe-input {
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
    background-color: #fafafa;
    font-size: 16px;
  }

  .stripe-input:focus {
    border-color: #4a90e2;
    box-shadow: 0 0 5px rgba(74, 144, 226, 0.3);
    outline: none;
  }

  #payment-form {
    margin-top: 10px;
  }

  #card-errors {
    margin-top: 10px;
    font-size: 14px;
    color: #d9534f;
  }
  
.order-wrap { 
	font-family: Arial, sans-serif; 
	color: #333; 
	padding: 20px; 
}
.summary-table { 
	width: 100%; 
	max-width: 400px; 
	border-collapse: collapse; 
	background: #f9f9f9; 
	border: 1px solid #aaa; 
	margin-top: 20px; 
}
.summary-table th, .summary-table td { 
	padding: 5px 10px; 
	border: 1px solid #ccc; 
	text-align: right; 
}
.summary-table th { 
	text-align: left;
	background-color: #e8f4fd; 
}
.summary-table .highlight { 
	background-color: #d4fdd4; 
	font-weight: bold;
}
.order-items { 
	width: 100%; 
	border-collapse: 
	collapse; 
	margin-top: 20px; 
}
.order-items th, .order-items td { 
	border: 1px solid #ccc; 
	padding: 8px; 
}
.order-items th { 
	background-color: #f0f0f0; 
}
.pickup-text { 
	color: green; 
	font-style: italic; 
	margin-top: 5px; 
}

#trigger-sign-in{
	margin-bottom:40px;
}
#order-content-box{
	height:600px;
	overflow-y:auto;
}

.order-items-responsive .row {
	font-size: 15px;
}
.logo_image_footer_jdr{
	height:50px;
}
#partners-section img{
	width:200px;
}






@media (min-width: 768px) {
	.order-items-responsive .row:first-child {
		font-weight: bold;
		background-color: #f5f5f5;
	}
}