@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

/* Reset Settings */
:root {
  /* color */
  --primary-color: #e6fae7;
  --secondary-color: #f4f4f4;
  --third-color: #f1f1f1;
  --accent-color: #4caf50;
  --text-color: #333;
  --light-text: #666;
  --border-color: #ddd;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;

  /* font */
  --primary-font: "Roboto", sans-serif;
  --secondary-font: "Lora", serif;
  --third-font: "Poppins", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  color: var(--text-color);
}

::-webkit-scrollbar {
  width: 8px;
  background-color: #f5f5f5;
}

::-webkit-scrollbar-thumb {
  background-color: var(--accent-color);
  border-radius: 10px;
}

.fa-bag-shopping:before,
.fa-shopping-bag:before {
  content: "\f290";
  color: #4caf50;
}
.fa-receipt:before {
  content: "\f543";
  color: #4caf50;
}
.fa-arrow-right:before {
  color: white;
}

body {
  background-color: white;
  font-family: var(--primary-font);
  line-height: 1.6;
  color: var(--text-color);
  overflow-x: hidden;
}

/* Cart specific styles */
.page-title {
  margin: 20px 0;
  margin-left: clamp(20px, 5vw, 50px);
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 600;
  color: var(--text-color);
  position: relative;
  display: inline-block;
}

.page-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background-color: #4caf50;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 30px;
  margin: 20px;
  margin-bottom: 80px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* Tablet and below */
@media (max-width: 1024px) {
  .cart-layout {
    grid-template-columns: 1fr 320px;
    gap: 20px;
    margin: 15px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .guest-cart-notice {
    margin: 15px;
    border-radius: 8px;
  }

  .notice-content {
    padding: 15px 20px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .notice-content i {
    font-size: 20px;
  }

  .notice-text strong {
    font-size: 16px;
  }

  .notice-text p {
    font-size: 13px;
  }
  .cart-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 15px;
  }
}

.cart-container {
  background-color: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: fit-content;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(15px, 3vw, 20px);
  background-color: #e9f0ff;
  border-bottom: 1px solid var(--border-color);
  flex-wrap: wrap;
  gap: 10px;
}

.cart-title {
  font-size: clamp(16px, 3vw, 18px);
  font-weight: 600;
  color: #4caf50;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.cart-title i {
  margin-right: 10px;
}

.cart-count {
  background-color: #4caf50;
  color: white;
  border-radius: 20px;
  padding: 5px 12px;
  font-size: clamp(12px, 2.5vw, 14px);
  font-weight: 500;
  white-space: nowrap;
}

.cart-content {
  padding: 0;
}

.cart-empty {
  text-align: center;
  padding: clamp(40px, 8vw, 60px) 20px;
  color: var(--light-text);
}

.cart-empty i {
  font-size: clamp(40px, 8vw, 60px);
  color: var(--border-color);
  margin-bottom: 20px;
}

.cart-empty h3 {
  font-size: clamp(18px, 4vw, 22px);
  margin-bottom: 15px;
  color: var(--text-color);
}

.cart-empty p {
  font-size: clamp(14px, 3vw, 16px);
  margin-bottom: 25px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  background-color: var(--accent-color);
  color: white;
  border: none;
  border-radius: 6px;
  padding: clamp(10px, 2vw, 12px) clamp(20px, 4vw, 24px);
  font-size: clamp(13px, 2.5vw, 15px);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn:hover {
  background-color: #3d9c40;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--secondary-color);
}

.btn-sm {
  padding: clamp(6px, 1.5vw, 8px) clamp(12px, 3vw, 16px);
  font-size: clamp(12px, 2vw, 14px);
}

.cart-item {
  padding: clamp(15px, 3vw, 20px);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  transition: background-color 0.2s;
}

.cart-item-main {
  display: flex;
  align-items: flex-start;
  gap: clamp(15px, 3vw, 20px);
}

/* Mobile cart item layout */
@media (max-width: 640px) {
  .cart-item-main {
    flex-direction: column;
    align-items: stretch;
  }
}

.cart-item-image {
  width: clamp(80px, 15vw, 100px);
  height: clamp(80px, 15vw, 100px);
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .cart-item-image {
    width: 100%;
    height: clamp(150px, 25vw, 200px);
    margin-bottom: 15px;
  }
}

.cart-item-details {
  flex-grow: 1;
  min-width: 0;
}

.cart-item-title {
  font-size: clamp(16px, 3vw, 18px);
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-color);
  word-wrap: break-word;
}

.cart-item-meta {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
  gap: 8px;
}

.cart-item-options {
  font-size: clamp(12px, 2.5vw, 14px);
  color: #666;
  background-color: #e9f0ff;
  padding: 3px 10px;
  border-radius: 50px;
  white-space: nowrap;
}

.item-price-qty {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5px;
  gap: 15px;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .item-price-qty {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.cart-item-price {
  font-size: clamp(16px, 3vw, 18px);
  font-weight: 600;
  color: var(--accent-color);
}

.cart-item-qty {
  display: flex;
  align-items: center;
}

.qty-controls {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  overflow: hidden;
}

.qty-btn {
  background-color: #f8f9fa;
  border: none;
  width: clamp(30px, 6vw, 35px);
  height: clamp(30px, 6vw, 35px);
  font-size: clamp(14px, 2.5vw, 16px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s;
}

.qty-btn:hover {
  background-color: var(--secondary-color);
}

.qty-input {
  width: clamp(35px, 7vw, 40px);
  height: clamp(30px, 6vw, 35px);
  border: none;
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  text-align: center;
  font-size: clamp(13px, 2.5vw, 15px);
  font-weight: 500;
}

.qty-input:focus {
  outline: none;
  background-color: var(--secondary-color);
}

.remove-btn {
  position: absolute;
  top: clamp(15px, 3vw, 20px);
  right: clamp(15px, 3vw, 20px);
  background: none;
  border: none;
  color: var(--light-text);
  font-size: clamp(16px, 3vw, 18px);
  cursor: pointer;
  width: clamp(25px, 5vw, 30px);
  height: clamp(25px, 5vw, 30px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.remove-btn:hover {
  background-color: #ffeeee;
  color: var(--accent-color);
}

/* Complementary items styles */
.cart-complementary {
  margin-left: 0;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed var(--border-color);
}

@media (min-width: 641px) {
  .cart-complementary {
    margin-left: clamp(100px, 18vw, 120px);
  }
}

.complementary-label {
  font-size: clamp(12px, 2.5vw, 14px);
  font-weight: 600;
  color: var(--light-text);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.complementary-label i {
  margin-right: 8px;
  color: #4caf50;
}

.complementary-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
}

@media (max-width: 480px) {
  .complementary-items {
    grid-template-columns: 1fr;
  }
}

.complementary-item {
  background-color: #f8f9fa;
  border-radius: 6px;
  padding: clamp(12px, 2.5vw, 15px);
  transition: all 0.2s;
}

.complementary-item:hover {
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

/* Custom fabric item styling */
.complementary-item.custom-fabric-item {
  position: relative;
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border: 2px solid #ffc107;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 12px;
}

.custom-fabric-badge {
  position: absolute;
  top: -8px;
  right: 12px;
  background: #ffc107;
  color: #333;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.custom-fabric-details {
  margin-top: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  border-left: 3px solid #ffc107;
}

.custom-detail {
  font-size: 12px;
  margin-bottom: 4px;
  color: #555;
}

.custom-detail:last-child {
  margin-bottom: 0;
}

.custom-detail strong {
  color: #333;
  font-weight: 600;
}

.complementary-image {
  width: clamp(50px, 12vw, 60px);
  height: clamp(50px, 12vw, 60px);
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
}

.complementary-title {
  font-size: clamp(12px, 2.5vw, 14px);
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-color);
}

.complementary-price {
  font-size: clamp(11px, 2vw, 13px);
  color: #4caf50;
  font-weight: 500;
  margin-bottom: 8px;
}

.complementary-notes {
  font-size: clamp(10px, 2vw, 12px);
  color: var(--light-text);
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 5px;
}

.notes-text {
  flex-grow: 1;
  font-style: italic;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.edit-notes-btn {
  background-color: transparent;
  border: 1px solid var(--border-color);
  color: var(--light-text);
  border-radius: 4px;
  padding: 3px 8px;
  font-size: clamp(9px, 1.8vw, 11px);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.edit-notes-btn:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.notes-textarea {
  width: 100%;
  margin-top: 8px;
  padding: 8px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: clamp(10px, 2vw, 12px);
  resize: vertical;
  min-height: 60px;
  font-family: inherit;
}

.notes-textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(74, 111, 220, 0.1);
}

.notes-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
  gap: 8px;
  flex-wrap: wrap;
}

/* Summary section styles */
.summary-container {
  background-color: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
  height: fit-content;
}

@media (min-width: 769px) {
  .summary-container {
    position: sticky;
    top: 20px;
  }
}

.summary-header {
  padding: clamp(15px, 3vw, 20px);
  background-color: #e9f0ff;
  border-bottom: 1px solid var(--border-color);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.summary-title {
  font-size: clamp(16px, 3vw, 18px);
  font-weight: 600;
  color: #4caf50;
  display: flex;
  align-items: center;
}

.summary-title i {
  margin-right: 10px;
}

.summary-content {
  padding: clamp(15px, 3vw, 20px);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: clamp(13px, 2.5vw, 15px);
  align-items: center;
  gap: 10px;
}

.summary-label {
  color: var(--light-text);
}

.summary-value {
  font-weight: 500;
  flex-shrink: 0;
}

.total-row {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 2px solid var(--border-color);
  font-size: clamp(16px, 3vw, 18px);
  align-items: center;
  gap: 10px;
}

.total-label {
  font-weight: 600;
}

.total-value {
  font-weight: 700;
  color: var(--accent-color);
  flex-shrink: 0;
}

.summary-footer {
  padding: clamp(15px, 3vw, 20px);
  border-top: 1px solid var(--border-color);
}

.checkout-btn {
  width: 100%;
  padding: clamp(12px, 2.5vw, 14px);
  font-size: clamp(14px, 2.5vw, 16px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.checkout-btn i {
  flex-shrink: 0;
}

.continue-shopping {
  display: block;
  text-align: center;
  margin-top: 15px;
  color: var(--accent-color);
  text-decoration: none;
  font-size: clamp(12px, 2.5vw, 14px);
  font-weight: 500;
}

.continue-shopping:hover {
  text-decoration: underline;
}

.shipping-dropdown-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-grow: 1;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .shipping-dropdown-container {
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
  }
}

#shippingSelect {
  padding: clamp(4px, 1vw, 6px) clamp(8px, 2vw, 10px);
  border-radius: 6px;
  border: 1px solid var(--border-color);
  font-size: clamp(12px, 2.5vw, 14px);
  background-color: white;
  min-width: 120px;
}

.delivery-info {
  margin: 15px 0;
  padding: clamp(10px, 2vw, 12px);
  background-color: #f8f9fa;
  border-radius: 6px;
  text-align: center;
  font-size: clamp(12px, 2.5vw, 14px);
}

.delivery-date-label {
  color: var(--light-text);
  margin-right: 5px;
}

.delivery-date {
  font-weight: 600;
  color: var(--accent-color);
}

.promo-code-section {
  margin: 15px 0;
  padding-top: 15px;
}

.promo-code-input {
  display: flex;
  margin-bottom: 8px;
  gap: 5px;
}

@media (max-width: 480px) {
  .promo-code-input {
    flex-direction: column;
  }
}

#promoCodeInput {
  flex-grow: 1;
  padding: clamp(6px, 1.5vw, 8px) clamp(10px, 2vw, 12px);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: clamp(12px, 2.5vw, 14px);
  min-width: 0;
}

@media (min-width: 481px) {
  #promoCodeInput {
    border-radius: 6px 0 0 6px;
  }

  #applyPromoBtn {
    border-radius: 0 6px 6px 0;
  }
}

#promoCodeStatus {
  font-size: clamp(11px, 2vw, 13px);
  min-height: 20px;
  margin-top: 5px;
}

.promo-success {
  color: var(--accent-color);
}

.promo-error {
  color: #d32f2f;
}

.cart-item-price,
#subtotal,
#tax,
#shipping,
#total {
  transition: all 0.3s ease;
}

.cart-count {
  transition: transform 0.15s ease;
}

.cart-summary.updating {
  opacity: 0.7;
  pointer-events: none;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cart-item {
  animation: fadeIn 0.3s ease-out;
}

/* Status badge */
.status-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 30px;
  font-size: clamp(10px, 2vw, 12px);
  font-weight: 500;
  margin-left: 10px;
}

.in-stock {
  background-color: #e8f5e9;
  color: #388e3c;
}

.out-of-stock {
  background-color: #ffebee;
  color: #d32f2f;
}

/* Extra small devices */
@media (max-width: 320px) {
  .cart-layout {
    margin: 5px;
  }

  .page-title {
    margin-left: 10px;
  }

  .cart-item {
    padding: 12px;
  }
}

/* Guest Cart Notice */
.guest-cart-notice {
  background: #4caf50;
  border-radius: 12px;
  padding: 0;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
  overflow: hidden;
  position: relative;
}

.guest-cart-notice::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffd700, #ff6b6b, #4ecdc4, #45b7d1);
  background-size: 400% 400%;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.notice-content {
  display: flex;
  align-items: center;
  padding: 20px 25px;
  color: white;
  gap: 15px;
}

.notice-content i {
  font-size: 24px;
  color: #ffd700;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.notice-text {
  flex: 1;
}

.notice-text strong {
  display: block;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #ffffff;
}

.notice-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.login-link {
  color: #ffd700;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.login-link:hover {
  color: #ffffff;
  border-bottom-color: #ffd700;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

/* Gift Card Item Styles */
.gift-card-item {
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 2px solid #e3f2fd;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.1);
}

.gift-card-item:hover {
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.15);
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

.gift-card-badge {
  position: absolute;
  top: -10px;
  left: 20px;
  background: #4caf50;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

.gift-card-badge i {
  margin-right: 6px;
}

.gift-card-image-container {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.gift-card-image-container .cart-item-image {
  border-radius: 8px;
  filter: brightness(1.1) saturate(1.2);
}

.gift-card-overlay {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #4caf50;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.gift-card-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0;
  padding: 12px;
  background: rgba(0, 123, 255, 0.05);
  border-radius: 8px;
  border-left: 4px solid #4caf50;
}

.gift-card-category,
.gift-card-validity,
.gift-card-amount {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #495057;
}

.gift-card-category i,
.gift-card-validity i,
.gift-card-amount i {
  color: #4caf50;
  width: 16px;
  text-align: center;
}

.gift-card-amount {
  font-weight: 600;
  color: #28a745;
  font-size: 14px;
}

.gift-card-recipient {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 16px;
  margin: 12px 0;
  position: relative;
}

.recipient-info {
  margin-bottom: 12px;
}

.recipient-detail {
  margin-bottom: 6px;
  font-size: 13px;
  color: #495057;
}

.recipient-detail strong {
  color: #212529;
  margin-right: 8px;
  min-width: 50px;
  display: inline-block;
}

.recipient-message {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #e9ecef;
}

.message-text {
  font-style: italic;
  color: #6c757d;
  margin-top: 4px;
  padding: 8px 12px;
  background: white;
  border-radius: 4px;
  border-left: 3px solid #4caf50;
}

.edit-recipient-btn {
  background: #4caf50;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}

.edit-recipient-btn:hover {
  background: #20c997;
}

.edit-recipient-btn i {
  font-size: 11px;
}

/* Custom fabric badge styles for complementary items */
.custom-fabric-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(45deg, #28a745, #20c997);
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(40, 167, 69, 0.3);
}

.custom-fabric-item {
  position: relative;
  border: 2px solid #d4edda;
  background: linear-gradient(135deg, #f8fff9 0%, #ffffff 100%);
}

.custom-fabric-details {
  margin-top: 8px;
  font-size: 11px;
  color: #495057;
}

.custom-detail {
  margin-bottom: 4px;
  display: flex;
  align-items: flex-start;
  gap: 4px;
}

.custom-detail strong {
  min-width: 60px;
  color: #28a745;
  font-weight: 600;
}

/* Shipping display for digital items */
.digital-only {
  color: #4caf50;
  font-weight: 500;
  font-style: italic;
}

.free-shipping {
  color: #28a745;
  font-weight: 600;
}

.free-shipping i {
  margin-right: 4px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Responsive adjustments for gift cards */
@media (max-width: 768px) {
  .gift-card-meta {
    flex-direction: column;
    gap: 6px;
  }

  .gift-card-recipient {
    padding: 12px;
  }

  .recipient-detail {
    font-size: 12px;
  }

  .message-text {
    font-size: 12px;
    padding: 6px 10px;
  }

  .edit-recipient-btn {
    padding: 4px 8px;
    font-size: 11px;
  }
}

.fa-gift {
  color: white;
}

.fa-edit {
  color: white;
}
/* Enhanced cart item styling for gift cards */
.gift-card-item .cart-item-title {
  color: var(--text-color);
  font-weight: 600;
  margin-bottom: 8px;
}

.gift-card-item .cart-item-price {
  color: #28a745;
  font-size: 18px;
  font-weight: 700;
}

.gift-card-item .qty-label {
  font-size: 11px;
  color: #6c757d;
  text-align: center;
  margin-top: 4px;
}
