.single-product form.cart {
  display: none !important;
}

.hozicod_instant_order_form {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 20px 20px;
  border: 1px solid #e0e6ed;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hozicod_instant_order_form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px 12px 0 0;
}

.hozicod_instant_order_form:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.hozicod_information_title {
  width: 100%;
  margin: 0;
}

/* Enhanced Input Fields with Icons */
.hozicod_input_wrapper {
  position: relative;
  width: calc(50% - 10px);
  display: flex;
  align-items: center;
}

.hozicod_input_wrapper.full-width {
  width: 100%;
}

.hozicod_input_wrapper i {
  position: absolute;
  left: 15px;
  color: #667eea;
  font-size: 16px;
  z-index: 2;
  transition: all 0.3s ease;
}

.hozicod_instant_order_form>input,
.hozicod_instant_order_form>select,
.hozicod_instant_order_form>textarea,
.hozicod_input_wrapper input,
.hozicod_input_wrapper select,
.hozicod_input_wrapper textarea {
  width: 100% !important;
  border: 2px solid #e0e6ed !important;
  outline: none !important;
  border-radius: 10px !important;
  padding: 15px 15px 15px 45px !important;
  line-height: 1.5em !important;
  height: auto !important;
  font-size: 14px !important;
  transition: all 0.3s ease !important;
  background: #ffffff !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important;
}

.hozicod_instant_order_form>input:focus,
.hozicod_instant_order_form>select:focus,
.hozicod_instant_order_form>textarea:focus,
.hozicod_input_wrapper input:focus,
.hozicod_input_wrapper select:focus,
.hozicod_input_wrapper textarea:focus {
  border-color: #667eea !important;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1) !important;
  transform: translateY(-1px) !important;
}

.hozicod_input_wrapper:focus-within i {
  color: #667eea;
  transform: scale(1.1);
}

.hozicod_instant_order_form>textarea {
  width: 100% !important;
}

/* Coupon Code Styling */
.hozicod_coupon_wrapper {
  width: 100%;
  display: flex;
  gap: 12px;
  align-items: stretch;
  margin-bottom: 5px;
}

.hozicod_coupon_input {
  flex: 1;
  margin-bottom: 0 !important;
}

.hozicod_coupon_btn {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
  color: white !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 15px 20px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  white-space: nowrap !important;
  min-width: 100px !important;
  justify-content: center !important;
  box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3) !important;
}

.hozicod_coupon_btn:hover {
  background: linear-gradient(135deg, #218838 0%, #1ea085 100%) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4) !important;
}

.hozicod_coupon_btn:active {
  transform: translateY(0) !important;
}

.hozicod_coupon_btn i {
  font-size: 12px !important;
}
/* Enhanced Buttons with Animations */
.hozicod_checkout {
  width: calc(80% - 20px);
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  border-radius: 12px;
  padding: 18px 25px;
  outline: none !important;
  position: relative;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  color: white;
  cursor: pointer;
  overflow: hidden;
}

.hozicod_checkout::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.hozicod_checkout:hover::before {
  left: 100%;
}

.hozicod_checkout:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.hozicod_checkout:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Button Animation Classes */
.hozicod_checkout.btn-pulse {
  animation: pulse 2s infinite;
}

.hozicod_checkout.btn-bounce {
  animation: bounce 1s infinite;
}

.hozicod_checkout.btn-shake {
  animation: shake 0.5s infinite;
}

.hozicod_checkout.btn-glow {
  animation: glow 2s ease-in-out infinite alternate;
}

.hozicod_checkout.btn-rotate {
  animation: rotate 2s linear infinite;
}

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
  20%, 40%, 60%, 80% { transform: translateX(2px); }
}

@keyframes glow {
  from { box-shadow: 0 0 20px rgba(102, 126, 234, 0.5); }
  to { box-shadow: 0 0 30px rgba(102, 126, 234, 0.8); }
}

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

/* Additional Button Animations */
@keyframes heartbeat {
  from {
    transform: scale(1);
    transform-origin: center center;
    animation-timing-function: ease-out;
  }
  10% {
    transform: scale(0.91);
    animation-timing-function: ease-in;
  }
  17% {
    transform: scale(0.98);
    animation-timing-function: ease-out;
  }
  33% {
    transform: scale(0.87);
    animation-timing-function: ease-in;
  }
  45% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
}

@keyframes wobble {
  from {
    transform: translate3d(0, 0, 0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

.hozicod_checkout.loading {
  pointer-events: none !important;
}

/* Enhanced Quantity Selector - Fixed for Desktop */
.hozicod_quantity {
  width: 20%;
  min-width: 140px;
  display: flex !important;
  align-items: stretch;
  background: #ffffff;
  border: 2px solid #e0e6ed;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  height: 48px;
  position: relative;
  z-index: 10;
}

.hozicod_quantity:hover {
  border-color: #667eea;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.1);
}

.hozicod_quantity>input[type="number"] {
  flex: 1;
  padding: 0 !important;
  text-align: center;
  font-weight: 600;
  color: #333;
  border: none !important;
  background: transparent !important;
  font-size: 16px;
  outline: none !important;
  box-shadow: none !important;
  margin: 0 !important;
  width: auto !important;
  height: 100% !important;
  line-height: 1.5em !important;
}

#hozicod_fixed_shipping_fe {
  display: none;
}

/* Chrome, Safari, Edge, Opera */
.hozicod_quantity input::-webkit-outer-spin-button,
.hozicod_quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.hozicod_quantity input[type="number"] {
  -moz-appearance: textfield;
}

/* Enhanced Plus/Minus Buttons - Fixed for Desktop */
.hozicod_plus,
.hozicod_minus {
  width: 40px !important;
  height: 100% !important;
  text-align: center;
  cursor: pointer;
  border: none !important;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  color: white !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative !important;
  overflow: hidden;
  user-select: none;
  flex-shrink: 0 !important;
  z-index: 15 !important;
}

.hozicod_plus::before,
.hozicod_minus::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.hozicod_plus:hover::before,
.hozicod_minus:hover::before {
  left: 100%;
}

.hozicod_plus:hover,
.hozicod_minus:hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%) !important;
  transform: scale(1.05);
}

.hozicod_plus:active,
.hozicod_minus:active {
  transform: scale(0.95);
}

.hozicod_minus {
  border-radius: 12px 0 0 12px;
}

.hozicod_plus {
  border-radius: 0 12px 12px 0;
}

/* Force visibility on desktop and mobile */
.hozicod_plus,
.hozicod_minus {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Ensure buttons stay in place */
.hozicod_checkout {
  z-index: 5 !important;
  position: relative !important;
}

/* Fix button positioning */
.hozicod_bottom_section {
  display: flex !important;
  align-items: center !important;
  gap: 15px !important;
  z-index: 1 !important;
}

.hozicod_bottom_section .hozicod_quantity {
  flex-shrink: 0 !important;
}

/* Additional fixes for quantity buttons */
.hozicod_quantity .hozicod_plus,
.hozicod_quantity .hozicod_minus {
  position: static !important;
  float: none !important;
  clear: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Ensure quantity input is properly sized */
.hozicod_quantity input[type="number"] {
  flex: 1 !important;
  min-width: 60px !important;
  text-align: center !important;
  border: none !important;
  outline: none !important;
  background: transparent !important;
  font-size: 14px !important;
  font-weight: 600 !important;
}

/* Enhanced styling for state and city selects */
.hozicod_input_wrapper select {
  width: 100% !important;
  padding: 12px 45px 12px 15px !important;
  border: 2px solid #e0e6ed !important;
  border-radius: 12px !important;
  background: #ffffff !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #2d3748 !important;
  transition: all 0.3s ease !important;
  appearance: none !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e") !important;
  background-position: left 12px center !important;
  background-repeat: no-repeat !important;
  background-size: 16px !important;
  direction: rtl !important;
  text-align: right !important;
  box-sizing: border-box !important;
}

/* Force proper text positioning in selects */
.hozicod_input_wrapper select option {
  padding: 8px 12px !important;
  font-size: 14px !important;
  color: #2d3748 !important;
  direction: rtl !important;
  text-align: right !important;
  background: white !important;
}

.hozicod_input_wrapper select:focus {
  border-color: #667eea !important;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1) !important;
  outline: none !important;
}



/* Fix icon positioning for Arabic layout */
.hozicod_input_wrapper {
  position: relative !important;
}

.hozicod_input_wrapper i {
  position: absolute !important;
  left: 15px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 10 !important;
  pointer-events: none !important;
  color: #6b7280 !important;
}

/* Ensure input text doesn't overlap with icons */
.hozicod_input_wrapper input[type="text"],
.hozicod_input_wrapper input[type="tel"],
.hozicod_input_wrapper input[type="email"] {
  padding-left: 45px !important;
  padding-right: 15px !important;
  text-align: right !important;
  direction: rtl !important;
}

/* Mobile specific adjustments */
@media (max-width: 768px) {
  .hozicod_input_wrapper i {
    left: 10px !important;
    font-size: 14px !important;
    z-index: 20 !important;
  }

  .hozicod_input_wrapper input[type="text"],
  .hozicod_input_wrapper input[type="tel"],
  .hozicod_input_wrapper input[type="email"] {
    padding-left: 35px !important;
    padding-right: 10px !important;
    font-size: 14px !important;
    min-height: 45px !important;
  }

  .hozicod_input_wrapper select {
    padding: 12px 35px 12px 10px !important;
    background-position: left 8px center !important;
    background-size: 14px !important;
    min-height: 45px !important;
  }

  /* Extra small screens */
  @media (max-width: 480px) {
    .hozicod_input_wrapper i {
      left: 8px !important;
      font-size: 12px !important;
    }

    .hozicod_input_wrapper input[type="text"],
    .hozicod_input_wrapper input[type="tel"],
    .hozicod_input_wrapper input[type="email"] {
      padding-left: 30px !important;
      padding-right: 8px !important;
      font-size: 13px !important;
    }

    .hozicod_input_wrapper select {
      padding: 10px 30px 10px 8px !important;
      background-position: left 6px center !important;
      background-size: 12px !important;
    }
  }
}

/* Dark Mode Support - Enhanced */
.hozicod_dark_mode_toggle {
  position: fixed !important;
  top: 20px !important;
  right: 20px !important;
  z-index: 999999 !important;
  background: #333 !important;
  color: white !important;
  border: none !important;
  border-radius: 50% !important;
  width: 50px !important;
  height: 50px !important;
  cursor: pointer !important;
  font-size: 18px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: none !important;
}

/* Force dark mode toggle to always be visible */
body .hozicod_dark_mode_toggle,
html .hozicod_dark_mode_toggle,
* .hozicod_dark_mode_toggle {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 999999 !important;
}

.hozicod_dark_mode_toggle:hover {
  background: #555;
  transform: scale(1.1);
}

/* Dark Theme Styles */
.hozicod_dark_theme .hozicod_instant_order_form {
  background: #2c3e50 !important;
  color: #ecf0f1 !important;
}

.hozicod_dark_theme .hozicod_instant_order_form input,
.hozicod_dark_theme .hozicod_instant_order_form select,
.hozicod_dark_theme .hozicod_instant_order_form textarea {
  background: #34495e !important;
  color: #ecf0f1 !important;
  border-color: #5a6c7d !important;
}

.hozicod_dark_theme .hozicod_instant_order_form input::placeholder,
.hozicod_dark_theme .hozicod_instant_order_form textarea::placeholder {
  color: #bdc3c7 !important;
}

.hozicod_dark_theme .hozicod_order_summary {
  background: #34495e !important;
  color: #ecf0f1 !important;
}

.hozicod_dark_theme .hozicod_order_summary_head {
  background: #2c3e50 !important;
  color: #ecf0f1 !important;
}

.hozicod_dark_theme .hozicod_input_wrapper i {
  color: #bdc3c7 !important;
}

/* Auto Dark Mode (based on system preference) */
@media (prefers-color-scheme: dark) {
  .hozicod_auto_dark .hozicod_instant_order_form {
    background: #2c3e50 !important;
    color: #ecf0f1 !important;
  }

  .hozicod_auto_dark .hozicod_instant_order_form input,
  .hozicod_auto_dark .hozicod_instant_order_form select,
  .hozicod_auto_dark .hozicod_instant_order_form textarea {
    background: #34495e !important;
    color: #ecf0f1 !important;
    border-color: #5a6c7d !important;
  }

  .hozicod_auto_dark .hozicod_instant_order_form input::placeholder,
  .hozicod_auto_dark .hozicod_instant_order_form textarea::placeholder {
    color: #bdc3c7 !important;
  }

  .hozicod_auto_dark .hozicod_order_summary {
    background: #34495e !important;
    color: #ecf0f1 !important;
  }

  .hozicod_auto_dark .hozicod_order_summary_head {
    background: #2c3e50 !important;
    color: #ecf0f1 !important;
  }

  .hozicod_auto_dark .hozicod_input_wrapper i {
    color: #bdc3c7 !important;
  }
}

/* Enhanced Order Summary */
.hozicod_order_summary {
  width: 100%;
  margin: 5px auto 10px auto; /* تقليل المسافة العلوية وتوسيط */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 2px solid #e0e6ed;
  background: #ffffff;
  max-width: 500px; /* تحديد عرض أقصى للتوسيط */
}

.hozicod_order_summary_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 18px 20px;
  user-select: none;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
}

.hozicod_order_summary_head:hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.hozicod_order_summary_head>i {
  transform: rotate(0);
  transition: all 0.4s ease;
}

.hozicod_order_summary.active .hozicod_order_summary_head>i {
  transform: rotate(180deg);
}

.hozicod_price_table {
  display: none;
  position: relative;
}

.hozicod_price_table table {
  margin-bottom: 0px;
}

.hozicod_order_summary.active .hozicod_price_table {
  display: block;
}

.hozicod_quantity>input {
  border: none !important;
  background: transparent !important;
  outline: none !important;
}

.hozicod_plus {
  border-left: 1px solid #d9d9d9;
}

.hozicod_minus {
  border-right: 1px solid #d9d9d9;
}

/* Enhanced Price Table */
.hozicod_price_table>table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  margin: 0;
}

.hozicod_price_table>table td {
  border: none;
  padding: 18px 20px;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.hozicod_price_table>table tr {
  border-bottom: 1px solid #f0f0f0;
}

.hozicod_price_table>table tr:last-child {
  border-bottom: none;
}

.hozicod_price_table>table tr:hover {
  background-color: #f8f9fa;
}

.hozicod_price_table>table td:first-child {
  text-align: right;
  font-weight: 600;
  color: #555;
  direction: rtl;
}

.hozicod_price_table>table td:last-child {
  text-align: left;
  font-weight: 700;
  color: #333;
}

/* Total Price Row Enhancement */
.hozicod_row_total_price {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  font-weight: 700;
}

.hozicod_row_total_price td {
  font-size: 16px;
  padding: 20px !important;
}

.hozicod_row_total_price td.total_price {
  color: #667eea !important;
  font-size: 18px;
}

/* Enhanced Bottom Section */
.hozicod_bottom_section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 2px solid #e0e6ed;
  border-top: none;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  gap: 15px;
}

/* Enhanced Free Shipping Badge */
.hozicod_free_shipping {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

/* Enhanced Sticky Footer */
.hozicod_sticky_footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 15px 20px;
  display: none;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  z-index: 9999;
  border-radius: 12px 12px 0 0;
}

.hozicod_buy_now {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  color: #667eea;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255,255,255,0.2);
}

.hozicod_buy_now:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.3);
  color: #764ba2;
}

/* Enhanced Footer Icons */
.hozicod_footer_icons {
  display: flex;
  gap: 15px;
}

.hozicod_footer_icons a {
  width: 45px;
  height: 45px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.hozicod_footer_icons a:hover {
  background: rgba(255,255,255,0.3);
  transform: scale(1.1);
}

.hozicod_btn_loader {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: none;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.hozicod_attributes {
  width: 100%;
}

.hozicod_single_attr label input {
  display: none !important;
}

.hozicod_single_attr {
  margin: 10px 0 !important;
  display: flex;
  align-items: center;
  gap: 5px;
}

.hozicod_single_attr label span {
  display: inline-block !important;
  border: 1px solid #d9d9d9 !important;
  padding: 3px 5px !important;
  border-radius: 3px !important;
  cursor: pointer !important;
  font-size: 13px !important;
}

.hozicod_single_attr label input:checked+span {
  background: transparent !important;
  color: #000 !important;
  border-color: #000 !important;
}

.hozicod_single_attr label {
  margin-bottom: 0px !important;
}

span.hozicod_attr_label {
  font-size: 15px !important;
  min-width: 50px !important;
  display: inline-block !important;
}

.hozicod_footer_icons {
  display: none;
  align-items: stretch;
  font-size: 18px;
  gap: 10px;
}

.hozicod_footer_icons a {
  display: inline-block;
  text-decoration: none !important;
}

.hozicod_footer_icons i {
  width: 46px;
  height: 46px;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.hozicod_footer_icons i.fa-phone {
  font-size: 18px;
}

.hozicod_sticky_footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: #fff;
  z-index: 5000;
  border-top: 1px solid #d9d9d9;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 10px;
  display: none;
  margin-bottom: 0px !important;
}

.hozicod_buy_now {
  display: block;
  padding: 10px 35px;
  border-radius: 5px;
  text-decoration: none !important;
  text-align: center;
  width: 250px;
}

span.hozicod_order_qty {
  background: #d9d9d9;
  color: #000;
  display: inline-block;
  padding: 3px 5px;
  border-radius: 5px;
  line-height: 1em;
  font-size: 10px;
  position: relative;
  left: -2px;
  font-weight: 600;
  top: -6px;
}

/* Enhanced Footer Icons for Desktop */
.hozicod_footer_icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.hozicod_footer_icons a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  font-size: 20px;
  position: relative;
  overflow: hidden;
}

.hozicod_footer_icons a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.hozicod_footer_icons a:hover::before {
  left: 100%;
}

.hozicod_footer_icons a[href^="tel:"] {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
}

.hozicod_footer_icons a[href*="wa.me"] {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}

.hozicod_footer_icons a:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.hozicod_footer_icons a.clicked {
  transform: scale(0.95);
  transition: transform 0.1s ease;
}

/* Pulse animation for contact buttons */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
  }
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.hozicod_phone_btn {
  animation: pulse 2s infinite;
}

.hozicod_whatsapp_btn {
  animation: whatsappPulse 2s infinite;
}

span.hozicod_free_shipping {
  background: #43A071;
  color: #fff;
  display: inline-block;
  padding: 3px 5px;
  border-radius: 5px;
  line-height: 1em;
  font-size: 10px;
  position: relative;
  left: -2px;
  font-weight: 600;
  top: -6px;
}

.hozicod_instant_order.hozicod_disabled {
  opacity: 0.5;
  pointer-events: none;
}

.hozicod_instant_order.ip_block {
  opacity: 0.5;
  pointer-events: none;
}

.hozicod_instant_order.cookie_block {
  opacity: 0.5;
  pointer-events: none;
}

.hozicod_instant_order.form-hide-for-desktop {
  display: none;
}

.hozicod_notice {
  background: #f8d7da;
  color: #721c24;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 15px;
  border: 1px solid #f5c6cb;
}

.hozicod_notice.hidden {
  display: none;
}

.hozicod_shipping_methods {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hozicod_shipping_methods li {
  margin: 5px 0;
}

.hozicod_shipping_methods label {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.hozicod_shipping_method {
  margin: 0 !important;
}

/* Enhanced Variations */
.hozicod_variations {
  width: 100%;
  list-style: none;
  padding: 15px; /* تقليل padding */
  margin: 10px 0 5px 0; /* تقليل margin السفلي أكثر */
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 2px solid #e0e6ed;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.hozicod_variations.modern_ui {
  display: flex;
  flex-direction: column;
  gap: 0px;
  text-align: center;
}

.attribute_modern_ui h4 {
  margin: 0 0 15px 0;
  font-size: 18px;
  font-weight: 700;
  color: #333;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

.attribute_modern_ui h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}

.attribute_modern_ui {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.attribute_modern_ui .attribute_options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin-right: 0px;
  margin-bottom: 0px;
}

/* Enhanced Radio/Checkbox Cards */
.attribute_inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 8px;
  margin-right: 0;
  margin-bottom: 10px;
}

.attribute_inner label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border: 2px solid #e0e6ed;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  font-weight: 500;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.10) !important;
  min-width: 60px;
  min-height: 32px;
  font-size: 15px;
  margin: 0;
  text-align: center;
}

.attribute_inner input:checked + label {
  border-color: #667eea;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  color: #fff !important;
  border-color: #a3bffa !important;
  box-shadow: 0 4px 16px rgba(102, 126, 234, 0.25) !important;
}

.attribute_inner label:hover {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.10);
  border-color: #667eea;
}

.attribute_inner label span, .attribute_inner label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.attribute_inner label::before {
  display: none;
}

@media (max-width: 600px) {
  .attribute_inner label {
    padding: 7px 10px;
    font-size: 13px;
    min-width: 40px;
    min-height: 28px;
  }
  .attribute_inner {
    gap: 6px 6px;
  }
}

.attribute_inner input {
  display: none;
}

.attribute_inner label {
  display: inline-block;
  padding: 12px 20px;
  border: 2px solid #e0e6ed;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  font-weight: 500;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  min-width: 80px;
  text-align: center;
}

.attribute_inner label::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
  transition: left 0.5s;
}

.attribute_inner label:hover::before {
  left: 100%;
}

.attribute_inner label:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border-color: #667eea;
}

.attribute_inner input:checked + label {
  border-color: #667eea;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.attribute_inner input:checked + label::after {
  content: '✓';
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  background: #28a745;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  animation: checkmark 0.3s ease;
}

@keyframes checkmark {
  0% { transform: scale(0) rotate(180deg); opacity: 0; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

.attribute_inner.attr_color label {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  padding: 0;
  border: 3px solid #ddd;
}

.attribute_inner.attr_color input:checked + label {
  border-color: #000;
}

.hozicod_placeholder {
  width: 100%;
  min-height: 20px;
}

.hozicod_hidden {
  display: none !important;
}

.order_loader_container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.hozicod_order_loader {
  width: 30px;
  height: 30px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hozicod_coupon_discount_row {
  display: none;
}

.hozicod_coupon_discount_row.show {
  display: table-row;
}

.variation_title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

.variation_title input[type="radio"] {
  display: none;
}

.variation_title label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 10px;
  border: 2px solid #ddd;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
}

.variation_title input:checked + label {
  border-color: #007cba;
  background: #f0f8ff;
}

.variation_title label::after {
  content: '';
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid #ddd;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.variation_title input:checked + label::after {
  background: #007cba;
  border-color: #007cba;
}

.variation_price {
  font-weight: 600;
  color: #007cba;
}

.regular_price {
  text-decoration: line-through;
  color: #999;
  margin-left: 5px;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
  .hozicod_instant_order_form {
    flex-direction: column;
    gap: 10px; /* تقليل المسافة */
    padding: 15px; /* تقليل padding */
    margin: 5px; /* تقليل margin */
    border-radius: 12px;
    width: calc(100% - 10px) !important; /* إصلاح العرض */
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .hozicod_input_wrapper,
  .hozicod_instant_order_form>input,
  .hozicod_instant_order_form>select,
  .hozicod_instant_order_form>textarea {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .hozicod_input_wrapper input,
  .hozicod_input_wrapper select,
  .hozicod_input_wrapper textarea {
    padding: 12px 12px 12px 40px !important;
    font-size: 16px !important; /* Prevents zoom on iOS */
  }

  .hozicod_quantity {
    width: 100%;
    min-width: auto;
    height: 50px;
  }

  .hozicod_checkout {
    width: 100% !important;
    padding: 15px 20px;
    font-size: 16px;
  }

  .hozicod_variations {
    padding: 15px;
    margin: 8px 0; /* تقليل المسافة */
  }

  .attribute_inner {
    margin-right: 8px;
    margin-bottom: 10px;
  }

  .attribute_inner label {
    padding: 10px 15px;
    font-size: 14px;
    min-width: 60px;
  }

  .hozicod_order_summary {
    margin: 5px auto 8px auto; /* تقليل المسافة وتوسيط */
    border-radius: 12px;
    width: 100% !important;
    max-width: 100% !important; /* عرض كامل على الموبايل */
    box-sizing: border-box !important;
  }

  .hozicod_price_table>table td {
    padding: 12px 15px;
    font-size: 13px;
  }

  .hozicod_bottom_section {
    padding: 15px;
    gap: 10px;
    border-radius: 0 0 12px 12px;
    flex-direction: column;
  }

  .hozicod_bottom_section .hozicod_quantity {
    width: 100%;
    order: 1;
  }

  .hozicod_bottom_section .hozicod_checkout {
    width: 100%;
    order: 2;
  }

  .hozicod_sticky_footer {
    padding: 12px 15px;
    display: flex;
  }

  .hozicod_buy_now {
    padding: 10px 20px;
    font-size: 14px;
  }

  .hozicod_footer_icons {
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .hozicod_footer_icons a {
    width: 45px;
    height: 45px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }

  .hozicod_footer_icons a[href^="tel:"] {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
  }

  .hozicod_footer_icons a[href*="wa.me"] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
  }

  .hozicod_footer_icons a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  }

  .hozicod_footer_icons a:active {
    transform: scale(0.95);
  }

  /* Mobile specific animations */
  .hozicod_phone_btn {
    animation: pulse 3s infinite;
  }

  .hozicod_whatsapp_btn {
    animation: whatsappPulse 3s infinite;
  }

  /* إصلاح قسم طرق الشحن في الهاتف */
  .hozicod_shipping_section {
    margin: 8px 0 !important; /* تقليل المسافة */
    padding: 15px !important;
  }

  .hozicod_shipping_section h3 {
    text-align: center !important; /* توسيط العنوان */
    margin-bottom: 15px !important;
  }
}

@media (max-width: 480px) {
  .hozicod_instant_order_form {
    padding: 12px; /* تقليل padding أكثر */
    margin: 3px; /* تقليل margin أكثر */
    gap: 8px; /* تقليل المسافة بين العناصر */
  }

  .attribute_inner label {
    padding: 8px 12px;
    font-size: 12px;
    min-width: 50px;
  }

  .hozicod_order_summary_head {
    padding: 12px; /* تقليل padding */
  }

  .hozicod_price_table>table td {
    padding: 8px 10px; /* تقليل padding */
    font-size: 12px;
  }

  .hozicod_buy_now {
    padding: 8px 15px;
    font-size: 13px;
  }

  .hozicod_variations {
    padding: 10px; /* تقليل padding */
    margin: 6px 0; /* تقليل margin */
  }

  .hozicod_order_summary {
    margin: 6px 0; /* تقليل margin */
  }

  .hozicod_shipping_section {
    margin: 6px auto; /* تقليل المسافة وتوسيط */
    padding: 10px; /* تقليل padding */
    max-width: 100% !important; /* عرض كامل على الموبايل */
  }

  .hozicod_shipping_title {
    margin-bottom: 6px; /* تقليل المسافة */
    font-size: 14px; /* تقليل حجم الخط */
  }

  .hozicod_shipping_method_option {
    padding: 8px; /* تقليل padding */
  }

  /* Coupon responsive design */
  .hozicod_coupon_wrapper {
    flex-direction: column;
    gap: 8px;
  }

  .hozicod_coupon_btn {
    min-width: auto !important;
    width: 100% !important;
    padding: 12px 16px !important;
  }
}

/* Customer Tracking Styles */
.hozicod_customer_info {
  width: 100%;
  margin: 15px 0;
  background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
  border: 2px solid #4caf50;
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.1);
  animation: slideDown 0.3s ease-out;
}

.hozicod_customer_history {
  padding: 20px;
}

.hozicod_customer_header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(76, 175, 80, 0.2);
}

.hozicod_customer_header i {
  color: #4caf50;
  font-size: 18px;
  background: rgba(76, 175, 80, 0.1);
  padding: 8px;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hozicod_customer_header span {
  font-weight: 600;
  color: #2e7d32;
  font-size: 16px;
}

.hozicod_customer_details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hozicod_customer_stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.hozicod_customer_stat:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(5px);
}

.hozicod_customer_stat i {
  color: #4caf50;
  font-size: 16px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.hozicod_customer_stat span {
  color: #2e7d32;
  font-size: 14px;
  line-height: 1.4;
}

.hozicod_customer_stat strong {
  color: #1b5e20;
  font-weight: 600;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
    max-height: 0;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    max-height: 200px;
  }
}

/* Mobile responsive for customer info */
@media (max-width: 768px) {
  .hozicod_customer_info {
    margin: 10px 0;
  }

  .hozicod_customer_history {
    padding: 15px;
  }

  .hozicod_customer_header span {
    font-size: 14px;
  }

  .hozicod_customer_stat {
    padding: 8px 12px;
  }

  .hozicod_customer_stat span {
    font-size: 13px;
  }
}

/* License Tab Styles */
.hozicod_license_promotion {
  margin-bottom: 30px !important;
}

.hozicod_promo_card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  border-radius: 20px !important;
  padding: 40px !important;
  color: white !important;
  text-align: center !important;
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4) !important;
  border: 3px solid #4f46e5 !important;
  position: relative !important;
  overflow: hidden !important;
  margin-bottom: 40px !important;
}

.hozicod_promo_card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: rotate(45deg);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.hozicod_promo_icon {
  font-size: 48px;
  margin-bottom: 20px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

.hozicod_promo_content h2 {
  font-size: 28px !important;
  margin-bottom: 20px !important;
  font-weight: 800 !important;
  text-shadow: 0 3px 6px rgba(0,0,0,0.4) !important;
  letter-spacing: 0.5px !important;
  color: white !important;
}

.hozicod_promo_content p {
  font-size: 18px !important;
  margin-bottom: 30px !important;
  line-height: 1.7 !important;
  opacity: 0.95 !important;
  font-weight: 500 !important;
  color: white !important;
}

.hozicod_purchase_btn {
  display: inline-block !important;
  background: linear-gradient(45deg, #ffffff, #f8fafc) !important;
  color: #4f46e5 !important;
  padding: 18px 40px !important;
  border-radius: 50px !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  transition: all 0.4s ease !important;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3) !important;
  position: relative !important;
  z-index: 1 !important;
  border: 2px solid rgba(255,255,255,0.3) !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

.hozicod_purchase_btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(0,0,0,0.4);
  color: #4f46e5;
  text-decoration: none;
  background: linear-gradient(45deg, #f8fafc, #ffffff);
}

.hozicod_license_section {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%) !important;
  border-radius: 20px !important;
  padding: 35px !important;
  border: 2px solid #e2e8f0 !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
  margin-top: 20px !important;
}

.hozicod_license_section h3 {
  color: #1e293b !important;
  font-size: 24px !important;
  margin-bottom: 25px !important;
  font-weight: 700 !important;
  border-bottom: 3px solid #4f46e5 !important;
  padding-bottom: 15px !important;
  text-align: center !important;
  position: relative !important;
}

.hozicod_license_section h3::after {
  content: '' !important;
  position: absolute !important;
  bottom: -3px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 60px !important;
  height: 3px !important;
  background: linear-gradient(45deg, #667eea, #764ba2) !important;
  border-radius: 2px !important;
}

.hozicod_license_section .hozicod_form_group {
  display: flex !important;
  align-items: center !important;
  gap: 15px !important;
  margin-bottom: 25px !important;
}

.hozicod_license_section .hozicod_form_group label {
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #374151 !important;
  min-width: 120px !important;
}

.hozicod_license_input {
  flex: 1 !important;
  padding: 15px 20px !important;
  border: 2px solid #e2e8f0 !important;
  border-radius: 12px !important;
  font-size: 16px !important;
  transition: all 0.3s ease !important;
  background: #ffffff !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05) !important;
}

.hozicod_license_input:focus {
  border-color: #4f46e5 !important;
  outline: none !important;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.15) !important;
  transform: translateY(-1px) !important;
}

.hozicod_activate_btn {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%) !important;
  color: white !important;
  border: none !important;
  padding: 15px 30px !important;
  border-radius: 12px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  font-size: 16px !important;
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.hozicod_activate_btn:hover {
  background: linear-gradient(135deg, #4338ca 0%, #6d28d9 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4) !important;
}

.hozicod_activate_btn:active {
  transform: translateY(0) !important;
}

.hozicod_license_status {
  margin-top: 25px;
}

.hozicod_status_card {
  display: flex !important;
  align-items: center !important;
  padding: 25px !important;
  border-radius: 15px !important;
  border: 3px solid !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important;
  position: relative !important;
  overflow: hidden !important;
}

.hozicod_status_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.hozicod_status_card:hover::before {
  left: 100%;
}

.hozicod_status_card.valid {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%) !important;
  border-color: #10b981 !important;
  color: #065f46 !important;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3) !important;
}

.hozicod_status_card.inactive {
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%) !important;
  border-color: #ef4444 !important;
  color: #991b1b !important;
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3) !important;
}

.hozicod_status_icon {
  font-size: 32px;
  margin-right: 20px;
  margin-left: 20px;
  animation: pulse 2s infinite;
}

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

.hozicod_status_card.valid .hozicod_status_icon {
  color: #10b981;
  text-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
}

.hozicod_status_card.inactive .hozicod_status_icon {
  color: #ef4444;
  text-shadow: 0 2px 4px rgba(239, 68, 68, 0.3);
}

.hozicod_status_content h4 {
  margin: 0 0 8px 0 !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1) !important;
}

.hozicod_status_content p {
  margin: 0 !important;
  font-size: 16px !important;
  opacity: 0.9 !important;
  font-weight: 500 !important;
}

.hozicod_license_message {
  margin-top: 20px !important;
  padding: 20px 25px !important;
  border-radius: 15px !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  text-align: center !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
  position: relative !important;
  overflow: hidden !important;
}

.hozicod_license_message::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
  animation: shimmer 2s infinite;
}

.hozicod_license_message.success {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%) !important;
  color: #065f46 !important;
  border: 2px solid #10b981 !important;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3) !important;
}

.hozicod_license_message.error {
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%) !important;
  color: #991b1b !important;
  border: 2px solid #ef4444 !important;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3) !important;
}

/* Mobile responsive for license tab */
@media (max-width: 768px) {
  .hozicod_promo_card {
    padding: 20px;
  }

  .hozicod_promo_content h2 {
    font-size: 20px;
  }

  .hozicod_promo_content p {
    font-size: 14px;
  }

  .hozicod_purchase_btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  .hozicod_license_input {
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0;
  }

  .hozicod_activate_btn {
    width: 100%;
  }

  .hozicod_status_card {
    flex-direction: column;
    text-align: center;
  }

  .hozicod_status_icon {
    margin: 0 0 10px 0;
  }
}

/* License restriction styles */
.hozicod-license-restricted .hozicod_tab_title li:not([data-title="license"]) {
  opacity: 0.5 !important;
  pointer-events: none !important;
  position: relative !important;
}

.hozicod-license-restricted .hozicod_tab_title li:not([data-title="license"])::after {
  content: '🔒' !important;
  position: absolute !important;
  top: 50% !important;
  right: 10px !important;
  transform: translateY(-50%) !important;
  font-size: 14px !important;
}

.hozicod-license-restricted .hozicod_tab_content li:not([data-content="license"]) {
  display: none !important;
}

/* Force license tab to be active when restricted */
.hozicod-license-restricted .hozicod_tab_title li[data-title="license"] {
  background: #2196F3 !important;
  color: white !important;
}

.hozicod-license-restricted .hozicod_tab_content li[data-content="license"] {
  display: block !important;
}

/* License required message for quick order form */
.hozicod-license-required {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 2px solid #f59e0b;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
  margin: 20px 0;
}

.hozicod-license-required h3 {
  color: #92400e;
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 700;
}

.hozicod-license-required p {
  color: #92400e;
  font-size: 16px;
  margin: 0;
  font-weight: 500;
}

.hozicod-license-required .license-icon {
  font-size: 48px;
  margin-bottom: 20px;
  animation: bounce 2s infinite;
}

/* Additional license tab specific styles */
.hozicod_tab_content li[data-content="license"] {
  padding: 20px !important;
}

.hozicod_tab_content li[data-content="license"] .hozicod_license_promotion {
  margin-bottom: 30px !important;
}

.hozicod_tab_content li[data-content="license"] .hozicod_promo_card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  border-radius: 20px !important;
  padding: 40px !important;
  color: white !important;
  text-align: center !important;
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4) !important;
  border: 3px solid #4f46e5 !important;
  position: relative !important;
  overflow: hidden !important;
  margin-bottom: 40px !important;
}

.hozicod_tab_content li[data-content="license"] .hozicod_promo_content h2 {
  font-size: 28px !important;
  margin-bottom: 20px !important;
  font-weight: 800 !important;
  text-shadow: 0 3px 6px rgba(0,0,0,0.4) !important;
  letter-spacing: 0.5px !important;
  color: white !important;
}

.hozicod_tab_content li[data-content="license"] .hozicod_promo_content p {
  font-size: 18px !important;
  margin-bottom: 30px !important;
  line-height: 1.7 !important;
  opacity: 0.95 !important;
  font-weight: 500 !important;
  color: white !important;
}

.hozicod_tab_content li[data-content="license"] .hozicod_purchase_btn {
  display: inline-block !important;
  background: linear-gradient(45deg, #ffffff, #f8fafc) !important;
  color: #4f46e5 !important;
  padding: 18px 40px !important;
  border-radius: 50px !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  transition: all 0.4s ease !important;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3) !important;
  position: relative !important;
  z-index: 1 !important;
  border: 2px solid rgba(255,255,255,0.3) !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

.hozicod_tab_content li[data-content="license"] .hozicod_license_section {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%) !important;
  border-radius: 20px !important;
  padding: 35px !important;
  border: 2px solid #e2e8f0 !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
  margin-top: 20px !important;
}

.hozicod_tab_content li[data-content="license"] .hozicod_license_section h3 {
  color: #1e293b !important;
  font-size: 24px !important;
  margin-bottom: 25px !important;
  font-weight: 700 !important;
  border-bottom: 3px solid #4f46e5 !important;
  padding-bottom: 15px !important;
  text-align: center !important;
  position: relative !important;
}

.hozicod_tab_content li[data-content="license"] .hozicod_activate_btn {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%) !important;
  color: white !important;
  border: none !important;
  padding: 15px 30px !important;
  border-radius: 12px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  font-size: 16px !important;
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.hozicod_tab_content li[data-content="license"] .hozicod_license_input {
  flex: 1 !important;
  padding: 15px 20px !important;
  border: 2px solid #e2e8f0 !important;
  border-radius: 12px !important;
  font-size: 16px !important;
  transition: all 0.3s ease !important;
  background: #ffffff !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05) !important;
}

.hozicod_tab_content li[data-content="license"] .hozicod_status_card {
  display: flex !important;
  align-items: center !important;
  padding: 25px !important;
  border-radius: 15px !important;
  border: 3px solid !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important;
  position: relative !important;
  overflow: hidden !important;
}

.hozicod_tab_content li[data-content="license"] .hozicod_status_card.valid {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%) !important;
  border-color: #10b981 !important;
  color: #065f46 !important;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3) !important;
}

.hozicod_tab_content li[data-content="license"] .hozicod_status_card.inactive {
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%) !important;
  border-color: #ef4444 !important;
  color: #991b1b !important;
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3) !important;
}

/* Shipping Methods Section */
.hozicod_shipping_section {
  margin: 10px auto; /* توسيط المربع */
  padding: 15px; /* تقليل padding */
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border: 2px solid #e2e8f0;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  max-width: 500px; /* تحديد عرض أقصى للتوسيط */
  width: 100%; /* عرض كامل */
}

.hozicod_shipping_section:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}

.hozicod_shipping_title {
  display: flex;
  align-items: center;
  justify-content: center; /* توسيط العنوان */
  gap: 10px;
  margin-bottom: 10px; /* تقليل المسافة */
  font-weight: 600;
  font-size: 16px;
  color: #374151;
  padding-bottom: 8px; /* تقليل padding */
  border-bottom: 2px solid #e2e8f0;
  text-align: center; /* توسيط النص */
}

.hozicod_shipping_title i {
  color: #4f46e5;
  font-size: 18px;
}

.hozicod_shipping_methods_container {
  display: flex;
  flex-direction: column;
  gap: 8px; /* تقليل المسافة بين خيارات الشحن */
}

.hozicod_shipping_method_option {
  display: flex;
  align-items: center;
  padding: 12px; /* تقليل padding */
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hozicod_shipping_method_option:hover {
  border-color: #4f46e5;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.15);
  transform: translateY(-1px);
}

.hozicod_shipping_method_option.selected {
  border-color: #4f46e5;
  background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.2);
}

.hozicod_shipping_method_option input[type="radio"] {
  margin-right: 12px;
  margin-left: 12px;
  width: 18px;
  height: 18px;
  accent-color: #4f46e5;
}

.hozicod_shipping_method_label {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  color: #374151;
}

.hozicod_shipping_method_name {
  font-size: 15px;
  font-weight: 600;
}

.hozicod_shipping_method_price {
  font-size: 16px;
  font-weight: 700;
  color: #059669;
}

.hozicod_shipping_method_price.free {
  color: #10b981;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Animation for shipping section appearance */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hozicod_shipping_section.show {
  animation: slideDown 0.4s ease-out;
}

/* Shipping Messages Styling */
.no-shipping-info {
  text-align: center;
  padding: 15px;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 2px solid #f59e0b;
  border-radius: 12px;
  color: #92400e;
  font-weight: 600;
  margin: 10px 0;
  font-size: 14px;
}

.no-shipping {
  text-align: center;
  padding: 15px;
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  border: 2px solid #ef4444;
  border-radius: 12px;
  color: #dc2626;
  font-weight: 600;
  margin: 10px 0;
  font-size: 14px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .hozicod_shipping_section {
    margin: 8px 0; /* تقليل المسافة */
    padding: 12px; /* تقليل padding */
  }

  .hozicod_shipping_title {
    margin-bottom: 8px; /* تقليل المسافة */
    font-size: 15px; /* تقليل حجم الخط */
  }

  .hozicod_shipping_method_option {
    padding: 10px; /* تقليل padding */
  }

  .hozicod_shipping_method_label {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .hozicod_shipping_method_price {
    align-self: flex-end;
  }

  .hozicod_shipping_methods_container {
    gap: 6px; /* تقليل المسافة بين الخيارات */
  }
}