/* Global Styles - تصميم محسن وألوان متناسقة */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #64748b;
    --accent-color: #10b981;
    --accent-hover: #059669;
    --success-color: #22c55e;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --transition: all 0.2s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General Body and Typography */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--gray-50);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--gray-900);
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--gray-900);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* Header and Navigation */
header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    transition: var(--transition);
}

.navbar-brand:hover {
    color: var(--primary-dark) !important;
    transform: translateY(-1px);
}

/* Main Content Area */
.container {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* Hero Section */
.hero-section {
    min-height: 350px;
    background: linear-gradient(90deg, #e3f0ff 0%, #f8fafc 100%);
    padding: 60px 0 40px 0;
    position: relative;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a237e;
    letter-spacing: 1px;
}

.hero-desc {
    font-size: 1.25rem;
    color: #333;
}

.hero-icons i {
    color: #1976d2;
    background: #fff;
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.08);
}

/* Product Cards */
.card {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition);
    background: var(--white);
    box-shadow: var(--shadow);
    height: 100%;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: calc(100% - 200px);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.card-text {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    flex-grow: 1;
}

.btn-group {
    margin-top: auto;
}

.btn-group .btn {
    border-radius: var(--border-radius);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
    font-size: 0.875rem;
}

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

.btn-outline-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.text-muted {
    font-weight: 700;
    color: var(--accent-color) !important;
    font-size: 1.125rem;
}

/* Form Styles - تصميم محسن للفورم */
.product-form {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    margin-top: 3rem;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.product-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.product-form h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2rem;
    color: var(--gray-900);
    position: relative;
}

.product-form h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.product-form .form-group {
    margin-bottom: 2rem;
    position: relative;
}

.product-form .form-group label {
    font-weight: 700;
    color: var(--gray-700);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
}

.product-form .form-group label::before {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

.product-form .form-control {
    border-radius: var(--border-radius);
    border: 2px solid var(--border-color);
    padding: 1rem 1.25rem;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--gray-50);
    width: 100%;
    position: relative;
}

.product-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    outline: none;
    background: var(--white);
    transform: translateY(-1px);
}

.product-form .form-control:hover {
    border-color: var(--gray-300);
    background: var(--white);
}

.product-form .form-control[readonly] {
    background: var(--gray-100);
    color: var(--gray-600);
    cursor: not-allowed;
}

.product-form .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    color: var(--white);
    font-weight: 700;
    padding: 1.25rem 2rem;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    width: 100%;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1rem;
}

.product-form .btn-primary::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;
}

.product-form .btn-primary:hover::before {
    left: 100%;
}

.product-form .btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--accent-color));
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.product-form .btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

/* Form Animation */
.product-form {
    animation: slideInUp 0.6s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Input Icons */
.form-group {
    position: relative;
}

.form-group::after {
    content: '📦';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    pointer-events: none;
    opacity: 0.6;
}

.form-group:nth-child(3)::after {
    content: '⏰';
}

.product-form .form-control {
    padding-left: 50px;
}

/* ====== Notification Modern Style ====== */
.notification {
  position: fixed;
  top: 50%;
  right: 2.5%;
  transform: translateY(-50%) translateX(120%);
  min-width: 280px;
  max-width: 350px;
  z-index: 9999;
  padding: 1.1rem 1.5rem;
  border-radius: 1rem 0 1rem 1rem;
  font-size: 1.08rem;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 8px 32px rgba(27,110,194,0.18), 0 2px 8px rgba(0,0,0,0.08);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(.4,2,.6,1), opacity 0.4s;
}
.notification.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}
.notification.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(120%);
}
.notification.success {
  background: linear-gradient(90deg, #00b09b 60%, #1b6ec2 100%);
}
.notification.error {
  background: linear-gradient(90deg, #ff416c 60%, #ff4b2b 100%);
}
.notification.warning {
  background: linear-gradient(90deg, #ffe082 60%, #ffb300 100%);
  color: #333;
}

/* Footer */
.footer {
    background-color: var(--gray-800);
    color: var(--gray-300);
    padding: 2rem 0;
    text-align: center;
    font-size: 0.875rem;
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.footer a {
    color: var(--gray-300);
    transition: var(--transition);
}

.footer a:hover {
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 1rem;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .product-form {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .notification {
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    .product-form {
        padding: 1rem;
    }
}

/* Animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    animation: fadeInUp 0.6s ease-out;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
.card:nth-child(5) { animation-delay: 0.5s; }
.card:nth-child(6) { animation-delay: 0.6s; }

/* Utility Classes */
.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.text-center {
    text-align: center;
}

/* Focus States for Accessibility */
.btn:focus,
.form-control:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Loading States */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn:disabled:hover {
    transform: none;
}

/* Marketing Notification Banner */
.marketing-notification {
  background: linear-gradient(90deg, #1976d2 0%, #1565c0 100%);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.08);
  z-index: 1050;
  position: relative;
}

/* Unified Notification Styles */
.unified-notification {
  max-width: 420px;
  margin: 20px auto 0 auto;
  box-shadow: 0 4px 16px rgba(25, 118, 210, 0.10);
  border-radius: 12px;
  font-size: 1.1rem;
  direction: rtl;
  z-index: 1100;
  animation: notif-pop 0.5s;
}
@keyframes notif-pop {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Custom Navbar Styles */
.custom-navbar {
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.07);
}
.custom-navbar .navbar-brand {
  font-size: 1.4rem;
  color: #1976d2 !important;
}
.custom-navbar .nav-link {
  transition: color 0.2s, background 0.2s;
  border-radius: 6px;
  margin: 0 2px;
}
.custom-navbar .nav-link:hover, .custom-navbar .nav-link.active {
  color: #fff !important;
  background: #1976d2;
}
.custom-navbar .btn-success {
  background: linear-gradient(90deg, #43e97b 0%, #38f9d7 100%);
  border: none;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(67, 233, 123, 0.10);
  transition: background 0.2s;
}
.custom-navbar .btn-success:hover {
  background: linear-gradient(90deg, #1976d2 0%, #38f9d7 100%);
}

/* Footer Styles */
.footer {
  background: #f8fafc;
  border-top: 2px solid #e3f0ff;
  font-size: 1rem;
  color: #333;
}
.footer-brand {
  font-size: 1.1rem;
  color: #1976d2;
  font-weight: 600;
}
.footer-links a {
  color: #1976d2;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #1565c0;
  text-decoration: underline;
}
.footer-social a {
  font-size: 1.3rem;
  margin: 0 4px;
  transition: color 0.2s;
}
.footer-social a.text-success:hover {
  color: #25d366 !important;
}
.footer-social a.text-danger:hover {
  color: #c62828 !important;
}

/* Popup Notification Banner (Promo) */
.notification-banner {
  position: fixed;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 340px;
  max-width: 95vw;
  background: linear-gradient(90deg, #1976d2 0%, #1565c0 100%);
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(25, 118, 210, 0.18);
  z-index: 2000;
  padding: 1.2rem 2.2rem 1.2rem 3.2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  font-size: 1.08rem;
  font-weight: 600;
  animation: notif-fade-in 0.7s;
}
.notification-banner .notification-content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.notification-banner .close-btn {
  position: absolute;
  top: 10px;
  left: 12px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.notification-banner .close-btn:hover {
  opacity: 1;
}
@keyframes notif-fade-in {
  0% { opacity: 0; transform: translate(-50%, -30px) scale(0.95); }
  100% { opacity: 1; transform: translate(-50%, 0) scale(1); }
}
@media (max-width: 600px) {
  .notification-banner {
    min-width: 90vw;
    padding: 0.7rem 1.2rem 0.7rem 2.2rem;
    font-size: 0.98rem;
  }
}

/* ====== Promo Popup Notification Modern Style ====== */
.promo-popup {
  position: fixed;
  bottom: 2.5%;
  right: 2.5%;
  min-width: 320px;
  max-width: 370px;
  background: #fff;
  color: #1b6ec2;
  border-radius: 1.1rem;
  box-shadow: 0 8px 32px rgba(27,110,194,0.18), 0 2px 8px rgba(0,0,0,0.08);
  padding: 1.2rem 1.5rem 1.2rem 1.2rem;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s, transform 0.4s;
  transform: translateY(40px);
}
.promo-popup.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.promo-popup .close-btn {
  position: absolute;
  top: 0.5rem;
  left: 0.7rem;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: #888;
  cursor: pointer;
  transition: color 0.2s;
}
.promo-popup .close-btn:hover {
  color: #e53935;
}
.promo-popup .promo-content span {
  display: block;
  font-size: 1.01rem;
  margin-bottom: 0.15rem;
}
@media (max-width: 600px) {
  .promo-popup {
    min-width: 90vw;
    max-width: 98vw;
    right: 1vw;
    left: 1vw;
    padding: 1rem 0.7rem 1rem 0.7rem;
  }
}

/* Admin Product Form Styles */
.admin-form-page {
  background: #f8fafc;
  min-height: 100vh;
  padding: 2.5rem 0;
}
.form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.form-header h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #1976d2;
}
.form-container {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(25, 118, 210, 0.08);
  padding: 2.5rem 2rem 2rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.form-group label {
  font-weight: 600;
  color: #1a237e;
}
.form-group input[type="file"] {
  margin-top: 0.5rem;
}
.current-image {
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.10);
  margin-bottom: 0.7rem;
  max-width: 100%;
  max-height: 180px;
  object-fit: contain;
  background: #f3f4f6;
}
.image-preview {
  margin-top: 0.7rem;
  text-align: center;
}
.image-preview img {
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.10);
  max-width: 100%;
  max-height: 180px;
  object-fit: contain;
  background: #f3f4f6;
}
.form-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .form-container {
    padding: 1.2rem 0.5rem;
  }
  .form-header h1 {
    font-size: 1.3rem;
  }
}



/* Product Detail Page Enhancements */
.product-detail-img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 3px solid var(--white);
}

.product-detail-img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

/* Reviews Section Styling */
.reviews-section {
    background: var(--white);
    padding: 4rem 0;
    margin-top: 4rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* Add Review Form */
.add-review-section {
    background: var(--gray-50);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    margin-bottom: 3rem;
    border: 1px solid var(--border-color);
}

.add-review-section h3 {
    color: var(--gray-900);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.review-form .form-group {
    margin-bottom: 1.5rem;
}

.review-form label {
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
    display: block;
}

.review-form .form-control {
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    transition: var(--transition);
    background: var(--white);
}

.review-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}

/* Rating Input Styling */
.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.25rem;
    margin-top: 0.5rem;
}

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

.rating-input label {
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--gray-300);
    transition: var(--transition);
    margin-bottom: 0;
}

.rating-input label:hover,
.rating-input label:hover ~ label,
.rating-input input[type="radio"]:checked ~ label {
    color: #fbbf24;
    transform: scale(1.1);
}

.rating-input label:hover {
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

/* Reviews List */
.reviews-list {
    margin-top: 2rem;
}

.review-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.review-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info h4 {
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.review-date {
    color: var(--text-light);
    font-size: 0.875rem;
    background: var(--gray-100);
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius);
}

.review-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.no-reviews {
    padding: 3rem;
    color: var(--text-light);
}

.no-reviews i {
    margin-bottom: 1rem;
}

.no-reviews h4 {
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

/* Back Section */
.back-section {
    padding: 2rem 0;
    text-align: center;
}

.back-section .btn {
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.back-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Focus Indicators for Accessibility */
.btn:focus-visible,
.form-control:focus-visible,
input[type="radio"]:focus-visible + label {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ====== Product Card Modern Style & Animation ====== */
.product-card {
  border-radius: 1.2rem;
  box-shadow: 0 2px 16px rgba(27,110,194,0.10), 0 1.5px 6px rgba(0,0,0,0.04);
  background: #fff;
  overflow: hidden;
  border: none;
  padding: 0;
  margin-bottom: 1.5rem;
  transition: box-shadow 0.25s, transform 0.18s;
}
.product-card:hover {
  box-shadow: 0 8px 32px rgba(27,110,194,0.18), 0 2px 8px rgba(0,0,0,0.08);
  transform: translateY(-6px) scale(1.02);
}
.product-card .card-img-top {
  border-radius: 1.2rem 1.2rem 0 0;
  object-fit: cover;
  min-height: 180px;
  max-height: 180px;
  width: 100%;
}
.product-card .card-body {
  padding: 1.1rem 1.2rem 0.5rem 1.2rem;
}
.product-card .card-title {
  font-weight: bold;
  color: #222;
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}
.product-card .card-text {
  color: #6c757d;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.product-card .product-meta {
  color: #8a98a9;
  font-size: 0.98rem;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.product-card .product-meta i {
  color: #b0b8c1;
}
.product-card .card-footer {
  background: transparent;
  border: none;
  padding: 0 1.2rem 1.1rem 1.2rem;
}
.product-card .btn-modern {
  width: 100%;
  background: #e3edfa;
  color: #1b6ec2;
  border-radius: 0.7rem;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 0.7rem 0;
  transition: background 0.18s, color 0.18s;
  box-shadow: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.product-card .btn-modern:hover {
  background: #d0e3fa;
  color: #005fa3;
}

/* ====== Animation for Buttons ====== */
.btn, .btn-primary, .btn-success {
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn:active, .btn-primary:active, .btn-success:active {
  transform: scale(0.97);
  box-shadow: 0 1px 4px rgba(0,0,0,0.10);
}

/* ====== Marketing Notification Modern Style ====== */
#marketingNotification {
  background: linear-gradient(90deg, #1b6ec2 60%, #00b09b 100%);
  color: #fff;
  font-size: 1.08rem;
  font-weight: 600;
  border-radius: 1rem 0 1rem 1rem;
  box-shadow: 0 8px 32px rgba(27,110,194,0.18), 0 2px 8px rgba(0,0,0,0.08);
  padding: 1.1rem 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(.4,2,.6,1), opacity 0.4s;
  position: fixed;
  top: 50%;
  right: 2.5%;
  transform: translateY(-50%) translateX(120%);
  min-width: 260px;
  max-width: 350px;
  z-index: 99999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
#marketingNotification.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}
#marketingNotification.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(120%);
}

