/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;900&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  /* Color System */
  --primary-navy: #1D305F;
  --primary-navy-dark: #0D162F;
  --primary-navy-light: #2C4580;
  --accent-gold: #D3B58D;
  --accent-gold-dark: #B9996E;
  --accent-gold-light: #ECD5B6;
  
  --bg-cream-light: #FAF8F5;
  --bg-white: #FFFFFF;
  --bg-dark-glass: rgba(13, 22, 47, 0.85);
  
  --text-dark: #1F283C;
  --text-muted: #626D85;
  --text-white: #FFFFFF;
  --text-gold: #C5A478;

  --border-color: rgba(211, 181, 141, 0.25);
  --border-light: rgba(29, 48, 95, 0.08);
  
  --shadow-sm: 0 4px 6px -1px rgba(13, 22, 47, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(13, 22, 47, 0.08), 0 4px 6px -2px rgba(13, 22, 47, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(13, 22, 47, 0.1), 0 10px 10px -5px rgba(13, 22, 47, 0.04);
  --shadow-gold: 0 0 20px rgba(211, 181, 141, 0.4);

  /* Easing */
  --spring-easing: cubic-bezier(0.34, 1.56, 0.64, 1);
  --smooth-easing: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Tajawal', 'Montserrat', sans-serif;
  background-color: var(--bg-cream-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  direction: rtl; /* Arabic first layout */
}

/* Scrollbar customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-cream-light);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-navy-light);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--primary-navy);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s var(--smooth-easing);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Premium Header / Navbar */
header {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-gold);
  transition: transform 0.5s var(--spring-easing);
}

.logo-wrapper:hover .logo-img {
  transform: rotate(360deg) scale(1.1);
}

.logo-text {
  font-size: 24px;
  font-weight: 900;
  color: var(--primary-navy);
  letter-spacing: 1px;
}

.logo-text span {
  color: var(--accent-gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Navigation Tracking Search Widget */
.tracking-widget {
  display: flex;
  align-items: center;
  position: relative;
}

.tracking-input {
  background: var(--bg-cream-light);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  padding: 8px 16px 8px 45px;
  font-family: inherit;
  font-size: 14px;
  width: 180px;
  transition: all 0.4s var(--spring-easing);
  color: var(--primary-navy);
}

.tracking-input:focus {
  width: 260px;
  border-color: var(--primary-navy);
  outline: none;
  box-shadow: 0 0 10px rgba(29, 48, 95, 0.1);
}

.tracking-btn {
  position: absolute;
  left: 5px;
  background: var(--primary-navy);
  color: white;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s var(--spring-easing);
}

.tracking-btn:hover {
  background: var(--accent-gold);
  transform: scale(1.1);
}

/* Floating Cart Button */
.cart-trigger {
  background: var(--primary-navy);
  color: var(--text-white);
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s var(--spring-easing);
  position: relative;
}

.cart-trigger:hover {
  background: var(--accent-gold);
  color: var(--primary-navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.cart-count {
  background: var(--accent-gold);
  color: var(--primary-navy-dark);
  font-size: 12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -5px;
  right: -5px;
  font-weight: 900;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary-navy-dark) 0%, var(--primary-navy) 100%);
  color: var(--text-white);
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
  border-bottom: 4px solid var(--accent-gold);
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 70% 30%, rgba(211, 181, 141, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 48px;
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: 20px;
  line-height: 1.2;
  animation: fadeInDown 0.8s var(--spring-easing);
}

.hero-title span {
  color: var(--accent-gold);
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.5px;
  animation: fadeInUp 0.8s var(--spring-easing) 0.2s both;
}

/* Search tracking result banner */
.tracking-result-banner {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(211, 181, 141, 0.3);
  border-radius: 15px;
  padding: 15px 25px;
  margin: 25px auto 0;
  max-width: 500px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  animation: scaleIn 0.5s var(--spring-easing);
}

.tracking-result-details {
  text-align: right;
}

.tracking-status-badge {
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 13px;
}

.status-pending { background: #F59E0B; color: white; }
.status-processing { background: #3B82F6; color: white; }
.status-shipped { background: #8B5CF6; color: white; }
.status-delivered { background: #10B981; color: white; }
.status-cancelled { background: #EF4444; color: white; }

/* Product Section */
.products-section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 15px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-gold);
  margin: 15px auto 0;
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 50px;
  font-size: 16px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

/* Card design mimicking Framer University high-fidelity style */
.product-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--spring-easing);
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  border: 2px solid transparent;
  pointer-events: none;
  transition: all 0.4s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-card:hover::before {
  border-color: var(--accent-gold);
}

.product-img-container {
  height: 260px;
  overflow: hidden;
  position: relative;
  background: #F0EDDF;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--spring-easing);
}

.product-card:hover .product-img {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-navy);
  color: var(--text-white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  border: 1px solid var(--accent-gold);
}

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: right;
}

.product-name {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary-navy);
}

.product-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 15px;
  flex-grow: 1;
}

.product-price-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.product-price {
  font-size: 20px;
  font-weight: 900;
  color: var(--accent-gold-dark);
}

.configure-btn {
  background: var(--primary-navy);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-card:hover .configure-btn {
  background: var(--accent-gold);
  color: var(--primary-navy-dark);
}

/* Modals System (Customizer Modal & Checkout Modal) */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-dark-glass);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--bg-white);
  border: 2px solid var(--accent-gold);
  border-radius: 24px;
  width: 100%;
  max-width: 600px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: scale(0.8) translateY(50px);
  transition: transform 0.5s var(--spring-easing);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.modal-overlay.active .modal-content {
  transform: scale(1) translateY(0);
}

.modal-header {
  padding: 20px 25px;
  background: var(--primary-navy);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--accent-gold);
}

.modal-title {
  font-size: 20px;
  font-weight: 900;
  color: var(--text-white);
}

.modal-close {
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.modal-close:hover {
  transform: rotate(90deg) scale(1.1);
  color: var(--accent-gold);
}

.modal-body {
  padding: 25px;
  overflow-y: auto;
  text-align: right;
}

/* Customizer Form Controls */
.config-group {
  margin-bottom: 20px;
}

.config-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary-navy);
}

/* Color Circle Picker */
.color-picker {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.color-option {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition: all 0.3s var(--spring-easing);
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--border-light);
}

.color-option.active {
  transform: scale(1.15);
  box-shadow: 0 0 0 2px var(--accent-gold);
}

.color-option::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.color-option.active::after {
  opacity: 1;
}

/* Specific colors */
.color-green { background-color: #2D5A27; }
.color-pink { background-color: #D65A84; }
.color-orange { background-color: #C15C3D; }
.color-white { background-color: #F3ECE1; }
.color-black { background-color: #1A1A1A; }
.color-royalblue { background-color: #1E3A8A; }
.color-grey { background-color: #6B7280; }
.color-lightblue { background-color: #60A5FA; }

/* TextInput with Floating Placeholder Effect */
.input-text {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--border-light);
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  transition: all 0.3s ease;
  color: var(--primary-navy);
}

.input-text:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 10px rgba(211, 181, 141, 0.2);
  outline: none;
}

.char-counter {
  font-size: 11px;
  color: var(--text-muted);
  text-align: left;
  margin-top: 5px;
}

/* Modal Footer Buttons */
.modal-footer {
  padding: 20px 25px;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: flex-start;
  gap: 15px;
}

.btn {
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s var(--spring-easing);
  font-family: inherit;
  border: none;
}

.btn-primary {
  background: var(--primary-navy);
  color: white;
}

.btn-primary:hover {
  background: var(--accent-gold);
  color: var(--primary-navy-dark);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-secondary {
  background: #F3ECE1;
  color: var(--primary-navy);
}

.btn-secondary:hover {
  background: #E5D5C0;
  transform: translateY(-2px);
}

/* Shopping Cart Side Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  left: -400px; /* Slide from left to right */
  width: 400px;
  height: 100%;
  background: var(--bg-white);
  box-shadow: 10px 0 30px rgba(13, 22, 47, 0.15);
  z-index: 1001;
  transition: left 0.5s var(--spring-easing);
  display: flex;
  flex-direction: column;
}

.cart-drawer.active {
  left: 0;
}

.cart-drawer-header {
  padding: 20px 25px;
  background: var(--primary-navy);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--accent-gold);
}

.cart-drawer-body {
  padding: 25px;
  flex-grow: 1;
  overflow-y: auto;
  text-align: right;
}

.cart-empty {
  text-align: center;
  padding: 40px 0;
  color: var(--text-muted);
}

.cart-empty-icon {
  font-size: 48px;
  margin-bottom: 15px;
  color: var(--accent-gold);
}

/* Cart Item card */
.cart-item {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-light);
  align-items: center;
}

.cart-item-img {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  object-fit: cover;
  background: #F0EDDF;
  border: 1px solid var(--border-light);
}

.cart-item-details {
  flex-grow: 1;
  text-align: right;
}

.cart-item-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--primary-navy);
}

.cart-item-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 3px;
}

.cart-item-engrave {
  background: var(--bg-cream-light);
  border-right: 3px solid var(--accent-gold);
  padding: 2px 8px;
  margin-top: 5px;
  font-size: 12px;
  display: inline-block;
  color: var(--primary-navy);
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.cart-item-price {
  font-weight: 700;
  color: var(--accent-gold-dark);
}

.cart-item-remove {
  background: none;
  border: none;
  color: #EF4444;
  font-size: 13px;
  cursor: pointer;
}

.cart-drawer-footer {
  padding: 25px;
  border-top: 1px solid var(--border-light);
  background: var(--bg-cream-light);
}

.cart-summary-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 15px;
}

.cart-summary-line.total {
  font-weight: 900;
  font-size: 20px;
  color: var(--primary-navy);
  border-top: 1px solid var(--border-color);
  padding-top: 12px;
  margin-bottom: 20px;
}

/* Cart Overlay shadow */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 22, 47, 0.4);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.cart-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* checkout inputs */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

@media (max-width: 500px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }
}

/* Success panel animation */
.success-card {
  text-align: center;
  padding: 30px 10px;
}

.success-icon {
  width: 70px;
  height: 70px;
  background: #D1FAE5;
  color: #10B981;
  font-size: 32px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  animation: pulseSuccess 2s infinite;
}

.success-title {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--primary-navy);
}

.order-id-box {
  background: #FAF5ED;
  border: 2px dashed var(--accent-gold);
  border-radius: 12px;
  padding: 15px;
  margin: 20px auto;
  max-width: 300px;
  font-size: 22px;
  font-weight: 900;
  color: var(--primary-navy);
  letter-spacing: 2px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.order-id-box:hover {
  background: #FFF9F0;
  transform: scale(1.03);
}

.copy-notice {
  font-size: 11px;
  color: var(--text-gold);
  display: block;
  margin-top: 5px;
  font-weight: normal;
}

/* Admin Dashboard layout */
.admin-container {
  max-width: 1300px;
  margin: 40px auto;
  padding: 0 20px;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 20px;
}

.admin-title {
  font-size: 32px;
  font-weight: 900;
}

.admin-login-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-cream-light);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.admin-login-card {
  background: white;
  border: 2px solid var(--accent-gold);
  border-radius: 24px;
  width: 100%;
  max-width: 400px;
  padding: 40px 30px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

/* Table layout */
.orders-table-wrapper {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow-x: auto;
  box-shadow: var(--shadow-sm);
}

.orders-table {
  width: 100%;
  border-collapse: collapse;
  text-align: right;
}

.orders-table th {
  background: var(--primary-navy);
  color: white;
  padding: 15px 20px;
  font-weight: 700;
}

.orders-table td {
  padding: 15px 20px;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
}

.orders-table tr:hover {
  background: #FCFAF6;
}

.admin-status-select {
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  font-family: inherit;
  font-size: 13px;
  cursor: pointer;
  background: white;
  color: var(--primary-navy);
}

/* Animations */
@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  0% { opacity: 0; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes pulseSuccess {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Custom styles for detail expand */
.btn-details {
  background: none;
  border: 1px solid var(--primary-navy);
  color: var(--primary-navy);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-details:hover {
  background: var(--primary-navy);
  color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 15px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .cart-drawer {
    width: 100%;
    left: -100%;
  }
}

/* PixelCraft Footer Hover Style */
.pixelcraft-credit:hover {
  transform: translateY(-2px) scale(1.05);
  background: rgba(80, 250, 123, 0.08) !important;
  border-color: rgba(80, 250, 123, 0.3) !important;
  box-shadow: 0 4px 15px rgba(80, 250, 123, 0.15);
  cursor: pointer;
}

/* Instagram link in footer */
.instagram-link:hover {
  background: rgba(211, 181, 141, 0.1) !important;
  border-color: var(--accent-gold) !important;
  color: var(--accent-gold) !important;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 15px rgba(211, 181, 141, 0.15);
}

/* PixelCraft Instagram hover link in footer */
.pixelcraft-ig {
  transition: all 0.3s ease;
}

.pixelcraft-ig:hover {
  transform: translateY(-2px) scale(1.1);
  background: rgba(80, 250, 123, 0.08) !important;
  border-color: rgba(80, 250, 123, 0.3) !important;
  color: #50FA7B !important;
  box-shadow: 0 4px 15px rgba(80, 250, 123, 0.15);
}

/* 🔔 CUSTOM PREMIUM TOAST NOTIFICATION SYSTEM */
.custom-toast {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: rgba(13, 22, 47, 0.96);
  backdrop-filter: blur(16px) saturate(180%);
  color: white;
  padding: 14px 28px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 999999;
  border: 1.5px solid var(--accent-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 
              0 0 15px rgba(211, 181, 141, 0.15);
  transform: translateY(100px) scale(0.9);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  direction: rtl;
  font-family: 'Tajawal', sans-serif;
  font-weight: 700;
  font-size: 14px;
}

.custom-toast.active {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.toast-success {
  border-color: #50FA7B;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(80, 250, 123, 0.25);
}

.toast-error {
  border-color: #FF5555;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 85, 85, 0.25);
}

.toast-icon {
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toast-msg {
  letter-spacing: 0.2px;
}
