/* ============================================================
   TrioEnterprises — Custom CSS
   Dynamic Color System + Animations + Components
   ============================================================ */

/* ── Dynamic Color System (Change here → entire site updates) ── */
:root {
  --primary: #c22828;
  --primary-dark: #871e1e;
  --primary-medium: #a31f1f;
  --primary-light: #fbe5e5;
  --primary-hover: #b91c1c;
  --primary-rgb: 194, 40, 40;

  --accent: #d29d53;
  --accent-dark: #a46330;
  --accent-light: #fbf5ea;
  --accent-hover: #c48239;
  --accent-rgb: 210, 157, 83;

  --text-dark: #1F2937;
  --text-base: #374151;
  --text-light: #6B7280;
  --text-muted: #9CA3AF;
  --text-white: #FFFFFF;

  --bg-body: #F9FAFB;
  --bg-white: #FFFFFF;
  --bg-light: #F3F4F6;
  --bg-dark: #111827;
  --bg-darker: #0a0f1a;

  --border: #E5E7EB;
  --border-light: #F3F4F6;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --transition-fast: 0.15s ease;
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-body);
  color: var(--text-base);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  line-height: 1.3;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ── Custom Scrollbar ── */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-hover);
}

/* ── Selection ── */
::selection {
  background: var(--primary);
  color: white;
}

/* ── Animation Keyframes ── */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

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

@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes scaleIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes scaleUp {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

@keyframes bounceIn {
  0% { transform: scale(0.3); opacity: 0; }
  50% { transform: scale(1.05); }
  70% { transform: scale(0.9); }
  100% { transform: scale(1); opacity: 1; }
}

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

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

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

@keyframes ripple {
  0% { transform: scale(0); opacity: 0.6; }
  100% { transform: scale(4); opacity: 0; }
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInLeft {
  from { transform: translateX(-100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes heartBeat {
  0% { transform: scale(1); }
  14% { transform: scale(1.3); }
  28% { transform: scale(1); }
  42% { transform: scale(1.3); }
  70% { transform: scale(1); }
}

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

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

@keyframes dotPulse {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

/* ── Animation Utility Classes ── */
.animate-fadeIn { animation: fadeIn 0.6s ease forwards; }
.animate-fadeInUp { animation: fadeInUp 0.6s ease forwards; }
.animate-fadeInDown { animation: fadeInDown 0.6s ease forwards; }
.animate-fadeInLeft { animation: fadeInLeft 0.6s ease forwards; }
.animate-fadeInRight { animation: fadeInRight 0.6s ease forwards; }
.animate-scaleIn { animation: scaleIn 0.5s ease forwards; }
.animate-bounceIn { animation: bounceIn 0.8s ease forwards; }
.animate-pulse { animation: pulse 2s ease-in-out infinite; }
.animate-float { animation: float 3s ease-in-out infinite; }
.animate-shake { animation: shake 0.5s ease; }
.animate-heartBeat { animation: heartBeat 1.3s ease-in-out; }

.animate-delay-100 { animation-delay: 0.1s; }
.animate-delay-200 { animation-delay: 0.2s; }
.animate-delay-300 { animation-delay: 0.3s; }
.animate-delay-400 { animation-delay: 0.4s; }
.animate-delay-500 { animation-delay: 0.5s; }
.animate-delay-600 { animation-delay: 0.6s; }
.animate-delay-700 { animation-delay: 0.7s; }
.animate-delay-800 { animation-delay: 0.8s; }

/* Scroll-triggered animation */
.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-animate.animate-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Glassmorphism ── */
.glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-dark {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ── Gradient Text ── */
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Gradient Background ── */
.gradient-bg {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.gradient-bg-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

.gradient-bg-animated {
  background: linear-gradient(270deg, var(--primary), var(--accent), var(--primary-dark), var(--accent-dark));
  background-size: 400% 400%;
  animation: gradientShift 6s ease infinite;
}

/* ── Button Styles ── */
.btn-primary {
  background: var(--primary);
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.35);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-accent {
  background: var(--accent);
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-accent:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--accent-rgb), 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 10px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.btn-white {
  background: white;
  color: var(--primary-dark);
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-white:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Ripple effect */
.btn-ripple {
  position: relative;
  overflow: hidden;
}
.btn-ripple .ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

/* ── Product Card ── */
.product-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border-light);
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.product-card .product-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-light);
}
.product-card .product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-image-wrapper img {
  transform: scale(1.08);
}
.product-card .product-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(20px);
  transition: var(--transition);
}
.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}
.product-card .action-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
  color: var(--text-light);
  font-size: 0.9rem;
}
.product-card .action-btn:hover {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}
.product-card .action-btn.wishlisted {
  background: #EF4444;
  color: white;
}
.product-card .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-sale {
  background: #EF4444;
  color: white;
}
.badge-new {
  background: var(--primary);
  color: white;
}
.badge-hot {
  background: var(--accent);
  color: white;
}
.product-card .quick-view-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(var(--primary-rgb), 0.92);
  color: white;
  border: none;
  padding: 12px;
  font-weight: 600;
  cursor: pointer;
  transform: translateY(100%);
  transition: var(--transition);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}
.product-card:hover .quick-view-btn {
  transform: translateY(0);
}

/* ── Category Card ── */
.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  aspect-ratio: 1;
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.category-card:hover img {
  transform: scale(1.1);
}
.category-card .category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: var(--transition);
}
.category-card:hover .category-overlay {
  background: linear-gradient(to top, rgba(var(--primary-rgb), 0.85) 0%, rgba(0,0,0,0.1) 100%);
}

/* ── Header Styles ── */
.header-top {
  background: var(--bg-dark);
  color: var(--text-muted);
  font-size: 0.8rem;
  padding: 8px 0;
}
.header-main {
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}
.header-main.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}
.header-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-logo .logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  font-weight: 800;
}
.header-nav a {
  font-weight: 500;
  color: var(--text-base);
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}
.header-nav a:hover,
.header-nav a.active {
  color: var(--primary);
  background: var(--primary-light);
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
  transform: translateX(-50%);
}
.header-nav a:hover::after,
.header-nav a.active::after {
  width: 60%;
}
.header-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-base);
  transition: var(--transition);
  position: relative;
  cursor: pointer;
  background: transparent;
  border: none;
  font-size: 1.15rem;
}
.header-icon:hover {
  background: var(--primary-light);
  color: var(--primary);
}
.header-icon .badge-count {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 20px;
  height: 20px;
  background: #EF4444;
  color: white;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}

/* Search Bar */
.search-bar {
  position: relative;
  flex: 1;
  max-width: 500px;
}
.search-bar input {
  width: 100%;
  padding: 12px 20px 12px 46px;
  border: 2px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  transition: var(--transition);
  background: var(--bg-light);
  font-family: 'Inter', sans-serif;
}
.search-bar input:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1);
}
.search-bar .search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.95rem;
}
.search-bar .search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  z-index: 100;
  max-height: 400px;
  overflow-y: auto;
  display: none;
  border: 1px solid var(--border);
}
.search-bar .search-results.active {
  display: block;
  animation: fadeInDown 0.3s ease;
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  transition: var(--transition);
  cursor: pointer;
}
.search-result-item:hover {
  background: var(--primary-light);
}
.search-result-item img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
  padding: 8px;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}
.mobile-menu.active {
  display: block;
}
.mobile-menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  animation: fadeIn 0.3s ease;
}
.mobile-menu-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  background: white;
  padding: 24px;
  animation: slideInLeft 0.3s ease;
  overflow-y: auto;
}
.mobile-menu-panel .close-menu {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}
.mobile-menu-panel a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
  font-weight: 500;
  color: var(--text-dark);
  font-size: 1.05rem;
}
.mobile-menu-panel a:hover {
  color: var(--primary);
}

/* ── Footer ── */
.site-footer {
  background: var(--bg-dark);
  color: #D1D5DB;
}
.site-footer h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.site-footer h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}
.site-footer a {
  color: #9CA3AF;
  transition: var(--transition);
  display: inline-block;
}
.site-footer a:hover {
  color: var(--primary);
  transform: translateX(4px);
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9CA3AF;
  transition: var(--transition);
  font-size: 1rem;
}
.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-3px) translateX(0);
}

/* ── Back to Top Button ── */
#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
#back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.5);
}

/* ── Toast Notifications ── */
#toast-container {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.toast {
  background: white;
  padding: 16px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 300px;
  max-width: 400px;
  animation: slideInRight 0.4s ease;
  pointer-events: all;
  border-left: 4px solid var(--primary);
  position: relative;
}
.toast.toast-success { border-left-color: var(--primary); }
.toast.toast-error { border-left-color: #EF4444; }
.toast.toast-warning { border-left-color: var(--accent); }
.toast.toast-info { border-left-color: #3B82F6; }

.toast .toast-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}
.toast-success .toast-icon { color: var(--primary); }
.toast-error .toast-icon { color: #EF4444; }
.toast-warning .toast-icon { color: var(--accent); }
.toast-info .toast-icon { color: #3B82F6; }

.toast .toast-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.85rem;
  padding: 4px;
}
.toast.toast-exit {
  animation: slideInRight 0.3s ease reverse forwards;
}

/* ── Quick View Modal ── */
#quick-view-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#quick-view-modal.active {
  display: flex;
}
#quick-view-modal .modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  animation: fadeIn 0.3s ease;
}
#quick-view-modal .modal-content {
  position: relative;
  background: white;
  border-radius: var(--radius-lg);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  animation: scaleIn 0.4s ease;
  z-index: 1;
}
#quick-view-modal .modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-light);
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 2;
  color: var(--text-dark);
}
#quick-view-modal .modal-close:hover {
  background: #EF4444;
  color: white;
}

/* ── Hero Slider ── */
.hero-slider .swiper-slide {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
}
.hero-slider .slide-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 40px;
}
.hero-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: white;
  opacity: 0.5;
}
.hero-slider .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--primary);
  width: 30px;
  border-radius: 6px;
}
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
  color: white;
  background: rgba(var(--primary-rgb), 0.8);
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
  font-size: 1.2rem;
}

/* ── Flash Sale Countdown ── */
.countdown-box {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.countdown-item {
  background: var(--bg-dark);
  color: white;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  text-align: center;
  min-width: 56px;
}
.countdown-item .count-num {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  line-height: 1;
}
.countdown-item .count-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
  margin-top: 2px;
}
.countdown-separator {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  padding: 0 2px;
}

/* ── Stats Counter ── */
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

/* ── FAQ Accordion ── */
.faq-item {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border);
}
.faq-item:hover {
  border-color: var(--primary);
}
.faq-question {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
  gap: 12px;
}
.faq-question:hover {
  color: var(--primary);
}
.faq-question .faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
  color: var(--primary);
  font-size: 0.85rem;
}
.faq-item.active .faq-question .faq-toggle {
  background: var(--primary);
  color: white;
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
  color: var(--text-light);
  line-height: 1.7;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px;
}

/* ── Testimonial Card ── */
.testimonial-card {
  background: white;
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
  border: 1px solid var(--border-light);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.testimonial-card .quote-icon {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 3rem;
  color: var(--primary-light);
}
.testimonial-card .stars {
  color: var(--accent);
  margin-bottom: 16px;
  font-size: 0.9rem;
}
.testimonial-card .testimonial-text {
  color: var(--text-light);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card .testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

/* ── Section Title ── */
.section-title {
  text-align: center;
  margin-bottom: 48px;
}
.section-title .subtitle {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  display: block;
}
.section-title h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.section-title p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
}
.section-title .title-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ── Service Card ── */
.service-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: white;
  border-radius: var(--radius);
  transition: var(--transition);
  border: 1px solid var(--border-light);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}
.service-card .service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--primary);
  color: white;
}

/* ── Star Rating ── */
.star-rating {
  color: var(--accent);
  font-size: 0.85rem;
  display: inline-flex;
  gap: 2px;
}

/* ── Price ── */
.price {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--primary-dark);
}
.price-original {
  text-decoration: line-through;
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.85em;
}
.price-discount {
  color: #EF4444;
  font-weight: 600;
  font-size: 0.85em;
}

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 16px 0;
  font-size: 0.9rem;
  color: var(--text-light);
}
.breadcrumb a {
  color: var(--text-light);
}
.breadcrumb a:hover {
  color: var(--primary);
}
.breadcrumb .separator {
  color: var(--text-muted);
  font-size: 0.7rem;
}
.breadcrumb .current {
  color: var(--primary);
  font-weight: 500;
}

/* ── Page Banner ── */
.page-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.page-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}
.page-banner h1 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

/* ── Form Styles ── */
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: var(--text-dark);
  font-size: 0.9rem;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  transition: var(--transition);
  background: white;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1);
}
.form-control::placeholder {
  color: var(--text-muted);
}
.form-control.error {
  border-color: #EF4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}
.error-message {
  color: #EF4444;
  font-size: 0.8rem;
  margin-top: 4px;
}

/* ── Tabs ── */
.tabs-nav {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 24px;
}
.tab-btn {
  padding: 12px 24px;
  border: none;
  background: none;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
}
.tab-btn:hover {
  color: var(--primary);
}
.tab-btn.active {
  color: var(--primary);
}
.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
}
.tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}
.tab-content.active {
  display: block;
}

/* ── Order Status ── */
.order-status {
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.status-processing {
  background: #FEF3C7;
  color: #92400E;
}
.status-shipped {
  background: #DBEAFE;
  color: #1E40AF;
}
.status-delivered {
  background: var(--primary-light);
  color: var(--primary-dark);
}
.status-cancelled {
  background: #FEE2E2;
  color: #991B1B;
}

/* ── Tracking Timeline ── */
.tracking-timeline {
  position: relative;
  padding: 20px 0;
}
.tracking-step {
  display: flex;
  gap: 20px;
  padding-bottom: 40px;
  position: relative;
}
.tracking-step:last-child {
  padding-bottom: 0;
}
.tracking-step::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 40px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.tracking-step:last-child::before {
  display: none;
}
.tracking-step.completed::before {
  background: var(--primary);
}
.tracking-dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 3px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--text-muted);
  z-index: 1;
  transition: var(--transition);
}
.tracking-step.completed .tracking-dot {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}
.tracking-step.active .tracking-dot {
  background: white;
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.2);
}

/* ── Payment Card ── */
.payment-card {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: white;
  max-width: 420px;
  aspect-ratio: 1.586;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.payment-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

/* ── Skeleton Loading ── */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  border-radius: var(--radius);
}

/* ── Loading Spinner ── */
.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: rotate 0.8s linear infinite;
}

/* ── Instagram Grid ── */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.instagram-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}
.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.instagram-item:hover img {
  transform: scale(1.1);
}
.instagram-item .instagram-overlay {
  position: absolute;
  inset: 0;
  background: rgba(var(--primary-rgb), 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: white;
  font-size: 1.5rem;
}
.instagram-item:hover .instagram-overlay {
  opacity: 1;
}

/* ── Brand Logo ── */
.brand-logo {
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: var(--transition);
  font-size: 2.5rem;
  color: var(--text-light);
}
.brand-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  color: var(--primary);
}

/* ── Blog Card ── */
.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border-light);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.blog-card .blog-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-card .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-image img {
  transform: scale(1.05);
}
.blog-card .blog-date {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: white;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
}

/* ── Google Sign-In Button ── */
.btn-google {
  background: white;
  color: var(--text-dark);
  border: 2px solid var(--border);
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  justify-content: center;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
}
.btn-google:hover {
  border-color: var(--primary);
  background: var(--primary-light);
}
.btn-google img {
  width: 20px;
  height: 20px;
}

/* ── Quantity Selector ── */
.qty-selector {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.qty-selector button {
  width: 40px;
  height: 40px;
  background: var(--bg-light);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: var(--text-dark);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-selector button:hover {
  background: var(--primary);
  color: white;
}
.qty-selector input {
  width: 50px;
  height: 40px;
  text-align: center;
  border: none;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
}
.qty-selector input:focus {
  outline: none;
}

/* ── Pagination ── */
.pagination {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  margin-top: 40px;
}
.pagination button {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: white;
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition);
  color: var(--text-base);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
}
.pagination button:hover,
.pagination button.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* ── Newsletter ── */
.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-right: none;
  border-radius: var(--radius-full) 0 0 var(--radius-full);
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
}
.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.6);
}
.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent);
}
.newsletter-form button {
  padding: 14px 28px;
  background: var(--accent);
  color: white;
  border: 2px solid var(--accent);
  border-radius: 0 var(--radius-full) var(--radius-full) 0;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}
.newsletter-form button:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

/* ── Divider ── */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-muted);
  margin: 24px 0;
}
.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-slider .swiper-slide {
    height: 450px;
  }
  .section-title h2 {
    font-size: 1.8rem;
  }
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  .header-nav {
    display: none;
  }
  .header-main .search-bar {
    display: none;
  }
  .hero-slider .swiper-slide {
    height: 400px;
  }
  .hero-slider .slide-content h1 {
    font-size: 1.8rem !important;
  }
  .section-title h2 {
    font-size: 1.5rem;
  }
  .page-banner h1 {
    font-size: 1.8rem;
  }
  .stat-number {
    font-size: 2rem;
  }
  .newsletter-form {
    flex-direction: column;
    gap: 12px;
  }
  .newsletter-form input,
  .newsletter-form button {
    border-radius: var(--radius-full);
    border: 2px solid rgba(255,255,255,0.3);
  }
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  #back-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
  .countdown-item {
    padding: 6px 8px;
    min-width: 44px;
  }
  .countdown-item .count-num {
    font-size: 1.1rem;
  }
  #toast-container {
    right: 10px;
    left: 10px;
  }
  .toast {
    min-width: auto;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .hero-slider .swiper-slide {
    height: 350px;
  }
  .hero-slider .slide-content {
    padding: 20px;
  }
  .hero-slider .slide-content h1 {
    font-size: 1.4rem !important;
  }
  .section-title h2 {
    font-size: 1.3rem;
  }
  .page-banner {
    padding: 40px 0;
  }
  .page-banner h1 {
    font-size: 1.4rem;
  }
}

/* ── Print ── */
@media print {
  .header-top,
  .header-main,
  .site-footer,
  #back-to-top,
  #toast-container {
    display: none !important;
  }
}

/* -- Breadcrumb Highlights -- */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.breadcrumb a {
  position: relative;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}
.breadcrumb a:hover {
  background: var(--accent);
  color: white !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.breadcrumb .current {
  font-weight: 700;
  color: var(--accent-light);
  background: rgba(0,0,0,0.25);
  padding: 4px 12px;
  border-radius: 4px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}




.header-nav ul{
    display:flex;
    align-items:center;
    gap:4px;
    margin:0;
    padding:0;
    list-style:none;
}

.header-nav li{
    list-style:none;
}

.header-nav a{
    padding:10px 16px;
    border-radius:8px;
    font-weight:500;
    transition:.3s;
}

.header-nav .current-menu-item a,
.header-nav .current_page_item a{
    color:#c22828;
}


.mobile-menu-links ul{
    margin:0;
    padding:0;
    list-style:none;
}

.mobile-menu-links li{
    display:block;
}

.mobile-menu-links a{
    display:block;
    padding:12px 15px;
}





/* ================== Custom CSS ================== */
a.custom-logo-link img.custom-logo {
	width:100%;
	height:50px;
}
.wpcf7-form-control-wrap {
    display: block;
}

.wpcf7-spinner {
    display: none;
}

.wpcf7-not-valid-tip {
    margin-top: 5px;
    font-size: 12px;
}

.wpcf7 form .wpcf7-response-output {
    margin-top: 15px;
    border-radius: 8px;
}
textarea.wpcf7-textarea.form-control {
    height: 100px;
}


 /* ----- UNIQUE CSS PREVENT CONFLICTS (Prefix: uc-blog-single) ----- */
    
    /* 1. Base & Colors */
    .uc-blog-single-wrapper {
        --uc-primary-red: #b5242b;      /* Image 2 Header Red */
        --uc-dark-navy: #151a26;        /* Image 2 Footer Dark Navy */
        --uc-orange-grad: linear-gradient(135deg, #ea8a44, #f5ce68); /* Subscribe Button */
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background-color: #f5f5f5;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        color: #333;
        line-height: 1.6;
    }

    .uc-blog-single-wrapper * {
        box-sizing: border-box;
    }

    /* 2. Banner Header (Red background from Image 2) */
    .uc-blog-single-header {
        background: var(--uc-primary-red);
        color: #fff;
        padding: 50px 20px;
        text-align: center;
        margin-bottom: 40px;
    }
    .uc-blog-single-header h1 {
        margin: 0 0 10px 0;
        font-size: 36px;
        font-weight: 700;
    }
    .uc-blog-single-breadcrumb {
        display: inline-block;
        background: rgba(255, 255, 255, 0.2);
        padding: 8px 20px;
        border-radius: 30px;
        font-size: 14px;
    }
    .uc-blog-single-breadcrumb a {
        color: #fff;
        text-decoration: none;
        margin: 0 5px;
    }

    /* 3. Main Grid Layout */
    .uc-blog-single-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        gap: 40px;
        padding: 0 20px 60px 20px;
        flex-wrap: wrap;
    }

    /* 4. Left Column (Main Content) */
    .uc-blog-single-left {
        flex: 0 0 70%;
        background: #fff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    /* Title & Meta */
    .uc-blog-single-title {
        font-size: 28px;
        font-weight: 700;
        color: #222;
        margin-bottom: 10px;
    }
    .uc-blog-single-meta {
        display: flex;
        align-items: center;
        gap: 15px;
        font-size: 14px;
        color: #666;
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
        margin-bottom: 25px;
    }
    .uc-blog-single-meta i { margin-right: 5px; }

    /* Featured Image */
    .uc-blog-single-featured-img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        margin-bottom: 30px;
    }

    /* Content from Editor (p, ul, ol, images) */
    .uc-blog-single-content {
        margin-bottom: 30px;
    }
    .uc-blog-single-content p {
        margin-bottom: 20px;
        font-size: 16px;
        color: #444;
    }
    .uc-blog-single-content h3 {
        margin: 25px 0 10px 0;
        color: #222;
    }
    .uc-blog-single-content ul, 
    .uc-blog-single-content ol {
        margin-bottom: 20px;
        padding-left: 20px;
    }
    .uc-blog-single-content ul li, 
    .uc-blog-single-content ol li {
        margin-bottom: 10px;
    }
    .uc-blog-single-content img {
        max-width: 100%;
        height: auto;
        margin: 20px 0;
        border-radius: 6px;
    }

    /* Admin Name */
    .uc-blog-single-admin {
        display: flex;
        align-items: center;
        gap: 15px;
        background: #f8f9fa;
        padding: 15px 20px;
        border-radius: 8px;
        border-left: 4px solid var(--uc-primary-red);
        margin-top: 20px;
    }
    .uc-blog-single-admin img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        object-fit: cover;
    }

    /* Next & Prev Buttons */
    .uc-blog-single-pagination {
        display: flex;
        justify-content: space-between;
        margin-top: 40px;
        border-top: 1px solid #eee;
        padding-top: 30px;
        gap: 20px;
    }
    .uc-blog-single-pagination a {
        text-decoration: none;
        background: #fff;
        border: 1px solid #ddd;
        padding: 12px 25px;
        border-radius: 50px;
        font-weight: 600;
        color: #333;
        transition: 0.3s;
        font-size: 14px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }
    .uc-blog-single-pagination a:hover {
        border-color: var(--uc-primary-red);
        background: var(--uc-primary-red);
        color: #fff;
    }
    .uc-blog-single-pagination .uc-next-btn {
        background: var(--uc-primary-red);
        color: #fff;
        border-color: var(--uc-primary-red);
    }
    .uc-blog-single-pagination .uc-next-btn:hover {
        opacity: 0.9;
    }

    /* 5. Right Sidebar (Latest 3 Blogs styled like Image 2) */
    .uc-blog-single-right {
        flex: 0 0 25%;
    }
    .uc-blog-single-sidebar-title {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
    }
    .uc-blog-single-sidebar-title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 40px;
        height: 3px;
        background: var(--uc-primary-red);
    }

    /* Blog Card Design matching Image 2 */
    .uc-blog-single-card {
        background: #fff;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0,0,0,0.06);
        margin-bottom: 30px;
        transition: 0.3s;
    }
    .uc-blog-single-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    .uc-blog-single-card-img-wrap {
        position: relative;
        height: 200px;
        overflow: hidden;
    }
    .uc-blog-single-card-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Red Date Badge (Image 2 style) */
    .uc-blog-single-date-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        background: var(--uc-primary-red);
        color: #fff;
        font-size: 12px;
        padding: 6px 15px;
        border-radius: 30px;
        font-weight: 600;
    }
    
    .uc-blog-single-card-body {
        padding: 20px;
    }
    .uc-blog-single-card-body h4 {
        margin: 0 0 10px 0;
        font-size: 18px;
        font-weight: 700;
        color: #222;
    }
    .uc-blog-single-card-body p {
        font-size: 14px;
        color: #666;
        margin-bottom: 15px;
        line-height: 1.6;
    }
    .uc-blog-single-read-more {
        font-size: 14px;
        font-weight: 600;
        color: var(--uc-primary-red);
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }
    .uc-blog-single-read-more:hover {
        color: #881f27;
    }

    /* 6. Newsletter Section (Orange-Gold Gradient) */
    .uc-blog-single-newsletter {
        background: var(--uc-dark-navy);
        padding: 60px 20px;
        text-align: center;
    }
    .uc-blog-single-newsletter h2 {
        color: #fff;
        font-size: 28px;
        margin-bottom: 10px;
    }
    .uc-blog-single-newsletter p {
        color: #aaa;
        margin-bottom: 25px;
    }
    .uc-blog-single-newsletter form {
        max-width: 500px;
        margin: 0 auto;
        display: flex;
        gap: 10px;
    }
    .uc-blog-single-newsletter input {
        flex: 1;
        padding: 12px 20px;
        border: 1px solid #444;
        border-radius: 50px;
        outline: none;
        background: transparent;
        color: #fff;
    }
    .uc-blog-single-newsletter button {
        padding: 12px 30px;
        border: none;
        border-radius: 50px;
        color: #fff;
        cursor: pointer;
        font-weight: 700;
        /* Orange Gradient from Image 2 */
        background: var(--uc-orange-grad); 
    }

    /* 7. Footer (Dark Navy from Image 2 with Red TE Logo) */
    .uc-blog-single-footer {
        background: var(--uc-dark-navy);
        color: #aaa;
        padding: 40px 20px;
        text-align: center;
        border-top: 1px solid #2a2f3e;
    }
    .uc-blog-single-footer .uc-logo {
        color: #fff;
        font-size: 24px;
        font-weight: 800;
        margin-bottom: 20px;
        display: inline-block;
    }
    .uc-blog-single-footer .uc-logo span {
        background: var(--uc-primary-red);
        padding: 4px 10px;
        border-radius: 6px;
        color: #fff;
        margin-right: 5px;
    }

    /* 8. Responsive Design */
    @media (max-width: 1024px) {
        .uc-blog-single-left { flex: 0 0 65%; }
        .uc-blog-single-right { flex: 0 0 30%; }
    }
    @media (max-width: 768px) {
        .uc-blog-single-container { flex-direction: column; }
        .uc-blog-single-left, .uc-blog-single-right { flex: 0 0 100%; }
        .uc-blog-single-pagination { flex-direction: column; align-items: flex-start; gap: 15px; }
        .uc-blog-single-pagination a { width: 100%; justify-content: center; }
        .uc-blog-single-newsletter form { flex-direction: column; }
        .uc-blog-single-header h1 { font-size: 28px; }
    }

