/** Shopify CDN: Minification failed

Line 8:0 Unexpected "<"
Line 1157:0 Unexpected "<"

**/

<style>
@media (max-width: 768px) {
  .cart-item {
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
  }
  
  .cart-item-image {
    width: 60px;
    height: 60px;
  }
  
  .cart-item-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }
  
  .cart-item-price-qty-container {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
  }

  .cart-item-price-wrapper {
    min-height: 38px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-end;
  }
  
  .cart-item-remove {
    position: absolute;
    top: 12px;
    right: 12px;
  }
  
  .cart-item-name {
    font-size: 13px;
  }
  
  .prescription-action-buttons {
    grid-template-columns: 1fr;
  }

  .prescription-modal-content {
    width: 95%;
    margin: 5% auto;
  }
  
  .prescription-item-card {
    flex-direction: column;
    text-align: center;
  }
  
  .prescription-item-image {
    margin: 0 auto;
  }
  
  .previous-prescriptions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .prescription-modal-title {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .qty-select {
    display: none !important;
  }
  
  .mobile-qty-dropdown {
    position: relative;
    min-width: 75px;
    width: 75px;
  }
  
  .mobile-qty-selected {
    padding: 10px 35px 10px 14px;
    font-size: 16px;
    font-weight: 700;
    color: #241C15;
    background: #fff;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .mobile-qty-selected::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #241C15;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .mobile-qty-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    margin-top: 4px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
  
  .mobile-qty-options.show {
    display: block;
  }
  
  .mobile-qty-option {
    padding: 12px 14px;
    font-size: 16px;
    font-weight: 600;
    color: #241C15;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .mobile-qty-option:last-child {
    border-bottom: none;
  }
  
  .mobile-qty-option:active {
    background: #FFE01B;
  }
  
  .mobile-qty-option.selected {
    background: #fffef5;
    color: #FFE01B;
  }
}

@media (min-width: 769px) {
  .mobile-qty-dropdown {
    display: none !important;
  }
}

.cart-trigger-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #FFE01B;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 999;
  transition: all 0.3s ease;
}

.cart-trigger-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.cart-count-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #FF5555;
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

.cart-modal-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalZoom {
  from { 
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }
  to { 
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

#cartLoadingOverlay {
  animation: fadeIn 0.2s ease;
}

.cart-modal-container {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  max-height: 90vh;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  animation: modalZoom 0.3s ease;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow-y: auto;
}

.cart-modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

@media (max-width: 768px) {
  .cart-modal-container {
    width: 95%;
    max-height: 90vh;
  }
  
}

.cart-modal-header {
  padding: 24px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.cart-modal-title {
  font-size: 24px;
  font-weight: 600;
  color: #241C15;
  margin: 0;
}

.cart-modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #888;
  cursor: pointer;
  padding: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
}

.cart-modal-close:hover {
  background: #f5f5f5;
  color: #000;
}

.cart-modal-body {
  flex: 1;
  padding: 0;
}

.cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  text-align: center;
}

.cart-empty-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  opacity: 0.5;
}

.cart-items-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cart-item-image a {
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.cart-item-image {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  pointer-events: none;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  padding: 8px;
}

.cart-item-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.cart-item-name {
  font-size: 14px;
  font-weight: 600;
  color: #241C15;
  text-decoration: none;
  display: -webkit-box;
  line-height: 1.3;
  margin: 0;
  word-break: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: none;
}

.cart-item-variant {
  font-size: 12px;
  color: #898D8F;
  background: #f5f5f5;
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
  width: fit-content;
}

.cart-item {
  transition: none !important;
  margin: 0 !important;
  padding: 16px 20px !important;
  background: transparent !important;
  border-bottom: 1px solid #f0f0f0;
  display: grid;
  grid-template-columns: 80px 1fr 110px 32px;
  grid-template-rows: auto auto;
  gap: 12px;
  align-items: start;
  position: relative;
  pointer-events: auto !important; 
}

.cart-item:hover {
  transition: none !important;
  margin: 0 !important;
  padding: 16px 20px !important;
  background: transparent !important;
}

.cart-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  gap: 16px;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 6px;
  /* border: 1px solid #e0e0e0; */
  border-radius: 6px;
  padding: 3px 6px;
  background: #fff;
  width: fit-content;
}

.qty-select {
  min-width: 65px;
  width: auto;
  padding: 8px 28px 8px 12px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23241C15' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 8px center;
  background-size: 14px;
  font-size: 14px;
  font-weight: 600;
  color: #241C15;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: all 0.2s;
  line-height: 1.2;
}

.qty-select:hover {
  border-color: #FFE01B;
  background-color: #fffef5;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(255, 224, 27, 0.2);
}

.qty-select:focus {
  outline: none;
  border-color: #FFE01B;
  box-shadow: 0 0 0 3px rgba(255, 224, 27, 0.15);
  background-color: #fffef5;
}

.qty-select option {
  padding: 10px 12px;
  background: #fff;
  color: #241C15;
  font-weight: 500;
}

.cart-item-price-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  min-height: 42px;
  justify-content: center;
}

.cart-item-actual-price {
  font-size: 16px;
  font-weight: 700;
  color: #00C14E;
  line-height: 1.2;
  white-space: nowrap;
  display: block;
}

.cart-item-remove {
  background: #fff;
  border: 1px solid #e0e0e0;
  color: #FF5555;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: background-color 0.2s, border-color 0.2s;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: 4 / 5;
  grid-row: 1 / 3;
  align-self: center;
}

.cart-item-remove:hover {
  background: #fff0f0;
  border-color: #FF5555;
}

.cart-item-remove svg {
  width: 18px;
  height: 18px;
}

.cart-modal-footer {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  border-top: 1px solid #f0f0f0;
  background: #fff;
  padding: 20px 24px;
}

.price-breakdown {
  margin-bottom: 20px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 14px;
}

.price-row.total {
  border-top: 2px solid #f0f0f0;
  margin-top: 12px;
  padding-top: 16px;
  font-size: 18px;
  font-weight: 700;
}

.price-row.discount {
  color: #00C14E;
}

.price-row .label {
  color: #666;
}

.price-row.total .label {
  color: #241C15;
}

.cart-checkout-btn {
  width: 100%;
  background: #FFE01B;
  color: #241C15;
  border: none;
  padding: 16px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 12px;
}

.cart-checkout-btn:hover {
  background: #f5d819;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 224, 27, 0.3);
}

.cart-checkout-btn:disabled {
  background: #e0e0e0;
  color: #999;
  cursor: not-allowed;
  transform: none;
}

.cart-continue-shopping:hover {
  border-color: #241C15;
  color: #241C15;
}

.prescription-alert {
  background: #FFF3CD;
  border: 1px solid #FFE69C;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #856404;
}

.prescription-alert svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.prescription-action-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.prescription-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  background: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #241C15;
  cursor: pointer;
  transition: all 0.2s;
}

.prescription-action-btn:hover {
  border-color: #FFE01B;
  background: #fffef5;
  transform: translateY(-2px);
}

.prescription-action-btn svg {
  flex-shrink: 0;
}

.prescription-action-btn.success {
  border-color: #00C14E;
  background: #DBFFE1;
  color: #00C14E;
  pointer-events: auto !important;
  cursor: pointer !important;
}

.coupon-section {
  margin-bottom: 16px;
  padding: 16px;
  background: #f9f9f9;
  border-radius: 8px;
}

.coupon-input-group {
  display: flex;
  gap: 8px;
}

.coupon-input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 14px;
}

.coupon-apply-btn {
  background: #241C15;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}

.coupon-apply-btn:hover {
  background: #3a3228;
}

.prescription-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}

.prescription-modal-content {
  background: #fff;
  margin: 3% auto;
  padding: 0;
  border-radius: 16px;
  width: 90%;
  max-width: 650px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: modalSlideUp 0.4s ease;
}

@keyframes modalSlideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.prescription-modal-header {
  padding: 24px 24px 20px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: linear-gradient(to bottom, #ffffff, #fafafa);
}

.prescription-modal-title {
  font-size: 22px;
  font-weight: 600;
  color: #241C15;
  margin: 0;
  line-height: 1.3;
}

.prescription-close {
  background: none;
  border: none;
  font-size: 32px;
  color: #888;
  cursor: pointer;
  padding: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
  flex-shrink: 0;
}

.prescription-close:hover {
  background: #f5f5f5;
  color: #000;
  transform: rotate(90deg);
}

.prescription-items-slider {
  padding: 24px;
  background: #fafafa;
}

.prescription-slide {
  display: none;
}

.prescription-slide.active {
  display: block;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.prescription-item-card {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border: 1px solid #f0f0f0;
}

.prescription-item-image {
  width: 90px;
  height: 90px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  flex-shrink: 0;
  border: 1px solid #f0f0f0;
}

.prescription-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.prescription-item-info h3 {
  font-size: 16px;
  font-weight: 600;
  color: #241C15;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.prescription-item-meta {
  font-size: 14px;
  color: #898D8F;
  margin: 4px 0;
}

.prescription-item-price {
  font-size: 18px;
  font-weight: 700;
  color: #241C15;
  margin-top: 8px;
}

.slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.slider-arrow {
  background: #241C15;
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.slider-arrow:hover {
  background: #3a3228;
  transform: scale(1.1);
}

.slider-arrow:active {
  transform: scale(0.95);
}

.prescription-actions {
  padding: 24px;
}

.prescription-accordion {
  border-top: 1px solid #f0f0f0;
}

.accordion-item {
  border-bottom: 1px solid #f0f0f0;
}

.accordion-header {
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: #241C15;
  user-select: none;
  transition: all 0.2s;
}

.accordion-header:hover {
  color: #FFE01B;
  padding-left: 8px;
}

.accordion-icon {
  font-size: 28px;
  transition: transform 0.3s;
  color: #898D8F;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
  color: #FFE01B;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 600px;
  padding-bottom: 20px;
}

.upload-area {
  border: 2px dashed #e0e0e0;
  border-radius: 12px;
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  background: #fafafa;
}

.upload-area:hover {
  border-color: #FFE01B;
  background: #fffef5;
  transform: translateY(-2px);
}

.upload-area input[type="file"] {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
}

.upload-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  opacity: 0.5;
}

.upload-text {
  font-size: 16px;
  color: #241C15;
  font-weight: 500;
}

.upload-btn {
  margin-top: 20px;
  width: 100%;
  background: #FFE01B;
  color: #241C15;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.upload-btn:hover {
  background: #f5d819;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 224, 27, 0.3);
}

.upload-btn:active {
  transform: translateY(0);
}

.upload-success {
  background: #DBFFE1;
  border: 2px dashed #00C14E;
  border-radius: 12px;
  padding: 40px 20px;
  text-align: center;
  display: none;
}

.upload-success.show {
  display: block;
  animation: successPop 0.4s ease;
}

@keyframes successPop {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.previous-prescriptions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 16px;
  margin-top: 12px;
}

.prescription-card {
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  border: 2px solid #f0f0f0;
  background: #fff;
}

.prescription-card:hover {
  border-color: #FFE01B;
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.prescription-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #f0f0f0;
}

.prescription-date {
  background: #FFE01B;
  padding: 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #241C15;
}

.cart-continue-shopping {
  width: 100%;
  background: transparent;
  color: #666;
  border: 1px solid #e0e0e0;
  padding: 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 12px;
}

.cart-continue-shopping:hover {
  border-color: #241C15;
  color: #241C15;
  background: #fafafa;
}

.cart-item-compare-at-price {
  font-size: 12px;
  font-weight: 500;
  color: #999;
  text-decoration: line-through;
  line-height: 1.2;
  white-space: nowrap;
  display: block;
  min-height: 16px;
}

.cart-item-compare-at-price:empty {
  display: block;
  min-height: 16px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.cart-item-removing {
  position: relative;
  pointer-events: none;
  opacity: 0.6;
}

.cart-item-removing::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.cart-item-removing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin: -15px 0 0 -15px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #FFE01B;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  z-index: 11;
}

.wrapper_header_04 .cart-icon .cart-count-badge {
    position: absolute !important;
    top: -1px !important;
    right: -1px !important;
    background: #FF4444;
    color: #fff;
    font-size: 11px !important;
    font-weight: 600;
    min-width: 20px !important;
    height: 20px !important;
    border-radius: 10px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 6px;
    border: 2px solid #FFE01B;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
</style>


/* account.css
 svg {
    fill: transparent;
    /* stroke: transparent; */
  } */